/* Base Font Setup */
body {
    font-family: 'Poppins', sans-serif;
}

.galbiHeading {
    font-family: 'Londrina Solid', sans-serif;
    color: white;
    font-size: clamp(2.5rem, 5vw, 60px);
}

.italicText {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: clamp(1.5rem, 3.5vw, 32px);
    font-style: italic;
}

.Tagline {
    font-family: 'Londrina Solid', sans-serif;
    color: white;
    font-size: clamp(1.75rem, 4vw, 45px);
}

.sectionHeading {
    font-family: 'Londrina Solid', sans-serif;
    font-size: clamp(1.75rem, 4vw, 47px);
}

.cardTitle {
    font-family: 'Londrina Solid', sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 40px);
}

.btn-accent {
    color: white;
    background: #B31B44;
    border: 1px solid #FFFFFF;
    border-radius: 8px;
    padding: 14px 28px;
    font-weight: bold;
    filter: drop-shadow(0px 10px 20px rgba(244, 30, 62, 0.2));
}

.btn-accent:hover {
    background-color: #c1134e;
}

/* Hero Section */
.hero-section {
    background: url("../imgs/heroBg.png");
    background-position: center;
    background-size: cover;
    padding-top: 2rem;
}

/* Intention Card */
.intentionCard {
    border-radius: 0;
    overflow: hidden;
}

.intentionCard img {
    border-radius: 0;
}

.intentionCard .card-body {
    
    border: 1px solid #3F0B7A;
    filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.04));
}
.causes-list li {
    position: relative;
    padding: 8px 0;
    margin: 8px 0;
}

.causes-list li::before,
.causes-list li::after {
    content: "";
    position: absolute;
    width: 50%; /* Set the width to half */
    height: 1px; /* Set the height of the line */
    background-color: rgba(255, 255, 255, 0.3); /* Subtle white line */
    left: 25%; /* Align the line to the center */
    transform: translateX(-50%); /* Center it */
}
.causes-list li::before {
    top: 0; /* Line above */
}

.causes-list li::after {
    bottom: 0; /* Line below */
}
/* Rooted Section */
.RootedSection {
    background: url("../imgs/rootedSection.png");
    background-position: center;
    background-size: cover;
    padding: 5rem 0;
}

/* Built By Us Section */
.built-by-us-section {
    width: 100%;
    overflow: hidden;
}

.built-by-us-section .row {
    display: flex;
    flex-wrap: nowrap;
}

.image-column {
    padding: 0;
    height: 0;
    position: relative;
    padding-bottom: 33.33%;
    overflow: hidden;
}

.image-column img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-column {
    padding: 0;
    height: 0;
    position: relative;
    padding-bottom: 33.33%;
    display: flex;
    align-items: center;
}

.gradient-bg-reverse {
    background: url("../imgs/gradientBgSmall.png");
    background-position: center;
    background-size: cover;
}

.content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    text-align: center;
}

.feature-card {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 6px;
    overflow: hidden;
    text-align: center;
    position: relative;
}

.feature-card .card-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    max-width: 90%;
}

.feature-card h3 {
    font-family: 'Londrina Solid', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-card p {
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    opacity: 0.9;
}

.card-1 {
    background: url('../imgs/card1.png');
    background-size: cover;
    background-position: center;
}

.card-2 {
    background: url('../imgs/card2.png');
    background-size: cover;
    background-position: center;
}

.card-3 {
    background: url('../imgs/card3.png');
    background-size: cover;
    background-position: center;
}

/* Footer */
.footer {
    background-color: #000;
    color: white;
    padding: 40px 0;
}

.footer .social-icons a {
    color: white;
    margin-right: 15px;
    font-size: 20px;
}

.footer .heart-icon {
    color: #e91e63;
}

.footer-logo {
    max-width: 150px;
}

/* Media Queries */
@media (max-width: 992px) {
    .built-by-us-section .row {
        flex-direction: column;
    }

    .image-column,
    .content-column {
        padding-bottom: 66.67%;
        width: 100%;
    }

    .content-wrapper {
        padding: 2rem;
    }

    .feature-card {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .feature-card {
        height: 220px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .image-column,
    .content-column {
        padding-bottom: 80%;
    }

    .content-wrapper {
        padding: 1.5rem;
    }
}
