 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #0d0d0d;
            color: #fff;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            overflow-x: hidden;
        }

        /* ==================== HERO SECTION ==================== */
        .hero-area2 {
            background-image: url('assets/img/bg/hero2-bg.png');
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            color: #fff;
            padding: 100px 0;
            min-height: 700px !important;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-left h1 {
            font-size: 44px;
            line-height: 1.2;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .hero-left .highlight {
            color: #b00f90;
        }

        .hero-left p.lead {
            font-size: 16px;
            max-width: 480px;
            color: #e0e0e0;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        /* Sponsored Section */
        .sponsored-by {
            margin-top: 25px;
        }

        .sponsor-border {
            border: 0px solid #b00f90;
            border-radius: 30px;
            padding: 15px 25px;
            display: inline-block;
            animation: borderPulse 3s infinite ease-in-out;
            transition: all 0.3s ease;
        }

        @keyframes borderPulse {
            0%, 100% { box-shadow: 0 0 5px #b00f90; }
            50% { box-shadow: 0 0 20px #b00f90; }
        }

        .sponsor-text {
            font-size: 13px;
            color: #ccc;
            margin-bottom: 10px;
        }

        .sponsor-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .sponsor-logo img {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }

        .sponsor-name {
            font-weight: 700;
            font-size: 18px;
            background: linear-gradient(135deg, #10b981, #06b6d4 50%, #34d399);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Counter Area */
        .counter-area {
            margin-top: 40px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
        }

        .counter-box {
            background: linear-gradient(145deg, #1a1a1a, #2b2b2b);
            border: 1px solid #333;
            border-radius: 20px;
            width: 260px;
            height: 260px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
            box-shadow: 0 0 20px rgba(176, 15, 144, 0.1);
        }

        .counter-box:hover {
            transform: translateY(-8px);
            border-color: #fd38de;
            box-shadow: 0 0 25px rgba(253, 56, 222, 0.3);
        }

        .counter-box h2 {
            font-size: 40px;
            color: #b00f90;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .counter-box p {
            font-size: 18px;
            color: #fff;
            margin: 0;
        }

        /* Button Area */
        .button-area {
            margin-top: 50px;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn_theme {
            background: #b00f90 !important;
            color: #fff !important;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: none;
        }

        .btn_theme:hover {
            background: #fd38de !important;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(253, 56, 222, 0.4);
            color: #fff !important;
        }

        .btn_theme i {
            transition: transform 0.3s ease;
        }

        .btn_theme:hover i {
            transform: translateX(5px);
        }

        /* ==================== SECTION 2: WHY HUMB ==================== */
        .why-humb-section {
            background: #0d0d0d;
            color: #fff;
            text-align: center;
            padding: 100px 0;
        }

        .heading2 {
            text-align: center;
            margin-bottom: 60px;
        }

        .heading2 .span {
            display: inline-block;
            margin-bottom: 15px;
        }

        .heading2 .span span {
            font-size: 18px;
            text-transform: uppercase;
            color: #b00f90;
            letter-spacing: 1.5px;
            font-weight: 600;
        }

        .section-title {
            font-size: 44px;
            font-weight: 700;
            color: #fff;
            line-height: 1.3;
        }

        .highlight {
            color: #b00f90;
        }

        .section-subheadline {
            font-size: 20px;
            max-width: 850px;
            margin: 0 auto;
            color: #ccc;
            line-height: 1.6;
        }

        /* Feature Cards */
        .feature-card {
            background: linear-gradient(145deg, #1a1a1a, #222);
            border: 1px solid #2d2d2d;
            border-radius: 20px;
            padding: 35px 25px;
            height: 100%;
            transition: all 0.4s ease;
            box-shadow: 0 0 15px rgba(176, 15, 144, 0.1);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            border-color: #fd38de;
            box-shadow: 0 0 25px rgba(253, 56, 222, 0.3);
        }

        .feature-card h4 {
            font-size: 20px;
            color: #b00f90;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .feature-card p {
            font-size: 16px;
            color: #ddd;
            line-height: 1.6;
        }

        /* ==================== SECTION 3: HOW IT WORKS ==================== */
        .funded-journey-section {
            background: #0d0d0d;
            padding: 80px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .funded-journey-container {
            max-width: 900px;
            width: 100%;
        }

        .funded-journey-heading {
            font-size: 1.4rem;
            color: #b00f90;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .funded-journey-title {
            font-size: 2.3rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 15px;
        }

        .funded-journey-subtitle {
            font-size: 1.1rem;
            color: #ccc;
            line-height: 1.6;
            max-width: 750px;
            margin: 0 auto;
        }

        .how-it-works {
            background: #0d0d0d;
            color: #fff;
            padding: 0 0 100px 0;
            position: relative;
            overflow: hidden;
        }

        .section-center-title {
            text-align: center;
            font-size: 32px;
            font-weight: 700;
            color: #b00f90;
            margin-bottom: 60px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Steps Wrapper */
        .steps-wrapper {
            margin-top: 80px;
            position: relative;
        }

        .steps-wrapper::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, #b00f90 0%, #fd38de 100%);
            transform: translateX(-50%);
            opacity: 0.3;
        }

        .step-box {
            margin-bottom: 60px;
            position: relative;
            display: flex;
            align-items: center;
        }

        .step-box:last-child {
            margin-bottom: 0;
        }

        .step-box.left {
            justify-content: flex-end;
            padding-right: calc(50% + 60px);
        }

        .step-box.left .step-number {
            right: calc(50% - 40px);
        }

        .step-box.left .step-content {
            text-align: right;
        }

        .step-box.right {
            justify-content: flex-start;
            padding-left: calc(50% + 60px);
        }

        .step-box.right .step-number {
            left: calc(50% - 40px);
        }

        .step-box.right .step-content {
            text-align: left;
        }

        .step-number {
            position: absolute;
            width: 80px;
            height: 80px;
            background: linear-gradient(145deg, #b00f90, #fd38de);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            color: #fff;
            z-index: 10;
            box-shadow: 0 0 25px rgba(253, 56, 222, 0.4);
            border: 3px solid #0d0d0d;
        }

        .step-content {
            background: linear-gradient(145deg, #1a1a1a, #222);
            border: 1px solid #2d2d2d;
            border-radius: 20px;
            padding: 30px 35px;
            max-width: 500px;
            transition: all 0.4s ease;
            box-shadow: 0 0 15px rgba(176, 15, 144, 0.1);
        }

        .step-content:hover {
            transform: translateY(-8px);
            border-color: #fd38de;
            box-shadow: 0 0 25px rgba(253, 56, 222, 0.3);
        }

        .step-content h4 {
            font-size: 22px;
            color: #b00f90;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .step-content p {
            font-size: 16px;
            color: #ddd;
            line-height: 1.6;
            margin: 0;
        }

        /* ==================== SECTION 4: OUR PARTNER ==================== */
        .our-partner-section {
            background: #0d0d0d;
            padding: 100px 20px;
        }

        .partner-subtitle {
            font-size: 18px;
            text-transform: uppercase;
            font-weight: 600;
            color: #b00f90;
            letter-spacing: 1px;
        }

        .partner-title {
            font-size: 36px;
            font-weight: 700;
            color: #fff;
            line-height: 1.3;
        }

        .partner-title span {
            background: linear-gradient(90deg, #b00f90, #fd38de);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .partner-desc {
            font-size: 18px;
            color: #ddd;
            max-width: 850px;
            line-height: 1.6;
        }

        .partner-subdesc {
            font-size: 16px;
            color: #ddd;
            max-width: 800px;
            line-height: 1.7;
        }

        .partner-btn-area {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* ==================== SECTION 5: FAQ ==================== */
       .faq-section {
  background: #0d0d0d;
  color: #fff;
  padding: 100px 0;
}

.faq-heading {
  text-align: left;
  margin-bottom: 60px;
}

.faq-heading .span span {
  font-size: 18px;
  text-transform: uppercase;
  color: #b00f90;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.faq-heading h2 {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 15px;
}

.faq-heading p {
  font-size: 18px;
  color: #ccc;
  line-height: 1.7;
  max-width: 700px;
}

.faq-container {
  margin-top: 40px;
  display: grid;
  gap: 20px;
}

.faq-item {
  background: linear-gradient(145deg, #1a1a1a, #222);
  border: 1px solid #2d2d2d;
  border-radius: 15px;
  padding: 25px 30px;
  transition: all 0.4s ease;
}

.faq-item:hover {
  border-color: #fd38de;
  box-shadow: 0 0 25px rgba(253, 56, 222, 0.3);
  transform: translateY(-3px);
}

.faq-item h4 {
  font-size: 20px;
  color: #b00f90;
  font-weight: 600;
  margin-bottom: 10px;
}

.faq-item p {
  color: #ddd;
  font-size: 16px;
  line-height: 1.7;
}

.faq-item a {
  color: #b00f90;
  text-decoration: none;
}

.faq-item a:hover {
  color: #fd38de;
  text-decoration: underline;
}

/* CTA Section */
.faq-cta {
  margin-top: 60px;
  text-align: center;
  padding: 40px;
  background: linear-gradient(145deg, #1a1a1a, #222);
  border: 1px solid #2d2d2d;
  border-radius: 20px;
  transition: all 0.4s ease;
}

.faq-cta:hover {
  border-color: #fd38de;
  box-shadow: 0 0 25px rgba(253, 56, 222, 0.3);
}

.faq-cta h3 {
  font-size: 28px;
  color: #b00f90;
  margin-bottom: 25px;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .faq-heading h2 {
    font-size: 32px;
  }

  .faq-heading p {
    font-size: 16px;
  }

  .faq-item h4 {
    font-size: 18px;
  }

  .faq-item p {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .faq-section {
    padding: 60px 20px;
  }

  .faq-heading {
    text-align: center;
  }

  .faq-heading p {
    margin: 0 auto;
  }

  .faq-item {
    padding: 20px;
  }

  .faq-cta {
    padding: 30px 20px;
  }
}

        /* ==================== SECTION 6: JOIN HUMB ==================== */
        .join-humb-section {
            background: #0d0d0d;
            color: #fff;
            padding: 120px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .join-humb-section::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center, rgba(253, 56, 222, 0.1), transparent 70%);
            z-index: 0;
        }

        .join-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }

        .join-content h2 {
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.3;
            color: #fff;
        }

        .join-content p {
            font-size: 18px;
            color: #dcdcdc;
            margin-bottom: 50px;
            line-height: 1.7;
        }

        /* ==================== SECTION 7: FOOTER TAGLINE ==================== */
        .footer-tagline {
            background: #2a2828;
            padding: 10px;
            text-align: center;
            color: #fff;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-tagline p {
            font-size: 25px;
            font-weight: 600;
            color: #fd38de;
            letter-spacing: 0.5px;
            margin: 0;
            line-height: 1.5;
            padding-top: 7px;
        }

        /* ==================== RESPONSIVE STYLES ==================== */
        @media (max-width: 991px) {
            .hero-area2 {
                padding: 80px 20px;
            }

            .hero-left {
                text-align: center;
                margin-bottom: 50px;
            }

            .hero-left h1 {
                font-size: 36px;
            }

            .hero-left p.lead {
                margin: 0 auto 20px;
            }

            .sponsored-by {
                text-align: center;
            }

            .counter-box {
                width: 220px;
                height: 220px;
            }

            .section-title {
                font-size: 32px;
            }

            .section-subheadline {
                font-size: 18px;
                padding: 0 15px;
            }

            .funded-journey-title {
                font-size: 2rem;
            }

            .section-center-title {
                font-size: 28px;
            }

            .steps-wrapper::before {
                left: 40px;
            }

            .step-box.left,
            .step-box.right {
                justify-content: flex-start;
                padding-left: 110px;
                padding-right: 0;
            }

            .step-box.left .step-number,
            .step-box.right .step-number {
                left: 0;
                right: auto;
            }

            .step-box.left .step-content,
            .step-box.right .step-content {
                text-align: left;
            }

            .step-number {
                width: 70px;
                height: 70px;
                font-size: 20px;
            }

            .step-content {
                max-width: 100%;
            }
        }

        @media (max-width: 767px) {
            .hero-area2 {
                padding: 70px 15px;
                min-height: auto;
            }

            .hero-left h1 {
                font-size: 30px;
            }

            .hero-left p.lead {
                font-size: 15px;
            }

            .sponsor-border {
                padding: 12px 18px;
            }

            .sponsor-text {
                font-size: 13px;
            }

            .sponsor-name {
                font-size: 16px;
            }

            .counter-box {
                width: 180px;
                height: 180px;
            }

            .counter-box h2 {
                font-size: 32px;
            }

            .counter-box p {
                font-size: 16px;
            }

            .btn_theme {
                padding: 12px 25px;
                font-size: 14px;
            }

            .why-humb-section,
            .our-partner-section,
            .faq-section,
            .how-it-works {
                padding: 80px 15px;
            }

            .section-title {
                font-size: 28px;
            }

            .section-subheadline {
                font-size: 17px;
            }

            .feature-card {
                padding: 25px 20px;
            }

            .funded-journey-title {
                font-size: 1.8rem;
            }

            .funded-journey-subtitle {
                font-size: 1rem;
            }

            .section-center-title {
                font-size: 24px;
            }

            .step-box {
                margin-bottom: 50px;
                padding-left: 90px;
            }

            .steps-wrapper::before {
                left: 30px;
            }

            .step-number {
                width: 60px;
                height: 60px;
                font-size: 18px;
            }

            .step-content {
                padding: 25px;
            }

            .step-content h4 {
                font-size: 20px;
            }

            .step-content p {
                font-size: 15px;
            }

            .partner-title {
                font-size: 28px;
            }

            .partner-desc,
            .partner-subdesc {
                font-size: 16px;
            }

            .faq-heading h2 {
                font-size: 28px;
            }

            .faq-heading p {
                font-size: 16px;
            }

            .faq-item {
                padding: 20px 25px;
            }

            .faq-question h4 {
                font-size: 17px;
            }

            .faq-answer {
                font-size: 14px;
            }

            .faq-cta {
                padding: 30px 25px;
            }

            .faq-cta h3 {
                font-size: 24px;
            }

            .partner-btn-area {
                flex-direction: column;
                align-items: stretch;
            }

            .btn_theme {
                width: 100%;
                justify-content: center;
            }

            .join-content h2 {
                font-size: 28px;
            }

            .join-content p {
                font-size: 16px;
            }

            .footer-tagline p {
                font-size: 18px;
            }
        }

        @media (max-width: 575px) {
            .hero-left h1 {
                font-size: 26px;
            }

            .counter-area {
                gap: 15px;
            }

            .counter-box {
                width: 150px;
                height: 150px;
            }

            .counter-box h2 {
                font-size: 28px;
            }

            .counter-box p {
                font-size: 14px;
            }

            .button-area {
                margin-top: 30px;
                gap: 15px;
            }

            .btn_theme {
                padding: 10px 20px;
                font-size: 13px;
            }

            .section-title {
                font-size: 24px;
            }

            .section-subheadline {
                font-size: 15px;
            }

            .funded-journey-heading {
                font-size: 1.2rem;
            }

            .funded-journey-title {
                font-size: 1.5rem;
            }

            .section-center-title {
                font-size: 22px;
            }

            .step-box {
                padding-left: 80px;
            }

            .step-content {
                padding: 20px;
            }

            .step-number {
                width: 55px;
                height: 55px;
                font-size: 16px;
            }

            .partner-title {
                font-size: 24px;
            }

            .faq-heading h2 {
                font-size: 24px;
            }

            .faq-question h4 {
                font-size: 16px;
            }

            .faq-cta h3 {
                font-size: 22px;
            }

            .join-content h2 {
                font-size: 24px;
            }

            .footer-tagline p {
                font-size: 16px;
            }
        }

        @media (max-width: 414px) {
            .hero-area2 {
                padding: 130px 15px;
            }

            .hero-left h1 {
                font-size: 24px;
            }

            .hero-left p.lead {
                font-size: 14px;
            }

            .sponsor-border {
                padding: 10px 15px;
            }

            .sponsor-logo img {
                width: 35px;
                height: 35px;
            }

            .sponsor-name {
                font-size: 15px;
            }

            .counter-box {
                width: 140px;
                height: 140px;
            }

            .counter-box h2 {
                font-size: 26px;
            }

            .counter-box p {
                font-size: 13px;
            }

            .funded-journey-section {
                padding: 60px 15px;
            }

            .funded-journey-title {
                font-size: 1.3rem;
            }

            .funded-journey-subtitle {
                font-size: 0.95rem;
            }
        }





        @media (max-width: 414px) {
    .hero-left h1 {
        font-size: 30px;
        text-align: justify;
    }
}

@media (max-width: 414px) {
    .hero-left p.lead {
        font-size: 14px;
        text-align: justify;
    }
}

.heading2 h2 {
    color: var(--Home-Page-2-Color-White-Color, #FFF);
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px;
}


h2#alimenttext {
  font-size: 44px;
}

/* Responsive font size for mobile */
@media (max-width: 768px) {
  h2#alimenttext {
    font-size: 30px;
  }
}

.footer-tagline h3 {
  font-weight: 700;  
}
/* ======================= */


/* Spotlight Wrapper */
.spotlight-wrapper {
  background: #0d0d0d;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(253, 56, 222, 0.2);
}

/* Spotlight Title */
.spotlight-title {
  color: #b00f90;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Main Heading */
.spotlight-heading {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 60px;
  line-height: 1.4;
  text-shadow: 0 0 15px rgba(253, 56, 222, 0.25);
}

/* Cards Layout */
.spotlight-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

/* Card Style */
.spotlight-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 35px 25px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  box-shadow: 0 0 15px rgba(253, 56, 222, 0.05);
}

/* Hover */
.spotlight-card:hover {
  transform: translateY(-6px);
  border-color: #fd38de;
  box-shadow: 0 0 20px rgba(253, 56, 222, 0.3);
}

/* Card Text */
.spotlight-card p {
  font-size: 18px;
  line-height: 1.7;
  color: #eaeaea;
  font-style: italic;
  margin: 0;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Hover Glow */
.spotlight-card:hover p {
  color: #fd38de;
  text-shadow: 0 0 8px rgba(253, 56, 222, 0.6);
}

/* ===== Tablet View ===== */
@media (max-width: 1024px) {
  .spotlight-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .spotlight-heading {
    font-size: 32px;
  }

  .spotlight-card {
    padding: 30px 20px;
  }

  .spotlight-card p {
    font-size: 16px;
  }
}

/* ===== Mobile View ===== */
@media (max-width: 576px) {
  .spotlight-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .spotlight-heading {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .spotlight-card {
    padding: 25px 18px;
  }

  .spotlight-card p {
    font-size: 15px;
  }
}

.white-x {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 1px;
}