:root {
    /* Semantic Tokens */
    --color-accent: var(--color-man-light-blue);
    --color-success: var(--color-green);
    --color-warning: var(--color-yellow);
    --color-highlight: var(--color-pink);
    --color-background: var(var(--color-background));

    --color-green-strong: #317c85;

    --color-container-bg: #efeff0;

    --color-man-light-blue: #5bc6d7;
    --color-man-light-blue-alpha: rgba(91, 198, 215, 0.2);
    --color-man-light-blue-dark: #3aa6bb;

    --color-green: #45b9a5;
    --color-green-alpha: rgba(67, 176, 161, 0.2);

    --color-pink: #c973ae;
    --color-pink-alpha: rgba(201, 115, 174, 0.2);

    --color-yellow: #ffc935;
    --color-yellow-alpha: rgba(251, 204, 10, 0.2);
}

/* ========================================================================== */
/* = Font Imports                                                            */
/* ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,600;0,700;1,400;1,600&display=swap");

/* ========================================================================== */
/* = Global Reset                                                            */
/* ========================================================================== */

/* Animation Presets */
[data-animate] {
    opacity: 0;
    transition: all 0.8s ease-out;
}

/* Fade animations */
[data-animate="fade"] {
    transform: translateY(30px);
}
[data-animate="fade"].animate {
    opacity: 1;
    transform: translateY(0);
}

/* Slide animations */
[data-animate="slide-left"] {
    transform: translateX(-100px);
}
[data-animate="slide-left"].animate {
    opacity: 1;
    transform: translateX(0);
}

[data-animate="slide-right"] {
    transform: translateX(100px);
}
[data-animate="slide-right"].animate {
    opacity: 1;
    transform: translateX(0);
}

/* Zoom animations */
[data-animate="zoom-in"] {
    transform: scale(0.8);
}
[data-animate="zoom-in"].animate {
    opacity: 1;
    transform: scale(1);
}

/* Rotate animations */
[data-animate="rotate"] {
    transform: rotate(-15deg);
}
[data-animate="rotate"].animate {
    opacity: 1;
    transform: rotate(0);
}

/* Special animations */
[data-animate="flip"] {
    transform: perspective(1000px) rotateY(90deg);
}
[data-animate="flip"].animate {
    opacity: 1;
    transform: perspective(1000px) rotateY(0);
}

/* Staggered animations for children */
[data-animate-stagger] > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

[data-animate-stagger].animate > * {
    opacity: 1;
    transform: translateY(0);
}
/* Box sizing reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Remove outlines unless focus is visible */
:focus:not(:focus-visible) {
    outline: none;
}

/* ========================================================================== */
/* = Base HTML and Body Styles                                               */
/* ========================================================================== */

/**
* Set 1rem = 10px for easier rem calculations.
* (62.5% of default 16px = 10px)
*/
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    background-color: #fff;
    color: #222;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================================================== */
/* = Typography                                                              */
/* ========================================================================== */

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Header Styles */
header {
    background-color: #43b0a1;
    height: 80px;
    display: flex;
    justify-content: center;
    position: sticky;
    top: 0;

    z-index: 99;
}

.header-content {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo img {
    height: 40px;
    width: auto;
}

/* Mobile Navigation */
.site-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #43b0a1;
    padding: 2rem;
    transform: translateY(-150%);
    transition: transform 0.3s ease-out;
    z-index: 100;
}

.site-nav.is-active {
    transform: translateY(0);
}

.nav-list {
    flex-direction: column;
    gap: 1.5rem;
    list-style: none;
    padding-left: 0;
}

/* PRESERVED LINK STYLES (unchanged from original) */
nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.6rem;
    transition: opacity 0.3s ease;
    font-family: "Poppins", sans-serif;
}

nav a:hover {
    opacity: 0.8;
}

/* Hamburger Menu Styles */
.hamburger {
    display: flex;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 101;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    width: 100%;
    height: 2px;
    background-color: white;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.1s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: white;
    position: absolute;
    left: 0;
    transition: transform 0.2s ease;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    top: 8px;
}

/* Active state for hamburger */
.hamburger.is-active .hamburger-inner {
    background-color: transparent;
}

.hamburger.is-active .hamburger-inner::before {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.is-active .hamburger-inner::after {
    transform: translateY(-8px) rotate(-45deg);
}

/* Desktop Styles */
@media (min-width: 768px) {
    header {
        height: 120px;
    }

    .header-content {
        width: 70%;
    }

    .site-logo img {
        height: 50px;
    }

    .hamburger {
        display: none;
    }

    .site-nav {
        position: static;
        width: auto;
        padding: 0;
        transform: none;
        background-color: transparent;
    }

    .nav-list {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        height: 100%;
        align-items: center;
        margin-left: auto;
        list-style: none;
    }

    /* Ensure desktop link styles match original */
    nav a {
        font-size: 1.6rem;
    }
}

/* ========================================================================== */
/* = Forms and Buttons                                                       */
/* ========================================================================== */

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
}

/* ========================================================================== */
/* = Tables                                                                  */
/* ========================================================================== */

table {
    border-collapse: collapse;
    width: 100%;
}

/* ========================================================================== */
/* = sp-container Utility (Vanilla CSS)                                      */
/* ========================================================================== */

.sp-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
}

/* Contained only on desktop and up */
@media (min-width: 1024px) {
    .sp-container {
        max-width: 1140px;
    }
}

/* ========================================================================== */
/* = Subheading (h2)                                                         */
/* ========================================================================== */

.sp-subheading {
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 1.2rem;
    /* color: #222; */
    letter-spacing: -0.01em;
}

/* Scale up on tablet and desktop */
@media (min-width: 600px) {
    .sp-subheading {
        font-size: 2.6rem;
    }
}

@media (min-width: 1024px) {
    .sp-subheading {
        font-size: 3rem;
    }
}

/* Banner  */

.banner-section {
    position: relative;
    background: url(../images/banner-img.jpg);
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 0;
    z-index: 0;
    animation: pulse 2s infinite alternate ease-in-out;
}

@keyframes pulse {
    0% {
        background-size: 100%;
    }
    100% {
        background-size: 110%;
    }
}

.banner-section::before {
    content: unset;
}

@media screen and (max-width: 768px) {
    .banner-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.75);
        z-index: -1;
    }
}

.header-button--wrapper {
    max-width: 100%;
}

@media screen and (min-width: 768px) {
    .header-button--wrapper {
        max-width: 90%;
    }
}

/* About section */

.about-section h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.6rem;
}

.about-section > p:last-of-type {
    margin-bottom: 3rem;
}

.read-more {
    display: inline-block;
    color: #43b0a1;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
    padding-right: 20px;
}

.read-more:hover {
    color: #1a759f;
}

.read-more::after {
    content: "â†’";
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(5px);
}
/* ==========================================================================
= Section Utility (.sp-section)
========================================================================== */

.sp-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.sp-section.app-section {
    padding-top: 0;
}

@media (min-width: 640px) {
    .sp-section {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

@media (min-width: 1024px) {
    .sp-section {
        padding-top: 10rem;
        padding-bottom: 10rem;
    }
}

.download-app-section {
    background-color: #f9f9f9;
    padding: 4rem 1rem;
}

.blo .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.app-content {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.text-content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.text-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-block;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: bold;
    color: white;
    transition: background 0.3s ease;
}

.appstore {
    background-color: #000;
}

.googleplay {
    background-color: #3bcc5e;
}

.btn:hover {
    opacity: 0.9;
}

.image-content img {
    max-width: 300px;
    width: 100%;
    height: auto;
}

/* Responsive layout */
@media (min-width: 768px) {
    .app-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

    .text-content {
        flex: 1;
        padding-right: 2rem;
    }

    .image-content {
        flex: 1;
        display: flex;
        justify-content: center;
    }
}

.section-about {
    background-color: #f7f7f7;
    padding: 25rem 0;
    margin-top: -20vh;
}

/* ==========================================================================
= Base Button Styles (.sp-button)
========================================================================== */

.sp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 1.5rem 1rem;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    width: 100%;

    border: none;
    border-radius: 9999px;
    cursor: pointer;

    transition: background-color 0.3s ease, transform 0.2s ease;
}

.text-section {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.text-section > * {
    opacity: 0;
    animation: fadeIn 2s ease forwards;
}

.text-section > *:nth-child(1) {
    animation-delay: 0.3s;
}
.text-section > *:nth-child(2) {
    animation-delay: 0.6s;
}
.text-section > *:nth-child(3) {
    animation-delay: 0.9s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
= Primary Variant (.sp-button-primary)
========================================================================== */

.sp-button-primary {
    color: #fff;
    background-color: var(--color-primary, #43b0a1);
}

.sp-button-primary:hover,
.sp-button-primary:focus-visible {
    background-color: var(--color-primary-dark, #369081);
    transform: translateY(-2px);
}

.sp-button-primary:active {
    transform: scale(0.98);
}

/* ==========================================================================
= Primary Variant (.sp-button-man)
========================================================================== */

.sp-button-man {
    color: #fff;
    background-color: var(--color-man-light-blue);
}

.sp-button-man:hover,
.sp-button-man:focus-visible {
    background-color: var(--color-man-light-blue-dark);
    transform: translateY(-2px);
}

.sp-button-man:active {
    transform: scale(0.98);
}

/* ==========================================================================
= Green-on-Yellow Variant (.sp-button-green-yellow)
========================================================================== */

.sp-button-green-yellow {
    background-color: var(--color-yellow);
    color: var(--color-green-strong);
}

.sp-button-green-yellow:hover,
.sp-button-green-yellow:focus-visible {
    filter: brightness(0.95);
    transform: translateY(-2px);
}

.sp-button-green-yellow:active {
    transform: scale(0.98);
}
/* ==========================================================================
= Green-on-Yellow Variant (.sp-button-purple
========================================================================== */

.sp-button-purple {
    background-color: var(--color-highlight);
    color: #fff;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    /* width: 200px; */ /* or any fixed size */
    height: 200px;
    padding: 30px 40px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* min-width: 150px; */
    border: 3px solid;
}

/* First box with #C973AE border */
.stat-box:nth-child(1) {
    border-color: #c973ae;
}

/* Second box with #5BC6D7 border */
.stat-box:nth-child(2) {
    border-color: #5bc6d7;
}

/* Third box with #FBCC0A border */
.stat-box:nth-child(3) {
    border-color: #fbcc0a;
}

/* Fourth box with #43B0A1 border */
.stat-box:nth-child(4) {
    border-color: #43b0a1;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 18px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.person-laptop-img {
    width: 340px;
    height: 340px;
    border-radius: 32px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

/* Text Content */
.group-title {
    color: #4fc3b7;
    font-weight: 700;
}

.activities-title {
    color: #8f8f8f;
    font-weight: 800;
}

.read-more-btn {
    background: #b87bb7;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 1.15rem;
    padding: 16px 40px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(184, 123, 183, 0.13);
}

.read-more-btn:hover {
    background: #a05fa0;
}

.team-fist-img {
    width: 340px;
    height: 340px;
    border-radius: 32px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.services-section {
    background: #43a89e;
    padding: 60px 0 80px 0;
    font-family: "Nunito", Arial, sans-serif;
}

.services-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.services-header-shape {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.shape-dot {
    width: 18px;
    height: 18px;
    background: #222;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.shape-half {
    width: 36px;
    height: 36px;
    background: #f7d36d;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    display: inline-block;
}

.services-header h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -1px;
}

.services-header .highlight {
    color: #ffd24c;
    font-weight: 800;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: calc(1.6rem + 36px);
    flex-wrap: wrap;
    /* display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 32px 36px;
max-width: 1100px;
margin: 0 auto; */
    justify-content: center;
}

@media screen and (min-width: 768px) {
    .services-grid {
        flex-direction: row;
    }

    .services-grid > * {
        flex: 0 0 calc(50% - 1.6rem - 26px);
    }
}

.service-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    padding: 0 0 0 0;
    min-height: 200px;
    transition: box-shadow 0.2s;
}

.service-card:hover {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.service-icon {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: #fff;
    border: 3px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -36px;
    margin-right: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.service-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block;
}

.service-info {
    padding: 18px 18px 18px 0;
}

.service-info h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 8px 0;
    color: #222;
}

.service-info p {
    font-size: 1.5rem;
    color: #444;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 20px;
    }
    .service-card {
        flex-direction: row;
        /* min-height: 3000px; */
        position: relative;
    }
    .service-icon {
        width: 90px;
        height: 90px;
        margin-left: -18px;
        margin-right: 14px;
    }
    .service-icon img {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 600px) {
    /* .service-card{
height: 70vh;
} */
    .services-header h2 {
        font-size: 1.7rem;
    }
    .services-grid {
        gap: 18px;
        padding: 0 8px;
    }
    .service-info h3 {
        font-size: 1.55rem;
    }
    .service-info p {
        font-size: 2rem;
    }
}
.site-footer {
    padding: 5rem 0 0 0;
    color: #fff;
    background-color: var(--color-green);
}

/* Footer container layout */
.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-top,
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Logo above text in footer bottom */
.footer-bottom {
    align-items: flex-start;
}
.footer-bottom img {
    height: 5rem;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 1rem;
}

/* Footer links alignment */
.footer-links-container {
    display: flex;
    gap: 15px;
    margin: 25px 0;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.footer-link {
    display: inline-block;
    padding: 8px 20px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Desktop Styles */
@media (min-width: 600px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
    }

    .site-footer__container--absolute {
        display: block;
        position: absolute;
        top: -70%;
        right: 0;
        bottom: 0;
    }

    .site-footer__container--absolute img {
        height: 49rem;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .footer-links-container {
        flex-direction: column;
        align-items: flex-start;

        gap: 10px;
    }

    .footer-link {
        width: auto;

        text-align: left;
        padding: 8px 15px;
    }
}

.about-section {
    background-color: var(--color-container-bg, #efeff0);
}

.about-section__content h2 {
    color: var(--color-pink);
    font-weight: 400;
}

.about-section__content h2 span {
    font-weight: 700;
}

.about-section .sp-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.about-section .sp-container > * {
    flex: 1 1 100%;
}

@media (min-width: 768px) {
    .about-section .sp-container > :first-child {
        flex: 0 0 calc(60% - 1rem);
    }

    .about-section .sp-container > :last-child {
        flex: 0 0 calc(40% - 1rem);
    }
}

.button-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1.6rem;
}

@media screen and (min-width: 768px) {
    .button-wrapper {
        flex-direction: row;
    }

    .button-wrapper > a {
        max-width: 200px;
    }
}

/* App Section (no 60/40 layout applied) */
.app-section .sp-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.app-section .sp-container > * {
    flex: 1 1 100%;
}

@media (min-width: 768px) {
    .app-section .sp-container > * {
        flex: 1 1 0%;
    }
}

.team-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #0d1b2a;
    color: white;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: white;
}

.section-title span {
    color: #2ec4b6;
}

.team-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.team-card {
    background-color: var(--bg-color);
    border-radius: 20px;
    width: 250px;
    overflow: hidden;
    position: relative;
    padding-top: 10px;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card img {
    width: 100%;
    border-radius: 20px 20px 0 0;
    height: 280px;
    object-fit: cover;
}

.card-info {
    background-color: white;
    padding: 15px 20px;
    border-radius: 15px;
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.name {
    font-weight: 700;
    color: black;
}

.role {
    font-size: 0.75rem;
    color: gray;
    margin-top: 2px;
}

.share-btn {
    background-color: #0d1b2a;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 50px 20px;
    gap: 40px;
}

.faq-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.faq-image img {
    width: 100%;
    max-width: 4000px;
    border-radius: 15px;
}

.faq-content {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.faq-title {
    text-align: left;
    margin-bottom: 30px;
}

.faq-title h2 {
    font-size: 24px;
    color: #777;
}

.faq-title h2 span {
    color: #0a9b76;
    font-weight: bold;
}

.faq-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    font-weight: 600;
    cursor: pointer;
}

.faq-header span.number {
    background: #ffd54f;
    color: #000;
    font-weight: bold;
    border-radius: 20px;
    padding: 12px;
    margin-right: 10px;
    height: 35px;
    width: 35px;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.faq-heading {
    display: flex;
    align-items: flex-start;
}

.faq-content-hidden {
    display: none;
    padding: 16px;
    font-size: 14px;
    color: #666;
}

.faq-item.active .faq-content-hidden {
    display: block;
}

.faq-toggle {
    font-size: 18px;
    font-weight: bold;
}

.events-section {
    padding: 60px 20px;
    background-color: #f1f1f1;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.section-title .highlight {
    color: #2ec4b6;
    font-weight: 700;
}

/* Container for event cards */
.events-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Event Card */
.event-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    max-width: 300px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.event-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Info box overlay */
.event-info {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

/* Date badge */
.event-date {
    background-color: #2ec4b6;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* Location badge */
.event-location {
    background-color: #c06db6;
    color: white;
    padding: 10px 20px;
    border-radius: 15px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.event-location i {
    font-size: 1rem;
}

/* Optional Responsive */
@media (max-width: 768px) {
    .events-container {
        flex-direction: column;
        align-items: center;
    }

    .event-card {
        width: 90%;
    }
}

/* ==========================================================================
= Blog Grid Layout (3 columns)
========================================================================== */

.blog-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
= Individual Blog Card Styling
========================================================================== */

.blog {
    background-color: #fff;
    border-radius: 1.2rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    padding: 2rem;
}

.blog-image {
    position: relative;
    overflow: hidden;
    border-radius: 0.8rem;
}

.blog-image img {
    width: 100%;
    display: block;
    border-radius: 0.8rem;
    object-fit: cover;
}

.blog-date {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color-pink, #c973ae);
    color: #fff;
    padding: 0.6rem 1.2rem;
    font-size: 1.2rem;
    /* border-radius: 9999px; */
    font-weight: 600;
}

/* Blog content */
.blog-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-green-strong);
}

.blog-section {
    text-align: center;
    /* margin: 50px 0; */
}

.blog-heading {
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.blog-heading .latest {
    color: #333;
}

.blog-heading .posts {
    color: #43b0a1;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: #43b0a1;
    margin: 0 auto 30px;
}

.link-read-more {
    margin-top: auto;
    align-self: flex-start;
}

/* ==========================================================================
= Blog Metadata Row (Author, Comments, etc.)
========================================================================== */

/* Layout wrapper for blog metadata (author, comments, etc.) */
.blog-credentials {
    display: flex;
    column-gap: 6rem;
}
/* Style for SVG icons inside credentials (e.g., author icon, comment icon) */
.blog-credentials svg {
    fill: var(--color-green);
    height: 2rem;
}

/* Reusable metadata item (author name, comment count, etc.) */
.blog-credentials--comments,
.blog-credentials--author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Stats  */

.stat-section {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 1.6rem;
}

@media screen and (min-width: 1024px) {
    .stat-section {
        flex-direction: row;
    }

    .sp-container.stat-section > * {
        flex: 0 0 calc(25% - 1.6rem);
    }
}

/* App Layout */

.app-section__image {
    position: relative;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .app-section__image::before {
        content: "";
        height: 450px;
        width: 450px;
        background: var(--color-warning);
        border-radius: 9999px;
        position: absolute;
        z-index: 1;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

.app-section__image img {
    z-index: 2;
    position: relative;
    height: 500px;
}

.app-section__content {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    text-align: center;
}

/* .app-section__content--heading {
text-align: center;
} */

.app-section__content--heading span {
    display: block;
    text-align: center;
}

.app-section__content--heading span:first-child {
    font-size: 38px;
    font-weight: 700;
}

.app-section__content--description {
}

.app-section__content--heading span:last-child {
    font-size: 28px;
    font-weight: 300;
}

.app-section__content--description {
    color: #6c6c6c;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-section__content {
    flex: 1;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .sp-container {
        /* flex-direction: column; */
        gap: 20px;
    }

    .about-image,
    .about-section__content {
        width: 100%;
    }
}

/* Optional: Style the heading and button */
.sp-subheading {
    font-size: 3rem;
    margin-bottom: 20px;
}

.sp-subheading span {
    color: #fbcc0a;
}

.blog-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

/* Impact Stories  */
.section-title {
    text-align: center;
    padding: 2rem 0;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
}

.section-title .highlighted-text {
    color: var(--color-pink);
}

/* Fullscreen video section */

.video-section {
    position: relative;
    width: 100%;
    /* height: 100vh; */
    overflow: hidden;
    gap: 40px;
    margin-bottom: 30px;
}
.video-section {
    padding: 2rem;
    background-color: #f9f9f9;
}

.video-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.video-card {
    flex: 1 1 calc(25% - 1rem);
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: calc(25% - 1rem);
}

@media (max-width: 1024px) {
    .video-card {
        flex: 1 1 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
}

/* Small screens (phones) */
@media (max-width: 600px) {
    .video-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* YouTube iframe wrapper */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive YouTube embed (16:9 aspect ratio) */
.video-iframe {
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.78vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contact-column {
    flex: 1;
    min-width: 200px;
}

.contact-column h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.contact-item i {
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--color-warning, #fbcc0a);
    color: #000;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .footer-contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.footer-image-link {
    padding: 0;
    background: none;
    border: none;
}

.footer-link-image {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-link-image:hover {
    transform: translateY(-3px);
}

/* Ensure consistent height with text links */
.footer-links-container {
    align-items: center;
}

/* Rest of your existing footer styles remain the same */
.footer-contact-info {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.contact-column {
    flex: 1;
    min-width: 200px;
}

.faq-section {
    display: flex;
    gap: 40px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.faq-image {
    flex: 1;
    display: flex;
}

.faq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* FAQ items container - allows scrolling if content is taller than image */
.faq-items-container {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

/* Rest of your existing FAQ styles remain unchanged */
.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-header {
    padding: 15px 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-section {
        flex-direction: column;
    }

    .faq-image {
        height: 300px;
    }

    .faq-image img {
        height: 100%;
    }

    .faq-items-container {
        overflow-y: visible;
    }
}

/* DECO */

.deco-section .sp-container {
    padding-top: 4rem;
}

.deco-section .sp-container img {
    height: 30rem;
    margin-bottom: -2rem;
    position: relative;
    z-index: -1;
}

.site-header .sp-container {
    padding: 0;
    align-items: center;
}

/* Click Animation Classes */
.click-scale {
    transition: transform 0.3s ease;
}
.click-scale:active {
    transform: scale(0.95);
}

.click-rotate {
    transition: transform 0.4s ease;
}
.click-rotate:active {
    transform: rotate(5deg);
}

.click-bounce {
    transition: transform 0.3s ease;
}
.click-bounce:active {
    transform: translateY(-5px);
}

.click-pulse:active {
    animation: pulse 0.5s ease;
}
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.click-color-shift {
    transition: background-color 0.3s ease, color 0.3s ease;
}
.click-color-shift:active {
    background-color: #4a00e0;
    color: white;
}

.click-underline:active::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    animation: underline 0.3s ease;
}
@keyframes underline {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

/* FAQ Specific Animations */
.faq-item.active .faq-content-hidden {
    display: block;
    animation: fadeInDown 0.4s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-toggle svg {
    transition: transform 0.3s ease;
}
.faq-item.active .faq-toggle svg {
    transform: rotate(45deg);
}

/* Button ripple effect */
.ripple {
    position: relative;
    overflow: hidden;
}
.ripple:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
    background-repeat: no-repeat;
    background-position: 50%;
    transform: scale(10, 10);
    opacity: 0;
    transition: transform 0.5s, opacity 1s;
}
.ripple:active:after {
    transform: scale(0, 0);
    opacity: 0.3;
    transition: 0s;
}

.site-footer {
    position: relative;
    overflow: hidden;
}

.footer-bottom {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
}

.footer-shape {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 120px;
    width: auto;
    z-index: 1;
}

/* Ensure text and logo stay above the shape */
.footer-bottom > *:not(.footer-shape) {
    position: relative;
    z-index: 2;
}

/* Existing footer styles (keep your existing styles and add these) */
.site-footer__container {
    position: relative;
}

@media (max-width: 768px) {
    .footer-shape {
        height: 80px; /* Smaller on mobile */
        opacity: 0.7;
    }
}
