/* =========================
   GLOBAL
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    overflow-x: hidden;
}

/* =========================
   HEADER
========================= */

.main-header {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    padding: 0;

    background: #FFD54F;

    backdrop-filter: blur(18px);

    transition: all 0.4s ease;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

}

/* Scroll Effect */

.main-header.scrolled {

    background: #ffffff;

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);

    border-bottom: none;

}

/* =========================
   LOGO
========================= */

.navbar-brand img {

    width: 200px;


}

/* =========================
   NAVIGATION
========================= */

.navbar-nav {

    gap: 10px;

}

.navbar-nav .nav-link {

    position: relative;

    color: #03054c;

    font-size: 17px;

    font-weight: 500;

    padding: 10px 16px !important;

    transition: all 0.3s ease;

}

/* Scroll Text Color */

.main-header.scrolled .nav-link {

    color: #0B2C8A;

}

/* Hover Effect */

.navbar-nav .nav-link:hover {

    color: #0F9D58;

    transform: translateY(-2px);

}

/* Underline Animation */

.navbar-nav .nav-link::before {

    content: '';

    position: absolute;

    left: 50%;

    bottom: 0;

    width: 0;

    height: 2px;

    background: #0F9D58;

    transition: all 0.4s ease;

    transform: translateX(-50%);

    border-radius: 50px;

}

.navbar-nav .nav-link:hover::before {

    width: 70%;

}

/* Active Menu */

.navbar-nav .nav-link.active {

    color: #0F9D58 !important;

}

/* =========================
   BUTTONS
========================= */

.header-btns {

    gap: 15px;

}

/* CSR Button */

.btn-csr {

    background: transparent;

    border: 2px solid #ffffff;

    color: #ffffff;

    padding: 12px 24px;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 600;

    transition: all 0.4s ease;

}

/* Scroll */

.main-header.scrolled .btn-csr {

    border-color: #0B2C8A;

    color: #0B2C8A;

}

.btn-csr:hover {

    background: #0B2C8A;

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(11, 44, 138, 0.25);

}

/* Donate Button */

.btn-donate {

    background: linear-gradient(135deg, #0F9D58, #13c36d);

    color: #ffffff;

    padding: 13px 28px;

    border-radius: 50px;

    border: none;

    font-size: 14px;

    font-weight: 600;

    position: relative;

    overflow: hidden;

    transition: all 0.4s ease;

}

/* Shine Animation */

.btn-donate::before {

    content: '';

    position: absolute;

    top: 0;

    left: -100%;

    width: 100%;

    height: 100%;

    background: rgba(255, 255, 255, 0.25);

    transform: skewX(-25deg);

    transition: 0.6s;

}

.btn-donate:hover::before {

    left: 120%;

}

.btn-donate:hover {

    transform: translateY(-3px);

    box-shadow: 0 12px 30px rgba(15, 157, 88, 0.35);

    color: #ffffff;

}

/* =========================
   WHATSAPP
========================= */

.whatsapp-float {

    position: fixed;
    right: 0px;

    width: 50px;
    height: 50px;

    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    z-index: 999;
    text-decoration: none;

}

.what-float {
    bottom: 180px;
    background: #25d366;
}

.call-float {
    bottom: 110px;
    background: #1a0ce3;
}

.heart-float {
    bottom: 40px;
    background: red;
}

/* =========================
   MOBILE
========================= */

.navbar-toggler {

    border: none;

    box-shadow: none !important;

}

.navbar-toggler-icon {

    filter: brightness(0) invert(1);

}

/* Scroll Toggle */

.main-header.scrolled .navbar-toggler-icon {

    filter: none;

}

@media(max-width:1199px) {

    .navbar-collapse {

        background: #ffffff;

        margin-top: 20px;

        padding: 30px;

        border-radius: 20px;

        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);

        animation: menuFade 0.4s ease;

    }

    @keyframes menuFade {

        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0px);
        }

    }

    .navbar-nav {

        gap: 0;

    }

    .navbar-nav .nav-link {

        color: #0B2C8A !important;

        padding: 14px 0 !important;

        border-bottom: 1px solid #f1f5f9;

    }

    .header-btns {

        margin-top: 25px;

        flex-direction: column;

        width: 100%;

    }

    .btn-csr,
    .btn-donate {

        width: 100%;

        text-align: center;

    }

}

/* =========================
   HEADER ENTRANCE ANIMATION
========================= */

.main-header {

    animation: headerTop 1s ease;

}

@keyframes headerTop {

    from {

        opacity: 0;

        transform: translateY(-100%);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/* =========================
   ABOUT SECTION
========================= */

.about-section {

    position: relative;

    padding: 60px 0;

    background: #f8fafc;

    overflow: hidden;

}

/* Background Shape */

.about-shape {

    position: absolute;

    width: 500px;
    height: 500px;

    background:
        radial-gradient(rgba(11, 44, 138, 0.08),
            transparent);

    left: -200px;
    top: -100px;

    border-radius: 50%;

}

/* =========================
   IMAGES
========================= */

.about-images {

    position: relative;

    padding-right: 50px;

}

/* Main Image */

.about-main-image {

    position: relative;

    overflow: hidden;

    border-radius: 35px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.12);

}

.about-main-image img {

    width: 100%;

    display: block;

    transition: 0.5s ease;

}

.about-main-image:hover img {

    transform: scale(1.06);

}

/* Small Image */

.about-small-image {

    position: absolute;

    bottom: -50px;
    right: 0;

    width: 260px;

    overflow: hidden;

    border-radius: 30px;

    border: 8px solid #ffffff;

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.12);

}

.about-small-image img {

    width: 100%;

    display: block;

}

/* Floating Badge */

.about-badge {

    position: absolute;

    top: 40px;
    left: -40px;

    background: #ffffff;

    padding: 25px 30px;

    border-radius: 25px;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.08);

    text-align: center;

    animation: floatBadge 3s ease-in-out infinite;

}

@keyframes floatBadge {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }

}

.about-badge h4 {

    font-size: 40px;

    font-weight: 800;

    color: #0F9D58;

    margin-bottom: 5px;

}

.about-badge p {

    margin: 0;

    color: #64748B;

    font-size: 14px;

}

/* =========================
   CONTENT
========================= */

.about-content {

    position: relative;

    z-index: 2;

}

.about-content h2 {

    font-size: 44px;

    line-height: 1.2;

    font-weight: 800;

    color: #0B2C8A;

    margin: 25px 0;

}

.about-content h2 span {

    color: #0F9D58;

}

.about-content p {

    font-size: 16px;

    line-height: 1.9;

    color: #64748B;

    margin-bottom: 20px;

}

/* =========================
   FEATURES
========================= */

.about-features {

    margin-top: 40px;

}

/* Item */

.about-feature-item {

    display: flex;

    gap: 20px;

    margin-bottom: 28px;

    padding: 20px;

    border-radius: 24px;

    background: #ffffff;

    transition: 0.4s ease;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.04);

}

.about-feature-item:hover {

    transform: translateX(10px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.08);

}

/* Icon */

.feature-icon {

    min-width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background:
        linear-gradient(135deg,
            rgba(11, 44, 138, 0.12),
            rgba(15, 157, 88, 0.12));

    color: #0F9D58;

    font-size: 30px;

}

/* Text */

.about-feature-item h5 {

    font-size: 22px;

    font-weight: 700;

    color: #0F172A;

    margin-bottom: 10px;

}

.about-feature-item p {

    margin: 0;

    font-size: 15px;

    color: #64748B;

    line-height: 1.8;

}

/* =========================
   BUTTON
========================= */

.about-btn {

    margin-top: 40px;

}

.btn-about {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    background:
        linear-gradient(135deg,
            #0B2C8A,
            #0F9D58);

    color: #ffffff;

    padding: 16px 34px;

    border-radius: 60px;

    font-size: 15px;

    font-weight: 600;

    transition: 0.4s ease;

    box-shadow:
        0 15px 35px rgba(11, 44, 138, 0.18);

}

.btn-about:hover {

    transform: translateY(-5px);

    color: #ffffff;

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px) {

    .about-section {

        padding: 100px 0;

    }

    .about-images {

        padding-right: 0;

        margin-bottom: 80px;

    }

    .about-content {

        text-align: center;

    }

    .about-content h2 {

        font-size: 42px;

    }

    .about-feature-item {

        text-align: left;

    }

}

@media(max-width:576px) {

    .about-content h2 {

        font-size: 34px;

    }

    .about-small-image {

        width: 180px;

        bottom: -30px;

    }

    .about-badge {

        left: 10px;

        padding: 20px;

    }

    .about-feature-item {

        flex-direction: column;

        align-items: flex-start;

    }

}

/* ===================================
   PREMIUM NAVIGATION
=================================== */

.navbar-nav {
    gap: 10px;
}

.navbar-nav .nav-link {

    color: #03054c;

    font-size: 17px;

    font-weight: 600;

    padding: 12px 18px !important;

    border-radius: 50px;

    transition: all .4s ease;

    position: relative;

}

.navbar-nav .nav-link:hover {

    color: #0F9D58;


    transform: translateY(-2px);

}

.navbar-nav .nav-link.active {

    background: #0B2C8A;

    color: #fff !important;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .12);

}

/* ===================================
   DROPDOWN
=================================== */

.custom-dropdown {

    border: none;

    border-radius: 20px;

    padding: 12px;

    min-width: 250px;

    background: #fff;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .12);

    animation: dropFade .35s ease;

}

@keyframes dropFade {

    from {

        opacity: 0;

        transform:
            translateY(20px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}

.custom-dropdown .dropdown-item {

    padding: 14px 18px;

    border-radius: 12px;

    font-weight: 500;

    transition: all .35s ease;

}

.custom-dropdown .dropdown-item:hover {

    background:
        linear-gradient(135deg,
            #0B2C8A,
            #0F9D58);

    color: #fff;

    transform: translateX(8px);

}

/* DESKTOP HOVER OPEN */

@media(min-width:1200px) {

    .navbar .dropdown:hover .dropdown-menu {

        display: block;

        margin-top: 0;

    }

}

/* ===================================
   MOBILE MENU
=================================== */

@media(max-width:1199px) {

    .navbar-collapse {

        background: #fff;

        padding: 25px;

        margin-top: 20px;

        border-radius: 20px;

        box-shadow:
            0 10px 40px rgba(0, 0, 0, .08);

    }

    .navbar-nav {

        gap: 0;

    }

    .navbar-nav .nav-link {

        color: #0B2C8A;

        border-bottom:
            1px solid #eee;

        border-radius: 0;

    }

    .custom-dropdown {

        box-shadow: none;

        background: #f8fafc;

        border-radius: 12px;

        margin-top: 10px;

    }

}

/* ===================================
   FLOAT BUTTONS ANIMATION
=================================== */

.whatsapp-float {

    animation:
        pulseFloat 2s infinite;

}

@keyframes pulseFloat {

    0% {

        transform: scale(1);

    }

    50% {

        transform: scale(1.08);

    }

    100% {

        transform: scale(1);

    }

}

.whatsapp-float:hover {

    transform:
        scale(1.15);

}