/* ═══════════════════════════════════════════════════════════
   MSIDC - TEMPLATE 2 - Premium Enterprise Grade Design
   Government Portal + Corporate Consulting + Startup India
   ═══════════════════════════════════════════════════════════ */

:root {
    --navy: #082B6F;
    --navy-dark: #061E4F;
    --navy-light: #0A3A8A;
    --navy-glow: rgba(8,43,111,0.35);
    --orange: #F57C00;
    --orange-dark: #E06800;
    --orange-light: #FF9800;
    --orange-glow: rgba(245,124,0,0.35);
    --green: #198754;
    --green-dark: #146C43;
    --green-glow: rgba(25,135,84,0.3);
    --white: #ffffff;
    --bg: #f8f9fa;
    --bg-soft: #f1f5f9;
    --text: #1a1a2e;
    --text-muted: #6c757d;
    --text-light: #9ca3af;
    --border: rgba(0,0,0,0.06);
    --border-light: rgba(255,255,255,0.1);
    --shadow-xs: 0 1px 3px rgba(8,43,111,0.04);
    --shadow-sm: 0 2px 8px rgba(8,43,111,0.06);
    --shadow: 0 4px 20px rgba(8,43,111,0.08);
    --shadow-md: 0 8px 32px rgba(8,43,111,0.1);
    --shadow-lg: 0 16px 48px rgba(8,43,111,0.14);
    --shadow-xl: 0 24px 64px rgba(8,43,111,0.18);
    --shadow-glow: 0 0 40px rgba(245,124,0,0.15);
    --glass: rgba(255,255,255,0.7);
    --glass-border: rgba(255,255,255,0.3);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --font-poppins: 'Poppins', sans-serif;
    --font-montserrat: 'Montserrat', sans-serif;
    --font-inter: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-poppins);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

/* ═══════════════════════════════════════════════════════════
   ANIMATED GRADIENT BACKGROUND KEYFRAMES
   ═══════════════════════════════════════════════════════════ */
@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%      { transform: translateY(-12px); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.6; }
}
@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes rotateGlow {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes borderGlow {
    0%, 100% { border-color: var(--orange); box-shadow: 0 0 20px rgba(245,124,0,0.2); }
    50%      { border-color: var(--navy); box-shadow: 0 0 20px rgba(8,43,111,0.2); }
}
@keyframes particleFloat {
    0%   { transform: translate(0, 0) scale(1); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translate(var(--tx, 100px), var(--ty, -200px)) scale(0); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════
   TOP HEADER BAR - PREMIUM
   ═══════════════════════════════════════════════════════════ */
.msidc-topbar {
    background: linear-gradient(135deg, #040f25 0%, #0a1e3d 50%, #061530 100%);
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 1001;
    overflow: visible;
}
.msidc-topbar::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 200%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245,124,0,0.05), transparent);
    animation: shimmer 8s ease-in-out infinite;
}
.topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative; z-index: 1;
}
.topbar-left a {
    color: rgba(255,255,255,0.85);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-inter);
    font-size: 0.78rem;
    transition: all var(--transition);
}
.topbar-left a:hover { color: var(--orange-light); transform: translateY(-1px); }
.topbar-left i { color: var(--orange); font-size: 0.75rem; }
.topbar-center {
    color: rgba(255,255,255,0.7);
    font-family: var(--font-inter);
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative; z-index: 1;
}
.topbar-center i { color: var(--orange); }
.topbar-right {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: flex-end;
    position: relative; z-index: 1;
}
.topbar-right a {
    width: 28px; height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.75);
    font-size: 0.72rem;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
}
.topbar-right a:hover {
    background: var(--orange);
    color: #fff;
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 12px rgba(245,124,0,0.3);
}
.lang-switcher-topbar {
    position: relative;
    margin-left: 6px;
    z-index: 2000;
}
.lang-switcher-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    padding: 4px 10px;
    color: rgba(255,255,255,0.85);
    font-size: 0.72rem;
    font-family: var(--font-montserrat);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.lang-switcher-btn:hover {
    background: rgba(255,255,255,0.2);
}
.lang-switcher-btn i.fa-globe { font-size: 0.8rem; }
.lang-switcher-btn i.fa-chevron-down { font-size: 0.55rem; opacity: 0.6; }
.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 6px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    min-width: 190px;
    max-height: 320px;
    overflow-y: auto;
    display: none;
    z-index: 99999;
    padding: 6px 0;
}
.lang-dropdown.show { display: block; }
.lang-dropdown .lang-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 16px;
    font-size: 0.82rem;
    font-family: var(--font-inter);
    color: #333 !important;
    text-decoration: none;
    transition: background 0.15s;
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
}
.lang-dropdown .lang-option:hover { background: #f0f2ff; color: var(--navy) !important; }
.lang-dropdown .lang-option.active { background: #f0f2ff; font-weight: 600; color: var(--navy) !important; }
.lang-dropdown .lang-option i.fa-check { font-size: 0.7rem; color: var(--orange); }

@media (max-width: 767px) {
    .topbar-left a span { display: none; }
    .topbar-left { gap: 10px; }
}

/* ═══════════════════════════════════════════════════════════
   MAIN HEADER / NAVBAR - PREMIUM
   ═══════════════════════════════════════════════════════════ */
.msidc-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 50%, #0a1e45 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 24px rgba(8,43,111,0.25);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.msidc-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--green), var(--orange));
    background-size: 200% 100%;
    animation: gradientShift 4s ease infinite;
}
.msidc-header .navbar {
    padding: 10px 0;
    min-height: 68px;
}
.msidc-header .navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.msidc-logo-img {
    width: 60px; height: 60px;
    border-radius: 12px;
    object-fit: contain;
    border: 2px solid rgba(255,255,255,0.15);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all var(--transition);
}
.msidc-header .navbar-brand:hover .msidc-logo-img {
    transform: scale(1.05);
    border-color: var(--orange);
    box-shadow: 0 4px 16px rgba(245,124,0,0.3);
}
.msidc-logo-placeholder {
    width: 60px; height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.7rem;
    box-shadow: 0 4px 12px rgba(245,124,0,0.3);
}
.msidc-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.msidc-brand-abbr {
    font-family: var(--font-montserrat);
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.msidc-brand-full {
    font-family: var(--font-inter);
    font-size: 0.68rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
    letter-spacing: 0.3px;
    white-space: nowrap;
}
.msidc-slogan {
    display: block;
    font-family: var(--font-poppins);
    font-size: 0.6rem;
    color: var(--orange);
    font-weight: 600;
    font-style: italic;
    margin-top: 2px;
    white-space: nowrap;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 4px rgba(245,124,0,0.2);
}

/* Navigation Links */
.msidc-nav .nav-item { margin: 0 2px; }
.msidc-nav .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 8px 12px !important;
    color: rgba(255,255,255,0.85) !important;
    font-family: var(--font-poppins);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all var(--transition);
    position: relative;
    text-transform: uppercase;
    overflow: hidden;
}
.msidc-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}
.msidc-nav .nav-link:hover::before { left: 100%; }
.msidc-nav .nav-link i { font-size: 0.9rem; color: var(--orange-light); }
.msidc-nav .nav-link:hover,
.msidc-nav .nav-link.active {
    color: #fff !important;
    background: rgba(255,255,255,0.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.msidc-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 20%;
    width: 60%;
    height: 2.5px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(245,124,0,0.4);
}

/* Dropdown */
.msidc-dropdown {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    margin-top: 8px;
    border: 1px solid var(--border);
    background: var(--glass);
    backdrop-filter: blur(20px);
}
.msidc-dropdown .dropdown-item {
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    transition: all var(--transition);
}
.msidc-dropdown .dropdown-item:hover {
    background: var(--navy);
    color: #fff;
    transform: translateX(4px);
}

/* Nav Action Button */
.msidc-nav-action { margin-left: 12px; }
.msidc-btn-nav {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition);
    font-family: var(--font-poppins);
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(245,124,0,0.3);
}
.msidc-btn-nav::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}
.msidc-btn-nav:hover::before { left: 100%; }
.msidc-btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245,124,0,0.4);
}
.msidc-header .navbar-toggler {
    border: 2px solid rgba(255,255,255,0.3);
    padding: 6px 10px;
    border-radius: 8px;
    transition: all var(--transition);
}
.msidc-header .navbar-toggler:hover {
    border-color: var(--orange);
    background: rgba(245,124,0,0.1);
}
@media (max-width: 991px) {
    .msidc-nav .nav-link {
        flex-direction: row;
        gap: 8px;
        text-transform: none;
        font-size: 0.88rem;
    }
    .msidc-nav .nav-link.active::after { display: none; }
    .msidc-nav-action { margin-left: 0; margin-top: 12px; }
    .msidc-btn-nav { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   BANNER SLIDER - CLEAN IMAGE ONLY
   ═══════════════════════════════════════════════════════════ */
@keyframes bannerProgressAnim {
    from { width: 0; }
    to   { width: 100%; }
}

.msidc-banner-section {     position: relative;
    overflow: visible; }

.banner-slide-item {
    position: relative;
    width: 100%;
    line-height: 0;
}
.banner-slide-item a { display: block; line-height: 0; }
.banner-slide-img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    display: block;
}

/* Nav Arrows */
.banner-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    border: none;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    opacity: 0;
}
.msidc-banner-section:hover .banner-nav-arrow { opacity: 1; }
.banner-nav-arrow:hover {
    background: var(--navy);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 24px rgba(8,43,111,0.3);
}
.banner-nav-prev { left: 16px; }
.banner-nav-next { right: 16px; }

/* Dots */
.banner-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}
.banner-dots button {
    width: 12px; height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.banner-dots button.active,
.banner-dots button:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(245,124,0,0.4);
}

/* Progress Bar */
.banner-progress-bar-track {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: rgba(255,255,255,0.2);
    z-index: 10;
}
.banner-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), var(--green));
    width: 0;
}
.banner-progress-fill.animate {
    animation: bannerProgressAnim 5s linear infinite;
}

/* Responsive */
@media (max-width: 991px) {
    .banner-slide-img { max-height: 350px; }
    .banner-nav-arrow { opacity: 1; width: 40px; height: 40px; }
}
@media (max-width: 767px) {
    .banner-slide-img { max-height: 250px; }
    .banner-nav-arrow { width: 36px; height: 36px; font-size: 0.85rem; }
    .banner-dots { bottom: 14px; }
    .banner-dots button { width: 10px; height: 10px; }
}

/* ═══════════════════════════════════════════════════════════
   NOTICE MARQUEE
   ═══════════════════════════════════════════════════════════ */
.notice-marquee {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-bottom: 2px solid rgba(245,124,0,0.3);
    overflow: hidden;
    width: 100%;
}
.notice-label {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--orange);
    color: #fff;
    font-weight: 700;
    font-size: 0.82rem;
    font-family: var(--font-montserrat);
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}
.notice-label i { font-size: 0.9rem; }
.notice-label::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 0;
    width: 0; height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 12px solid var(--orange);
}
.notice-track-wrap {
    flex: 1;
    overflow: hidden;
    padding: 0 20px;
}
.notice-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: noticeScroll 30s linear infinite;
}
.notice-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-family: var(--font-inter);
    white-space: nowrap;
    padding: 10px 0;
}
.notice-item i {
    color: var(--orange);
    font-size: 0.4rem;
}
@keyframes noticeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@media (max-width: 767px) {
    .notice-label { font-size: 0.72rem; padding: 8px 14px; }
    .notice-label::after { display: none; }
    .notice-item { font-size: 0.78rem; }
    .notice-track { gap: 24px; }
}

/* ═══════════════════════════════════════════════════════════
   FULL-WIDTH OVERRIDE - All sections full width like banner
   ═══════════════════════════════════════════════════════════ */
.msidc-impact-v2 .container,
.msidc-beneficiaries-v2 .container,
.services-v2 .container,
.ds-section .container,
.msidc-funds .container,
.msidc-testimonials .container,
.msidc-partners .container,
.msidc-cta-section .container,
.msidc-newsletter .container,
.msidc-footer .container,
.msidc-header .container,
.msidc-topbar .container {
    max-width: 100% !important;
    padding-left: 40px;
    padding-right: 40px;
}

@media (max-width: 767px) {
    .msidc-impact-v2 .container,
    .msidc-beneficiaries-v2 .container,
    .services-v2 .container,
    .ds-section .container,
    .msidc-funds .container,
    .msidc-testimonials .container,
    .msidc-partners .container,
    .msidc-cta-section .container,
    .msidc-newsletter .container,
    .msidc-footer .container,
    .msidc-header .container,
    .msidc-topbar .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ═══════════════════════════════════════════════════════════
   IMPACT COUNTERS V2 - PREMIUM
   ═══════════════════════════════════════════════════════════ */
.msidc-impact-v2 { padding: 50px 0 60px; position: relative; }
.impact-wrapper {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 40%, #0a1e45 100%);
    border-radius: var(--radius-2xl);
    padding: 44px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(8,43,111,0.25);
    border: 1px solid rgba(255,255,255,0.06);
}
.impact-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.impact-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}
.impact-shape-1 {
    width: 300px; height: 300px;
    background: rgba(245,124,0,0.1);
    top: -100px; right: -50px;
}
.impact-shape-2 {
    width: 250px; height: 250px;
    background: rgba(25,135,84,0.08);
    bottom: -80px; left: -50px;
}
.impact-box {
    padding: 24px 12px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}
.impact-box:hover { transform: translateY(-4px); }
.impact-box-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, rgba(245,124,0,0.2), rgba(245,124,0,0.05));
    color: var(--orange);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(245,124,0,0.15);
}
.impact-box:hover .impact-box-icon {
    background: var(--orange);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(245,124,0,0.3);
}
.impact-box-num {
    font-family: var(--font-montserrat);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 4px;
}
.impact-box-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    font-family: var(--font-inter);
    font-weight: 500;
}
.impact-box-line {
    width: 30px; height: 2px;
    background: linear-gradient(90deg, var(--orange), transparent);
    margin: 12px auto 0;
    border-radius: 1px;
}

/* ═══════════════════════════════════════════════════════════
   SECTION HEADERS - PREMIUM
   ═══════════════════════════════════════════════════════════ */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,124,0,0.08);
    color: var(--orange);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: var(--font-inter);
    margin-bottom: 14px;
    border: 1px solid rgba(245,124,0,0.12);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.section-heading {
    font-family: var(--font-montserrat);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.2;
}
.sh-orange {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-subheading {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
    font-family: var(--font-inter);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   TARGET BENEFICIARIES V3 - HORIZONTAL CARDS
   ═══════════════════════════════════════════════════════════ */
.msidc-beneficiaries-v2 {
    padding: 70px 0;
    background: var(--bg);
    overflow: hidden;
}
.beneficiaries-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0 20px;
}
.beneficiaries-scroll-wrapper::-webkit-scrollbar { display: none; }
.beneficiaries-track {
    display: flex;
    gap: 20px;
    min-width: max-content;
    padding: 0 15px;
}

.ben-horiz-card {
    flex: 0 0 200px;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-xs);
}
.ben-horiz-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.ben-horiz-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}
.ben-horiz-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.ben-horiz-card:hover .ben-horiz-img img {
    transform: scale(1.1);
}
.ben-horiz-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
.ben-horiz-card:hover .ben-horiz-badge {
    transform: scale(1.1) rotate(-5deg);
}
.ben-horiz-body {
    padding: 14px 14px 16px;
    text-align: center;
}
.ben-horiz-title {
    font-family: var(--font-montserrat);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.ben-horiz-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-family: var(--font-inter);
    line-height: 1.4;
    margin-bottom: 10px;
}
.ben-horiz-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--card-accent);
    font-family: var(--font-poppins);
    transition: all 0.3s ease;
}
.ben-horiz-link:hover { gap: 10px; }
.ben-horiz-link i { font-size: 0.65rem; transition: transform 0.3s ease; }
.ben-horiz-link:hover i { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE - IMPACT & BENEFICIARIES
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
    .impact-box { padding: 18px 8px; }
    .impact-box-num { font-size: 1.2rem; }
    .section-heading { font-size: 1.8rem; }
    .ben-horiz-card { flex: 0 0 180px; }
}
@media (max-width: 767px) {
    .msidc-impact-v2 { padding: 30px 0 40px; }
    .impact-wrapper { padding: 30px 12px; border-radius: var(--radius-xl); }
    .impact-box-icon { width: 44px; height: 44px; font-size: 1rem; }
    .impact-box-num { font-size: 1.1rem; }
    .impact-box-label { font-size: 0.68rem; }
    .msidc-beneficiaries-v2 { padding: 50px 0; }
    .section-heading { font-size: 1.5rem; }
    .ben-horiz-card { flex: 0 0 160px; }
    .ben-horiz-body { padding: 12px 10px 14px; }
    .ben-horiz-title { font-size: 0.85rem; }
    .ben-horiz-desc { font-size: 0.68rem; }
}
@media (max-width: 575px) {
    .section-heading { font-size: 1.3rem; }
    .section-subheading { font-size: 0.9rem; }
    .ben-horiz-card { flex: 0 0 140px; }
}

/* ═══════════════════════════════════════════════════════════
   SERVICES V2 - IMAGE-BASED PREMIUM CARDS
   ═══════════════════════════════════════════════════════════ */
.services-v2 {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #f0f4ff 40%, #fff8f0 70%, #fff 100%);
    position: relative;
    overflow: hidden;
}
.services-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(8,43,111,0.04) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(245,124,0,0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(25,135,84,0.02) 0%, transparent 60%);
    pointer-events: none;
}

.services-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0 20px;
    width: 100%;
}
.services-scroll-wrapper::-webkit-scrollbar { display: none; }
.services-scroll-track {
    display: flex;
    gap: 20px;
    padding: 0 10px;
}

.serv-card-v2 {
    flex: 0 0 calc(25% - 20px);
    min-width: 260px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.04);
    transition: all 0.4s cubic-bezier(.25,.46,.45,.94);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
    position: relative;
}
.serv-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
    border-color: transparent;
}

.serv-card-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.serv-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(.25,.46,.45,.94);
}
.serv-card-v2:hover .serv-card-img img {
    transform: scale(1.08);
}
.serv-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 12px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.serv-card-v2:hover .serv-img-overlay {
    opacity: 1;
}
.serv-icon-circle {
    width: 40px; height: 40px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0,0,0,.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(4px);
}
.serv-card-v2:hover .serv-icon-circle {
    transform: scale(1.15) rotate(-8deg);
}
.serv-img-badge {
    position: absolute;
    bottom: 10px; left: 10px;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0,0,0,.15);
}

.serv-card-body {
    padding: 16px 18px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.serv-meta { margin-bottom: 4px; }
.serv-raised {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--text-muted);
    font-family: var(--font-inter);
    display: inline-flex;
    align-items: center;
    gap: 3px;
}
.serv-raised i { color: var(--orange); font-size: 0.55rem; }

.serv-title {
    font-family: var(--font-montserrat);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.3;
    transition: color 0.3s ease;
}
.serv-card-v2:hover .serv-title { color: var(--sc-accent); }
.serv-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.5;
    flex-grow: 1;
    font-family: var(--font-inter);
    margin-bottom: 10px;
}
.serv-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--sc-accent);
    font-family: var(--font-poppins);
    transition: all 0.3s ease;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid rgba(0,0,0,.04);
}
.serv-link:hover { gap: 12px; }
.serv-link i { font-size: 0.7rem; transition: transform 0.3s ease; }
.serv-link:hover i { transform: translateX(5px); }

/* ═══════════════════════════════════════════════════════════
   FUNDRAISER CARDS - PREMIUM
   ═══════════════════════════════════════════════════════════ */
.msidc-funds {
    padding: 70px 0;
    background: var(--bg);
}
.msidc-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: var(--navy);
    border: 2px solid var(--navy);
    padding: 10px 22px;
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-weight: 700;
    transition: all var(--transition);
    font-family: var(--font-poppins);
    position: relative;
    overflow: hidden;
}
.msidc-btn-outline::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}
.msidc-btn-outline:hover::before { left: 100%; }
.msidc-btn-outline:hover {
    background: var(--navy);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8,43,111,0.25);
}
.fund-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xs);
}
.fund-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.fund-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.fund-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.fund-card:hover .fund-img img { transform: scale(1.08); }
.fund-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(220,53,69,0.3);
}
.fund-body { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
.fund-cat {
    display: inline-block;
    font-size: 0.78rem;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 6px;
}
.fund-title {
    font-family: var(--font-montserrat);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.35;
}
.fund-progress-info {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.fund-progress-info strong { color: var(--text); }
.msidc-btn-donate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    padding: 12px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: auto;
    transition: all var(--transition);
    font-family: var(--font-poppins);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(245,124,0,0.25);
}
.msidc-btn-donate::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}
.msidc-btn-donate:hover::before { left: 100%; }
.msidc-btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245,124,0,0.4);
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS - GOOGLE REVIEWS STYLE
   ═══════════════════════════════════════════════════════════ */
.msidc-testimonials {
    padding: 70px 0;
    background: #f8f9fc;
}
.greview-wrapper {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
    padding: 10px 0 20px;
}
.greview-wrapper::-webkit-scrollbar { display: none; }
.greview-track {
    display: flex;
    gap: 20px;
    width: max-content;
}
.greview-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px 22px;
    width: 340px;
    flex-shrink: 0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08), 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
}
.greview-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}
.greview-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.greview-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.greview-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.greview-user {
    flex: 1;
    min-width: 0;
}
.greview-user strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    font-family: var(--font-montserrat);
    line-height: 1.3;
}
.greview-user span {
    display: block;
    font-size: 0.75rem;
    color: #666;
}
.greview-google-icon {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}
.greview-google-icon i {
    font-size: 1rem;
    color: #4285F4;
}
.greview-stars {
    color: #FFC107;
    font-size: 0.85rem;
    display: flex;
    gap: 2px;
    margin-bottom: 10px;
}
.greview-text {
    font-size: 0.88rem;
    line-height: 1.65;
    color: #444;
    font-style: normal;
    margin: 0 0 8px;
}
.greview-meta {
    font-size: 0.7rem;
    color: #999;
    letter-spacing: 0.3px;
}
@media (max-width: 576px) {
    .msidc-testimonials { padding: 40px 0; }
    .greview-wrapper {
        mask-image: linear-gradient(90deg, transparent 0, #000 30px, #000 calc(100% - 30px), transparent 100%);
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 30px, #000 calc(100% - 30px), transparent 100%);
    }
    .greview-card {
        width: 260px;
        padding: 18px 16px;
    }
    .greview-avatar { width: 36px; height: 36px; }
    .greview-user strong { font-size: 0.82rem; }
    .greview-user span { font-size: 0.7rem; }
    .greview-text { font-size: 0.82rem; }
}

/* ═══════════════════════════════════════════════════════════
   PARTNERS - PREMIUM
   ═══════════════════════════════════════════════════════════ */
.msidc-partners {
    padding: 50px 0 60px;
    background: var(--bg);
    overflow: hidden;
}
.partners-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.partners-track {
    display: flex;
    gap: 24px;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}
.partners-marquee:hover .partners-track {
    animation-play-state: paused;
}
.partner-item {
    flex-shrink: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    height: 80px;
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(30%);
    box-shadow: var(--shadow-xs);
}
.partner-item:hover {
    filter: grayscale(0);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--orange);
}
.partner-name {
    font-family: var(--font-montserrat);
    font-weight: 800;
    font-size: 1rem;
    color: var(--text);
}
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   CTA BANNER - PREMIUM ANIMATED
   ═══════════════════════════════════════════════════════════ */
.msidc-cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 50%, #0a1e45 100%);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}
.msidc-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(245,124,0,0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(25,135,84,0.1) 0%, transparent 50%);
    pointer-events: none;
}
.msidc-cta-section::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 200%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
    animation: shimmer 6s ease-in-out infinite;
}
.cta-content {
    position: relative;
    z-index: 1;
}
.cta-icon {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, rgba(245,124,0,0.2), rgba(245,124,0,0.05));
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    color: var(--orange);
    font-size: 2rem;
    flex-shrink: 0;
    animation: trophyPulse 2s ease-in-out infinite;
    border: 1px solid rgba(245,124,0,0.2);
}
@keyframes trophyPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245,124,0,0.2); }
    50%      { transform: scale(1.05); box-shadow: 0 0 20px 5px rgba(245,124,0,0.15); }
}
.cta-heading {
    font-family: var(--font-montserrat);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.cta-subtext {
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    font-family: var(--font-inter);
    margin: 0;
}
.msidc-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    padding: 16px 36px;
    border-radius: var(--radius);
    font-size: 1.05rem;
    font-weight: 800;
    font-family: var(--font-poppins);
    transition: all var(--transition);
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(245,124,0,0.35);
}
.msidc-btn-cta::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s ease;
}
.msidc-btn-cta:hover::before { left: 100%; }
.msidc-btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(245,124,0,0.45);
}
@media (max-width: 991px) {
    .cta-content { text-align: center; }
    .cta-heading { font-size: 1.2rem; }
}
@media (max-width: 575px) {
    .msidc-btn-cta { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   NEWSLETTER - PREMIUM
   ═══════════════════════════════════════════════════════════ */
.msidc-newsletter {
    padding: 50px 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
}
.newsletter-title {
    font-family: var(--font-montserrat);
    font-weight: 700;
    color: var(--navy);
    font-size: 1.3rem;
    margin-bottom: 6px;
}
.newsletter-title i { color: var(--orange); margin-right: 8px; }
.newsletter-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    font-family: var(--font-inter);
}
.msidc-newsletter-form {
    display: flex;
    background: var(--bg);
    border-radius: var(--radius);
    padding: 5px;
    border: 1px solid var(--border);
    transition: all var(--transition);
    box-shadow: var(--shadow-xs);
}
.msidc-newsletter-form:focus-within {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(245,124,0,0.1);
}
.msidc-newsletter-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 16px;
    font-size: 0.92rem;
    font-family: var(--font-inter);
    outline: none;
    color: var(--text);
}
.msidc-newsletter-form button {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark)) !important;
    color: #fff !important;
    border: none;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-poppins);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.msidc-newsletter-form button::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}
.msidc-newsletter-form button:hover::before { left: 100%; }
.msidc-newsletter-form button:hover { box-shadow: 0 4px 15px rgba(245,124,0,0.3); }
@media (max-width: 767px) {
    .msidc-newsletter .row { gap: 16px; }
    .msidc-newsletter-form { flex-direction: column; }
    .msidc-newsletter-form button { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER - PREMIUM DEEP
   ═══════════════════════════════════════════════════════════ */
.msidc-footer {
    background: linear-gradient(180deg, #0a1628 0%, #060e1a 100%);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
    font-size: 0.88rem;
    position: relative;
    overflow: hidden;
}
.msidc-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245,124,0,0.3), transparent);
}
.footer-brand { margin-bottom: 20px; }
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.footer-logo-placeholder {
    width: 56px; height: 56px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.4rem;
    box-shadow: 0 4px 12px rgba(245,124,0,0.3);
}
.footer-brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.footer-brand-name {
    font-family: var(--font-montserrat);
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 0.5px;
}
.footer-brand-sub {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.5);
    font-family: var(--font-inter);
}
.footer-about-text {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 14px;
}
.footer-slogan {
    font-family: var(--font-poppins);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--orange);
    font-style: italic;
    padding: 10px 14px;
    background: rgba(245,124,0,0.08);
    border-left: 3px solid var(--orange);
    border-radius: 0 8px 8px 0;
    margin-bottom: 18px;
    line-height: 1.5;
}
.footer-slogan i {
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    margin: 0 3px;
}
.footer-socials { display: flex; gap: 6px; }
.footer-socials a {
    width: 36px; height: 36px;
    display: inline-flex;
    align-items: center; justify-content: center;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.65);
    transition: all var(--transition);
    font-size: 0.85rem;
}
.footer-socials a:hover {
    background: var(--orange);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(245,124,0,0.3);
}

.footer-heading {
    font-family: var(--font-montserrat);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 30px; height: 2.5px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(245,124,0,0.3);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.72rem;
    color: var(--orange);
}
.footer-links a:hover { color: #fff; padding-left: 6px; }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.85rem;
    line-height: 1.5;
}
.footer-contact i {
    color: var(--orange);
    width: 16px;
    flex-shrink: 0;
    margin-top: 3px;
    font-size: 0.85rem;
}
.footer-contact a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color var(--transition);
}
.footer-contact a:hover { color: var(--orange); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 18px 0;
    margin-top: 40px;
}
.copyright {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    margin: 0;
}
.footer-badges {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.footer-badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    padding: 4px 10px;
    background: rgba(255,255,255,0.04);
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.06);
}
.footer-badges i { color: var(--green); }
@media (max-width: 767px) {
    .footer-bottom { text-align: center; }
    .footer-badges { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1199px) {
    .hero-feature-panel { width: 140px; }
}
@media (max-width: 991px) {
    .section-title { font-size: 1.8rem; }
    .serv-card-v2 { flex: 0 0 calc(50% - 20px); min-width: 240px; }
    .services-scroll-track { gap: 16px; }
}
@media (max-width: 767px) {
    .services-v2,
    .msidc-beneficiaries,
    .msidc-funds { padding: 50px 0; }
    .serv-card-v2 { flex-basis: calc(50% - 16px); min-width: 220px; }
    .serv-card-body { padding: 12px 14px 16px; }
    .serv-title { font-size: 0.82rem; }
    .serv-desc { font-size: 0.68rem; }
    .services-scroll-track { gap: 14px; }
}
@media (max-width: 575px) {
    .section-title { font-size: 1.3rem; }
    .serv-card-v2 { flex: 0 0 calc(85% - 14px); min-width: 240px; }
    .serv-icon-circle { width: 36px; height: 36px; font-size: 0.85rem; }
    .serv-card-img { aspect-ratio: 16/9; }
    .services-scroll-track { gap: 12px; }
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM UTILITIES
   ═══════════════════════════════════════════════════════════ */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
}
.gradient-text {
    background: linear-gradient(135deg, var(--navy), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.premium-shadow {
    box-shadow:
        0 2px 4px rgba(0,0,0,0.02),
        0 8px 16px rgba(0,0,0,0.04),
        0 24px 48px rgba(0,0,0,0.06);
}
.premium-shadow-lg {
    box-shadow:
        0 4px 8px rgba(0,0,0,0.03),
        0 16px 32px rgba(0,0,0,0.06),
        0 32px 64px rgba(0,0,0,0.08);
}

/* ═══════════════════════════════════════════════════════════
   DIGITAL SERVICES SECTION
   ═══════════════════════════════════════════════════════════ */
.msidc-digital-services {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f9fc 0%, #fff 100%);
    position: relative;
}
/* ═══════════════════════════════════════════════════════════
   DIGITAL SERVICES SECTION - HORIZONTAL SCROLL
   ═══════════════════════════════════════════════════════════ */
.ds-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f9fc 0%, #fff 100%);
    position: relative;
}
.ds-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 5px 0 10px;
    width: 100%;
}
.ds-scroll-wrapper::-webkit-scrollbar { display: none; }
.ds-scroll-track {
    display: flex;
    gap: 12px;
    padding: 0 15px;
}

.ds-card-v2 {
    flex: 0 0 calc(25% - 17px);
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(8,47,111,0.06);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}
.ds-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(8,47,111,0.12);
}
.ds-card-v2 .ds-card-img {
    position: relative;
    aspect-ratio: 5/3;
    overflow: hidden;
}
.ds-card-v2 .ds-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.ds-card-v2:hover .ds-card-img img {
    transform: scale(1.08);
}
.ds-card-v2 .ds-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 12px;
}
.ds-card-v2 .ds-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
}
.ds-card-v2 .ds-card-body {
    padding: 12px 14px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.ds-card-v2 .ds-title {
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--navy);
    margin-bottom: 4px;
}
.ds-card-v2 .ds-desc {
    font-family: var(--font-inter);
    font-size: 0.78rem;
    color: #5a6a7a;
    line-height: 1.5;
    margin-bottom: 10px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ds-card-v2 .ds-enquiry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px;
    border-radius: 50px;
    font-family: var(--font-montserrat);
    font-weight: 600;
    font-size: 0.75rem;
    border: 2px solid;
    background: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    align-self: flex-start;
}
.ds-card-v2 .ds-enquiry-btn:hover {
    background: var(--ds-accent);
    color: #fff !important;
    text-decoration: none;
}

@media (max-width: 991px) {
    .ds-card-v2 { flex: 0 0 calc(50% - 14px); }
    .ds-scroll-track { gap: 10px; }
}
@media (max-width: 767px) {
    .ds-section { padding: 40px 0; }
    .ds-card-v2 { flex-basis: calc(50% - 14px); }
    .ds-card-v2 .ds-card-body { padding: 10px 12px 14px; }
    .ds-card-v2 .ds-title { font-size: 0.85rem; }
    .ds-card-v2 .ds-desc { font-size: 0.72rem; }
}
@media (max-width: 575px) {
    .ds-card-v2 { flex: 0 0 calc(50% - 14px); }
    .ds-card-v2 .ds-card-img { aspect-ratio: 4/3; }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT / ENQUIRY SECTION
   ═══════════════════════════════════════════════════════════ */
.msidc-contact {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fc 0%, #eef1f8 100%);
    position: relative;
}
.contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(8,47,111,0.06);
}
.contact-card .form-label {
    font-family: var(--font-montserrat);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--navy);
    margin-bottom: 4px;
}
.contact-card .form-control {
    border: 1px solid #dde2ed;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-family: var(--font-inter);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-card .form-control:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(8,47,111,0.1);
}
.btn-contact-submit {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: #fff;
    padding: 12px 36px;
    border-radius: 50px;
    font-family: var(--font-montserrat);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    transition: all 0.3s ease;
}
.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(8,47,111,0.3);
    color: #fff;
}

@media (max-width: 767px) {
    .msidc-contact { padding: 40px 0; }
    .contact-card { padding: 24px; }
}

/* ═══════════════════════════════════════════════════════════
   ENQUIRY MODAL
   ═══════════════════════════════════════════════════════════ */
.enquiry-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.enquiry-modal-overlay.show {
    display: flex;
}
.enquiry-modal-box {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    animation: modalSlideIn 0.3s ease;
}
@keyframes modalSlideIn {
    from { transform: translateY(30px) scale(0.95); opacity: 0; }
    to   { transform: translateY(0) scale(1); opacity: 1; }
}
.enquiry-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.8rem;
    line-height: 1;
    color: #999;
    cursor: pointer;
    padding: 0 4px;
    transition: color 0.2s;
    z-index: 2;
}
.enquiry-modal-close:hover {
    color: #333;
}
.enquiry-modal-header {
    padding: 28px 28px 0;
}
.enquiry-modal-header h4 {
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 4px;
}
.enquiry-modal-header p {
    font-family: var(--font-inter);
    font-size: 0.85rem;
    color: #6b7a8a;
    margin: 0;
}
.enquiry-modal-body {
    padding: 20px 28px 28px;
}
.enquiry-modal-body .form-label {
    font-family: var(--font-montserrat);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--navy);
    margin-bottom: 3px;
}
.enquiry-modal-body .form-control {
    border: 1px solid #dde2ed;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.88rem;
    font-family: var(--font-inter);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.enquiry-modal-body .form-control:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(8,47,111,0.1);
}
.btn-enquiry-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    border: none;
    font-family: var(--font-montserrat);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-enquiry-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(8,47,111,0.3);
}
.btn-enquiry-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}
.enquiry-success-msg {
    text-align: center;
    padding: 20px 0;
}
.enquiry-success-msg i {
    font-size: 3rem;
    color: #198754;
    margin-bottom: 12px;
}
.enquiry-success-msg h5 {
    font-family: var(--font-montserrat);
    font-weight: 700;
    color: var(--navy);
}
.enquiry-success-msg p {
    font-family: var(--font-inter);
    color: #5a6a7a;
    font-size: 0.9rem;
}

@media (max-width: 575px) {
    .enquiry-modal-box { max-width: 100%; }
    .enquiry-modal-header { padding: 20px 20px 0; }
    .enquiry-modal-body { padding: 16px 20px 24px; }
}
