:root {
    --primary-color: #C41E56;
    --primary-dark: #9E1845;
    --secondary-color: #FFD700;
    --accent-color: #FF6B6B;
    --dark-color: #2D2D2D;
    --light-bg: #FFF9F5;
    --gradient-primary: linear-gradient(135deg, #C41E56 0%, #FF6B6B 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}


/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(196, 30, 86, 0.95) 0%, rgba(255, 107, 107, 0.9) 100%),
        url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1920') center/cover;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, white, transparent);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
}

.decorative-line {
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 0 auto;
    border-radius: 2px;
}

/* Section Styles */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Cards */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 10px 40px rgba(196, 30, 86, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(196, 30, 86, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(196, 30, 86, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.feature-card h5 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Vision Mission Section */
.vision-mission-section {
    background: var(--light-bg);
    position: relative;
}

.vm-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.vm-icon {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

/* What Makes Different Section */
.different-section {
    background: linear-gradient(180deg, white 0%, var(--light-bg) 100%);
}

.check-item {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
}

.check-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(196, 30, 86, 0.15);
}

.check-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

/* Services Section */
.services-section {
    background: var(--gradient-primary);
    position: relative;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Communities Section */
.community-badge {
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    margin: 0.5rem;
    display: inline-block;
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.community-badge:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

/* Leadership Section */
.leader-card {
    background: white;
    border-radius: 25px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(196, 30, 86, 0.2);
}

.leader-avatar {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.leader-name {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.leader-role {
    color: var(--primary-color);
    font-weight: 500;
}

/* Success Stories Section */
.success-section {
    background: var(--light-bg);
    position: relative;
}

.success-content {
    position: relative;
}

.heart-icon {
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

/* Commitment Section */
.commitment-section {
    background: linear-gradient(135deg, #2D2D2D 0%, #4a4a4a 100%);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--dark-color);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    color: var(--dark-color);
}

.btn-outline-light {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
}

/* Mission List */
.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    padding: 0.8rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.mission-list li i {
    color: var(--primary-color);
    margin-top: 4px;
}

/* Floating Elements */
.floating-heart {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .vm-card {
        padding: 2rem;
    }

    .section-padding {
        padding: 50px 0;
    }
}

/* Scroll Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}