﻿/* ---- CSS Variables ---- */
:root {
    --white: #fff;
    --gray: #EDEFF3;
    --dark-blue: #183e6a;
    --font-primary: "Inter", sans-serif;
    --font-regular: 400;
    --font-semibold: 600;
    --font-bold: 700;
    --shadow-primary: 0 4px 5px 0 rgba(0, 0, 0, 0.2);
    --gradient-primary: linear-gradient(to bottom, #183E6A 0%, #2A5A8F 100%);;
}

 html, body {
    font-family: var(--font-primary) !important;
 }
.container {
    max-width: 1330px;
    margin: 0 auto;
    padding: 0 20px;
}

html {
    font-size: 14px;
}

.f-w-600 {
    font-weight: 600;
}

.f-w-500 {
    font-weight: 500;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn {
    font-weight: 500;
}


.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    height: 100%; /* allow full-height flexbox */
    margin: 0;
    display: flex;
    flex-direction: column;
    margin-bottom: 0px;
    background-color:var(--white)!important;
}
@media (min-width: 990px) {
    header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
}
}

header .navbar {
    padding-top: 0;
    padding-bottom: 0;
    display:block;
}
@media (min-width: 1200px) {
    .btn-donate {
        margin-left: 100px;
    }
}

section.banner h1 {
    color: var(--white);
    font-size: 60px;
    line-height: normal;
    font-weight: var(--font-bold);
}

.banner-left{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.banner-left p {
    font-size: 20px !important;
}
@media (max-width: 990px) {
    section.banner h1 {
        font-size: 28px;
    }
    section.banner {
        display: flex !important;
        flex-direction: column-reverse !important; 
    }
}
/*div.logo > img,
div.logo > a > img {
    width: 410px;
}*/

.home div.logo > a {
    pointer-events: none;
}
.logo .navbar-brand img {
    height: 85px !important;
}
.navbar-nav li:not(.dropdown-item) a {
    color: #1a1a1a !important;
}

#userDropdown{
    /*color:#fff!important;*/
}

.navbar-nav li.dropdown-item a {
    color: #0d6efd !important;
}

.navbar-nav.gap-3 {
    gap: 2rem !important;
}

.zone-container {
    margin-bottom: 0px;
}

.zone-container p {
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
}

.zone-container .max-w-200 {
    max-width: 200px;
}
@media (min-width: 1400px) {
    .content-wrap {
        padding-top: 95px;
    }
}

#main-content ul,
#main-content ol {
    list-style: none;
    margin: 0;  /*25px 0;*/
    padding: 0;
}

#main-content ul li,
#main-content ol li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

#main-content ul li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #333; /*var(--white) *//*#F4C542*/;
    font-size: 1.2rem;
    line-height: 1.3;
}

#main-content ol {
    counter-reset: counter;
}
#main-content ol li {
    counter-increment: counter;
}
#main-content ol li::before {
    content: counter(counter) ". ";
    position: absolute;
    left: 0;
    color: #333; /*var(--white) *//*#F4C542*/
    font-size: 1.2rem;
    line-height: 1.5;
}

/*#region My Buttons */
.btn {
    border-radius: 20px;
}

.btn-link i {
    display: inline-block; /* Required for transform */
    transition: transform 0.3s ease;
}

.btn-link[aria-expanded="true"] i {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.btn-custom {
    color: #FFF !important;
    background-color: #593063 !important;
    border-color: #593063 !important;
    font-weight: 600;
}

.btn-back-to-jobs {
    color: #4F235B;
    font-size: 16px;
    font-family: Montserrat;
    font-weight: 500;
    line-height: 27px;
    word-wrap: break-word;
    padding: 1px 12px;
    border-radius: 25px;
    border: 1px solid #4B1D5C;
    padding: 3px 19px;
}

a.btn-custom {
    font-weight: normal;
    padding: 10px 30px;
}

.btn-custom:hover {
    color: #000000;
    background-color: transparent;
    border-color: #f4af8a;
    background-image: url('../Images/gold_bar.png');
}

.button,
.btn-primary:not(.btn-edit) {
    display: inline-block;
    background: #ce4927;
    color: #ffffff;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    /* margin-top: 20px;*/
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.button:hover{
    background-color:#b13d1f;
    color:#fff!important;
}

.btn-primary:not(.btn-edit):hover {
    background: #1e3a5f;
    transform: translateY(-2px);
    text-decoration: none;
    color: #ffffff;
}

.button-yellow,
.btn-secondary {
    background: #F4C542;
    color: #1e3a5f;
}
/*#endregion */

/*#region Menu Admin */
.dropdown-item a,
.dropdown-item button {
    padding: 0;
    text-decoration: none;
}

/*#endregion */


/*#region Fixes to avoid the movement of the contents on the page side to side on mobile */

/* 1) Prevent most accidental horizontal scroll, but only at top-level */
html, body {
    max-width: 100%;
    overflow-x: clip; /* better than hidden; avoids creating a new scroll context */
}

/* 2) Replace 100vw on inner containers */
.container:not(.nomaxwidth), .section, .wrapper {
    width: 100%; /* not 100vw */
    /*max-width: 100%;*/
   /* max-width: 1400px;*/
}

/* 3) Constrain media */
img, video, canvas, svg, iframe {
    width: 100%;
    height: auto;
    display: block;
}

/* 4) Carousels/strips that rely on nowrap */
.scroller, .logo-strip, .cards-row {
    overflow-x: auto; /* let the row scroll itself */
    -webkit-overflow-scrolling: touch;
}

/* 5) Off-canvas menus/panels */
.offcanvas {
    position: fixed; /* avoid affecting layout width */
    top: 0;
    right: 0;
    bottom: 0;
    transform: translateX(100%); /* hidden state */
    will-change: transform;
}

/* 6) Safety for nested layouts */
* {
    box-sizing: border-box;
}


/*#endregion */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #ffffff;
    font-family: var(--font-primary);
}

/*#region Banner */

section.banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--dark-blue);
    color: var(--white);
}
section.banner p {
    color: var(--white);
}
section.banner > div:first-child{
    padding:50px;
}
section.banner > div:last-child p{
    margin-bottom:0;
}
/*#endregion */

/*#region mri-section */
.mri-section {
    background-color: var(--gray);
    padding: 60px 20px;
    text-align: center;
    /*font-family: var(--font-primary);*/
}

.mri-container {
    max-width: 880px;
    margin: 0 auto;
}

.mri-text {
    color: #183e6a!important;
    font-size: 24px!important;
    line-height: 39px!important;
    font-weight: var(--font-regular);
    margin: 0 0 28px 0;
}


.mri-cta {
    color: #ce4927!important;
    font-size: 30px!important;
    font-weight: bold!important;
    margin: 8px 0 0 0;
}
/*#endregion */


/*#region Vision Section */
/* Vision Section */

.vision-section {
    padding: 60px 20px;
    background-color: #ffffff;
    /*font-family: var(--font-primary);*/
    max-width: 1330px;
    margin: 0 auto;
}
@media (max-width: 990px) {
    .vision-section {
        padding: 40px 20px;
    }
}
div.vision-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
}
@media (max-width: 990px) {
    div.vision-wrapper {
        display: flex !important;
        flex-direction: column-reverse !important;
    }
}
/* Left: Text */
.vision-text {
    flex: 1;
}

.vision-title {
    color: #1a3a5c;
    font-size: 36px;
    font-weight: var(--font-bold);
    margin: 0 0 20px 0;
    font-family: var(--font-primary);;
}

.vision-paragraph {
    color: #364153;
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 20px 0;
    font-family: var(--font-primary);;
}

    .vision-paragraph:last-child {
        margin-bottom: 0;
    }

/* Right: Card */
.vision-card {
    flex: 0 0 340px;
    background: linear-gradient(to bottom, #183E6A 0%, #2A5A8F 100%);
    border-radius: 12px;
    padding: 36px 32px;
    color: #ffffff;
    box-shadow: 0px 11px 10px 5px rgba(0, 0, 0, 0.09);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 990px) {
    .vision-card {
        margin-bottom: 30px;
    }
}
.vision-card-amount {
    font-size: 60px;
    font-weight: var(--font-bold);
    line-height: normal;
    margin-bottom: 8px;
    font-family: var(--font-primary);;
}

.vision-card-label {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: var(--font-primary);;
}

.vision-card-description {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
    font-family: var(--font-primary);;
    color:var(--white);
}
/*#endregion */

/*#region fundraising-section */
/* Section */
.fundraising-section {
    background-color:var(--gray);
}
.fundraising-section > div{
    padding: 40px 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
}
@media (max-width: 990px) {
    .fundraising-section > div {
        padding: 30px 20px;
    }
}
/*#endregion */

/*#region why-section */

/* =====================================================
   Why an MRI at AMGH Matters – Section Styles
   ===================================================== */
/** {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}*/

/* ---------- Section ---------- */
.why-section {
    padding: 60px 20px;
    max-width: 1330px;
    margin: 0 auto;
}
@media (max-width: 990px) {
    .why-section {
        padding: 30px 20px;
    }
}
/* ---------- Header ---------- */
.why-header {
    text-align: center;
    margin-bottom: 48px;
}

.why-title {
    font-size: 36px;
    font-weight: var(--font-bold);
    color: #1a3a5c;
    margin-bottom: 10px;
}

.why-subtitle {
    font-size: 15px;
    color: #666666;
}

/* ---------- Two-column layout ---------- */
.why-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* ---------- Cards column ---------- */
.why-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ---------- Card base ---------- */
.why-card {
    border-radius: 10px;
    border-left: 5px solid transparent;
    padding: 28px 28px 28px 24px;
    box-shadow: var(--shadow-primary);
}

.why-card-inner {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* ---------- Card colour themes ---------- */
.why-card--yellow {
    background-color: #fffdf0;
    border-left-color: #e5a800;
}

.why-card--green {
    background-color: #f2faf4;
    border-left-color: #2e7d32;
}

.why-card--purple {
    background-color: #f8f2fb;
    border-left-color: #7b3fa0;
}

/* ---------- Large number ---------- */
.why-number {
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
    flex-shrink: 0;
    width: 56px;
    opacity: 0.35;
}

.why-number--yellow {
    color: #e5a800;
}

.why-number--green {
    color: #2e7d32;
}

.why-number--purple {
    color: #7b3fa0;
}

/* ---------- Card body ---------- */
.why-card-body {
    flex: 1;
}

.why-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.why-card-text {
    font-size: 14px;
    line-height: 1.7;
    color: #444444;
}

/* ---------- Image column ---------- */
.why-image-wrap {
    flex: 0 0 330px;
    border-radius: 16px;
    overflow: hidden;
    align-self: stretch;
}

.why-image {
    width: 100%;
    height: 108%;
    object-fit: none;
    display: block;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
    .why-content {
        flex-direction: column;
    }

    .why-image-wrap {
        flex: none;
        width: 100%;
        max-height: 320px;
    }
}
/*#endregion */

/*#region top5-reasons */

/* =====================================================
   Top 5 Reasons to Support the MRI – Section Styles
   File: top5-reasons.css
   ===================================================== */

/** {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #f0f2f5;
    font-family: var(--font-primary);;
}*/

/* ---------- Section ---------- */
.reasons-section {
    background-color:var(--gray);
}
.reasons-section > div {
    padding: 60px 20px;
    max-width: 1330px;
    margin: 0 auto;
}
@media (max-width: 990px) {
    .reasons-section > div {
        padding: 30px 20px;
    }
}
/* ---------- Title ---------- */
.reasons-title {
    font-size: 28px;
    font-weight: var(--white);
    color: #1a3a5c;
    text-align: center;
    margin-bottom: 48px;
}

/* ---------- List ---------- */
.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ---------- Card ---------- */
.reason-card {
    display: flex;
    align-items: stretch;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-primary);
}

/* ---------- Badge (coloured left block) ---------- */
.reason-badge {
    flex-shrink: 0;
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
}

.reason-badge--red {
    background-color: #c0392b;
}

.reason-badge--yellow {
    background-color: #f4c20d;
}

.reason-badge--green {
    background-color: #2e7d32;
}

.reason-badge--purple {
    background-color: #8e44ad;
}

.reason-badge--navy {
    background-color: #1a3a5c;
}

/* ---------- Body ---------- */
.reason-body {
    flex: 1;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reason-heading {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: normal;
}

.reason-text {
    font-size: 14px;
    line-height: 1.75;
    color: #444444;
}

/* ---------- Inset list box ---------- */
.reason-inset {
    background-color: #f5f7fa;
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .reason-inset p {
        font-size: 14px;
        line-height: 1.5;
        color: #444444;
    }

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
    .reason-card {
        flex-direction: column;
    }

    .reason-badge {
        width: 100%;
        height: 80px;
        font-size: 32px;
    }

    .reason-body {
        padding: 20px;
    }
}

/*#endregion */

/*#region join-section */
/* =====================================================
   Join the Magnetic Moments Movement – Section Styles
   File: join-movement.css
   ===================================================== */

/** {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}
*/
/* ---------- Section ---------- */
.join-section {
    display: flex;
    align-items: center;
    gap: 56px;
    padding: 60px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

div.join-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
}
@media (min-width: 1200px) {
    div.join-wrapper {
        column-gap: 70px !important;
    }
}
@media (max-width: 990px) {
    div.join-wrapper {
        display: flex !important;
        flex-direction: column-reverse !important;
    }
}
/* ---------- Left: Text ---------- */
.join-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.join-title {
    font-size: 26px;
    font-weight: 800;
    color: #1a3a5c;
    line-height: 1.3;
}

.join-paragraph {
    font-size: 15px;
    line-height: 1.75;
    color: #444444;
}

/* ---------- Button ---------- */
.join-btn {
    display: inline-block;
    background-color: #c0392b;
    color: var(--white)!important;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    align-self: flex-start;
    transition: background-color 0.2s ease;
}

    .join-btn:hover {
        background-color: #a93226;
    }

/* ---------- Right: Image ---------- */
.join-image-wrap {
    border-radius: 14px;
    overflow: hidden;
}

.join-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
    .join-section {
        flex-direction: column;
        padding: 40px 24px;
        gap: 32px;
    }

    .join-image-wrap {
        flex: none;
        width: 100%;
    }
}
/*#endregion */

/*#region htg-section */

/* =====================================================
   How To Give – Section Styles
   File: how-to-give.css
   ===================================================== */

/** {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #f0f2f5;
    font-family: Arial, Helvetica, sans-serif;
}*/

/* ---------- Section ---------- */
.htg-section {
    background-color: var(--gray);
    
}

.htg-section > div {
    padding: 60px 20px;
    max-width: 1330px;
    margin: 0 auto;
}
@media (max-width: 990px) {
    .htg-section > div {
        padding: 30px 20px !important;
    }
}
/* ---------- Header ---------- */
.htg-header {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.htg-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a3a5c;
}

.htg-subtitle {
    font-size: 15px;
    color: #666666;
}

.htg-intro {
    font-size: 15px;
    line-height: 1.75;
    color: #444444;
    max-width: 700px;
    margin: 8px auto 0;
}

/* ---------- Grid ---------- */
.htg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ---------- Card base ---------- */
.htg-card {
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid transparent;
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Full-width card (In-Kind) */
.htg-card--full {
    grid-column: 1 / -1;
}

/* ---------- Card colour themes ---------- */
.htg-card--yellow {
    border-color: #e5a800;
}

.htg-card--green {
    border-color: #2e7d32;
}

.htg-card--purple {
    border-color: #8e44ad;
}

.htg-card--red {
    border-color: #c0392b;
}

.htg-card--navy {
    border-color: #1a3a5c;
}

/* ---------- Card header row ---------- */
.htg-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* ---------- Icon circle ---------- */
.htg-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .htg-icon svg, .htg-icon img {
        width: 20px;
        height: 20px;
    }

.htg-icon--yellow {
    border-color: #e5a800;
    color: #e5a800;
}

.htg-icon--green {
    border-color: #2e7d32;
    color: #2e7d32;
}

.htg-icon--purple {
    border-color: #8e44ad;
    color: #8e44ad;
}

.htg-icon--red {
    border-color: #c0392b;
    color: #c0392b;
}

.htg-icon--navy {
    border-color: #1a3a5c;
    color: #1a3a5c;
}

/* ---------- Card title ---------- */
.htg-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a3a5c;
    line-height: 1.3;
}

/* ---------- Card text ---------- */
.htg-card-text {
    font-size: 14px;
    line-height: 1.75;
    color: #444444;
}

/* ---------- Responsive ---------- */
@media (max-width: 700px) {
    .htg-grid {
        grid-template-columns: 1fr;
    }

    .htg-card--full {
        grid-column: auto;
    }
}

/* ---------- Blue banner ---------- */
.htg-banner {
    background: var(--gradient-primary);
    border-radius: 12px;
    padding: 36px 48px;
    margin-top: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.htg-banner-title {
    font-size: 24px;
    font-weight: var(--font-bold);
    color: var(--white);
}

.htg-banner-text {
    font-size: 14px;
    line-height: 1.75;
    color: #d0dce8!important;
}

/* ---------- Footnote ---------- */
.htg-footnote {
    margin-top: 16px;
    text-align: center;
    font-size: 13px;
    font-style: italic;
    color: #888888;
}

/*#endregion */

/*#region htg-section */
/* =====================================================
   Create a Magnetic Moment – Section Styles
   File: magnetic-moment.css
   ===================================================== */

/** {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}
*/
/* ---------- Section ---------- */
.mm-hero-section {
    padding: 40px 20px;
    max-width: 1330px;
    margin: 0 auto;
}
@media (max-width: 990px) {
    .mm-hero-section {
        padding: 40px 20px;
    }
}
/* ---------- Card (the rounded dark navy + image container) ---------- */
.mm-hero-card {
    display: flex;
    align-items: stretch;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
}

/* ---------- Left: Text panel ---------- */
.mm-hero-text {
    flex: 0 0 54%;
    background: var(--gradient-primary);
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mm-hero-title {
    font-size: 36px;
    font-weight: var(--font-bold);
    color: var(--white);
    line-height: 1.3;
}

.mm-hero-paragraph {
    font-size: 14px;
    line-height: 1.5;
    color: #c8d8e8!important;
    margin-bottom:15px;
}

/* ---------- Button ---------- */
.mm-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    margin-top: 8px;
    color: var(--white);
    font-size: 18px;
    font-weight: var(--font-regular);
    padding: 14px 30px 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s ease;
    background: #c0392b;
}

    .mm-hero-btn:hover {
        background-color: #a93226;
        color: var(--white) !important;
    }

    .mm-hero-btn svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

/* ---------- Right: Image panel ---------- */
.mm-hero-image-wrap {
    flex: 1;
    min-height: 400px;
    overflow: hidden;
}

.mm-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
    .mm-hero-card {
        flex-direction: column;
    }

    .mm-hero-text {
        flex: none;
        padding: 36px 28px;
    }

    .mm-hero-image-wrap {
        min-height: 280px;
    }
}
/*#endregion */

/*#region team-section */
/* =====================================================
   Meet the Team – Section Styles
   File: meet-the-team.css
   ===================================================== */

/** {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #f0f2f5;
    font-family: Arial, Helvetica, sans-serif;
}
*/
/* ---------- Section ---------- */
.team-section {
    background-color: var(--gray);
}

.team-section > div  {
    padding: 60px 20px;
    max-width: 1330px;
    margin: 0 auto;
}

/* ---------- Header ---------- */
.team-header {
    text-align: center;
    margin-bottom: 48px;
}

.team-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a3a5c;
    margin-bottom: 10px;
}

.team-subtitle {
    font-size: 15px;
    color: #666666;
}

/* ---------- Grid ---------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ---------- Card ---------- */
.team-card {
    background: var(--white);
    border-radius: 14px;
    padding: 36px 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    box-shadow: var(--shadow-primary);
}

/* ---------- Photo ---------- */
.team-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin-bottom: 8px;
}

/* ---------- Name ---------- */
.team-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a3a5c;
}

/* ---------- Role ---------- */
.team-role {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

/* ---------- Email ---------- */
.team-email {
    font-size: 14px;
    color: #c0392b;
    text-decoration: none;
    margin-top: 4px;
}

    .team-email:hover {
        text-decoration: underline;
    }

/* ---------- Responsive ---------- */
@media (max-width: 700px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }
}
/*#endregion */


/*#region impact-section */
/* =====================================================
   See the Impact – Section Styles
   File: see-the-impact.css
   ===================================================== */

/** {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}
*/
/* ---------- Section ---------- */
.impact-section {
    padding: 60px 20px;
    max-width: 1330px;
    margin: 0 auto;
    
}

/* ---------- Header ---------- */
.impact-header {
    text-align: center;
    margin-bottom: 40px;
}

.impact-title {
    font-size: 36px;
    font-weight: var(--font-bold);
    color: #1a3a5c;
    margin-bottom: 14px;
}

.impact-subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    max-width: 620px;
    margin: 0 auto;
}

/* ---------- Video wrapper (16:9 responsive) ---------- */
.impact-video-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 ratio */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
}

    .impact-video-wrap iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
    }

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
    .impact-section {
        padding: 40px 20px;
    }
}
/*#endregion */

/*#region cta-section (Pre-footer) */
/* =====================================================
   CTA Banner – Be Part of Something Magnetic
   File: cta-banner.css
   ===================================================== */

/** {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}
*/
/* ---------- Section ---------- */
.cta-section {
    background: linear-gradient(135deg, #1a3a5c 0%, #2a5a8c 100%);
    padding: 64px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* ---------- Title ---------- */
.cta-title {
    font-size: 42px;
    font-weight: var(--font-bold);
    color: var(--white);
    line-height: 1.2;
}

/* ---------- Text ---------- */
.cta-text {
    font-size: 22px;
    line-height: 1.75;
    color: var(--white);/* #c8d8e8;*/
    max-width: 740px;
}

/* ---------- Buttons row ---------- */
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

.cta-btn {
    display: inline-block;
    font-size: 15px;
    font-weight: var(--white);
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

/* Red filled button */
.cta-btn--red {
    background-color: #c0392b;
    color: var(--white)!important;
    border: 2px solid #c0392b;
}

    .cta-btn--red:hover {
        background-color: #a93226;
        border-color: #a93226;
    }

/* White outline button */
.cta-btn--outline {
    background-color: transparent;
    color: var(--white)!important;
    border: 2px solid var(--white);
}

    .cta-btn--outline:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

/* ---------- Responsive ---------- */
@media (max-width: 500px) {
    .cta-title {
        font-size: 24px;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }
}
/*#endregion */

/*#region Footer */

/* =====================================================
   Site Footer – Styles
   File: footer.css
   ===================================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
}

/* ---------- Footer wrapper ---------- */
.site-footer {
    background-color: #1a3a5c;
    padding: 48px 0 24px;
}

/* ---------- Main row ---------- */
.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    max-width: 1330px;
    margin: 0 auto;
    padding-bottom: 36px;
    padding-left: 20px;
    padding-right: 20px;
}

/* ---------- Brand column ---------- */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    width: 120px;
    opacity: 0.95;
}

.footer-tagline {
    font-size: 14px;
    color: var(--white) /*#a0bcd4*/;
    line-height: 1.5;
}

/* ---------- Info columns ---------- */
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-heading {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.footer-text {
    font-size: 14px;
    color: var(--white) /*#a0bcd4*/;
    line-height: 1.6;
    margin-bottom: 0px;
}

/* ---------- Links ---------- */
.footer-link {
    color: var(--white); /*#a0bcd4;*/
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

    .footer-link:hover {
        color: var(--white); /*#ffffff;*/
    }

.footer-link--external {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 6px;
}

    .footer-link--external svg {
        width: 12px;
        height: 12px;
        flex-shrink: 0;
    }

/* ---------- Divider ---------- */
.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 1100px;
    margin: 0 auto 20px;
}

/* ---------- Bottom bar ---------- */
.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: var(--white) /*#7a9ab8*/;
}

/* ---------- Responsive ---------- */
@media (max-width: 700px) {
    .site-footer {
        padding: 40px 24px 20px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
/*#endregion */

/*#region photo gallery-section */

/* =====================================================
   Our Community in Action – Gallery Section Styles
   File: community-gallery.css
   ===================================================== */
/*
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #f0f2f5;
    font-family: Arial, Helvetica, sans-serif;
}*/

/* ---------- Section ---------- */
.gallery-section {
    background-color:var(--gray)
}
.gallery-section > div{
    padding: 60px 20px;
    max-width: 1330px;
    margin: 0 auto;

}
@media (max-width: 990px) {
    .gallery-section > div {
        padding: 30px 20px;
    }
}
/* ---------- Header ---------- */
.gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a3a5c;
    margin-bottom: 10px;
}

.gallery-subtitle {
    font-size: 15px;
    color: #666;
}

/*#endregion */

/*#region campaign-cabinet-section */
section.campaign-cabinet-section{
    background-color:var(--gray);
}

/*#endregion */

.navbar-toggler.collapsed i.bi.bi-x {
    display: none !important;
}

#about,
#progress,
#how-to-give,
#cabinet,
#impact {
    scroll-margin-top: 120px;
}
