/* ============================================================
   Brand Color Palette — CSS Custom Properties
   Eagle Blue   #024152  → --color-primary    (main CTA, nav, headings)
   Pacific Blue #0faec3  → --color-secondary  (hover tints, blinking buttons)
   Cinnabar     #ec462e  → --color-accent      (alerts, badges, highlights)
   Rosso Corsa  #d60201  → --color-red         (strong red emphasis)
   Meat Brown   #eaa83a  → --color-warm        (gold/warm accent)
   Primary tint #e8f3f6  → --color-primary-tint (light bg sections)
   ============================================================ */
:root {
    --color-primary: #024152;
    --color-secondary: #0faec3;
    --color-accent: #ec462e;
    --color-red: #d60201;
    --color-warm: #eaa83a;
    --color-primary-tint: #e8f3f6;
    --site-max-width: 1440px;
    --site-padding: clamp(16px, 4vw, 80px);
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: "Tajawal Regular", serif;
    overflow: hidden;
}

.nooverlay {
    position: relative;
    z-index: 7;
}

/** tajawal arabic font **/
@font-face {
    font-family: "Tajawal Regular";
    font-style: normal;
    font-weight: normal;
    src:
        local("Tajawal Regular"),
        url("../tajawal/Tajawal-Regular.woff") format("woff");
}

@font-face {
    font-family: "Tajawal ExtraLight";
    font-style: normal;
    font-weight: normal;
    src:
        local("Tajawal ExtraLight"),
        url("../tajawal/Tajawal-ExtraLight.woff") format("woff");
}

@font-face {
    font-family: "Tajawal Light";
    font-style: normal;
    font-weight: normal;
    src:
        local("Tajawal Light"),
        url("../tajawal/Tajawal-Light.woff") format("woff");
}

@font-face {
    font-family: "Tajawal Medium";
    font-style: normal;
    font-weight: normal;
    src:
        local("Tajawal Medium"),
        url("../tajawal/Tajawal-Medium.woff") format("woff");
}

@font-face {
    font-family: "Tajawal Bold";
    font-style: normal;
    font-weight: normal;
    src:
        local("Tajawal Bold"),
        url("../tajawal/Tajawal-Bold.woff") format("woff");
}

@font-face {
    font-family: "Tajawal ExtraBold";
    font-style: normal;
    font-weight: normal;
    src:
        local("Tajawal ExtraBold"),
        url("../tajawal/Tajawal-ExtraBold.woff") format("woff");
}

@font-face {
    font-family: "Tajawal Black";
    font-style: normal;
    font-weight: normal;
    src:
        local("Tajawal Black"),
        url("../tajawal/Tajawal-Black.woff") format("woff");
}

/* Global Style */
h1 {
    color: var(--color-primary);
    font-size: 24px;
    font-weight: bold;
    margin: 0.5em auto;
}

.headTxt {
    text-align: center;
    margin: 0 auto;
    display: table-cell;
    vertical-align: middle;
    /* height: 100vh; */
    padding: 3rem;
}

.headTxt h1 {
    color: var(--color-primary);
    font-size: 32px;
    font-weight: bold;
}

.headTxt p {
    color: #191a15;
    font-size: 18px;
    font-weight: bold;
}

.parallel-content-div h1 {
    color: var(--color-primary);
    font-size: 22px;
    font-weight: bold;
}

.parallel-content-div p {
    color: #191a15;
    font-size: 18px;
    font-weight: normal;
    line-height: 1.8;
}

.menu {
    /* background:#428bca; */
    background-color: #f8f9fad7 !important;
    color: #fff;
    height: auto;
    line-height: 30px;
    letter-spacing: 1px;
    width: 100%;
    z-index: 1;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.menu.custom-menu-edit {
    padding: 12px var(--site-padding);
    position: fixed;
    top: 0;
    display: flex;
    justify-content: center;
}

.menu.custom-menu-edit > .navbar-brand,
.menu.custom-menu-edit > .navbar-toggler,
.menu.custom-menu-edit > .navbar-collapse {
    max-width: var(--site-max-width);
}

.content {
    margin-top: 10px;
}

.menu-padding {
    padding-top: 40px;
}

.content p {
    margin-bottom: 20px;
}

.sticky {
    position: fixed;
    top: 0;
}

.sticky-fixed {
    position: fixed;
    top: 0;
}

.justify-text-head {
    text-align: justify;
}

/* Define a new class for the specific anchor styles */
.special-anchor {
    position: relative;
    background: var(--color-primary);
    color: #fff !important;
    text-decoration: none;
    text-transform: uppercase;
    /* font-size: 1.5rem;
    letter-spacing: 0.1rem;
    padding: 0.75rem 1.5rem; */
    transition: 0.5s;
}

.special-anchor:hover {
    letter-spacing: 0.25rem;
    background: var(--color);
    color: var(--color);
    box-shadow: 0 0 50px 10px var(--color);
}

.special-anchor::before {
    content: "";
    position: absolute;
    inset: 2px;
    background: var(--color-primary);
}

.special-anchor span {
    position: relative;
    z-index: 1;
}

.special-anchor i {
    position: absolute;
    inset: 0;
    display: block;
}

.special-anchor i::before {
    content: "";
    position: absolute;
    top: -3.5px;
    left: 80%;
    width: 10px;
    height: 5px;
    border: 2px solid var(--color);
    /* background: hsl(0, 1%, 43%); */
    transform: translateX(-50%);
    transition: 0.5s;
}

.special-anchor:hover i::before {
    left: 20%;
    width: 20px;
}

.special-anchor i::after {
    content: "";
    position: absolute;
    bottom: -3.5px;
    left: 20%;
    width: 10px;
    height: 5px;
    border: 2px solid var(--color);
    background: hsl(0, 1%, 43%);
    transform: translateX(-50%);
    transition: 0.5s;
}

.special-anchor:hover i::after {
    left: 80%;
    width: 20px;
}

/* .shine-box:hover:before {
    left: 655px;
  } */

.logoImgSymbol {
    width: 30px;
}

.logoImg {
    width: 149px;
}

.navbar-light .navbar-nav .nav-link {
    font-weight: bold;
    color: black;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 8px;
    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: #fff;
    background: var(--color-primary);
}

.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
    color: #fff;
    background: var(--color-primary);
}

.navbar-nav {
    margin: 0 auto 0 0;
    gap: 16px;
}

.nav-item {
    padding: 0 0.25rem;
}

.tab-content {
    width: 100%;
}

.nav-tabs {
    border-bottom: 1px solid #dee2e6;
    width: 100%;
    font-size: 16px;
    padding: 0;
}

.nav-tabs .nav-item {
    margin-bottom: -1px;
    width: 50%;
    text-align: center;
}

.nav-tabs-news {
    color: var(--color-primary);
    font-family: "Tajawal Bold";
    border: 2px solid var(--color-primary) !important;
    border-radius: 8px !important;
    margin-bottom: 0.5em;
}

.nav-tabs-news:hover,
.nav-tabs-news:active {
    background: var(--color-primary);
    color: #fff;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background: var(--color-primary);
    color: #fff;
}

.newsCard {
    text-align: right;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    margin-bottom: 16px;
    background-color: white;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.newsCard:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.newsCard .news-content-div {
    padding: 20px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.newsCard img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 0;
}

.newsCard h1 {
    color: #191a15;
    font-size: 20px;
    font-family: "Tajawal Bold";
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: unset;
    margin-bottom: 8px;
}

.newsCard p {
    color: #6c757d;
    margin-bottom: 12px;
    font-size: 16px;
    flex: 1;
}

.newsCard span {
    margin: 0 0 8px;
    display: block;
    font-size: 14px;
    color: #999;
}

.newsCard a {
    color: var(--color-primary) !important;
    text-decoration: none !important;
    cursor: pointer;
    border: 1.5px solid var(--color-primary);
    font-size: 14px;
    font-family: "Tajawal Medium";
    border-radius: 8px;
    padding: 8px 24px;
    display: inline-block;
    align-self: flex-start;
    margin-top: auto;
    letter-spacing: 0.02em;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.newsCard a:hover {
    background: var(--color-primary);
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(2, 65, 82, 0.2);
}

/* testimonial */
.gtco-testimonials {
    position: relative;
    margin-top: 30px;
}

.gtco-testimonials h2 {
    font-size: 30px;
    text-align: center;
    color: #333333;
    margin-bottom: 50px;
}

.gtco-testimonials .owl-stage-outer {
    padding: 30px 0;
}

.gtco-testimonials .owl-nav {
    display: none;
}

.gtco-testimonials .owl-dots {
    text-align: center;
}

.gtco-testimonials .owl-dots span {
    position: relative;
    height: 15px !important;
    width: 15px !important;
    border-radius: 50%;
    display: block;
    background: #fff !important;
    border: 2px solid var(--color-primary);
    margin: 0 5px;
}

.gtco-testimonials .owl-dots .active {
    box-shadow: none;
}

.gtco-testimonials .owl-dots .active span {
    background: var(--color-primary) !important;
    box-shadow: none;
    height: 15px;
    width: 15px;
    margin-bottom: -1px;
}

.gtco-testimonials .card {
    background: var(--color-primary-tint);
    box-shadow: 0 8px 30px -7px #c9dff0;
    margin: 0 20px;
    padding: 0 10px;
    border-radius: 20px;
    border: 0;
}

.gtco-testimonials-sponsor .card {
    background: #fff;
    box-shadow: 0 8px 30px -7px #c9dff0;
    /* margin: 0 20px;
    padding: 0 10px; */
    border-radius: 20px;
    border: 0;
}

.gtco-testimonials .card .card-img-top {
    max-width: 200px;
    border-radius: 50% 0 50% 50%;
    margin: 15px auto 0;
    box-shadow: 0 8px 20px -4px #95abbb;
    width: 100%;
    height: 200px;
}

.gtco-testimonials .card h5 {
    font-family: "Tajawal Bold";
    color: #3d3d3d;
    font-size: 17px;
    line-height: 1.3;
    margin-bottom: 16px;
}

.gtco-testimonials .card h5 span {
    font-size: 18px;
    color: #666666;
}

.gtco-testimonials .card p {
    font-size: 15px;
    color: #555;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.gtco-testimonials .card span {
    font-family: "Tajawal Bold";
    color: #a4a4a4;
    font-size: 13px;
    font-weight: 300;
}

.gtco-testimonials .active {
    opacity: 0.5;
    transition: all 0.3s;
}

.gtco-testimonials-sponsor .active {
    /* opacity: 0.5; */
    transition: all 0.3s;
}

.gtco-testimonials .center {
    opacity: 1;
}

.gtco-testimonials .center h5 {
    font-size: 20px;
    color: var(--color-primary);
}

.gtco-testimonials .center h5 span {
    font-size: 20px;
}

.gtco-testimonials .center .card-img-top {
    width: 100%;
    height: 229px;
    max-width: 229px;
    object-fit: cover;
    background-color: white;
}

.header-css {
    margin-top: 25px;
}

@media (max-width: 1024px) {
    .menu.custom-menu-edit {
        padding: 16px 12px;
    }
}

@media (max-width: 767px) {
    .gtco-testimonials {
        margin-top: 20px;
    }
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    outline: 0;
}

.owl-carousel button.owl-dot {
    outline: 0;
}

ul.testComments {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 16px;
}

ul.testComments li {
    list-style: none;
    display: inline;
    float: right;
    text-align: right;
}

ul.testComments li:nth-child(1) {
    width: 30%;
}

ul.testComments li:nth-child(2) {
    width: 70%;
}

.content {
    text-align: right;
}

.content h1 {
    font-size: 22px;
    color: var(--color-primary);
}

.content p {
    font-size: 18px;
    color: #6c757d;
}

ul.animeenos {
    margin: 3em auto;
    padding: 0;
    text-align: center;
}

ul.animeenos li {
    list-style: none;
    display: inline-block;
    padding: 1rem;
}

.nos {
    text-align: center;
}

.nos h2 {
    font-size: 15px;
    color: #6c757d;
    padding: 0.5em 0;
    margin: 0;
}

.nos h1 {
    font-size: 30px;
    color: var(--color-warm);
    margin: 0;
    font-family: "Tajawal Bold";
}

/* logo slider */
.single-logo img {
    width: 170px !important;
    height: 169px;
}

.section-padding {
    padding: 0 0;
}

.brand-carousel {
    margin-top: 0;
}

.fadeInDown {
    visibility: visible !important;
}

/* =========================================================
   Donate Now Navbar Button — always visible, high contrast
   ========================================================= */
.navbar-light .navbar-nav .nav-link.donate-now {
    background-color: var(--color-secondary);
    color: #fff !important;
    font-weight: bold;
    border-radius: 8px;
    padding: 10px 28px;
    box-shadow: 0 2px 12px rgba(15, 174, 195, 0.35);
    transition:
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.2s ease;
}

.navbar-light .navbar-nav .nav-link.donate-now:hover,
.navbar-light .navbar-nav .nav-link.donate-now:focus {
    background-color: var(--color-primary) !important;
    color: #fff !important;
    box-shadow: 0 4px 18px rgba(2, 65, 82, 0.45);
    transform: translateY(-1px);
}

/* Subtle ring-pulse so the button draws the eye */
@keyframes donate-ring {
    0% {
        box-shadow: 0 2px 12px rgba(15, 174, 195, 0.35);
    }
    50% {
        box-shadow: 0 2px 20px rgba(15, 174, 195, 0.65);
    }
    100% {
        box-shadow: 0 2px 12px rgba(15, 174, 195, 0.35);
    }
}

.navbar-light .navbar-nav .nav-link.donate-now {
    animation: donate-ring 2.4s ease-in-out infinite;
}

/* Override active-state default (primary) so donate-now stays secondary */
.navbar-light .navbar-nav .active > .nav-link.donate-now,
.navbar-light .navbar-nav .nav-link.donate-now.active {
    background-color: var(--color-secondary) !important;
    color: #fff !important;
}

/* =========================================================
   Section Titles — decorative accent line
   ========================================================= */
#projectandnews h1,
#counternums h1,
#sponsors h1,
.parallel-row-section h1 {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 24px;
}

#projectandnews h1::after,
#sponsors h1::after {
    content: "";
    display: block;
    width: 56px;
    height: 4px;
    background: var(--color-secondary);
    border-radius: 2px;
    margin: 8px auto 0;
}

/* Counter section title uses warm gold underline to break the all-blue palette */
#counternums h1::after {
    content: "";
    display: block;
    width: 56px;
    height: 4px;
    background: var(--color-warm);
    border-radius: 2px;
    margin: 8px auto 0;
}

.parallel-content-div h1::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    background: var(--color-secondary);
    border-radius: 2px;
    margin: 6px 0 0;
}

/* =========================================================
   Parallel content sections — card-like treatment
   ========================================================= */
.parallel-content-div {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(2, 65, 82, 0.06);
}

.content-image-container {
    box-shadow: 0 12px 40px rgba(2, 65, 82, 0.15);
}

/* =========================================================
   Counter section — warm-tinted gradient to differentiate from blue sections
   ========================================================= */
#counternums {
    background: linear-gradient(135deg, #fdf8ee 0%, #fef3d0 60%, #fde9a8 100%);
}

#counternums .nos img {
    filter: drop-shadow(0 2px 8px rgba(234, 168, 58, 0.3));
}

/* =========================================================
   News (projectandnews) section — legible text overlay
   ========================================================= */
#projectandnews {
    background-color: rgba(2, 65, 82, 0.04);
}

/* =========================================================
   Donate card (donateBox) — warm gold accent (breaks all-blue palette)
   ========================================================= */
.donateBox {
    border-left: 4px solid var(--color-warm);
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.donateBox:hover {
    box-shadow: 0 8px 32px rgba(234, 168, 58, 0.22);
    transform: translateY(-4px);
}

/* =========================================================
   Banner hero buttons — cleaner hierarchy
   ========================================================= */
.home-banner-section .banner-btn-div .btn-text:first-child button {
    background: var(--color-secondary);
    border: 2px solid transparent;
}

.home-banner-section .banner-btn-div .btn-text:first-child button:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

/* =========================================================
   Testimonials — softer card shadow
   ========================================================= */
.gtco-testimonials .card {
    box-shadow: 0 6px 28px rgba(2, 65, 82, 0.1);
}

/* =========================================================
   Global Arabic text comfort
   ========================================================= */
.parallel-content-div p,
.counter-content-heading p,
.gtco-testimonials .card p {
    line-height: 1.9;
    letter-spacing: 0.01em;
}

/* =========================================================
   Sponsor logo cards — clean hover
   ========================================================= */
.gtco-testimonials-sponsor .card {
    transition:
        box-shadow 0.25s ease,
        transform 0.2s ease;
}

.gtco-testimonials-sponsor .card:hover {
    box-shadow: 0 6px 24px rgba(2, 65, 82, 0.12);
    transform: translateY(-3px);
}

/* =========================================================
   Footer — slight top-border accent
   ========================================================= */
footer {
    border-top: 4px solid var(--color-secondary);
}

/*
.owl-dots {
text-align: center;
margin-top: 4%;
}
.owl-dot {
display: inline-block;
height: 15px !important;
width: 15px !important;
background-color: #878787 !important;
opacity: 0.8;
border-radius: 50%;
margin: 0 5px;
}
.owl-dot.active {
background-color: #000 !important;
}
*/

footer {
    background: #000;
    padding: 3em var(--site-padding);
}

footer > .row {
    max-width: var(--site-max-width);
    margin: 0 auto;
}

footer p {
    color: #fff;
    text-align: right;
    font-family: "Tajawal Medium";
    font-size: 17px;
    text-indent: 1em;
}

.search_box {
    border: 1px solid #a6a6a6;
    position: relative;
    padding: 15px;
    border-radius: 50px;
    display: flex;
    margin-top: 2em;
    width: 100%;
    max-width: 368px;
}

.email_box {
    border: none;
    border-bottom: 1px solid var(--color-primary);
    border-radius: 0;
    padding: 12px 0px;
}

.search_box .search_btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-right: 32px;
    cursor: pointer;
}

.search_box .input_search {
    outline: none;
    border: 0;
    background: transparent;
    border-radius: 50px;
    padding: 15px 20px;
    width: 300px;
    height: 50px;
    color: #fff;
    font-size: 15px;
}

::placeholder {
    color: #a6a6a6;
}

::-webkit-input-placeholder {
    color: #a6a6a6;
}

:-ms-input-placeholder {
    color: #a6a6a6;
}

.footerContent {
    text-align: right;
    padding: 1em;
}

.footerContent h3 {
    color: #fff;
    font-size: 17px;
    font-family: "Tajawal Medium";
}

ul.beSocial {
    margin: 0;
    text-align: right;
    padding: 3em 2em 2em 2em;
}

ul.beSocial li {
    list-style: none;
    display: block;
    margin-bottom: 1em;
}

ul.beSocial h4 {
    color: #fff;
    font-family: "Tajawal Medium";
    font-size: 18px;
}

ul.beSocial a {
    color: #a6a6a6;
    text-decoration: none;
    font-size: 15px;
}

ul.beSocial a:hover {
    color: #fff;
    text-decoration: underline;
}

.appBtn {
    width: 175px;
}

.beCenter {
    text-align: center !important;
}

.mkCenter {
    margin: 0 auto;
}

/* PRELOADER CSS */
body.loaded {
    overflow-y: auto;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000000;
    /*  display: none;   to run loader remove this one */
}

.overlay .overlayDoor:before,
.overlay .overlayDoor:after {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    background: #111;
    transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
    transition-delay: 0.8s;
}

.overlay .overlayDoor:before {
    left: 0;
}

.overlay .overlayDoor:after {
    right: 0;
}

.overlay.loaded .overlayDoor:before {
    left: -50%;
}

.overlay.loaded .overlayDoor:after {
    right: -50%;
}

.overlay.loaded .overlayContent {
    opacity: 0;
    margin-top: -15px;
}

.overlay .overlayContent {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
    z-index: 1;
}

.overlay .overlayContent .skip {
    display: block;
    width: 130px;
    text-align: center;
    margin: 50px auto 0;
    cursor: pointer;
    color: #fff;
    font-family: "Nunito";
    font-weight: 700;
    padding: 12px 0;
    border: 2px solid #fff;
    border-radius: 3px;
    transition: 0.2s ease;
    font-family: "Tajawal Regular";
}

.overlay .overlayContent .skip:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.loader {
    width: 128px;
    height: 128px;
    border: 3px solid var(--color-primary);
    border-bottom: 3px solid transparent;
    border-radius: 50%;
    position: relative;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader .inner {
    width: 64px;
    height: 64px;
    border: 3px solid transparent;
    border-top: 3px solid var(--color-primary);
    border-radius: 50%;
    -webkit-animation: spinInner 1s linear infinite;
    animation: spinInner 1s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spinInner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-720deg);
    }
}

@keyframes spinInner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-720deg);
    }
}

/* about */
.innerTop {
    margin-top: 5em;
}

.headAlignLt {
    margin: 0 !important;
}

.progress {
    margin: 20px auto;
    padding: 0;
    width: 90%;
    height: 30px;
    overflow: hidden;
    background: #e5e5e5;
    border-radius: 6px;
}

.bar {
    position: relative;
    float: right;
    min-width: 1%;
    height: 100%;
    background: var(--color-primary);
}

.percent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    font-family: tahoma, arial, helvetica;
    font-size: 12px;
    color: #fff !important;
}

#namanyay-search-btn {
    background: var(--color-primary);
    color: white;
    font: "trebuchet ms", trebuchet;
    padding: 10px 20px;
    border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
    -webkit-border-radius: 5px 0 0 5px;
    -o-border-radius: 5px 0 0 5px;
    border: 0 none;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

#namanyay-search-box {
    background: #f7f7f7;
    padding: 10px;
    border-radius: 0 5px 5px 0;
    -moz-border-radius: 0 5px 5px 0;
    -webkit-border-radius: 0 5px 5px 0;
    -o-border-radius: 0 5px 5px 0;
    border: 0 none;
    width: 84%;
}

ul.dtList {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2em;
}

ul.dtList li {
    list-style: none;
}

.donateBox {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 16px;
    text-align: right;
}

.donateBox img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 16px 16px 0px 0px;
}

.donateBox h1 {
    color: #1b2430;
    font-size: 18px;
    padding: 0 1em;
}

.donateBox p {
    color: #1b2430;
    font-size: 18px;
    padding: 0 1.5em;
}

.donateprogress {
    padding: 0 1.5em 2em 1.5em;
}

.btn-donate {
    position: absolute;
    left: 1em;
    top: 1em;
}

.btn-secondary {
    color: #6c757d !important;
    background-color: #fff !important;
    border-color: #fff !important;
}

/* tabs */
.nav-tabs-donate {
    color: #525252;
    font-family: "Tajawal Bold";
    border: 2px solid #f7f7f7 !important;
    border-radius: 0 !important;
    margin-bottom: 0.5em;
    background: #f7f7f7;
    font-size: 16px;
    height: 64px;
    vertical-align: middle;
    display: table-cell;
    width: inherit;
}

.nav-tabs-donate:hover {
    color: var(--color-primary);
}

.nav-tabs .nav-dt {
    width: 11% !important;
}

.nav-dt {
    padding: 0 0.4rem !important;
}

ul.dtNowList {
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

ul.dtNowList li {
    list-style: none;
    display: inline-block;
    /*width: 18%;*/
    width: 250px;
    margin: 1em 0.5em;
}

.dtnimg {
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    text-align: center;
    padding: 3em;
    border-radius: 1em;
}

.dtntxt {
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    padding: 1em;
    border-radius: 1em;
    height: 200px;
}

.dtntxt h1 {
    color: #1b2430;
    font-size: 18px;
    text-align: right;
}

.dtntxt p {
    color: #1b2430;
    font-size: 12px;
    text-align: right;
}

.dtnpg {
    background: #f7f7f7;
    padding: 1em;
    border-radius: 1em;
}

#namanyay-search-btn-dt {
    background: var(--color-primary);
    color: white;
    font: "trebuchet ms", trebuchet;
    padding: 7px 20px;
    border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
    -webkit-border-radius: 5px 0 0 5px;
    -o-border-radius: 5px 0 0 5px;
    border: 0 none;
    font-weight: bold;
    cursor: pointer;
}

#namanyay-search-box-dt {
    background: #fff;
    padding: 10px;
    border-radius: 0 5px 5px 0;
    -moz-border-radius: 0 5px 5px 0;
    -webkit-border-radius: 0 5px 5px 0;
    -o-border-radius: 0 5px 5px 0;
    border: 0 none;
    width: 60%;
    font-size: 12px;
}

/* donate model */
.donateModal h3 {
    color: var(--color-primary);
    text-align: right;
    font-size: 30px;
    font-family: "Tajawal Bold";
}

.donateModal label {
    color: #333333;
    float: right;
    font-size: 26px;
    font-family: "Tajawal Medium";
}

.donateModal input {
    background: #f2f2f2;
    border: 0;
}

.donateModal .dtBtn {
    color: #fff;
    background: var(--color-primary);
    text-align: center;
    font-size: 15px;
    float: right;
    border-color: var(--color-primary);
    width: 100%;
    font-family: "Tajawal Medium";
    padding: 8px 16px;
}

.verifyPara {
    text-align: right;
    color: #9c9c9c;
    font-size: 20px;
}

.numsdirection {
    direction: ltr;
    font-weight: bold;
    margin: 1em 0 2em 0;
    font-size: 20px;
    text-align: center;
}

ul.verifynums {
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%;
}

ul.verifynums li {
    list-style: none;
    display: inline;
    padding: 0 1em;
}

/*ul.verifynums li a span {border: 2px solid #C5C5C5;color: #4E4E4E;}
ul.verifynums li a span:focus {border: 1px solid var(--color-primary);}*/

ul.verifynums li a {
    padding: 1em 1.5em;
    border-radius: 4em;
    width: 110px !important;
    height: 110px !important;
    text-decoration: none;
    border: 2px solid #c5c5c5;
    color: #4e4e4e;
}

ul.verifynums li a:hover {
    text-decoration: none;
    border: 2px solid var(--color-primary);
}

ul.verifynums li a span:hover {
    text-decoration: none;
}

.veriftxt {
    display: block;
    padding-top: 4em;
}

.veriftxt a {
    border: none !important;
    color: #0f8ce9 !important;
    text-decoration: none !important;
    padding: 0 !important;
}

.veriftxt a:hover {
    border: none !important;
    color: var(--color-primary) !important;
    text-decoration: underline !important;
}

/* Frontend Updates */
.home-banner-section {
    position: relative;
    width: 100%;
    height: 100%;
    /* 85vh leaves the top of the next section visible, signalling more content below */
    min-height: 85vh;
    background-image: url("../img/homepage-2.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Animated scroll-down chevron anchored to the bottom-center of the hero */
.front-scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 42px;
    line-height: 1;
    text-decoration: none;
    z-index: 10;
    animation: front-scroll-bounce 2s ease-in-out infinite;
}

@keyframes front-scroll-bounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(10px);
        opacity: 0.5;
    }
}

.home-banner-section .banner-btn-div {
    position: absolute;
    bottom: 88px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
}

.home-banner-section .banner-btn-div .btn-text {
    color: #fff;
    text-decoration: none;
}

.home-banner-section .banner-btn-div .btn-text button {
    color: #fff;
    background: var(--color-primary);
    border-radius: 8px;
    font-weight: bold;
    padding: 16px 48px;
    font-size: 22px;
    border: none;
    outline: none;
    cursor: pointer;
    transition:
        background-color 0.25s ease,
        transform 0.15s ease;
}

.home-banner-section .banner-btn-div .btn-text button:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}

.parallel-row-section.content-background {
    background-color: var(--color-primary-tint);
}

.parallel-row-section {
    padding: 80px var(--site-padding);
}

.parallel-row-section .parallel-inner-div {
    max-width: var(--site-max-width);
    margin: 0 auto;
}

.parallel-row-section .parallel-inner-div .row {
    min-height: 0;
}

.content-image-container {
    max-width: 420px;
    aspect-ratio: 1;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
}

.content-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.read-more-button {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    padding: 0.5rem 2rem;
    font-weight: bold;
    font-size: 18px;
    border-radius: 8px;
    margin-top: 16px;
    color: var(--color-primary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.read-more-button:hover {
    background-color: var(--color-primary);
    color: #fff;
}

/* Arrow icon inside read-more buttons — sized, aligned, and color-matched */
.down-arrow-img {
    width: 14px;
    height: auto;
    /* Recolor the light-green arrow to match --color-primary (#024152) */
    filter: brightness(0) saturate(100%) invert(12%) sepia(62%) saturate(800%)
        hue-rotate(162deg) brightness(90%);
    transition: filter 0.2s ease;
    flex-shrink: 0;
}

.read-more-button:hover .down-arrow-img {
    /* Switch to white on hover to stay visible over dark background */
    filter: brightness(0) invert(1);
}

.limit-text-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* number of lines to show */
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

#projectandnews {
    background-image: url("../img/news-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 60px var(--site-padding);
}

#projectandnews > div {
    max-width: var(--site-max-width);
    margin: 0 auto;
}

.footer-playstore-outer {
    display: flex;
    gap: 26px;
    margin-top: 32px;
}

.social-icons-div {
    display: flex;
    gap: 26px;
    margin-top: 24px;
}

.social-icons-div li a {
    border-radius: 50%;
}

#counternums {
    padding: 80px var(--site-padding) 32px;
}

#counternums > div {
    max-width: var(--site-max-width);
    margin: 0 auto;
}

.counter-content-heading h1 {
    font-size: 22px;
    font-weight: normal;
}

.counter-content-heading p {
    font-size: 15px;
    color: black;
}

#counternums .nos img {
    width: 100%;
    max-width: 127px;
    margin-bottom: 16px;
}

#counternums .nos h4 {
    font-size: 14px;
}

#counternums .nos h1 span {
    color: var(--color-primary);
    font-size: 30px;
}

#sponsors {
    background-color: var(--color-primary-tint);
    padding: 60px var(--site-padding);
}

#sponsors > div {
    max-width: var(--site-max-width);
    margin: 0 auto;
}

.newLogo {
    height: 80px;
}

@media (max-width: 1600px) {
    .navbar-light .navbar-nav .nav-link {
        font-size: 20px;
    }

    .home-banner-section .banner-btn-div .btn-text button {
        font-size: 20px;
        padding: 14px 40px;
    }

    .content-image-container {
        max-width: 320px;
    }

    .counter-content-heading h1 {
        font-size: 20px;
    }

    .counter-content-heading p {
        font-size: 14px;
    }

    #counternums .nos h4 {
        font-size: 13px;
    }

    #counternums .nos h1 span {
        font-size: 28px;
    }

    .gtco-testimonials .center .card-img-top {
        height: 170px;
    }
}

@media (max-width: 1024px) {
    .menu.custom-menu-edit {
        padding: 10px 16px;
    }

    .navbar-nav {
        background: #f8f9fad7 !important;
        padding: 16px 0;
    }

    .navbar-light .navbar-nav .nav-link {
        font-size: 13px;
        text-align: center;
    }

    .home-banner-section .banner-btn-div .btn-text button {
        font-size: 18px;
        padding: 12px 32px;
    }

    .content-image-container {
        max-width: 200px;
        margin: 0 auto 24px;
    }

    .order-col-mob-img {
        order: 1;
    }

    .order-col-mob-content {
        order: 2;
    }

    .parallel-row-section {
        padding: 48px 24px;
    }

    .parallel-content-div h1 {
        font-size: 28px;
    }

    .parallel-content-div p {
        font-size: 16px;
    }

    .read-more-button {
        font-size: 16px;
    }

    .down-arrow-img {
        width: 12px;
        height: auto;
    }

    .counter-content-heading h1 {
        font-size: 18px;
    }

    .counter-content-heading p {
        font-size: 13px;
    }

    #counternums .nos img {
        max-width: 70px;
    }

    #counternums .nos h4 {
        font-size: 12px;
        margin-bottom: 0;
    }

    #counternums .nos h1 span {
        font-size: 24px;
        color: var(--color-warm);
    }

    .gtco-testimonials .card span {
        font-size: 16px;
    }

    .gtco-testimonials .center h5,
    .gtco-testimonials .card h5 {
        font-size: 18px;
    }

    .gtco-testimonials .card p {
        font-size: 16px;
    }

    .gtco-testimonials .center .card-img-top {
        height: 110px;
        max-width: 110px;
    }

    .gtco-testimonials .card .card-img-top {
        height: 100px;
        max-width: 100px;
    }

    h1 {
        font-size: 28px;
    }

    h1 {
        font-size: 20px;
    }

    .newsCard h1 {
        font-size: 16px;
    }

    .newsCard p {
        font-size: 14px;
    }

    footer {
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    ul.testComments {
        flex-direction: column;
    }

    ul.testComments li:nth-child(2) {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .content-image-container {
        max-width: 120px;
    }

    ul.testComments li:nth-child(1) {
        width: 40%;
    }

    .gtco-testimonials .card .card-img-top {
        height: 160px;
        max-width: 160px;
    }

    #counternums .nos h4 {
        font-size: 14px;
    }

    #counternums .nos h1 span {
        font-size: 22px;
    }

    .parallel-row-section {
        padding: 32px 16px;
    }

    .parallel-content-div h1 {
        font-size: 22px;
    }

    h1 {
        font-size: 22px;
    }

    .home-banner-section .banner-btn-div .btn-text button {
        font-size: 15px;
        padding: 10px 24px;
    }

    .home-banner-section .banner-btn-div {
        bottom: 48px;
    }
}
