
        :root {
            --green: #1a8917;
            --green-dark: #116010;
            --green-light: #e8f5e8;
            --green-mid: #2daa29;
            --gold: #c9a84c;
            --dark: #0d1117;
            --dark2: #161b22;
            --gray: #6e7681;
            --light: #f6f8fa;
            --white: #ffffff;
            --border: #e2e8f0;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Hind Siliguri', sans-serif;
            background: var(--white);
            color: var(--dark);
            overflow-x: hidden;
        }

        /* ========== SCROLLBAR ========== */
        ::-webkit-scrollbar { width: 4px; }
        ::-webkit-scrollbar-track { background: var(--light); }
        ::-webkit-scrollbar-thumb { background: var(--green); border-radius: 2px; }

        /* ========== TOP BAR ========== */
        .top-bar {
            background: var(--dark);
            color: rgba(255,255,255,0.7);
            font-size: 0.78rem;
            padding: 7px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px;
        }
        .top-bar a { color: var(--gold); text-decoration: none; margin-left: 16px; }
        .top-bar a:hover { color: var(--white); }
        .top-bar .socials a { font-size: 0.72rem; }

        /* ========== NAVBAR ========== */
        .navbar {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 2px solid var(--green);
            padding: 0;
            transition: box-shadow 0.3s;
        }
        .navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.10); }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 24px;
            max-width: 1280px;
            margin: auto;
        }
        .nav-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }
        .nav-logo-icon {
            width: 44px;
            height: 44px;
            background: var(--green);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        .nav-brand-text span {
            display: block;
            font-size: 0.65rem;
            color: var(--gray);
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-weight: 500;
        }
        .nav-brand-text strong {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--dark);
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
        }
        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-size: 0.9rem;
            font-weight: 500;
            padding: 8px 14px;
            border-radius: 8px;
            transition: all 0.2s;
        }
        .nav-links a:hover { color: var(--green); background: var(--green-light); }
        .nav-links a.active { color: var(--green); background: var(--green-light); font-weight: 600; }
        .btn-donate {
            background: var(--green);
            color: white !important;
            padding: 9px 22px !important;
            border-radius: 8px !important;
            font-weight: 700 !important;
            letter-spacing: 0.02em;
            transition: background 0.2s, transform 0.2s !important;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .btn-donate:hover { background: var(--green-dark) !important; transform: translateY(-1px); }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 6px;
            background: none;
            border: none;
        }
        .hamburger span {
            display: block;
            width: 24px;
            height: 2.5px;
            background: var(--dark);
            border-radius: 2px;
            transition: all 0.3s;
        }
        .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); }
        .hamburger.open span:nth-child(2) { opacity: 0; }
        .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -5.5px); }
        .mobile-menu {
            display: none;
            flex-direction: column;
            background: white;
            border-top: 1px solid var(--border);
            padding: 16px 24px 20px;
            gap: 4px;
        }
        .mobile-menu.open { display: flex; }
        .mobile-menu a {
            text-decoration: none;
            color: var(--dark);
            font-size: 0.95rem;
            padding: 10px 14px;
            border-radius: 8px;
            font-weight: 500;
            transition: all 0.2s;
        }
        .mobile-menu a:hover { background: var(--green-light); color: var(--green); }
        .mobile-menu .btn-donate { justify-content: center; margin-top: 8px; }

        /* ========== CONTAINER ========== */
        .container {
            max-width: 1200px;
            margin: auto;
            padding: 0 24px;
        }

        /* ========== HERO ========== */
        .hero {
            position: relative;
            background: linear-gradient(135deg, #0d2b0a 0%, #1a4d16 40%, #1a8917 100%);
            overflow: hidden;
            min-height: 92vh;
            display: flex;
            align-items: center;
        }
        .hero-bg-pattern {
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.04) 0%, transparent 60%),
                              radial-gradient(circle at 20% 80%, rgba(26,137,23,0.3) 0%, transparent 50%);
            pointer-events: none;
        }
        .hero-grid-overlay {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
        }
        .hero-accent {
            position: absolute;
            right: -80px;
            top: 50%;
            transform: translateY(-50%);
            width: 520px;
            height: 520px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(26,137,23,0.35) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            padding: 80px 0;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.2);
            color: rgba(255,255,255,0.9);
            font-size: 0.8rem;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 50px;
            margin-bottom: 20px;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            backdrop-filter: blur(8px);
        }
        .hero-badge i { color: var(--gold); }
        .hero-tagline {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.7);
            margin-bottom: 14px;
        }
        .hero-name {
            font-family: 'Hind Siliguri', sans-serif;
            font-size: clamp(2rem, 4vw, 3.4rem);
            font-weight: 700;
            color: white;
            line-height: 1.15;
            margin-bottom: 18px;
        }
        .hero-name .underline-accent {
            position: relative;
            display: inline-block;
        }
        .hero-name .underline-accent::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gold);
            border-radius: 2px;
        }
        .hero-desc {
            font-size: 1.05rem;
            color: rgba(255,255,255,0.75);
            line-height: 1.75;
            margin-bottom: 36px;
        }
        .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
        .btn-primary {
            background: white;
            color: var(--green-dark);
            padding: 13px 28px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 0.95rem;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-primary:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
        .btn-outline {
            background: transparent;
            color: white;
            padding: 13px 28px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            border: 2px solid rgba(255,255,255,0.4);
            cursor: pointer;
            transition: all 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); transform: translateY(-2px); }
        .hero-stats {
            display: flex;
            gap: 24px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        .hero-stat { text-align: center; }
        .hero-stat .num { font-size: 1.9rem; font-weight: 700; color: var(--gold); display: block; }
        .hero-stat .label { font-size: 0.78rem; color: rgba(255,255,255,0.6); }
        .hero-img-wrap {
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }
        .hero-img-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 40px 80px rgba(0,0,0,0.5);
            max-width: 380px;
            width: 100%;
        }
        .hero-img-card img {
            width: 100%;
            display: block;
            aspect-ratio: 4/5;
            object-fit: cover;
        }
        .hero-img-badge {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
            padding: 24px 20px 16px;
            color: white;
            text-align: center;
        }
        .hero-img-badge strong { font-size: 1.1rem; display: block; }
        .hero-img-badge span { font-size: 0.8rem; color: var(--gold); }
        .hero-float-card {
            position: absolute;
            top: -20px;
            left: -30px;
            background: white;
            border-radius: 14px;
            padding: 14px 18px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.25);
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 99;
            animation: float 3s ease-in-out infinite;
        }
        .hero-float-card .icon { 
            width: 38px; height: 38px; background: var(--green-light); 
            border-radius: 10px; display: flex; align-items: center; justify-content: center;
            color: var(--green); font-size: 1rem;
        }
        .hero-float-card span { font-size: 0.78rem; color: var(--gray); display: block; }
        .hero-float-card strong { font-size: 0.95rem; color: var(--dark); }
        @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

        /* ========== SECTION HEADERS ========== */
        .section-header { text-align: center; margin-bottom: 60px; }
        .section-label {
            display: inline-block;
            color: var(--green);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 12px;
        }
        .section-title {
            font-size: clamp(1.8rem, 3vw, 2.6rem);
            font-weight: 700;
            color: var(--dark);
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .section-divider {
            width: 48px;
            height: 4px;
            background: var(--green);
            border-radius: 2px;
            margin: 0 auto 20px;
        }
        .section-desc {
            font-size: 1.05rem;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.75;
        }

        /* ========== VISION SECTION ========== */
        .vision-section { padding: 100px 0; background: var(--white); }
        .vision-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
        .vision-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 36px 28px;
            transition: all 0.35s;
            position: relative;
            overflow: hidden;
        }
        .vision-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: var(--green);
            transform: scaleX(0);
            transition: transform 0.35s;
            transform-origin: left;
        }
        .vision-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(26,137,23,0.12); border-color: transparent; }
        .vision-card:hover::before { transform: scaleX(1); }
        .vision-icon {
            width: 60px; height: 60px;
            background: var(--green-light);
            border-radius: 16px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.4rem;
            color: var(--green);
            margin-bottom: 22px;
        }
        .vision-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; color: var(--dark); }
        .vision-card p { font-size: 0.92rem; color: var(--gray); line-height: 1.7; }

        /* ========== PLANS SECTION ========== */
        .plans-section { padding: 100px 0; background: var(--light); }
        .plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
        .plan-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 24px 22px;
            transition: all 0.3s;
            border-left: 4px solid var(--green);
        }
        .plan-card:hover { box-shadow: 0 12px 35px rgba(0,0,0,0.08); transform: translateY(-3px); background: #fcfffc; }
        .plan-card h4 {
            font-size: 0.98rem;
            font-weight: 700;
            color: var(--green-dark);
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .plan-card h4 i { color: var(--green); font-size: 0.9rem; flex-shrink: 0; }
        .plan-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
        .plan-card ul li {
            font-size: 0.85rem;
            color: var(--gray);
            display: flex;
            align-items: flex-start;
            gap: 8px;
            line-height: 1.5;
        }
        .plan-card ul li::before {
            content: '';
            width: 6px; height: 6px;
            background: var(--green);
            border-radius: 50%;
            flex-shrink: 0;
            margin-top: 6px;
        }
        .plans-cta {
            text-align: center;
            margin-top: 48px;
            padding: 28px 32px;
            background: linear-gradient(135deg, var(--green-dark), var(--green));
            border-radius: 16px;
            color: white;
        }
        .plans-cta p { font-size: 1.05rem; opacity: 0.9; }
        .plans-cta strong { font-size: 1.1rem; }

        /* ========== NEWS SECTION ========== */
        .news-section { padding: 100px 0; background: var(--white); }
        .news-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
        .see-all { color: var(--green); text-decoration: none; font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 6px; }
        .see-all:hover { text-decoration: underline; }
        .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
        .news-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s;
        }
        .news-card:hover { box-shadow: 0 16px 45px rgba(0,0,0,0.10); transform: translateY(-4px); }
        .news-img {
            width: 100%; height: 200px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s;
        }
        .news-card:hover .news-img { transform: scale(1.04); }
        .news-img-wrap { overflow: hidden; }
        .news-body { padding: 22px; }
        .news-date {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 0.76rem;
            color: var(--green);
            font-weight: 700;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .news-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; line-height: 1.5; color: var(--dark); }
        .news-body p { font-size: 0.87rem; color: var(--gray); line-height: 1.65; }

        /* ========== EVENTS SECTION ========== */
        .events-section { padding: 100px 0; background: var(--light); }
        .events-list { display: flex; flex-direction: column; gap: 16px; max-width: 860px; margin: 0 auto; }
        .event-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 24px 28px;
            display: grid;
            grid-template-columns: 80px 1fr auto;
            align-items: center;
            gap: 24px;
            transition: all 0.3s;
            border-left: 4px solid var(--green);
        }
        .event-card:hover { box-shadow: 0 10px 35px rgba(26,137,23,0.12); transform: translateX(4px); }
        .event-date {
            text-align: center;
            background: var(--green-light);
            border-radius: 12px;
            padding: 12px 8px;
        }
        .event-date .day { font-size: 2rem; font-weight: 800; color: var(--green); line-height: 1; display: block; }
        .event-date .month { font-size: 0.72rem; color: var(--gray); font-weight: 600; }
        .event-info h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
        .event-info p { font-size: 0.87rem; color: var(--gray); display: flex; align-items: center; gap: 6px; }
        .event-info p i { color: var(--green); }
        .btn-event {
            background: var(--green);
            color: white;
            padding: 10px 22px;
            border-radius: 10px;
            font-size: 0.87rem;
            font-weight: 700;
            border: none;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .btn-event:hover { background: var(--green-dark); transform: translateY(-1px); }

        /* ========== QUOTE SECTION ========== */
        .quote-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #0d2b0a 0%, #1a4d16 50%, #1a8917 100%);
            position: relative;
            overflow: hidden;
        }
        .quote-section::before {
            content: '\201C';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 25rem;
            line-height: 1;
            color: rgba(255,255,255,0.03);
            font-family: Georgia, serif;
            pointer-events: none;
            user-select: none;
        }
        .quote-inner { text-align: center; position: relative; z-index: 1; max-width: 860px; margin: 0 auto; }
        .quote-icon { font-size: 2.4rem; color: var(--gold); margin-bottom: 24px; opacity: 0.8; }
        .quote-text {
            font-size: clamp(1.3rem, 2.8vw, 2rem);
            font-weight: 600;
            color: white;
            line-height: 1.65;
            margin-bottom: 36px;
        }
        .quote-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            color: rgba(255,255,255,0.7);
        }
        .quote-author::before, .quote-author::after {
            content: '';
            display: block;
            width: 40px;
            height: 1px;
            background: rgba(255,255,255,0.3);
        }

        /* ========== FOOTER / CONTACT ========== */
/* ========== ULTRA-MODERN THREE-COLUMN FOOTER ========== */
.footer { 
    background: #0b1120; /* Deep midnight blue/black */
    padding: 100px 0 40px; 
    color: #f8fafc;
    position: relative;
    overflow: hidden;
}

/* Decorative background glow */
.footer::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(65, 129, 32, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.footer-grid { 
    display: grid; 
    grid-template-columns: 1.3fr 0.9fr 1.3fr; 
    gap: 50px; 
    margin-bottom: 80px; 
}

/* Typography */
.footer-col h3 { 
    font-size: 1.4rem; 
    font-weight: 800; 
    margin-bottom: 30px; 
    color: #ffffff;
    letter-spacing: -0.02em;
    border-left: 4px solid #418120;
    padding-left: 15px;
}

/* Column 1: About */
.footer-about p { font-size: 1rem; color: #94a3b8; line-height: 1.8; margin-bottom: 25px; }
.footer-contact-item { display: flex; align-items: center; gap: 15px; color: #cbd5e1; margin-bottom: 15px; }
.footer-contact-item i { 
    background: rgba(65, 129, 32, 0.1);
    color: #418120; 
    width: 35px; height: 35px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
}

/* Column 2: Donation (Modern Card) */
.donation-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 24px;
    text-align: center;
}
.btn-modern-donate {
    background: #418120;
    color: white !important;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(65, 129, 32, 0.2);
}
.btn-modern-donate:hover { 
    background: #4ea126;
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(65, 129, 32, 0.4);
}

/* Column 3: Partner (Premium Glass Look) */
.partner-modern {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
}
.partner-logo-wrap img { 
    max-width: 180px; 
    margin-bottom: 20px; 
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));
}
.partner-badge {
    background: #418120;
    color: white;
    font-size: 0.65rem;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}
        /* ========== ANIMATIONS ========== */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .fade-up.visible { opacity: 1; transform: translateY(0); }
        .stagger-1 { transition-delay: 0.1s; }
        .stagger-2 { transition-delay: 0.2s; }
        .stagger-3 { transition-delay: 0.3s; }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .plans-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .hamburger { display: flex; }
            .nav-links { display: none; }
            .hero-content { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; text-align: center; }
            .hero-img-wrap { justify-content: center; }
            .hero-img-card { max-width: 300px; }
            .hero-actions { justify-content: center; }
            .hero-stats { justify-content: center; }
            .hero-float-card { display: none; }
            .vision-grid { grid-template-columns: 1fr; }
            .plans-grid { grid-template-columns: 1fr; }
            .news-grid { grid-template-columns: 1fr; }
            .news-header { flex-direction: column; gap: 12px; align-items: flex-start; }
            .event-card { grid-template-columns: 60px 1fr; }
            .event-card .btn-event { grid-column: 1 / -1; text-align: center; }
            .footer-grid { grid-template-columns: 1fr; gap: 40px; }
            .form-row { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .top-bar .container { justify-content: center; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 16px; }
            .nav-inner { padding: 12px 16px; }
            .hero-name { font-size: 1.8rem; }
        }
        /* Partner Section Modern White Card */
.partner-white-card {
    background: #eeede9; /* শুধুমাত্র এই অংশটুকু সাদা */
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center; /* সব কন্টেন্ট সেন্টারে */
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.partner-white-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.partner-logo-wrap img {
    max-width: 125px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
}

.partner-title {
    color: #1e293b; /* সাদার ওপর ডার্ক টেক্সট */
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.partner-desc {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 280px;
}

.partner-link {
    color: #418120;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.partner-link:hover {
    color: #35691a;
    text-decoration: underline;
}