/* Shreen Prince Foundation — Complete Stylesheet */

:root {
    --primary: #0b4f9c;
    --primary-dark: #07376d;
    --primary-light: #eaf3ff;
    --secondary: #159447;
    --secondary-dark: #0d6f34;
    --gold: #e4ad2c;
    --gold-light: #fff5d9;
    --dark: #132238;
    --text: #4a586c;
    --muted: #6b7788;
    --white: #ffffff;
    --light: #f5f8fc;
    --border: #dce5ef;
    --danger: #b42318;
    --danger-light: #fff0ee;
    --success: #08783e;
    --success-light: #eafaf1;
    --shadow: 0 12px 35px rgba(18, 43, 76, 0.1);
    --shadow-large: 0 20px 60px rgba(18, 43, 76, 0.15);
    --radius: 18px;
    --radius-small: 10px;
    --transition: 0.25s ease;
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font: 16px/1.65 Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition:
        color var(--transition),
        background-color var(--transition),
        transform var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

h1,
h2,
h3,
h4 {
    margin: 0 0 16px;
    color: var(--dark);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    letter-spacing: -0.025em;
}

h3 {
    font-size: 1.3rem;
}

p {
    margin: 0 0 18px;
}

ul {
    margin-top: 0;
}

address {
    font-style: normal;
}

.content,
.header-container,
.footer-container,
.footer-bottom {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 90px 0;
}

.section-light {
    background: var(--light);
}

.section-blue {
    color: var(--white);
    background:
        radial-gradient(
            circle at top right,
            rgba(255, 255, 255, 0.12),
            transparent 35%
        ),
        linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.section-blue h2,
.section-blue h3 {
    color: var(--white);
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 45px;
    text-align: center;
}

.section-heading p {
    color: var(--muted);
    font-size: 1.06rem;
}

.section-blue .section-heading p {
    color: rgba(255, 255, 255, 0.83);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--secondary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.section-blue .eyebrow,
.page-hero .eyebrow {
    color: #ffda74;
}

.skip-link {
    position: fixed;
    top: -100px;
    left: 20px;
    z-index: 9999;
    padding: 12px 18px;
    color: #ffffff;
    background: var(--dark);
    border-radius: 8px;
}

.skip-link:focus {
    top: 20px;
}

:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 82px;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(220, 229, 239, 0.9);
    box-shadow: 0 5px 20px rgba(12, 46, 83, 0.06);
    backdrop-filter: blur(14px);
}

.header-container {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    gap: 12px;
    color: var(--dark);
}

.brand-mark {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(
        145deg,
        var(--primary),
        var(--primary-dark)
    );
    border: 3px solid var(--gold);
    border-radius: 50%;
    box-shadow: 0 7px 18px rgba(11, 79, 156, 0.22);
    font-size: 0.88rem;
    font-weight: 900;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text strong {
    color: var(--dark);
    font-size: 1rem;
    line-height: 1.25;
}

.brand-text small {
    margin-top: 2px;
    color: var(--secondary);
    font-size: 0.68rem;
    font-weight: 700;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

.main-navigation > a {
    padding: 10px 9px;
    color: var(--dark);
    border-radius: 8px;
    font-size: 0.91rem;
    font-weight: 700;
    white-space: nowrap;
}

.main-navigation > a:hover,
.main-navigation > a.active {
    color: var(--primary);
    background: var(--primary-light);
}

.main-navigation .nav-support {
    margin-left: 5px;
    padding: 11px 17px;
    color: #ffffff;
    background: var(--secondary);
    border-radius: 999px;
}

.main-navigation .nav-support:hover,
.main-navigation .nav-support.active {
    color: #ffffff;
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 9px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 9px;
}

.menu-toggle span {
    display: block;
    width: 23px;
    height: 2px;
    margin: 5px auto;
    background: var(--dark);
    transition: var(--transition);
}


/* Dropdown navigation */

.navigation-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 9px;
    color: var(--dark);
    background: transparent;
    border: 0;
    border-radius: 8px;
    font-size: 0.91rem;
    font-weight: 700;
    line-height: inherit;
    white-space: nowrap;
    transition:
        color var(--transition),
        background-color var(--transition);
}

.dropdown-toggle:hover,
.dropdown-toggle.active,
.navigation-dropdown.open > .dropdown-toggle {
    color: var(--primary);
    background: var(--primary-light);
}

.dropdown-arrow {
    display: inline-block;
    font-size: 0.75rem;
    line-height: 1;
    transition: transform var(--transition);
}

.navigation-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 13px);
    left: 50%;
    z-index: 1100;
    display: none;
    width: 220px;
    padding: 9px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 13px;
    box-shadow: var(--shadow-large);
    transform: translateX(-50%);
}

.dropdown-menu::before {
    position: absolute;
    top: -8px;
    left: 50%;
    width: 15px;
    height: 15px;
    content: "";
    background: #ffffff;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
    transform: translateX(-50%) rotate(45deg);
}

.navigation-dropdown.open .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    padding: 11px 13px;
    color: var(--dark);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: normal;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    color: var(--primary);
    background: var(--primary-light);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    color: #ffffff;
    background: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(11, 79, 156, 0.18);
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
}

.btn:hover {
    color: #ffffff;
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-green {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-green:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
}

.btn-gold {
    color: var(--dark);
    background: var(--gold);
    border-color: var(--gold);
}

.btn-outline {
    color: var(--primary);
    background: transparent;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    display: grid;
    min-height: 670px;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(228, 173, 44, 0.23),
            transparent 25%
        ),
        radial-gradient(
            circle at 15% 80%,
            rgba(21, 148, 71, 0.28),
            transparent 30%
        ),
        linear-gradient(125deg, #062e5c, #0b4f9c 55%, #1262b2);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
    padding: 100px 0;
}

.hero-copy {
    max-width: 780px;
}

.hero h1 {
    color: #ffffff;
}

.hero h1 span {
    color: #ffda74;
}

.hero p {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero .button-group {
    margin-top: 30px;
}

.hero-stats {
    display: grid;
    max-width: 850px;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 55px;
}

.stat-box {
    padding: 22px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

.stat-box strong {
    display: block;
    color: #ffffff;
    font-size: 1.6rem;
}

.stat-box span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 95px 0;
    color: #ffffff;
    background:
        radial-gradient(
            circle at right,
            rgba(228, 173, 44, 0.28),
            transparent 30%
        ),
        linear-gradient(130deg, var(--primary-dark), var(--primary));
    text-align: center;
}

.page-hero h1 {
    color: #ffffff;
    font-size: clamp(2.3rem, 5vw, 4rem);
}

.page-hero p {
    max-width: 670px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.83);
    font-size: 1.1rem;
}


/* =========================================================
   GRIDS AND CARDS
   ========================================================= */

.grid {
    display: grid;
    gap: 25px;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.card-image {
    width: 100%;
    height: 235px;
    object-fit: cover;
    background: var(--primary-light);
}

.card-body {
    padding: 25px;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-bottom: 12px;
    color: var(--secondary);
    font-size: 0.87rem;
    font-weight: 700;
}

.icon-card {
    position: relative;
    padding: 30px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.icon-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 75px;
    height: 5px;
    content: "";
    background: linear-gradient(
        90deg,
        var(--primary),
        var(--secondary)
    );
}

.icon-card .icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 20px;
    place-items: center;
    color: var(--primary);
    background: var(--primary-light);
    border-radius: 16px;
    font-size: 1.5rem;
    font-weight: 900;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.about-visual {
    position: relative;
    min-height: 460px;
    padding: 35px;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(
        145deg,
        rgba(11, 79, 156, 0.93),
        rgba(7, 55, 109, 0.96)
    );
    border-radius: 30px;
    box-shadow: var(--shadow-large);
}

.about-visual h3 {
    position: relative;
    z-index: 2;
    margin-top: 170px;
    color: #ffffff;
    font-size: 2rem;
}

.about-visual p {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.83);
}

.check-list {
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    margin-bottom: 14px;
    padding-left: 31px;
}

.check-list li::before {
    position: absolute;
    top: 2px;
    left: 0;
    display: grid;
    width: 21px;
    height: 21px;
    place-items: center;
    color: #ffffff;
    content: "✓";
    background: var(--secondary);
    border-radius: 50%;
    font-size: 0.76rem;
    font-weight: 900;
}


/* =========================================================
   SUPPORT AND BANK DETAILS
   ========================================================= */

.support-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
}

.support-card .card-body {
    display: flex;
    height: 100%;
    flex-direction: column;
}

.support-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

.bank-details {
    padding: 30px;
    background: var(--gold-light);
    border: 1px solid #f0d47f;
    border-radius: var(--radius);
}

.bank-details dl {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 13px 25px;
    margin: 0;
}

.bank-details dt {
    color: var(--dark);
    font-weight: 800;
}

.bank-details dd {
    margin: 0;
    overflow-wrap: anywhere;
}


/* =========================================================
   GALLERY
   ========================================================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    background: var(--primary-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.gallery-item img {
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 45px 20px 18px;
    color: #ffffff;
    background: linear-gradient(
        transparent,
        rgba(4, 25, 50, 0.9)
    );
}

.gallery-caption h2,
.gallery-caption h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.08rem;
}


/* =========================================================
   FORMS
   ========================================================= */

.form {
    display: grid;
    max-width: 900px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin: 0 auto;
    padding: 35px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form label {
    display: flex;
    flex-direction: column;
    gap: 7px;
    color: var(--dark);
    font-size: 0.92rem;
    font-weight: 800;
}

.form .full {
    grid-column: 1 / -1;
}

.form input,
.form select,
.form textarea {
    width: 100%;
    padding: 13px 14px;
    color: var(--dark);
    background: #ffffff;
    border: 1px solid #becbd9;
    border-radius: var(--radius-small);
    outline: none;
}

.form textarea {
    min-height: 145px;
    resize: vertical;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(11, 79, 156, 0.11);
}

.notice {
    max-width: 900px;
    margin: 0 auto 25px;
    padding: 15px 18px;
    color: var(--success);
    background: var(--success-light);
    border: 1px solid #a7dfbf;
    border-radius: var(--radius-small);
    font-weight: 700;
}

.notice.error {
    color: var(--danger);
    background: var(--danger-light);
    border-color: #f2b8b1;
}

.empty-state {
    max-width: 720px;
    margin: 0 auto;
    padding: 50px 30px;
    background: var(--light);
    border: 1px dashed #b7c6d8;
    border-radius: var(--radius);
    text-align: center;
}


/* =========================================================
   CALL TO ACTION
   ========================================================= */

.cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 45px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--primary-dark),
        var(--primary)
    );
    border-radius: 25px;
    box-shadow: var(--shadow-large);
}

.cta h2 {
    color: #ffffff;
}

.cta p {
    max-width: 680px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    color: rgba(255, 255, 255, 0.76);
    background: #071d36;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
    gap: 45px;
    padding: 70px 0 45px;
}

.footer-brand {
    display: inline-block;
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 900;
}

.footer-column h2 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 1rem;
}

.footer-column ul {
    padding: 0;
    list-style: none;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.76);
}

.footer-column a:hover {
    color: #ffda74;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.86rem;
}

.footer-bottom p {
    margin: 0;
}


/* =========================================================
   ADMIN
   ========================================================= */

.admin-wrapper {
    min-height: 100vh;
    padding: 50px 20px;
    background: var(--light);
}

.admin-container {
    width: min(100%, 1180px);
    margin: 0 auto;
}

.admin-panel {
    padding: 30px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.table-wrap {
    overflow-x: auto;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-small);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 13px 15px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

th {
    color: var(--dark);
    background: var(--light);
    font-size: 0.85rem;
    text-transform: uppercase;
}

.badge {
    display: inline-block;
    padding: 5px 10px;
    color: var(--primary-dark);
    background: var(--primary-light);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
}

.badge.published {
    color: var(--success);
    background: var(--success-light);
}

.badge.draft {
    color: #925c00;
    background: var(--gold-light);
}


/* =========================================================
   HOMEPAGE CAROUSEL
   ========================================================= */

.home-carousel {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: var(--primary-dark);
}

.carousel-slides,
.carousel-slide {
    min-height: 650px;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 90px 0;
    visibility: hidden;
    opacity: 0;
    background-image: var(--slide-image);
    background-position: center;
    background-size: cover;
    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;
}

.carousel-slide.active {
    z-index: 2;
    visibility: visible;
    opacity: 1;
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(4, 31, 64, 0.94) 0%,
        rgba(4, 31, 64, 0.76) 48%,
        rgba(4, 31, 64, 0.25) 100%
    );
}

.carousel-content {
    position: relative;
    z-index: 3;
    width: min(calc(100% - 80px), var(--container));
    margin: 0 auto;
    color: #ffffff;
}

.carousel-content h1 {
    max-width: 760px;
    margin: 15px 0 22px;
    color: #ffffff;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.05;
}

.carousel-content p {
    max-width: 680px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
}

.btn-carousel-outline {
    color: #ffffff;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.75);
}

.btn-carousel-outline:hover {
    color: var(--dark);
    background: #ffffff;
    border-color: #ffffff;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    padding: 0;
    color: #ffffff;
    background: rgba(5, 39, 79, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    font-size: 1.5rem;
    transform: translateY(-50%);
}

.carousel-arrow:hover {
    background: var(--secondary);
}

.carousel-previous {
    left: 25px;
}

.carousel-next {
    right: 25px;
}

.carousel-dots {
    position: absolute;
    right: 0;
    bottom: 28px;
    left: 0;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.carousel-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid #ffffff;
    border-radius: 50%;
}

.carousel-dot.active {
    width: 34px;
    background: var(--secondary);
    border-radius: 10px;
}


/* =========================================================
   NEWS AND EVENTS TICKER
   ========================================================= */

.updates-ticker {
    display: grid;
    grid-template-columns: auto 1fr auto;
    min-height: 58px;
    overflow: hidden;
    color: #ffffff;
    background: var(--primary);
}

.ticker-label {
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 12px 26px;
    background: var(--secondary);
    font-weight: 800;
    white-space: nowrap;
}

.ticker-window {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    width: max-content;
    align-items: center;
    animation: news-ticker 35s linear infinite;
}

.ticker-track.paused {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-right: 60px;
    white-space: nowrap;
}

.ticker-item span {
    color: var(--gold);
    font-size: 0.65rem;
}

.ticker-control {
    padding: 10px 20px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.16);
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    font-weight: 700;
}

@keyframes news-ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* =========================================================
   HOMEPAGE HIGHLIGHTS
   ========================================================= */

.home-highlights {
    position: relative;
    z-index: 6;
    padding: 0 0 30px;
    background: var(--light);
}

.home-highlights .hero-stats {
    position: relative;
    margin-top: -42px;
}

.home-highlights .stat-box {
    min-height: 135px;
    color: var(--dark);
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    backdrop-filter: none;
}

.home-highlights .stat-box strong {
    color: var(--primary);
}

.home-highlights .stat-box span {
    color: var(--text);
}


/* =========================================================
   CURRENT UPDATES
   ========================================================= */

.current-updates-grid {
    align-items: stretch;
}

.update-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.update-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-large);
}

.update-card > a {
    display: block;
    overflow: hidden;
}

.update-card .card-image {
    display: block;
    width: 100%;
    height: 245px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.update-card:hover .card-image {
    transform: scale(1.05);
}

.update-card .card-body {
    padding: 25px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: var(--primary);
    font-weight: 800;
}

.section-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 38px;
}


/* =========================================================
   DONATION SECTION
   ========================================================= */

.donation-section {
    background: linear-gradient(
        135deg,
        rgba(11, 79, 156, 0.06),
        rgba(24, 142, 91, 0.08)
    );
}

.donation-layout {
    max-width: 980px;
    margin: 40px auto 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow-large);
}

.donation-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: var(--primary);
}

.donation-tab {
    min-height: 68px;
    padding: 14px 12px;
    color: rgba(255, 255, 255, 0.82);
    background: transparent;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    font-weight: 800;
}

.donation-tab:last-child {
    border-right: 0;
}

.donation-tab.active,
.donation-tab:hover,
.donation-tab:focus-visible {
    color: var(--dark);
    background: var(--gold);
}

.donation-panel {
    padding: 36px;
}

.donation-panel[hidden] {
    display: none;
}

.donation-introduction {
    margin-bottom: 25px;
}

.candidate-label {
    display: block;
    margin-bottom: 9px;
    color: var(--dark);
    font-weight: 800;
}

.candidate-select {
    width: 100%;
    min-height: 52px;
    padding: 12px 15px;
    color: var(--dark);
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 10px;
}

.candidate-select:focus {
    border-color: var(--primary);
    outline: 3px solid rgba(11, 79, 156, 0.13);
}

.candidate-bank-details {
    margin-top: 26px;
    padding: 28px;
    background: var(--light);
    border: 1px solid var(--border);
    border-left: 5px solid var(--secondary);
    border-radius: 14px;
}

.bank-detail-heading {
    margin-bottom: 22px;
}

.bank-detail-heading > span {
    display: inline-block;
    margin-bottom: 7px;
    color: var(--secondary-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bank-detail-heading h3 {
    margin-bottom: 6px;
    color: var(--primary);
}

.candidate-bank-details dl {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 12px 20px;
    margin: 0;
}

.candidate-bank-details dt {
    color: var(--dark);
    font-weight: 800;
}

.candidate-bank-details dd {
    margin: 0;
    overflow-wrap: anywhere;
}

.donation-warning {
    max-width: 980px;
    margin: 24px auto 0;
    padding: 18px 20px;
    color: #664d03;
    background: #fff7d6;
    border: 1px solid #ead78a;
    border-radius: 12px;
    line-height: 1.65;
}


/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */

@media (min-width: 901px) {
    .navigation-dropdown:hover .dropdown-menu,
    .navigation-dropdown:focus-within .dropdown-menu {
        display: block;
    }

    .navigation-dropdown:hover .dropdown-arrow,
    .navigation-dropdown:focus-within .dropdown-arrow {
        transform: rotate(180deg);
    }
}

@media (max-width: 1050px) {
    .brand-text small {
        display: none;
    }

    .main-navigation > a,
    .dropdown-toggle {
        padding-inline: 7px;
        font-size: 0.84rem;
    }

    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .main-navigation {
        position: fixed;
        top: 82px;
        right: 0;
        left: 0;
        display: none;
        max-height: calc(100vh - 82px);
        align-items: stretch;
        flex-direction: column;
        padding: 18px 20px 30px;
        overflow-y: auto;
        background: #ffffff;
        border-top: 1px solid var(--border);
        box-shadow: 0 20px 35px rgba(18, 43, 76, 0.15);
    }

    .main-navigation.open,
    .main-navigation.active {
        display: flex;
    }

    .main-navigation > a {
        padding: 13px 14px;
        font-size: 0.96rem;
    }

    .main-navigation .nav-support {
        margin: 5px 0 0;
        text-align: center;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .navigation-dropdown {
        display: block;
        width: 100%;
    }

    .dropdown-toggle {
        display: flex;
        width: 100%;
        min-height: 48px;
        justify-content: space-between;
        padding: 13px 14px;
        font-size: 0.96rem;
        text-align: left;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        margin: 5px 0 10px;
        padding: 6px;
        background: var(--light);
        box-shadow: none;
        transform: none;
    }

    .dropdown-menu::before {
        display: none;
    }

    .dropdown-menu a {
        padding: 12px 18px;
        font-size: 0.92rem;
    }

    .dropdown-menu a::before {
        margin-right: 8px;
        color: var(--secondary);
        content: "›";
        font-weight: 900;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .grid-3,
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-carousel,
    .carousel-slides,
    .carousel-slide {
        min-height: 590px;
    }

    .carousel-content {
        width: min(calc(100% - 80px), var(--container));
    }

    .updates-ticker {
        grid-template-columns: auto 1fr;
    }

    .ticker-control {
        display: none;
    }

    .donation-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .content,
    .header-container,
    .footer-container,
    .footer-bottom {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 65px 0;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        width: min(calc(100% - 28px), var(--container));
        padding: 80px 0;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        margin-top: 38px;
    }

    .page-hero {
        padding: 70px 0;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .form {
        grid-template-columns: 1fr;
        padding: 24px 18px;
    }

    .form .full {
        grid-column: auto;
    }

    .bank-details dl {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .cta {
        padding: 30px 22px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 55px;
    }

    .footer-bottom,
    .button-group {
        align-items: stretch;
        flex-direction: column;
    }

    .button-group .btn {
        width: 100%;
    }

    .home-carousel,
    .carousel-slides,
    .carousel-slide {
        min-height: 560px;
    }

    .carousel-slide {
        padding: 65px 0 90px;
    }

    .carousel-overlay {
        background: rgba(4, 31, 64, 0.82);
    }

    .carousel-content {
        width: min(calc(100% - 40px), var(--container));
        text-align: center;
    }

    .carousel-content .button-group {
        align-items: stretch;
    }

    .carousel-content .btn {
        width: 100%;
    }

    .carousel-arrow {
        top: auto;
        bottom: 20px;
        width: 38px;
        height: 38px;
        transform: none;
    }

    .carousel-previous {
        left: 18px;
    }

    .carousel-next {
        right: 18px;
    }

    .carousel-dots {
        bottom: 33px;
    }

    .updates-ticker {
        display: block;
    }

    .ticker-label {
        justify-content: center;
        min-height: 46px;
    }

    .ticker-window {
        min-height: 50px;
    }

    .home-highlights {
        padding-top: 24px;
    }

    .home-highlights .hero-stats {
        margin-top: 0;
    }

    .section-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .section-actions .btn {
        width: 100%;
    }

    .donation-tabs {
        grid-template-columns: 1fr;
    }

    .donation-panel {
        padding: 25px 18px;
    }

    .candidate-bank-details {
        padding: 22px 17px;
    }

    .candidate-bank-details dl {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .candidate-bank-details dd {
        margin-bottom: 11px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
/* =========================================================
   Founder and Co-Founder Section
   ========================================================= */

.leadership-section {
    overflow: hidden;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.leadership-card {
    display: grid;
    grid-template-columns: 190px 1fr;
    align-items: center;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(17, 63, 103, 0.12);
    border-radius: 22px;
    box-shadow: 0 16px 45px rgba(17, 63, 103, 0.10);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.leadership-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(17, 63, 103, 0.16);
}

.leadership-image-wrap {
    width: 100%;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
    background: #e9f0f6;
}

.leadership-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

.leadership-card:hover .leadership-image {
    transform: scale(1.04);
}

.leadership-content {
    padding: 30px 26px;
}

.leadership-position {
    display: inline-block;
    margin-bottom: 10px;
    color: #c7912f;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.leadership-content h3 {
    margin: 0 0 14px;
    color: #123f67;
    font-size: 1.55rem;
    line-height: 1.25;
}

.leadership-content p {
    margin: 0;
    color: #5b6875;
    line-height: 1.75;
}


/* =========================================================
   Floating WhatsApp Button
   ========================================================= */

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 54px;
    padding: 12px 20px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
    background: #25d366;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
    color: #ffffff;
    background: #128c4a;
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.30);
}

.floating-whatsapp:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 3px;
}

.whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #25d366;
    font-size: 17px;
    line-height: 1;
    background: #ffffff;
    border-radius: 50%;
}

.whatsapp-text {
    white-space: nowrap;
}


/* =========================================================
   Donation Programme Open and Closed States
   ========================================================= */

.donation-panel[hidden] {
    display: none !important;
}

.donation-tab {
    cursor: pointer;
}

.donation-tab.active,
.donation-tab[aria-expanded="true"] {
    color: #ffffff;
    background: #123f67;
    border-color: #123f67;
}


/* =========================================================
   Responsive Design
   ========================================================= */

@media (max-width: 900px) {
    .leadership-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
    }

    .leadership-card {
        grid-template-columns: 220px 1fr;
    }
}

@media (max-width: 600px) {
    .leadership-grid {
        gap: 24px;
        margin-top: 30px;
    }

    .leadership-card {
        display: block;
        border-radius: 18px;
    }

    .leadership-image-wrap,
    .leadership-image {
        min-height: 330px;
    }

    .leadership-image-wrap {
        height: 330px;
    }

    .leadership-content {
        padding: 24px 22px 28px;
        text-align: center;
    }

    .leadership-content h3 {
        font-size: 1.4rem;
    }

    .floating-whatsapp {
        right: 15px;
        bottom: 15px;
        width: 56px;
        height: 56px;
        min-height: 56px;
        padding: 0;
        border-radius: 50%;
    }

    .floating-whatsapp .whatsapp-text {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
    }

    .whatsapp-icon {
        width: 34px;
        height: 34px;
        font-size: 19px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .leadership-card,
    .leadership-image,
    .floating-whatsapp {
        transition: none;
    }
}

/* HEADER DONATION BUTTON — FINAL FIX */
#primary-navigation > a.donation-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-width: 115px !important;
    height: 48px !important;
    padding: 0 22px !important;

    color: #ffffff !important;
    background-color: #198754 !important;
    border: 2px solid #198754 !important;
    border-radius: 10px !important;

    font-size: 16px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-decoration: none !important;

    box-shadow: 0 5px 14px rgba(25, 135, 84, 0.25) !important;
}

#primary-navigation > a.donation-btn:hover,
#primary-navigation > a.donation-btn:focus {
    color: #ffffff !important;
    background-color: #116c43 !important;
    border-color: #116c43 !important;
    transform: translateY(-1px);
}

/* Mobile Donation button */
@media (max-width: 900px) {
    #primary-navigation > a.donation-btn {
        width: 100% !important;
        height: 48px !important;
        margin-top: 8px !important;
    }
}

html {
    scroll-behavior: smooth;
}

#donation-programmes {
    scroll-margin-top: 120px;
}

.footer-contact {
    font-style: normal;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact .contact-icon {
    width: 20px;
    flex: 0 0 20px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
}

.footer-contact a {
    overflow-wrap: normal;
    word-break: normal;
}

.footer-contact p {
    width: 100%;
}

.footer-contact a[href^="mailto:"] {
    font-size: 14px;
    white-space: nowrap;
}

@media (max-width: 420px) {
    .footer-contact a[href^="mailto:"] {
        font-size: 13px;
    }
}

/* ==================================================
   FINAL CLICK-CONTROLLED DROPDOWNS
   ================================================== */

.navigation-dropdown {
    position: relative;
}

.navigation-dropdown > .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

/* Closed state — overrides all old hover rules */
.navigation-dropdown > .dropdown-menu {
    display: none !important;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    z-index: 9999;
    width: 220px;
    min-width: 220px;
    margin: 0;
    padding: 9px;
    background: #ffffff;
    border: 1px solid #dfe6ec;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%);
}

/* Open only when JavaScript adds active */
.navigation-dropdown.active > .dropdown-menu {
    display: block !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Dropdown links */
.navigation-dropdown > .dropdown-menu a {
    display: block;
    width: 100%;
    padding: 11px 13px;
    color: #1f2937;
    background: transparent;
    border-radius: 8px;
    text-decoration: none;
    white-space: normal;
}

.navigation-dropdown > .dropdown-menu a:hover,
.navigation-dropdown > .dropdown-menu a:focus,
.navigation-dropdown > .dropdown-menu a.active {
    color: #168347;
    background: #f1f8f4;
}

/* Arrow */
.navigation-dropdown .dropdown-arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}

.navigation-dropdown.active > .dropdown-toggle .dropdown-arrow {
    transform: rotate(180deg) !important;
}

/* Active dropdown button */
.navigation-dropdown.active > .dropdown-toggle {
    color: #168347;
    background: #f1f8f4;
}

/* Mobile */
@media (max-width: 980px) {
    .navigation-dropdown {
        display: block;
        width: 100%;
    }

    .navigation-dropdown > .dropdown-toggle {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
    }

    .navigation-dropdown > .dropdown-menu {
        position: static;
        width: 100%;
        min-width: 0;
        margin: 5px 0 8px;
        padding: 5px 0 5px 14px;
        border: 0;
        border-radius: 8px;
        box-shadow: none;
        background: #f7faf8;
        transform: none;
    }

    .navigation-dropdown.active > .dropdown-menu {
        display: block !important;
    }
}

/* Desktop dropdown hover usability fix */
@media (min-width: 901px) {
    .main-navigation .navigation-dropdown {
        position: relative;
    }

    .main-navigation .navigation-dropdown > .dropdown-menu {
        top: 100% !important;
        margin-top: 0 !important;
    }

    .main-navigation .navigation-dropdown:hover > .dropdown-menu,
    .main-navigation .navigation-dropdown:focus-within > .dropdown-menu,
    .main-navigation .navigation-dropdown.open > .dropdown-menu,
    .main-navigation .navigation-dropdown.active > .dropdown-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
}

/* About section helping-hands symbol */
.about-support-symbol {
    position: absolute;
    top: 48px;
    right: 48px;
    z-index: 1;
    width: 210px;
    height: 175px;
    opacity: 0.24;
    pointer-events: none;
}

.about-support-symbol svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #ffffff;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-support-symbol .symbol-heart {
    fill: rgba(22, 195, 92, 0.15);
    stroke: #2ed573;
}

@media (max-width: 600px) {
    .about-support-symbol {
        top: 60px;
        right: 22px;
        width: 150px;
        height: 130px;
    }
}

/* =========================================================
   Footer Social Media Icons
   ========================================================= */

.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
}

.footer-social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.footer-social-link svg {
    display: block;
    width: 21px;
    height: 21px;
}

/* Instagram icon drawing */
.footer-social-instagram svg rect,
.footer-social-instagram svg circle:not(.social-icon-dot) {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.footer-social-instagram .social-icon-dot {
    fill: currentColor;
    stroke: none;
}

/* Facebook icon drawing */
.footer-social-facebook svg path {
    fill: currentColor;
}

/* YouTube icon drawing */
.footer-social-youtube svg rect {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.footer-social-youtube .social-icon-play {
    fill: currentColor;
    stroke: none;
}

/* Platform colours when hovering */
.footer-social-instagram:hover,
.footer-social-instagram:focus-visible {
    background: #e1306c;
    border-color: #e1306c;
    transform: translateY(-3px);
}

.footer-social-facebook:hover,
.footer-social-facebook:focus-visible {
    background: #1877f2;
    border-color: #1877f2;
    transform: translateY(-3px);
}

.footer-social-youtube:hover,
.footer-social-youtube:focus-visible {
    background: #ff0000;
    border-color: #ff0000;
    transform: translateY(-3px);
}

/* Universal admin Back button */

.admin-back-button {
    display: inline-flex;
    min-height: 44px;
    padding: 10px 20px;
    align-items: center;
    justify-content: center;
    color: #12365a !important;
    background: #e8eef5;
    border: 1px solid #d3dee8;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none !important;
}

.admin-back-button:hover,
.admin-back-button:focus-visible {
    color: #ffffff !important;
    background: #12365a;
    transform: translateY(-2px);
}

/* Footer developer credit */

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.footer-credit {
    color: rgba(255, 255, 255, 0.32);
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}

.footer-credit strong {
    color: inherit;
    font-weight: inherit;
}

.footer-tagline {
    text-align: right;
}

@media (max-width: 760px) {
    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-credit,
    .footer-tagline {
        text-align: center;
    }
}