@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* font-family: "Montserrat", sans-serif; */
/* font-family: "Poppins", sans-serif; */

body {
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
}

p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}

a {
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
}




/* ================= HERO ================= */
.charity-hero {
    /* background:linear-gradient(135deg,#eef5ff,#f8fbff); */
    background: url('/public/assets_front/assets/banner.jpg')no-repeat;
    background-size: cover;
    background-position: center;
    align-items: center;
    text-align: left;
    position: relative;
}

.btn-warning {
    transition: 0.4s;
    color: #fff;
}

.btn-warning:hover {
    transition: 0.4s;
    color: #e0724c;
    border-color: #e0724c;
    background-color: transparent;
}

.btn-outline-warning:hover {
    transition: 0.4s;
    color: #fff;
}

.banner-content {
    padding: 14% 10% 14% 0;
}

.charity-hero .logo-img{
    position: absolute;
    top: 20%;
    width: 15%;
}


.img-bx {
    padding: 14% 10%;
}

.img-bx img {
    width: 100%;
    border-radius: 20px;
}

.charity-hero h1 {
    font-weight: 700;
    font-size: 48px;
    color: #4f64b8;
}

.charity-hero p {
    color: #6c7a89;
    font-size: 18px;
    margin-top: 15px;
}

.charity-hero .btn {
    padding: 12px 28px;
    border-radius: 40px;
    margin-top: 20px;
}


/* ================= SERVICES ================= */
.charity-services {
    padding: 90px 0;
    background: #ffffff;
}

.charity-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    padding: 35px;
    transition: .3s;
    height: 100%;
}

.charity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.charity-card img {
    width: 100%;
    border-radius: 14px;
}

.charity-card h3 {
    margin-top: 20px;
    font-weight: 600;
    color: #4f64b8;
}

.charity-card p {
    color: #6f7f92;
    margin: 15px 0;
}

.charity-card .btn {
    border-radius: 40px;
    padding: 10px 26px;
}


/* ================= FOOTER ================= */
.charity-footer {
    background: #bfe5ea;
    padding: 35px 0;
    text-align: center;
    color: #000;
    font-size: 14px;
}








/* Breadcumb Section start */

.breadcumb {
    background-color: #e0724c;
    color: #fff;
}


.breadcumb .banner-content h1{
    font-weight: 700;
    font-size: 48px;
}

.breadcumb .banner-content p{
    font-weight: 400;
    font-size: 16px;
}


.breadcumb .banner-content span{
    color: #fff;
    font-size: 14px;
}
.breadcumb .banner-content a{
    color: #fff;
    font-size: 14px;
}
.breadcumb .banner-content a:hover{
    color: #000;
    transition: 0.4s;
}



/* ===== MAIN FORM SECTION ===== */
.charity-form-section {
    background: #f6f9fc;
    padding: 80px 0;
    min-height: 100vh;
}

/* ===== FORM CARD ===== */
.charity-form-card {
    background: white;
    padding: 45px;
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    max-width: 820px;
    margin: auto;
}

/* ===== TITLE ===== */
.charity-form-title {
    font-weight: 700;
    margin-bottom: 10%;
    color: #e0724c;
    text-align: center;
}

/* ===== INPUT STYLE ===== */
.charity-form-section .form-control {
    border-radius: 25px;
    padding: 12px;
    border: 1px solid #e1e6ef;
}

.charity-form-section .form-control:focus {
    box-shadow: none;
    border-color: #4a7dff;
}

/* ===== BUTTON ===== */
.charity-submit-btn {
    padding: 13px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 17px;
    background-color: #69bc78;
    border-color: #69bc78;
}

.charity-form-card label{
    font-size: 12px;
    color: #4f64b8;
    font-weight: 700;
}