html, body {
    font-family: 'Amaranth', sans-serif;
}

html,body{
    font-family: 'Amaranth', sans-serif;
}
h1,h2,h3,h4,h5,h6 {
    font-family: 'Amaranth', sans-serif;
}
p,label,small{
    font-family: 'Amaranth', sans-serif;
}
p{
    font-size: 16px;
    line-height: 26px;
    color: rgba(80,92,127,.9);
}
a{
    font-family: 'Amaranth', sans-serif;
    text-decoration: none !important;
    color: #000;
}
.section-para{
    font-size: 18px;
}
.fs-18{
    font-size: 18px;
}
.fs-20{
    font-size: 20px;
}
.fs-24{
    font-size: 24px;
}
.fw-700{
    font-weight: 700;
}

/* Color Variables */
:root {
    --primary-purple: #992475;
    --primary-red: #c63230;
    --primary-orange: #e25527;
    --gradient-primary: linear-gradient(90deg, #E53935 0%, #F36C21 50%, #8E1A8C 100%);
}

/* Section Styles */
.section {
    padding: 45px 0px;
}

/* Typography */
.main-heading {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.secondary-main-heading {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.gradient-text {
    background: linear-gradient(90deg, #E53935 0%, #F36C21 50%, #8E1A8C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
 .gradient-btn {
    background: linear-gradient(90deg, #E53935 0%, #F36C21 50%, #8E1A8C 100%);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    border: none;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gradient-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.gradient-btn-alt {
    background: linear-gradient(90deg, #E53935 0%, #F36C21 100%);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gradient-btn-alt:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.about-banner-text{
    font-size: 20px; 
    max-width: 900px; 
    margin: 0 auto; 
    line-height: 1.7;
}

/* Banner Section */
.about-banner-section {
    background: linear-gradient(135deg, rgba(153, 36, 117, 0.95) 0%, rgba(226, 85, 39, 0.95) 100%),  center/cover;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-banner-section::before {
    content: '🎨✏️📚🦋';
    position: absolute;
    font-size: 120px;
    opacity: 0.1;
    animation: floatEmoji 20s linear infinite;
}

@keyframes floatEmoji {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

.banner-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

/* Why Section (Section 2) */
.why-section {
    background: linear-gradient(to bottom, #ffffff 0%, #fef8f5 100%);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '🦋';
    position: absolute;
    top: 50px;
    right: 50px;
    font-size: 60px;
    animation: butterfly 4s ease-in-out infinite;
}

@keyframes butterfly {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-20px, -20px) rotate(10deg); }
    50% { transform: translate(20px, -10px) rotate(-10deg); }
    75% { transform: translate(-10px, 20px) rotate(5deg); }
}

.why-section::after {
    content: '✏️';
    position: absolute;
    bottom: 50px;
    left: 50px;
    font-size: 60px;
    animation: pencil 3s ease-in-out infinite;
}

@keyframes pencil {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.checklist-item {
    background: linear-gradient(135deg, #f8f0f6 0%, #fff5f0 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.checklist-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(153, 36, 117, 0.15);
}

.check-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Features Grid (Section 3) */
.features-section {
    background: white;
}

.feature-card {
    background: linear-gradient(135deg, #f8f0f6 0%, #fff5f0 100%);
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(153, 36, 117, 0.05) 0%, transparent 70%);
    transition: all 0.6s ease;
}

.feature-card:hover::before {
    transform: scale(1.2) rotate(45deg);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(153, 36, 117, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-purple);
}

.feature-description {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

/* Intentions Section (Section 4) */
.intentions-section {
    background: url('https://images.unsplash.com/photo-1627873828946-44e8b5261d2d?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w3Nzg4Nzd8MHwxfHNlYXJjaHwxfHxjb2xvcmZ1bCUyMGNyYXlvbnMlMjBwZW5jaWxzJTIwcGF0dGVybiUyMGJhY2tncm91bmR8ZW58MXx8fHwxNzcyMTI1ODQwfDA&ixlib=rb-4.1.0&q=80&w=1080&utm_source=figma&utm_medium=referral') center/cover;
    position: relative;
}

.intentions-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.92);
}

.intention-card {
    background: linear-gradient(135deg, #f8f0f6 0%, #fff5f0 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.intention-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(153, 36, 117, 0.2);
}

.intention-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.intention-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.intention-card:hover .intention-image img {
    transform: scale(1.1);
}

.intention-content {
    padding: 30px;
}

.intention-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -50px auto 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-size: 28px;
}

.intention-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-purple);
    text-align: center;
}

.intention-description {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    text-align: center;
}

/* CTA Section (Section 5) */
.cta-cards-section {
    background: linear-gradient(to bottom, white 0%, #f8f0f6 100%);
}

.cta-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
}

.cta-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
    box-shadow: 0 15px 40px rgba(153, 36, 117, 0.2);
}

.cta-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: white;
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.cta-card-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.cta-card-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #555;
}

.btn-gradient {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 35px;
    border-radius: 30px;
    border: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-block;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(153, 36, 117, 0.4);
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0 20px;
}

footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-orange);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-heading {
        font-size: 32px;
    }

    .secondary-main-heading {
        font-size: 28px;
    }

    .section {
        padding: 35px 0px;
    }

    .about-banner-section {
        min-height: 50vh;
    }

    .feature-card,
    .intention-card,
    .cta-card {
        margin-bottom: 20px;
    }

    .nav-link {
        margin: 10px 0;
    }

    .why-section::before,
    .why-section::after {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .main-heading {
        font-size: 28px;
    }

    .secondary-main-heading {
        font-size: 24px;
    }

    .feature-icon,
    .cta-card-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .about-banner-section::before {
        font-size: 80px;
    }
}


/* ==================== Banner Section ==================== */
        .banner-section {
            position: relative;
            height: 50vh;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .banner-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }
        
        .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
            z-index: 2;
        }
        
        .banner-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: #ffffff;
            padding: 0 20px;
        }
        
        .banner-content h1 {
            font-size: 60px;
            margin-bottom: 24px;
            line-height: 1.2;
        }
        
        .banner-content p {
            font-size: 24px;
            margin-bottom: 32px;
            opacity: 0.9;
        }
        
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            color: #ffffff;
            font-size: 14px;
            z-index: 10;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translate(-50%, 0); }
            50% { transform: translate(-50%, 10px); }
        }
        
        /* ==================== Overview Section ==================== */
        .overview-section {
            position: relative;
            overflow: hidden;
        }
        
        .floating-element {
            position: absolute;
            font-size: 60px;
            opacity: 0.2;
            pointer-events: none;
            z-index: 1;
        }
        
        .floating-butterfly {
            top: 80px;
            right: 40px;
            animation: float-butterfly 6s ease-in-out infinite;
        }
        
        .floating-pencil {
            top: 160px;
            left: 40px;
            animation: float-pencil 4s ease-in-out infinite;
        }
        
        .floating-book {
            bottom: 80px;
            right: 80px;
            animation: float-book 5s ease-in-out infinite;
        }
        
        @keyframes float-butterfly {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(10px, -20px); }
        }
        
        @keyframes float-pencil {
            0%, 100% { transform: rotate(-5deg) translateY(0); }
            50% { transform: rotate(5deg) translateY(-15px); }
        }
        
        @keyframes float-book {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(3deg); }
        }
        
        .overview-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }
        
        .overview-content {
            position: relative;
            z-index: 5;
        }
        
        /* ==================== Facilitators Section ==================== */
        .facilitators-section {
            background: linear-gradient(135deg, #f3e5f5 0%, #ffe0b2 100%);
            position: relative;
            overflow: hidden;
        }
        
        .bg-element {
            position: absolute;
            font-size: 80px;
            pointer-events: none;
            z-index: 1;
        }
        
        .bg-cloud-1 {
            top: 40px;
            left: 80px;
            opacity: 0.06;
            animation: bg-float-1 8s ease-in-out infinite;
        }
        
        .bg-puzzle {
            top: 160px;
            right: 120px;
            opacity: 0.07;
            animation: bg-float-2 10s ease-in-out infinite;
        }
        
        .bg-star {
            bottom: 80px;
            left: 160px;
            opacity: 0.05;
            animation: bg-rotate 20s linear infinite;
        }
        
        .bg-abc {
            top: 240px;
            left: 40px;
            opacity: 0.06;
            animation: bg-float-3 9s ease-in-out infinite;
        }
        
        .bg-cloud-2 {
            bottom: 160px;
            right: 80px;
            opacity: 0.07;
            animation: bg-float-4 7s ease-in-out infinite;
        }
        
        @keyframes bg-float-1 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(0, -30px) rotate(10deg); }
        }
        
        @keyframes bg-float-2 {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(15px, -20px); }
        }
        
        @keyframes bg-rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        @keyframes bg-float-3 {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-25px); }
        }
        
        @keyframes bg-float-4 {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(-10px, -15px); }
        }
        
        .facilitators-content {
            position: relative;
            z-index: 10;
        }
        
        /* ==================== Vision & Mission Cards ==================== */
        .vision-mission-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .vision-mission-card:hover {
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            transform: translateY(-5px);
        }
        
        .icon-circle {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(90deg, #E53935 0%, #F36C21 50%, #8E1A8C 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .icon-circle svg {
            width: 28px;
            height: 28px;
            fill: #ffffff;
        }
        
        .mission-list {
            list-style: none;
            padding: 0;
        }
        
        .mission-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            font-size: 16px;
            color: rgba(0, 0, 0, 0.8);
        }
        
        .mission-list li .emoji {
            font-size: 20px;
            flex-shrink: 0;
            margin-top: 2px;
        }
        
        /* ==================== Journey Cards ==================== */
        .journey-heading {
            text-align: center;
            margin-bottom: 48px;
        }
        
        .journey-card {
            background: #ffffff;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            height: 100%;
        }
        
        .journey-card:hover {
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            transform: translateY(-10px) scale(1.02);
        }
        
        .journey-card-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .journey-card:hover .journey-card-img {
            transform: scale(1.1);
        }
        
        .journey-card-body {
            padding: 32px;
        }
        
        .journey-icon-circle {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: linear-gradient(90deg, #E53935 0%, #F36C21 50%, #8E1A8C 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }
        
        .journey-card:hover .journey-icon-circle {
            transform: scale(1.1);
        }
        
        .journey-icon-circle svg {
            width: 32px;
            height: 32px;
            fill: #ffffff;
        }
        
        .journey-card-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
        }
        
        .journey-card-text {
            color: rgba(0, 0, 0, 0.6);
            margin-bottom: 20px;
        }
        
        .learn-more-link {
            color: #E53935;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(90deg, #E53935 0%, #F36C21 50%, #8E1A8C 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all 0.3s ease;
        }
        
        .journey-card:hover .learn-more-link {
            gap: 12px;
        }
        
        /* ==================== Sticky CTA Bar ==================== */
        .sticky-cta-bar {
            position: fixed;
            bottom: -200px;
            left: 0;
            right: 0;
            background: linear-gradient(90deg, #E53935 0%, #F36C21 50%, #8E1A8C 100%);
            padding: 20px 0;
            z-index: 9999;
            box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
            transition: bottom 0.5s ease;
        }
        
        .sticky-cta-bar.show {
            bottom: 0;
        }
        
        .cta-bar-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .cta-bar-text h4 {
            color: #ffffff;
            font-size: 22px;
            margin-bottom: 4px;
        }
        
        .cta-bar-text p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
            margin: 0;
        }
        
        .cta-bar-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        
        .cta-btn-white {
            background: #ffffff;
            color: #000000;
            padding: 12px 24px;
            border-radius: 50px;
            border: none;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        .cta-btn-white:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
            color: #000000;
        }
        
        .cta-btn-outline {
            background: rgba(255, 255, 255, 0.2);
            color: #ffffff;
            padding: 12px 24px;
            border-radius: 50px;
            border: 2px solid #ffffff;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .cta-btn-outline:hover {
            background: #ffffff;
            color: #000000;
            transform: scale(1.05);
        }
        
        .close-cta-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .close-cta-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }
        
        /* ==================== Responsive Styles ==================== */
        @media (max-width: 991px) {
          
            .banner-content h1 {
                font-size: 48px;
            }
            
            .banner-content p {
                font-size: 20px;
            }
            
            .overview-image {
                height: 400px;
            }
        }
        
        @media (max-width: 767px) {

            .banner-content h1 {
                font-size: 36px;
            }
            
            .banner-content p {
                font-size: 18px;
            }
            
            .overview-image {
                height: 300px;
                margin-bottom: 30px;
            }
            
            .floating-element {
                font-size: 40px;
            }
            
            .bg-element {
                font-size: 60px;
            }
            
            .vision-mission-card {
                padding: 30px;
                margin-bottom: 20px;
            }
            
            .cta-bar-content {
                flex-direction: column;
                text-align: center;
            }
            
            .cta-bar-text {
                text-align: center;
            }
            
            .cta-bar-actions {
                justify-content: center;
            }
            
            .journey-card {
                margin-bottom: 24px;
            }
        }
        
@media (max-width: 575px) {
    .banner-content h1 {
        font-size: 28px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
    
    .gradient-btn {
        padding: 14px 28px;
        font-size: 16px;
    }
}

/* ==================== Utility Classes ==================== */
.text-muted-custom {
    color: rgba(0, 0, 0, 0.6);
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-48 {
    margin-bottom: 48px;
}
