/* INDEX PAGE CSS */


:root {
    --brand: #0ea5e9;
    /* cyan-500 */
    --brand-2: #2563eb;
    /* indigo-600 */
    --brand-3: #22c55e;
    /* green-500 */
}

/* Topbar */
.topbar {
    background: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 100%);
    color: #fff;
}

.topbar a {
    color: #fff;
    opacity: .9;
    text-decoration: none;
}

.topbar a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
}

.navbar .btn-start {
    background: var(--brand-3);
    border: none;
    color: #fff;
}

.navbar .btn-start:hover {
    filter: brightness(.95);
}

.nav-search {
    min-width: 260px;
}

/* Hero / Banner */
.hero {
    background: radial-gradient(1200px 600px at 80% -10%, rgba(34, 197, 94, .25), transparent 50%),
        radial-gradient(1200px 600px at -10% 20%, rgba(14, 165, 233, .25), transparent 50%),
        linear-gradient(135deg, #eff6ff 0%, #f0fdfa 100%);
}

.hero .badge-quick {
    cursor: pointer;
    user-select: none;
    border: 1px solid rgba(0, 0, 0, .08);
    background: #fff;
}

.hero .hero-card {
    border: 0;
    border-radius: 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    overflow: hidden;
}

.rating i {
    color: #f59e0b;
}

/* amber */

/* Wave divider */
.wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 70px;
    pointer-events: none;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
    .nav-search {
        min-width: 100%;
    }
}

.owl-carousel .item {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
    overflow: hidden;
}

.video {
    position: relative;
    padding-top: 56.25%;
}

/* 16:9 */
.video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Arrows */
.owl-nav button {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .15);
    display: grid;
    place-items: center;
}

.owl-nav .owl-prev {
    left: -12px;
}

.owl-nav .owl-next {
    right: -12px;
}

.owl-nav i {
    font-size: 20px;
}

.owl-dots {
    display: none;
}


.category-card:hover {
    transform: translateY(-2px);
    transition: .2s ease;
}

.category-card .card-body {
    padding: 1rem 1rem;
}

#fundraiserList .card:hover {
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

.object-fit-cover {
    object-fit: cover;
}



/* About Page Css */


.hero {
    background: linear-gradient(135deg, #0ea5e9, #22c55e);
    color: #fff;
    padding: 4rem 0
}

.card-ghost {
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
    border-radius: 1rem
}

.strategy-card {
    transition: transform .2s ease
}

.strategy-card:hover {
    transform: translateY(-4px)
}

.team-card img {
    object-fit: cover;
    height: 220px
}
/* 
.partner-logo {
    max-height: 80px;
    object-fit: contain;
    transition: transform .3s;
    border-radius: .5rem;
}

.partner-logo:hover {
    transform: scale(1.05);
}


.partner-marquee {
    overflow: hidden;
    white-space: nowrap
}

.partner-track {
    display: inline-block;
    animation: scroll 20s linear infinite
}

.partner-item {
    display: inline-block;
    text-align: center;
    margin: 0 1rem;
    vertical-align: middle
}

@keyframes scroll {
    0% {
        transform: translateX(100%)
    }

    100% {
        transform: translateX(-100%)
    }
} */


/* CONTACT PAGE  */

.btn-brand {
    background: linear-gradient(135deg, var(--brand), #22c55e);
    border: none
}

.btn-brand:hover {
    background: linear-gradient(135deg, var(--brand-600), #16a34a)
}

.hero {
    background: radial-gradient(900px 400px at 15% 10%, rgba(14, 165, 233, .15), transparent),
        radial-gradient(900px 400px at 85% 10%, rgba(34, 197, 94, .15), transparent),
        linear-gradient(#ffffff, #f1f5f9);
}

.chip {
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: .4rem .8rem;
    background: #fff
}

.card-ghost {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    box-shadow: 0 16px 40px rgba(2, 6, 23, .06)
}

.lift {
    transition: transform .2s ease, box-shadow .2s ease
}

.lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(2, 6, 23, .12)
}

.icon-bubble {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.25rem
}

.floaty {
    animation: floaty 4s ease-in-out infinite
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s ease, transform .6s ease
}

.reveal.show {
    opacity: 1;
    transform: none
}

.contact-highlight {
    background: linear-gradient(135deg, #e0f2fe, #f0fdf4);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 12px 32px rgba(2, 6, 23, .06)
}

.contact-highlight h5 {
    color: var(--brand)
}

.contact-info-line {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .5rem;
    font-size: 1rem
}

.contact-info-line i {
    font-size: 1.25rem;
    color: var(--brand)
}

.contact-info-line a {
    color: inherit;
    text-decoration: none
}

.contact-info-line a:hover {
    color: var(--brand-600)
}



/* DETAILS PAGE  */


.chip {
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: .35rem .75rem;
    background: #fff
}

.hero-cover {
    position: relative;
    border-radius: 1rem;
    overflow: hidden
}

.hero-cover img {
    width: 100%;
    height: 360px;
    object-fit: cover
}

.hero-badge {
    position: absolute;
    top: 12px;
    left: 12px
}

.card-ghost {
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(2, 6, 23, .06);
    background: #fff
}

.side-sticky {
    position: sticky;
    top: 24px
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    object-fit: cover
}

.progress {
    height: 12px
}

.donation-tier {
    cursor: pointer;
    transition: transform .2s ease
}

.donation-tier:hover {
    transform: translateY(-3px)
}

.form-note {
    font-size: .9rem;
    color: var(--muted)
}

.list-check li {
    margin-bottom: .4rem
}

.list-check li i {
    color: var(--accent)
}

.section {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1rem
}

@media (min-width: 992px) {
    .section {
        padding: 1.25rem 1.5rem
    }
}




/*Modal Css*/

