/*==================================================
                GOOGLE FONTS
==================================================*/

:root {

    --primary: #124E78;
    --primary-light: #1F6AA5;
    --primary-dark: #0B2E4F;

    --accent: #D9A404;

    --bg: #F5F8FC;

    --white: #FFFFFF;

    --dark: #162433;

    --text: #66788A;

    --border: #E4EAF2;

    --shadow: 0 18px 45px rgba(14, 27, 42, .08);

    --shadow-lg: 0 25px 60px rgba(14, 27, 42, .12);

    --radius: 18px;

    --transition: .35s ease;

    --fs-hero: clamp(2.8rem, 6vw, 4.5rem);

    --fs-title: clamp(2rem, 4vw, 3.5rem);

    --fs-subtitle: clamp(1rem, 2vw, 1.25rem);

    --fs-body: clamp(.95rem, 1vw, 1.08rem);

}

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    font-family: 'Open Sans', sans-serif;

    background: #fff;

    color: var(--text);

    overflow-x: hidden;

}

h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: 'Poppins', sans-serif;

    color: var(--dark);

    font-weight: 700;

}

html,

body {

    overflow-x: hidden;

}

section {

    overflow: hidden;
    position: relative;

}

/*==================================================
            PREMIUM NAVBAR
==================================================*/


.navbar {

    transition: all .35s ease;

    z-index: 9999;

}


.navbar.scrolled {

    background: #ffffff !important;

    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);

    padding-top: 12px;

    padding-bottom: 12px;

}


.navbar.scrolled .nav-link {

    color: #124E78 !important;

}


.navbar.scrolled .navbar-brand {

    color: #124E78 !important;

}

/*==================================================
            NAV LINKS
==================================================*/


.navbar .nav-link {

    position: relative;

    font-weight: 600;

}


.navbar .nav-link::after {


    content: "";

    position: absolute;

    left: 50%;

    bottom: -8px;

    width: 0;

    height: 3px;

    background: #D9A404;

    transform: translateX(-50%);

    transition: .35s;


}


.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {


    width: 70%;


}

/*==================================================
            MOBILE NAV
==================================================*/


.navbar-toggler {


    border: none;

    outline: none;

}


.navbar-toggler:focus {


    box-shadow: none;

}



@media(max-width:991px) {


    .navbar-collapse {


        background: #fff;

        padding: 25px;

        border-radius: 20px;

        margin-top: 20px;

        box-shadow: 0 20px 50px rgba(0, 0, 0, .1);


    }



    .navbar .nav-link {


        color: #124E78 !important;

        padding: 12px 0;


    }



    .navbar .btn-primary-custom {


        width: 100%;

        text-align: center;

        margin-top: 15px;


    }



}

.hero-section h1 {

    font-size: var(--fs-hero);

}

.section-title {

    font-size: var(--fs-title);

}

.section-description {

    font-size: var(--fs-body);

}

a {

    text-decoration: none;

    transition: var(--transition);

}

img {

    max-width: 100%;

    height: auto;

    display: block;

}

.hero-placeholder,

.image-placeholder {

    width: 100%;

}

.btn {

    position: relative;

    overflow: hidden;

    transition: .35s;

}

.btn::before {

    content: "";

    position: absolute;

    top: 0;

    left: -120%;

    width: 120%;

    height: 100%;

    background: linear-gradient(90deg,

            transparent,

            rgba(255, 255, 255, .25),

            transparent);

    transition: .7s;

}

.btn:hover::before {

    left: 120%;

}

.section-title {

    font-size: 54px;

    font-weight: 800;

    line-height: 1.2;

    margin-bottom: 25px;

}

.section-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 10px 22px;

    border-radius: 40px;

    background: #EEF6FC;

    color: #124E78;

    font-weight: 700;

}

/* .section-title::after {

    content: "";

    display: block;

    width: 90px;

    height: 5px;

    border-radius: 20px;

    margin-top: 18px;

    background: linear-gradient(90deg, #124E78, #D9A404);

} */

.section-badge::before {

    content: "";

    width: 10px;

    height: 10px;

    background: #D9A404;

    border-radius: 50%;

}

.reveal {

    opacity: 0;

    transform: translateY(40px);

    transition: all .8s ease;

}

.reveal.active {

    opacity: 1;

    transform: none;

}

/*==========================================
            IMAGE PLACEHOLDERS
==========================================*/

.image-placeholder {

    width: 100%;

    min-height: 350px;

    border: 2px dashed #C8D2DD;

    border-radius: 30px;

    background: linear-gradient(135deg, #F8FAFC, #EEF3F8);

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    color: #7A8795;

    transition: .35s ease;

}

.hero-image,

.about-main-image,

.project-card {

    transition: .45s;

}

.hero-image:hover,

.about-main-image:hover,

.project-card:hover {

    transform: scale(1.02);

}

.image-placeholder i {

    font-size: 64px;

    margin-bottom: 18px;

    color: #124E78;

}

.image-placeholder span {

    font-size: 20px;

    font-weight: 700;

    font-family: 'Poppins', sans-serif;

}

.image-placeholder:hover {

    border-color: #124E78;

    transform: translateY(-5px);

    box-shadow: 0 20px 50px rgba(18, 78, 120, .10);

}

/* Match previous image dimensions */

.hero-image {

    min-height: 600px;

}

.about-main-image {

    min-height: 560px;

}

.about-small-image {

    min-height: 260px;

}

.why-image {

    min-height: 560px;

}

/*==================================================
                SCROLLBAR
==================================================*/

::-webkit-scrollbar {

    width: 10px;

}

::-webkit-scrollbar-track {

    background: #eef3f8;

}

::-webkit-scrollbar-thumb {

    background: var(--primary);

    border-radius: 30px;

}

/*==================================================
                UTILITIES
==================================================*/

.section-padding {

    padding: 100px 0;

}

.section-title {

    font-size: 44px;

    font-weight: 800;

}

.text-primary-custom {

    color: var(--primary);

}

.container {

    max-width: 1320px;

}

@media(min-width:1600px) {

    .container {

        max-width: 1450px;

    }

}

/*==================================================
                NAVBAR
==================================================*/

.main-navbar {

    padding: 18px 0;

    transition: .4s;

    z-index: 999;

    transition: .45s ease;

}

.main-navbar.scrolled {

    padding: 10px 0;

}

.main-navbar.scrolled .container {

    background: #fff;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);

}

.main-navbar.scrolled .nav-link {

    color: #162433;

}

.main-navbar.scrolled .navbar-brand span {

    color: #162433;

}

.main-navbar .container {

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(16px);

    border: 1px solid rgba(255, 255, 255, .15);

    border-radius: 60px;

    padding: 14px 28px;

}

.navbar-brand {

    display: flex;

    align-items: center;

    gap: 12px;

}

.navbar-brand img {

    width: 88px;

}

.navbar-brand span {

    color: #162433;

    font-weight: 800;

    font-size: 22px;

    font-family: Poppins, sans-serif;

}

.navbar-nav {

    gap: 18px;

}

.nav-link {

    color: #162433;

    font-weight: 600;

    position: relative;

}

.nav-link::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -6px;

    width: 0;

    height: 2px;

    background: var(--secondary);

    transition: .3s;

}

.nav-link:hover::after,

.nav-link.active::after {

    width: 100%;

}

.nav-link:hover {

    color: #000;

}

.btn-donate {

    background: linear-gradient(135deg, #F4B400, #FFC928);

    color: #111;

    font-weight: 700;

    border-radius: 50px;

    padding: 13px 28px;

    transition: .35s;

}

.btn-donate:hover {

    transform: translateY(-3px);

    box-shadow: 0 15px 30px rgba(244, 180, 0, .35);

}

/*==================================================
            MOBILE NAVBAR
==================================================*/

.navbar-toggler {

    color: #162433;

    font-size: 24px;

}

@media(max-width:991px) {

    .main-navbar .container {

        border-radius: 25px;
        margin-top: 20px;

    }

    .navbar-brand span {

        font-size: 15px;

    }

    .navbar-collapse {

        margin-top: 20px;

    }

    .navbar-nav {

        gap: 10px;

        text-align: center;

        padding: 20px 0;

    }

    .btn-donate {

        width: 100%;

        text-align: center;

    }

}

/*==========================================
                CTA SECTION
==========================================*/

.cta-section {

    padding: 120px 0;

    background: #ffffff;

}

.cta-box {

    position: relative;

    overflow: hidden;

    background: linear-gradient(135deg, #0B2E4F, #124E78);

    border-radius: 35px;

    padding: 70px;

    color: #fff;

    box-shadow: 0 30px 70px rgba(18, 78, 120, .18);

}

.cta-box::before {

    content: "";

    position: absolute;

    width: 380px;

    height: 380px;

    background: rgba(255, 255, 255, .08);

    border-radius: 50%;

    top: -180px;

    right: -120px;

}

.cta-box::after {

    content: "";

    position: absolute;

    width: 220px;

    height: 220px;

    background: rgba(255, 255, 255, .06);

    border-radius: 50%;

    bottom: -100px;

    left: -80px;

}

.cta-box>* {

    position: relative;

    z-index: 2;

}

.cta-badge {

    display: inline-block;

    padding: 8px 18px;

    background: rgba(255, 255, 255, .12);

    border: 1px solid rgba(255, 255, 255, .15);

    border-radius: 50px;

    margin-bottom: 20px;

    font-size: 14px;

    font-weight: 600;

}

.cta-box h2 {

    color: #fff;

    font-size: 46px;

    font-weight: 800;

    line-height: 1.2;

    margin-bottom: 25px;

}

.cta-box p {

    color: rgba(255, 255, 255, .82);

    font-size: 18px;

    line-height: 1.9;

    max-width: 650px;

    margin-bottom: 0;

}

.btn-cta {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background: #D9A404;

    color: #0B2E4F;

    font-weight: 700;

    padding: 18px 38px;

    border-radius: 60px;

    transition: .35s ease;

}

.btn-cta:hover {

    transform: translateY(-5px);

    background: #F0B90B;

    color: #0B2E4F;

    box-shadow: 0 20px 40px rgba(217, 164, 4, .35);

}

@media(max-width:991px) {

    .cta-box {

        padding: 45px 35px;

        text-align: center;

    }

    .cta-box h2 {

        font-size: 34px;

    }

}

/*==========================================
            CONTACT SECTION
==========================================*/

.contact-section {

    padding: 120px 0;

    background: #F8FBFE;

}

.contact-info {

    background: #fff;

    padding: 45px;

    border-radius: 30px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);

    height: 100%;

}

.contact-info h3 {

    margin-bottom: 20px;

    font-weight: 700;

}

.contact-item {

    display: flex;

    gap: 20px;

    margin-top: 30px;

    align-items: center;

}

.contact-icon {

    width: 65px;

    height: 65px;

    border-radius: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #124E78;

    color: #fff;

    font-size: 24px;

}

.bi {
    margin: 22px;
}

.contact-item small {

    color: #6B7280;

}

.contact-item h5 {

    margin: 5px 0 0;

    font-weight: 700;

}

.social-links {

    display: flex;

    gap: 15px;

}

.social-links a {

    width: 50px;

    height: 50px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #124E78;

    color: #fff;

    transition: .3s;

}

.social-links a:hover {

    background: #D9A404;

    transform: translateY(-5px);

}

.contact-form-box {

    background: #fff;

    padding: 45px;

    border-radius: 30px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);

}

.form-control {

    border-radius: 15px;

    padding: 16px 18px;

    border: 1px solid #DCE5EF;

    box-shadow: none;

}

.form-control:focus {

    border-color: #124E78;

    box-shadow: none;

}

textarea.form-control {

    resize: none;

}

.btn-send {

    background: #124E78;

    color: #fff;

    padding: 16px 40px;

    border-radius: 50px;

    font-weight: 700;

    transition: .3s;

}

.btn-send:hover {

    background: #0B2E4F;

    color: #fff;

    transform: translateY(-4px);

}

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

/*==========================
    SCROLL PROGRESS
===========================*/

.scroll-progress {

    position: fixed;

    top: 0;

    left: 0;

    width: 0;

    height: 4px;

    background: linear-gradient(90deg, #124E78, #D9A404);

    z-index: 999999;

}

.main-footer {

    background: #081A2F;

    color: #D5DEE8;

    padding: 90px 0 30px;

}

.footer-logo {

    display: flex;

    align-items: center;

    gap: 18px;

    color: #fff;

    margin-bottom: 25px;

}

.footer-logo:hover {

    color: #fff;

}

.footer-logo-icon {

    width: 70px;

    height: 70px;

    border-radius: 20px;

    background: linear-gradient(135deg, #124E78, #1F6AA5);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 30px;

}

.footer-logo h4 {

    color: #fff;

    margin: 0;

    font-weight: 700;

}

.footer-logo span {

    color: #D9A404;

    font-weight: 600;

}

.footer-about {

    color: #B8C5D3;

    line-height: 1.9;

    margin-bottom: 30px;

}

.main-footer h5 {

    color: #fff;

    margin-bottom: 25px;

    font-weight: 700;

}

.footer-links,

.footer-contact {

    list-style: none;

    padding: 0;

    margin: 0;

}

.footer-links li,

.footer-contact li {

    margin-bottom: 16px;

}

.footer-links a {

    color: #B8C5D3;

    transition: .3s;

}

.footer-links a:hover {

    color: #D9A404;

    padding-left: 8px;

}

.footer-contact li {

    display: flex;

    gap: 12px;

    align-items: flex-start;

}

.footer-contact i {

    color: #D9A404;

}

.footer-social {

    display: flex;

    gap: 15px;

}

.footer-social a {

    width: 46px;

    height: 46px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    background: rgba(255, 255, 255, .08);

    color: #fff;

    transition: .35s;

}

.footer-social a:hover {

    background: #D9A404;

    color: #081A2F;

    transform: translateY(-5px);

}

.main-footer hr {

    border-color: rgba(255, 255, 255, .08);

    margin: 60px 0 30px;

}

.footer-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;

}

.footer-bottom p {

    margin: 0;

}

.footer-bottom a {

    color: #B8C5D3;

    margin-left: 25px;

}

.footer-bottom a:hover {

    color: #D9A404;

}

@media(max-width:768px) {

    .footer-bottom {

        justify-content: center;

        text-align: center;

    }

    .footer-bottom a {

        margin: 0 10px;

    }

    .main-footer {
        padding-left: 10px;
    }

}

.back-top {

    position: fixed;

    right: 30px;

    bottom: 30px;

    width: 70px;

    height: 70px;

    border: none;

    border-radius: 100%;

    background: #124E78;

    color: #fff;

    font-size: 22px;

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transition: .35s;

    z-index: 999;

    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);

}

.back-top.show {

    opacity: 1;

    visibility: visible;

}

.back-top:hover {

    background: #D9A404;

    color: #162433;

    transform: translateY(-8px);

}

@media(max-width:767px) {

    .hero-section {

        padding-top: 130px;

    }

    .hero-section h1 {

        line-height: 1.15;

    }

    .hero-buttons {

        flex-direction: column;

    }

    .hero-buttons .btn {

        width: 100%;

    }

    .hero-features {

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;

    }

    .service-card {

        padding: 35px 25px;

    }

    .about-section,

    .services-section,

    .projects-section,

    .impact-section,

    .contact-section,

    .cta-section {

        padding: 80px 0;

    }

    .project-large,

    .project-small {

        height: 300px;

    }

    .cta-box {

        padding: 40px 30px;

    }

    .contact-form-box,

    .contact-info {

        padding: 30px;

    }

}

@media(max-width:575px) {

    .hero-section h1 {

        font-size: 2.4rem;

    }

    .section-title {

        font-size: 2rem;

    }

    .hero-placeholder {

        height: 320px;

    }

    .hero-placeholder i {

        font-size: 60px;

    }

    .service-icon {

        width: 70px;

        height: 70px;

        font-size: 28px;

    }

    .impact-card h2 {

        font-size: 2.3rem;

    }

    .project-overlay {

        padding: 25px;

    }

    .cta-box h2 {

        font-size: 2rem;

    }

    .footer-logo {

        flex-direction: column;

        align-items: flex-start;

    }

    .footer-social {

        flex-wrap: wrap;

    }

}

@media(max-width:991px) {

    .floating-card {

        position: relative;

        left: auto;

        right: auto;

        top: auto;

        bottom: auto;

        margin: 20px auto;

        width: 100%;

        max-width: 420px;

    }

}

/* @media(max-width:991px) {

    .navbar {

        padding: 15px 0;

    }

    .navbar-collapse {

        background: #fff;

        padding: 20px;

        border-radius: 20px;

        margin-top: 15px;

        box-shadow: 0 20px 40px rgba(0, 0, 0, .08);

    }

    .navbar-nav {

        gap: 10px;

    }

    .navbar .btn {

        margin-top: 15px;

        width: 100%;

    }

} */

/*==================================================
                GLOBAL POLISH
==================================================*/

html {

    scroll-behavior: smooth;

}


body {

    overflow-x: hidden;

}


a {

    text-decoration: none;

    transition: .3s ease;

}


img {

    max-width: 100%;

    height: auto;

}


::selection {

    background: #124E78;

    color: #fff;

}

/*==================================================
            FLOAT EFFECT
==================================================*/


.float-animation {

    animation: floating 5s ease-in-out infinite;

}


@keyframes floating {


    0% {

        transform: translateY(0);

    }


    50% {

        transform: translateY(-15px);

    }


    100% {

        transform: translateY(0);

    }


}

/*==================================================
            PREMIUM CARD EFFECT
==================================================*/


.impact-card,
.value-card,
.contact-card,
.trust-card,
.counter-card,
.process-step {


    position: relative;

    overflow: hidden;

}


.impact-card::before,
.value-card::before,
.contact-card::before,
.trust-card::before {


    content: "";

    position: absolute;

    top: 0;

    left: -100%;

    width: 100%;

    height: 3px;

    background: #D9A404;

    transition: .5s;

}



.impact-card:hover::before,
.value-card:hover::before,
.contact-card:hover::before,
.trust-card:hover::before {


    left: 0;

}

/*==================================================
            BUTTON EFFECT
==================================================*/


.btn-primary-custom,
.btn-outline-custom {


    position: relative;

    overflow: hidden;

    z-index: 1;

}


.btn-primary-custom::before,
.btn-outline-custom::before {


    content: "";

    position: absolute;

    width: 0;

    height: 100%;

    left: 0;

    top: 0;

    background: #D9A404;

    transition: .4s;

    z-index: -1;

}


.btn-primary-custom:hover::before,
.btn-outline-custom:hover::before {


    width: 100%;

}


.btn-primary-custom:hover,
.btn-outline-custom:hover {

    color: #fff;

}