/* ============================
   GLOBAL STYLES & RESETS
   ============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-family: 'Roboto', sans-serif;
    font-family: 'Roboto Slab', serif;
    color: #60647D; /* Secondary Slate */
    background-color: #FFFFFF; /* Pure White */
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #2D366D; /* Primary Deep Blue */
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

p {
    margin-bottom: 1rem;
}

/* ============================
   NAVIGATION BAR
   ============================ */
.navbar {
    width: 100%;
    height: 67px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    z-index: 1000;
    position: fixed;
    top: 0;
    color: #FFFFFF; /* Pure White */
    padding-top: 30px;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(45, 54, 109, 0.1);
    padding-top: 10px;
    height: 60px;
}

.navbar.scrolled .left img {
    height: 50px;
}

.navbar.scrolled a {
    color: #2D366D; /* Primary Deep Blue */
}

.navbar.scrolled .donate-btn-nav {
    background-color: #EE2A35; /* Vibrant Charity Red */
}

.navbar .left {
    height: 100%;
    width: 8%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    right: 10%;
}

.navbar .left img {
    width: 100%;
    height: 90%;
    transition: all 0.3s ease;
}

.hamburger {
    width: 50px;
    height: 40px;
    display: none;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger div {
    width: 100%;
    height: 3px;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
}

.navbar.scrolled .hamburger div {
    background-color: #2D366D; /* Primary Deep Blue */
}

.navbar .right {
    height: 100%;
    width: 50%;
    position: relative;
    right: -10%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar .right .list {
    display: flex;
    width: 100%;
    justify-content: space-between;
    height: 100%;
    align-items: center;
}

.navbar .right .list-Item {
    width: auto;
}

.navbar a {
    text-decoration: none;
    font-size: 14px;
    color: #FFFFFF; /* Pure White */
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.navbar a:hover {
    color: #EE2A35; /* Vibrant Charity Red */
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled a:hover {
    background-color: rgba(244, 247, 254, 0.5); /* Light Grey/Off-white */
}

.navbar p {
    font-size: 14px;
}

.donate-btn-nav {
    background-color: #EE2A35; /* Vibrant Charity Red */
    height: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    height: 50%;
    padding: 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.donate-btn-nav:hover {
    background-color: #2D366D; /* Primary Deep Blue */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(238, 42, 53, 0.3);
}

.donate-btn-nav p {
    font-size: 15px;
    color: #FFFFFF;
    font-weight: 700;
}

/* ============================
   HERO CAROUSEL
   ============================ */
.homeSlider {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    overflow-x: hidden;
    position: relative;
    margin-top: 0;
}

.slides {
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: #FFFFFF; /* Pure White */
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slides.active {
    opacity: 1;
}

.slides .content {
    width: 80%;
    margin: auto;
    background-color: rgba(45, 54, 109, 0.7); /* Primary Deep Blue with transparency */
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slides .content p:nth-child(1) {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.slides .content h1 {
    font-weight: 900;
    font-size: 47px;
    font-family: 'Playfair Display', serif;
    padding-top: 20px;
    width: 60%;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 20px;
}

.slides .content p:nth-child(3) {
    font-size: 15px;
    width: 68%;
    padding-top: 20px;
    padding-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.slides:nth-child(1) {
    background-image: linear-gradient(rgba(45, 54, 109, 0.85), rgba(45, 54, 109, 0.7)), url(../images/slider-1.jpg);
}

.slides:nth-child(2) {
    background-image: linear-gradient(rgba(45, 54, 109, 0.85), rgba(45, 54, 109, 0.7)), url(../images/slider-2.jpg);
}

.slides:nth-child(3) {
    background-image: linear-gradient(rgba(45, 54, 109, 0.85), rgba(45, 54, 109, 0.7)), url(../images/slider-3.jpg);
}

.slide-lower {
    display: flex;
    width: 50%;
    padding-top: 30px;
    gap: 20px;
}

.slide-lower .donate-btn {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    margin-right: 0;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    background-color: #EE2A35; /* Vibrant Charity Red */
    color: #FFFFFF;
    border: 2px solid #EE2A35; /* Vibrant Charity Red */
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slide-lower .donate-btn:hover {
    background-color: transparent;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(238, 42, 53, 0.3);
}

.slide-lower .Read-btn {
    width: 25%;
    height: 40px;
    border: 2px solid #FFFFFF; /* Pure White */
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slide-lower .Read-btn:hover {
    background-color: #FFFFFF; /* Pure White */
    color: #2D366D; /* Primary Deep Blue */
    transform: translateY(-3px);
}

.left-arr,
.right-arr {
    position: absolute;
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #EE2A35; /* Vibrant Charity Red */
    top: 50vh;
    left: 20px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.right-arr {
    left: auto;
    right: 20px;
}

.left-arr:hover,
.right-arr:hover {
    background-color: #EE2A35; /* Vibrant Charity Red */
    transform: scale(1.1);
}

.left-arr i,
.right-arr i {
    color: #EE2A35; /* Vibrant Charity Red */
    transition: all 0.3s ease;
}

.left-arr:hover i,
.right-arr:hover i {
    color: #FFFFFF;
}

.radio-btn {
    width: 60px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    z-index: 2;
    top: 90vh;
    left: 50%;
    transform: translateX(-50%);
}

.radio-btn .radio {
    width: 30%;
    height: 90%;
    border: 1px solid #FFFFFF;
    box-sizing: border-box;
    padding: 2px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-btn .radio.active {
    border-color: #EE2A35; /* Vibrant Charity Red */
}

.radio-btn .radio div {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background-color: transparent;
    transition: all 0.3s ease;
}

.radio-btn .radio.active div {
    background-color: #EE2A35; /* Vibrant Charity Red */
}

/* ============================
   GET INVOLVED SECTION
   ============================ */
.member-donar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 70%;
    margin: auto;
    text-align: center;
    padding-top: 8%;
    padding-bottom: 100px;
}

.member-donar p:nth-child(1) {
    color: #EE2A35; /* Vibrant Charity Red */
    font-weight: 900;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    position: relative;
}

.member-donar p:nth-child(1)::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: #EE2A35; /* Vibrant Charity Red */
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.member-donar h1 {
    padding-top: 15px;
    font-weight: 900;
    padding-bottom: 50px;
    color: #2D366D; /* Primary Deep Blue */
    font-size: 2.5rem;
    max-width: 800px;
}

.card-sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 50vh;
    box-sizing: border-box;
}

.card-sec .card {
    height: 100%;
    width: 30%;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    box-shadow: 2px 3px 10px 2px rgba(208, 208, 208, 0.3);
    transition: all 0.4s ease-in-out;
    padding: 20px;
    background-color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.card-sec .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #EE2A35; /* Vibrant Charity Red */
}

.card-sec .card:hover {
    box-shadow: 0 20px 40px rgba(45, 54, 109, 0.15);
    transform: translateY(-10px);
    transition: all 0.4s ease-in-out;
}

.card-sec .card i {
    font-size: 45px;
    color: #EE2A35; /* Vibrant Charity Red */
    padding-bottom: 30px;
}

.card-sec .card h3 {
    font-size: 25px;
    font-weight: 900;
    padding-bottom: 10px;
    color: #2D366D; /* Primary Deep Blue */
}

.card-sec .card p {
    color: #60647D; /* Secondary Slate */
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-sec .card .donate-btn {
    height: 35px;
    margin-top: 30px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    background-color: #EE2A35; /* Vibrant Charity Red */
    color: #FFFFFF;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    font-weight: 700;
    font-size: 14px;
}

.card-sec .card .donate-btn:hover {
    background-color: transparent;
    border: 2px solid #EE2A35; /* Vibrant Charity Red */
    color: #EE2A35; /* Vibrant Charity Red */
    transition: all 0.3s ease-in-out;
}

.card-sec .card .donate-btn p {
    color: #FFFFFF; /* Pure White */
    font-weight: 900;
    margin: 0;
}

.card-sec .card .donate-btn:hover p {
    color: #EE2A35; /* Vibrant Charity Red */
}

/* ============================
   ABOUT US SECTION
   ============================ */
.about-us {
    width: 70%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding-top: 100px;
    padding-bottom: 100px;
    gap: 50px;
}

.left-sec {
    width: 50%;
    height: 70vh;
    box-sizing: border-box;
    padding: 30px;
    padding-top: 20px;
    padding-right: 40px;
}

.left-sec .image {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 3px 10px 2px rgba(203, 202, 202, 0.3);
    position: relative;
}

.left-sec .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.left-sec .image:hover img {
    transform: scale(1.05);
}

.counter {
    display: flex;
    width: 95%;
    margin: auto;
    position: relative;
    height: 100px;
    background-color: #2D366D; /* Primary Deep Blue */
    border-radius: 10px;
    margin-top: -50px;
    color: #FFFFFF; /* Pure White */
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 3px 10px 2px rgba(203, 202, 202, 0.3);
    z-index: 2;
}

.count-item {
    border-left: 2px solid rgba(255, 255, 255, 0.595);
    width: 25%;
    text-align: center;
}

.count-item p:nth-child(2) {
    font-size: 14px;
    font-weight: 900;
}

.count-item:nth-child(1) {
    border-left: 0px;
}

.right-sec {
    width: 40%;
    box-sizing: border-box;
}

.right-sec p:nth-child(1) {
    color: #EE2A35; /* Vibrant Charity Red */
    font-weight: 900;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    position: relative;
}

.right-sec p:nth-child(1)::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: #EE2A35; /* Vibrant Charity Red */
    bottom: -5px;
    left: 0;
}

.right-sec p:nth-child(3) {
    font-weight: 900;
    font-size: 15px;
    color: #60647D; /* Secondary Slate */
    line-height: 1.7;
}

.right-sec h1 {
    font-size: 38px;
    font-weight: bolder;
    line-height: 40px;
    padding-top: 10px;
    padding-bottom: 20px;
    color: #2D366D; /* Primary Deep Blue */
}

.right-sec-low {
    display: flex;
    padding-top: 20px;
    width: 100%;
    box-sizing: border-box;
    padding-bottom: 30px;
    gap: 30px;
}

.right-sec-low-left {
    width: 60%;
}

.right-sec-low-left div {
    display: flex;
    align-items: flex-start;
    padding-bottom: 10px;
}

.right-sec-low-left div i {
    color: #EE2A35; /* Vibrant Charity Red */
    font-size: 15px;
    padding-right: 10px;
    margin-top: 3px;
}

.right-sec-low-left div p {
    font-size: 13px;
    font-weight: 900;
    color: #60647D; /* Secondary Slate */
    line-height: 1.5;
}

.right-sec-low-right {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 30%;
    background-color: #EE2A35; /* Vibrant Charity Red */
    color: #FFFFFF; /* Pure White */
    border-radius: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    box-shadow: 0 10px 20px rgba(238, 42, 53, 0.2);
}

.right-sec-low-right h1 {
    padding: 0;
    font-size: 30px;
    line-height: 30px;
    color: #FFFFFF;
}

.right-sec-low-right p {
    font-size: 12px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.9);
}

.learn {
    height: 40px;
    background-color: #EE2A35; /* Vibrant Charity Red */
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: #FFFFFF;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.learn:hover {
    background-color: #2D366D; /* Primary Deep Blue */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(238, 42, 53, 0.3);
}

/* ============================
   RECENT CAMPAIGNS SECTION
   ============================ */
.recent-campaign {
    width: 70%;
    margin: auto;
    padding-top: 100px;
    position: relative;
}

.recent-campaign h1 {
    width: 60%;
    font-size: 40px;
    font-weight: 900;
    color: #2D366D; /* Primary Deep Blue */
    margin-bottom: 30px;
}

.recent-campaign p:nth-child(1) {
    color: #EE2A35; /* Vibrant Charity Red */
    font-weight: 900;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.recent-campaign p:nth-child(1)::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: #EE2A35; /* Vibrant Charity Red */
    bottom: -5px;
    left: 0;
}

.viewAll {
    background-color: #EE2A35; /* Vibrant Charity Red */
    position: absolute;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    border-radius: 20px;
    top: 0;
    right: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.viewAll:hover {
    background-color: #2D366D; /* Primary Deep Blue */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(238, 42, 53, 0.3);
}

.viewAll p {
    font-size: 15px;
    font-weight: 900;
    color: #FFFFFF; /* Pure White */
}

.row {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding-bottom: 60px;
    padding-top: 30px;
    gap: 30px;
}

.campaign-item {
    width: 45%;
    padding: 10px;
    border-radius: 20px;
    box-sizing: border-box;
    box-shadow: 0px 3px 20px 4px rgba(228, 226, 226, 0.3);
    background-color: #FFFFFF;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.campaign-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(45, 54, 109, 0.15);
}

.item-image {
    width: 100%;
    height: 40vh;
    border-radius: 20px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.campaign-item:hover .item-image img {
    transform: scale(1.05);
}

.lower {
    width: 90%;
    margin: auto;
}

.campaign-item h3 {
    padding-top: 20px;
    font-size: 25px;
    font-weight: 900;
    padding-bottom: 20px;
    color: #2D366D; /* Primary Deep Blue */
}

.campaign-info {
    display: flex;
    width: 90%;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #F4F7FE; /* Light Grey/Off-white */
}

.info p {
    font-size: 13px;
    font-weight: 900;
    padding-bottom: 10px;
    color: #60647D; /* Secondary Slate */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progressbar {
    width: 90%;
    height: 15px;
    box-sizing: border-box;
    background-color: #F4F7FE; /* Light Grey/Off-white */
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
}

.progress {
    height: 100%;
    width: 75%;
    background-color: #EE2A35; /* Vibrant Charity Red */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 10px;
    transition: width 1s ease-in-out;
}

.progress p {
    font-size: 12px;
    font-weight: 900;
    color: #FFFFFF; /* Pure White */
}

.lowest {
    display: flex;
    padding-top: 30px;
    padding-bottom: 10px;
    gap: 20px;
}

.recent-campaign .donate-btn {
    height: 40px;
    width: 30%;
    justify-content: center;
    font-weight: 900;
    color: #FFFFFF; /* Pure White */
    background-color: #EE2A35; /* Vibrant Charity Red */
    border-radius: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.recent-campaign .donate-btn:hover {
    background-color: #2D366D; /* Primary Deep Blue */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(238, 42, 53, 0.3);
}

.program-details {
    height: 40px;
    width: 30%;
    border: 2px solid #EE2A35; /* Vibrant Charity Red */
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    color: #EE2A35; /* Vibrant Charity Red */
    font-weight: 900;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.program-details:hover {
    background-color: #EE2A35; /* Vibrant Charity Red */
    color: #FFFFFF;
}

/* ============================
   EVENTS SECTION
   ============================ */
.events {
    width: 75%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

.events p:nth-child(1) {
    color: #EE2A35; /* Vibrant Charity Red */
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.events p:nth-child(1)::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: #EE2A35; /* Vibrant Charity Red */
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.events h1 {
    font-size: 40px;
    font-weight: 900;
    padding-top: 10px;
    color: #2D366D; /* Primary Deep Blue */
    text-align: center;
    max-width: 800px;
    margin-bottom: 30px;
}

.events .row {
    justify-content: space-around;
    width: 100%;
}

.event-item {
    width: 45%;
    height: 60vh;
    border-radius: 20px;
    border: 0.5px solid #E3E3E3;
    background-color: #2D366D; /* Primary Deep Blue */
    background-size: cover;
    filter: brightness(1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFFFFF; /* Pure White */
    padding: 40px;
    box-sizing: border-box;
    box-shadow: 2px 4px 10px 4px rgba(227, 222, 222, 0.716);
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
}

.event-item:hover {
    box-shadow: 0 25px 50px rgba(45, 54, 109, 0.25);
    transform: translateY(-10px);
    transition: all 0.4s ease-in-out;
}

.upper-top {
    width: 60px;
    height: 60px;
    background-color: #EE2A35; /* Vibrant Charity Red */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-direction: column;
    position: absolute;
    top: 20px;
    right: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.upper-top h4 {
    color: #FFFFFF; /* Pure White */
    line-height: 1;
}

.content-lower {
    padding-top: 90px;
}

.content-lower h2 {
    font-size: 25px;
    font-weight: 900;
    padding-bottom: 10px;
    color: #FFFFFF;
}

.content-lower p {
    font-size: 14px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.time-loc {
    display: flex;
    justify-content: space-between;
    width: 75%;
    padding-bottom: 20px;
}

.time-loc div {
    display: flex;
    align-items: center;
}

.time-loc div i {
    color: #EE2A35; /* Vibrant Charity Red */
    padding-right: 10px;
}

.time-loc div p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.details {
    width: 150px;
    height: 40px;
    border: 2px solid #FFFFFF; /* Pure White */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    margin-top: 40px;
    transition: all 0.4s ease-in-out;
    color: #FFFFFF;
    font-weight: 700;
    cursor: pointer;
}

.details:hover {
    cursor: pointer;
    background-color: #FFFFFF; /* Pure White */
    transition: all 0.4s ease-in-out;
    color: #2D366D; /* Primary Deep Blue */
}

.details:hover p {
    color: #2D366D; /* Primary Deep Blue */
}

.details p {
    font-size: 15px;
    font-weight: 900;
    color: #FFFFFF;
}

.viewAllEvent {
    width: 200px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EE2A35; /* Vibrant Charity Red */
    border-radius: 20px;
    color: #FFFFFF;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 50px;
}

.viewAllEvent:hover {
    background-color: #2D366D; /* Primary Deep Blue */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(238, 42, 53, 0.3);
}

/* ============================
   TEAM SECTION
   ============================ */
.team {
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 100px;
}

.team p:nth-child(1) {
    color: #EE2A35; /* Vibrant Charity Red */
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.team p:nth-child(1)::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: #EE2A35; /* Vibrant Charity Red */
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.team h1 {
    font-size: 40px;
    font-weight: 900;
    padding-top: 10px;
    color: #2D366D; /* Primary Deep Blue */
    text-align: center;
    max-width: 800px;
    margin-bottom: 30px;
}

.team .row {
    width: 90%;
    justify-content: space-around;
}

.team-item {
    width: 28%;
    height: 50vh;
    border-radius: 12px;
    box-sizing: border-box;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 3px 10px 2px rgba(236, 232, 232, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(45, 54, 109, 0.15);
}

.team-item .content {
    width: 90%;
    margin: auto;
    background-color: #FFFFFF;
    box-sizing: border-box;
    border-radius: 10px;
    display: flex;
    padding: 15px;
    position: relative;
    bottom: -25vh;
    box-shadow: 0px 3px 10px 2px rgba(236, 232, 232, 0.3);
    transition: all 0.4s ease;
}

.team-item:hover .content {
    bottom: -10vh;
}

.team-item .content p:nth-child(1) {
    font-size: 14px;
    padding-bottom: 0px;
    color: #EE2A35; /* Vibrant Charity Red */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-item .content p:nth-child(3) {
    font-size: 13px;
    font-weight: 800;
    color: #60647D; /* Secondary Slate */
    line-height: 1.6;
}

.team-item .content h1 {
    font-size: 23px;
    padding-top: 5px;
    color: #2D366D; /* Primary Deep Blue */
    margin-bottom: 10px;
}

.team-item .content .right {
    width: 20%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.team-item .content .right i {
    border-radius: 50%;
    border: 2px solid #EE2A35; /* Vibrant Charity Red */
    padding: 5px;
    box-sizing: border-box;
    font-size: 15px;
    color: #EE2A35; /* Vibrant Charity Red */
    margin-top: 5px;
    margin-bottom: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-item .content .right i:hover {
    background-color: #EE2A35; /* Vibrant Charity Red */
    color: #FFFFFF;
}

/* ============================
   INSIGHTS SECTION
   ============================ */
.insights {
    width: 75%;
    margin: auto;
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

.insights p:nth-child(1) {
    color: #EE2A35; /* Vibrant Charity Red */
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.insights p:nth-child(1)::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: #EE2A35; /* Vibrant Charity Red */
    bottom: -5px;
    left: 0;
}

.insights h1 {
    font-size: 40px;
    padding-top: 10px;
    color: #2D366D; /* Primary Deep Blue */
    max-width: 800px;
    margin-bottom: 30px;
}

.insights .viewAll {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EE2A35; /* Vibrant Charity Red */
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.insights .viewAll:hover {
    background-color: #2D366D; /* Primary Deep Blue */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(238, 42, 53, 0.3);
}

.insights .viewAll p {
    color: #FFFFFF;
    margin: 0;
}

.blog-item {
    width: 48%;
    height: 40vh;
    display: flex;
    box-sizing: border-box;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 3px 10px 2px rgba(236, 232, 232, 0.3);
    background-color: #FFFFFF;
    transition: all 0.4s ease;
}

.blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(45, 54, 109, 0.15);
}

.blog-item .left {
    height: 100%;
    width: 60%;
    padding: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    box-sizing: border-box;
}

.blog-item .left h3 {
    font-size: 23px;
    padding-bottom: 20px;
    color: #2D366D; /* Primary Deep Blue */
}

.blog-item .left p {
    font-size: 14px;
    font-weight: 900;
    color: #60647D; /* Secondary Slate */
    line-height: 1.7;
}

.blog-item .left .head {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: 30px;
    border-radius: 15px;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
    background-color: #EE2A35; /* Vibrant Charity Red */
}

.blog-item .left .head p:nth-child(1) {
    font-size: 13px;
    color: #FFFFFF; /* Pure White */
    font-weight: 900;
    margin: 0;
}

.blog-item .right {
    width: 40%;
    height: 100%;
    overflow: hidden;
}

.blog-item .right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-item:hover .right img {
    transform: scale(1.05);
}

/* ============================
   FOOTER
   ============================ */
.footer {
    height: 75px;
    width: 100%;
    display: flex;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
    background-color: #2D366D; /* Updated to Primary Deep Blue */
    color: #FFFFFF;
    padding: 0 20px;
}

.footer .first, .second, .third {
    height: 100%;
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.footer i {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 10px;
    margin: 5px;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer i:hover {
    background-color: #EE2A35; /* Vibrant Charity Red */
    transform: translateY(-3px);
}

.footer .second .upper-tc p:nth-child(1) {
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.footer .second .upper-tc {
    display: flex;
    align-items: center;
}

.footer .second .upper-tc p {
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer .second .upper-tc p:hover {
    color: #EE2A35; /* Vibrant Charity Red */
}

/* ============================
   RESPONSIVE STYLES
   ============================ */
@media (max-width: 1024px) {
    .slides .content h1 {
        font-size: 2.5rem;
        width: 70%;
    }
    
    .slides .content p:nth-child(3) {
        width: 80%;
    }
    
    .slide-lower {
        width: 70%;
    }
    
    .member-donar h1,
    .recent-campaign h1,
    .events h1,
    .team h1,
    .insights h1 {
        font-size: 2rem;
    }
    
    .card-sec .card h3 {
        font-size: 1.3rem;
    }
    
    .campaign-item h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .slides .content {
        width: 90%;
        padding: 30px;
    }
    
    .slides .content h1 {
        font-size: 2rem;
        width: 90%;
    }
    
    .slides .content p:nth-child(3) {
        width: 90%;
    }
    
    .slide-lower {
        width: 100%;
        flex-direction: column;
        gap: 15px;
    }
    
    .slide-lower .donate-btn,
    .slide-lower .Read-btn {
        width: 100%;
        margin-right: 0;
    }
    
    .card-sec {
        flex-direction: column;
        height: auto;
        gap: 30px;
    }
    
    .card-sec .card {
        width: 100%;
        height: auto;
        min-height: 300px;
    }
    
    .about-us {
        flex-direction: column;
        gap: 30px;
    }
    
    .left-sec,
    .right-sec {
        width: 100%;
    }
    
    .left-sec {
        height: 50vh;
    }
    
    .row {
        flex-direction: column;
    }
    
    .campaign-item,
    .event-item,
    .team-item,
    .blog-item {
        width: 100%;
    }
    
    .team-item {
        height: 40vh;
    }
    
    .team-item .content {
        bottom: -20vh;
    }
    
    .blog-item {
        height: auto;
        min-height: 200px;
        flex-direction: column;
    }
    
    .blog-item .left,
    .blog-item .right {
        width: 100%;
    }
    
    .blog-item .right {
        height: 200px;
    }
}

/* Load Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Add Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');