:root {
    --header-height: 120px;
    --primary-color: #c1121f;
    --primary-hover: #a10f1a;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1340px;
    }
}

/* HEADER */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

/* Dropdown container */
.nav-dropdown{
    position: relative;
}

/* Link hover effect */
.dropdown-link{
    transition: color 0.3s ease;
}

.nav-dropdown:hover .dropdown-link{
    color:#c1121f;
}

/* Dropdown menu */
.dropdown-menu-custom{
    position:absolute;
    top:120%;
    left:0;
    background:#fff;
    list-style:none;
    padding:10px 0;
    min-width:200px;
    border-radius:8px;
    box-shadow:0 12px 30px rgba(0,0,0,0.1);

    opacity:0;
    visibility:hidden;
    transform:translateY(15px) scale(0.98);
    transition:all .35s ease;
}

/* show dropdown */
.nav-dropdown:hover .dropdown-menu-custom{
    opacity:1;
    visibility:visible;
    transform:translateY(0) scale(1);
}

/* dropdown items */
.dropdown-menu-custom li a{
    display:block;
    padding:10px 20px;
    color:#333;
    text-decoration:none;
    font-weight:500;
    transition:all .25s ease;
}

/* item hover animation */
.dropdown-menu-custom li a:hover{
    background:#f5f7ff;
    padding-left:26px;
    color:#c1121f;
}

#mobileMenu a {
    font-weight: 500;
    text-decoration: none;
    padding: 10px 20px;
}

#mobileMenu .btn {
    padding: 10px;
    border-radius: 8px;
}

.logo-img {
    height: 95px;
    padding: 8px 0;
}

@media (max-width: 768px) {
    .logo-img {
        height: 65px;
        padding: 6px 0;
    }
}

/* HERO SECTION */
.hero-section {
    padding-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #000, #000, #c1121f);
    opacity: 0.7;
}

/* BADGE */
.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
}

/* BUTTONS */
.btn-primary-custom {
    background: var(--primary-color);
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: bold;
    color: #fff;
}

.btn-primary-custom:hover {
    background: var(--primary-hover);
    color: #fff;
    transform: scale(1.05);
}

.btn-outline-custom {
    border: 2px solid #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    color: #fff;
}

.btn-outline-custom:hover {
    background: #fff;
    color: var(--primary-color);
}

/* STATS */
.stat-box {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 700;
}

/* TRUST BADGES */
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

/* HERO SECTION – MOBILE OPTIMIZATION */
@media (max-width: 768px) {

    .hero-section {
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 6px 14px;
    }

    .hero-section h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero-section p.fs-5 {
        font-size: 1rem;
    }

    .hero-section p {
        font-size: 0.95rem;
    }

    /* Buttons */
    .hero-section .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    /* Stats Section */
    .stat-box {
        padding: 16px;
        border-radius: 12px;
    }

    .stat-box h3 {
        font-size: 1.6rem;
    }

    .stat-box p {
        font-size: 0.8rem;
        margin-bottom: 0;
    }

    /* Trust Items */
    .trust-item {
        font-size: 0.85rem;
        justify-content: center;
        text-align: center;
    }

    /* Reduce gaps */
    .hero-section .row.g-4 {
        --bs-gutter-y: 1rem;
    }
}


/* FOCUS AREAS */
.focus-section {
    padding: 80px 0;
    background: #fff;
}

.focus-card {
    position: relative;
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.focus-card:hover {
    transform: translateY(-10px);
}

.focus-orange {
    background: #fff2eb;
    border: 2px solid #ff6b3d;
}

.focus-blue {
    background: #f0fbfd;
    border: 2px solid #2bb0c8;
}

.focus-light {
    background: #fff4ee;
}

.badge-blue {
    background: #2bb0c8;
}

.focus-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    margin-bottom: 20px;
}

.icon-orange {
    background: #ff6b3d;
}

.icon-blue {
    background: #2bb0c8;
}

.heading-color {
    color: var(--primary-color);
}

.focus-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
}

.focus-card p {
    font-size: 15px;
    color: #555;
}

.focus-card a {
    font-weight: 600;
    text-decoration: none;
}

.impact-section {
    background: linear-gradient(135deg, #c1121f 0%, #8a0f18 50%, #4f070d 100%);
    padding: 80px 0;
    color: #fff;
}

.impact-title span {
    color: #f4d35e;
}

.impact-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.impact-icon {
    width: 55px;
    height: 55px;
    background: #f4d35e;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
    color: #fff;
}

.impact-number {
    font-size: 42px;
    font-weight: 700;
}

.impact-label {
    font-size: 18px;
    font-weight: 600;
    margin-top: 5px;
}

.impact-desc {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 6px;
}

.impact-pill {
    display: inline-block;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 14px;
    margin: 45px 0 30px;
}

.btn-impact {
    padding: 12px 26px;
    font-weight: 600;
    border-radius: 10px;
}

.btn-report {
    background: #ffffff;
    color: #0e6f7a;
}

.btn-report:hover {
    background: #f1f1f1;
    color: #0e6f7a;
}

.btn-involved {
    background: #ff7a2f;
    color: #fff;
}

.btn-involved:hover {
    background: #ff661a;
    color: #fff;
}

@media (max-width: 768px) {

    .btn-impact {
        width: 100%;
        padding: 14px 22px;
        font-size: 0.95rem;
    }

    .btn-impact i {
        font-size: 0.9rem;
    }
}


.help-section {
    padding: 90px 0;
    background: #ffffff;
}

.help-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 18px;
    background: rgba(193, 18, 31, 0.12);
    color: #c1121f;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 6px 16px rgba(193, 18, 31, 0.2);
}

.help-title span {
    color: #c1121f;
}

.help-desc {
    color: #666;
    margin: 20px 0 30px;
}

/* Image Grid */
.img-box img {
    border-radius: 16px;
    width: 100%;
    object-fit: cover;
}

.img-large {
    height: 360px;
}

.img-small {
    height: 170px;
}

/* Cards */
.help-card {
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.help-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.help-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.donate {
    background: linear-gradient(135deg, #ff7a2f, #ff9b66);
}

.volunteer {
    background: linear-gradient(135deg, #1aa3b0, #59cdd8);
}

.partner {
    background: linear-gradient(135deg, #ff7a2f, #ff9b66);
}

.card-donate {
    background: #fff1ea;
}

.card-volunteer {
    background: #ecfbfd;
}

.card-partner {
    background: #fff1ea;
}

.help-card h5 {
    font-weight: 700;
    margin-bottom: 6px;
}

.help-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.help-card a {
    font-weight: 600;
    text-decoration: none;
}

.link-donate {
    color: #ff7a2f;
}

.link-volunteer {
    color: #1aa3b0;
}

.link-partner {
    color: #ff7a2f;
}

/* Trust badges */
.trust {
    margin-top: 40px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #555;
}

.trust i {
    color: #1aa3b0;
    margin-right: 8px;
}

.transparent-badge {
    position: absolute;
    top: -30px;
    right: 18px;
    background: #ff7a2f;
    color: #ffffff;
    padding: 14px 16px;
    border-radius: 14px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    transform: rotate(6deg);
    z-index: 2;
}

.transparent-badge strong {
    font-size: 18px;
    display: block;
}

.founder-message {
    background: linear-gradient(135deg, #ffffff 0%, #f8fdfd 100%);
}

.founder-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 18px;
    background: rgba(193, 18, 31, 0.12);
    color: #c1121f;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 6px 16px rgba(193, 18, 31, 0.2);
}

.founder-title {
    font-size: 52px;
    font-weight: 700;
    color: #1f2933;
    line-height: 1.2;
}

.founder-title span {
    color: #f4d35e;
    position: relative;
}

/* Optional underline accent */
.founder-title span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 4px;
    background: rgb(243 225 227);
    border-radius: 4px;
}

.founder-section {
    background: #f8fbfb;
}

/* LEFT CARD */
.founder-card {
    background: linear-gradient(135deg, #139ca6, #1fb7c4);
    border-radius: 18px;
    padding: 160px 20px;
    height: 100%;
}

.founder-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
}

/* RIGHT CARD */
.quote-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.quote-icon {
    font-size: 50px;
    color: #ffb199;
    position: absolute;
    top: 20px;
    left: 25px;
}

.quote-icon.end {
    bottom: 20px;
    right: 25px;
    left: auto;
    top: auto;
}

.quote-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Highlight Quote */
.highlight-quote {
    background: #f4e1e3;
    border-left: 4px solid #c1121f;
    padding: 15px;
    margin-top: 20px;
    font-weight: 600;
    font-size: 15px;
}

/* Buttons */
.btn-orange {
    background: #c1121f;
    color: #fff;
    border-radius: 10px;
    padding: 10px 20px;
}

.btn-orange:hover {
    background: #e8693c;
    color: #fff;
}

.btn-learn-more {
    border-color: #48c2cd;
    color: #48c2cd;
    border-radius: 10px;
    padding: 10px 20px;
}

.btn-learn-more:hover {
    background: #48c2cd;
    color: #fff;
}

/* LEFT IMAGE CARD */
.founder-image-card {
    background: linear-gradient(135deg, #139ca6, #1fb7c4);
    border-radius: 18px;
    height: 300px;
    color: #fff;
    text-align: center;
    padding-top: 100px;
}

/* Founder Info */
.founder-info-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.founder-info-card h5 {
    margin-bottom: 4px;
}

.founder-info-card span {
    color: #139ca6;
    font-weight: 600;
    font-size: 14px;
}

/* Stats Cards */
.stats-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.stats-card i {
    font-size: 28px;
    margin-bottom: 8px;
    color: #c1121f;
}

.stats-card h5 {
    font-weight: 700;
    margin-bottom: 2px;
}

.stats-card p {
    font-size: 13px;
    color: #666;
}

.donor-section {
    background: radial-gradient(circle at top, #0e6a7a, #0a4f5c);
    position: relative;
    overflow: hidden;
}

.badge-pill {
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
}

.badge-eye {
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 15px;
}

.text-highlight {
    color: #9fe3eb;
}

.section-desc {
    max-width: 650px;
    font-size: 15px;
    opacity: 0.9;
}

.donor-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 25px 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.donor-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.12);
}

.avatar {
    width: 55px;
    height: 55px;
    background: #ff8c42;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 22px;

    overflow: hidden; /* ✅ IMPORTANT for circle image */
}

/* ✅ Image inside avatar */
.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* crop properly */
}

.donor-card h5 {
    font-size: 17px;
    margin-bottom: 6px;
}

.donor-card p {
    margin-bottom: 4px;
    opacity: 0.85;
}

.donor-card hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 12px 0;
}

.donor-card em {
    font-size: 14px;
    opacity: 0.9;
}

.avatar.skin {
    width: 58px;
    height: 58px;
    background: #2fa4b9;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
}

/* Quote Box */
.quote-box {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 30px;
    max-width: 720px;
    backdrop-filter: blur(8px);
}

.quote-box i {
    font-size: 28px;
    opacity: 0.9;
}

.quote-box p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 0;
}

.join-donor-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #ff8a3d, #ff6f3c);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(255, 120, 60, 0.35);
    transition: all 0.3s ease;
}

.join-donor-btn i {
    font-size: 16px;
}

.join-donor-btn .arrow {
    transition: transform 0.3s ease;
}

.join-donor-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(255, 120, 60, 0.5);
    color: #fff;
}

.join-donor-btn:hover .arrow {
    transform: translateX(6px);
}

.story-heading {
    background: #ffffff;
}

.impact-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 18px;
    background: rgba(193, 18, 31, 0.12);
    color: #c1121f;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 6px 16px rgba(193, 18, 31, 0.2);
}

.main-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #222;
}

.text-blue {
    color: #1f9bb5;
}

.text-orange {
    color: #c1121f;
}

.story-desc {
    max-width: 620px;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.stories-section {
    background: #f6f9fb;
}

.story-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.story-img {
    position: relative;
    height: 220px;
}

.story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.donation-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    color: #fff;
}

.donation-tag.eye {
    background: #ff7a3d;
}

.donation-tag.skin {
    background: #1f9bb5;
}

.story-body {
    padding: 22px;
}

.story-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.user-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-icon.eye {
    background: #ff7a3d;
}

.user-icon.skin {
    background: #1f9bb5;
}

.story-user h5 {
    margin-bottom: 2px;
    font-size: 17px;
}

.story-user small {
    color: #777;
}

.story-box {
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 14px;
    font-size: 14px;
}

.story-box.before {
    background: #eef9fb;
    border-left: 4px solid #1f9bb5;
}

.story-box.after {
    background: #fff2ea;
    border-left: 4px solid #ff7a3d;
}

.story-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-top: 10px;
    color: #666;
}

.story-footer .highlight {
    color: #ff7a3d;
    font-weight: 600;
}

/* Ripple Section */
.ripple-section {
    background: #f7f9fb;
}

/* Main Box */
.ripple-box {
    background: linear-gradient(135deg, #1594a8, #117d8f);
    border-radius: 22px;
    padding: 50px 30px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.ripple-sub {
    max-width: 600px;
    margin: 10px auto 0;
    opacity: 0.9;
}

/* Stat Cards */
.ripple-card {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 30px 20px;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}

.ripple-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.18);
}

.ripple-card i {
    font-size: 34px;
    margin-bottom: 12px;
}

.ripple-card h3 {
    font-weight: 700;
    margin-bottom: 6px;
}

.ripple-card p {
    font-size: 14px;
    opacity: 0.9;
}

/* CTA Buttons */
.cta-btn {
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: #c1121f;
    color: #fff;
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    color: #fff;
}

.cta-btn.outline {
    border: 2px solid #1f9bb5;
    color: #1f9bb5;
    background: #fff;
}

.cta-btn.outline:hover {
    background: #1f9bb5;
    color: #fff;
}

.donation-hero {
    background: linear-gradient(135deg, #c1121f 0%, #8a0f18 50%, #4f070d 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.donation-hero-icon {
    width: 64px;
    height: 64px;
    background: #fff;
    color: #ff6a2b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 26px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.donation-hero-title {
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.2;
}

.donation-hero-title span {
    color: #f4d35e;
}

.donation-hero-desc {
    max-width: 640px;
    font-size: 16px;
    opacity: 0.95;
    margin-top: 16px;
    line-height: 1.7;
}

/* Buttons */
.donation-btn {
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.donation-btn-primary {
    background: #fff;
    color: #0e6f7a;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.donation-btn-primary:hover {
    transform: translateY(-3px);
    color: #ff6a2b;
}

.donation-btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: #fff;
}

.donation-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* Trust Row */
.donation-trust {
    display: flex;
    justify-content: center;
    gap: 26px;
    flex-wrap: wrap;
    font-size: 14px;
    opacity: 0.9;
}

.donation-trust i {
    color: #4dd0e1;
    margin-right: 6px;
}

.site-footer {
    background: #ffffff;
    padding: 60px 0 30px;
    color: #000;
    font-size: 15px;
}

.footer-logo {
    max-width: 160px;
}

.footer-text {
    color: #333;
    line-height: 1.7;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #000;
    text-decoration: none;
}

.footer-links a:hover {
    color: #c1121f;
}

.footer-contact i {
    margin-right: 10px;
    color: #c1121f;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #c1121f;
    color: #fff;
}

.site-footer hr {
    margin: 40px 0 20px;
    border-color: #ddd;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
}

.footer-bottom-links a {
    margin-left: 15px;
    color: #000;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: #c1121f;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links a {
        margin: 0 8px;
    }
}

.award-section {
    padding: 40px;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 350px;
    gap: 20px;
}

/* Card Base */
.card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

/* EXACT GRID POSITIONING */
.card1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.card2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.card3 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.card4 {
    grid-column: 2 / 3;
    grid-row: 1 / 3; /* THIS makes it tall */
}

.btn-center {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .card1, .card2, .card3, .card4 {
        grid-column: auto;
        grid-row: auto;
        height: 200px;
    }
}
