/* CSS Reset & Variables */
        :root {
            --bg-cream: #FCF7F3;
            --text-dark: #2C3E2D;
            --text-light: #6B7068;
            --brand-orange: #D57D36;
            --brand-green: #375945;
            --brand-light-green: #4A6E59;
            --white: #FFFFFF;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--bg-cream);
            color: var(--text-dark);
            line-height: 1.6;
        }
        body {
            padding-top: 80px;   /* same as navbar height */
        }

        h1, h2, h3, h4 {
            font-family: 'Georgia', serif; /* Simulating the serif font from the image */
            font-weight: normal;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 90px 20px;

        }

        /* Buttons */
        .btn {
            display: inline-block;
            background-color: var(--brand-orange);
            color: var(--white);
            padding: 12px 28px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            font-size: 14px;
            transition: background 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: #b86526;
        }

        /* Section 1: Who We Are */
        .who-we-are {
            display: flex;
            align-items: center;
            gap: 40px;
            margin-bottom: 80px;
        }

        .text-content {
            flex: 1;
        }

        .section-label {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            color: var(--brand-green);
            font-weight: bold;
            margin-bottom: 15px;
        }

        .section-label svg {
            width: 24px;
            height: 24px;
            fill: var(--brand-orange);
        }

        .text-content h1 {
            font-size: 32px;
            color: var(--brand-orange);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .text-content h1 span {
            color: var(--brand-green);
        }

        .text-content p {
            color: var(--text-light);
            margin-bottom: 30px;
            font-size: 15px;
        }

        .image-content {
            flex: 1;
        }

        .image-content img {
            width: 100%;
            border-radius: 20px;
            object-fit: cover;
        }

        /* Section 2: Image Left, Text Right */
        .services-intro {
            display: flex;
            align-items: center;
            gap: 40px;
            margin-bottom: 80px;
            flex-direction: row-reverse;
        }

        .image-container-relative {
            position: relative;
            flex: 1;
        }

        .image-container-relative img {
            width: 100%;
            border-radius: 20px;
            object-fit: cover;
        }

        .btn-overlay {
            position: absolute;
            bottom: 20px;
            right: 20px;
        }

        /* Section 3: Services Cards */
        .services-cards-section {
            text-align: center;
            margin-bottom: 80px;
        }

        .services-cards-section .section-label {
            justify-content: center;
        }

        .services-cards-section h2 {
            font-size: 28px;
            color: var(--brand-orange);
            margin-bottom: 40px;
        }

        .services-cards-section h2 span {
            color: var(--brand-green);
        }

        .cards-grid {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .card {
            background: var(--white);
            padding: 30px 20px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            flex: 1;
            display: flex;
            align-items: flex-start;
            gap: 15px;
            text-align: left;
        }

        .card-icon {
            font-size: 30px;
            color: var(--brand-green);
            background: var(--bg-cream);
            padding: 10px;
            border-radius: 10px;
        }

        .card-text h3 {
            font-size: 18px;
            color: var(--text-dark);
            margin-bottom: 8px;
            font-weight: bold;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .card-text p {
            font-size: 13px;
            color: var(--text-light);
        }

        .pagination-dots {
            margin-top: 30px;
            display: flex;
            justify-content: center;
            gap: 8px;
        }

        .dot {
            width: 8px;
            height: 8px;
            background-color: #D3D3D3;
            border-radius: 50%;
        }

        .dot.active {
            background-color: var(--brand-orange);
        }

        /* Section 4: Footer / Testimonials */
/* ===== PREMIUM FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #375945, #2C3E2D);
    color: white;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* logo */
/* ===== FOOTER LOGO ===== */
/* ===== FOOTER BRAND ALIGN ===== */
/* ===== FOOTER BRAND ALIGNMENT ===== */
.footer-logo {
    display: flex;
    align-items: center;   /* perfect vertical center */
    gap: 18px;
}

/* logo */
.footer-logo-img {
    width: 72px;
    height: 72px;

    object-fit: contain;
    flex-shrink: 0;

    display: block;
}

/* text wrapper */
/* ===== FOOTER BRAND (NO LOGO) ===== */

.footer-brand-content {

    display: flex;
    flex-direction: column;

    gap: 10px;
}

/* title */
.footer-brand-content h2 {

    margin: 0;

    font-size: 24px;
    font-weight: 700;

    line-height: 1.1;

    color: white;
}

/* tagline */
.footer-tagline {

    margin: 0;

    font-size: 14px;
    letter-spacing: 2px;

    color: rgba(255,255,255,0.78);

    text-transform: uppercase;
}

/* description */
.subtitle {

    margin-top: 26px;

    max-width: 420px;

    line-height: 1.7;

    color: rgba(255,255,255,0.9);
}

.footer-brand-content h2 {

    background: linear-gradient(
        135deg,
        #ffffff,
        #FFD6C7
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {

    .footer-logo {
        justify-content: center;
        text-align: left;
    }

    .footer-logo-img {
        width: 74px;
        height: 74px;
    }

}

/* text */
.subtitle {
    margin: 15px 0;
    color: #ddd;
}

/* links */
.footer-links a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #FF7043;
    transform: translateX(5px);
}

/* socials */
/* ===== PREMIUM SOCIAL ICONS ===== */
.socials {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.social-icon {
    width: 42px;
    height: 42px;

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

    border-radius: 50%;

    background: rgba(255,255,255,0.08);
    color: white;

    text-decoration: none;
    font-size: 18px;

    transition: all 0.3s ease;
}

/* hover */
.social-icon:hover {
    transform: translateY(-4px) scale(1.08);

    background: linear-gradient(
        135deg,
        #FF7043,
        #D57D36
    );

    .social-icon.facebook:hover {
        background: #1877F2;
    }

    .social-icon.instagram:hover {
        background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
    }

    box-shadow: 0 10px 25px rgba(255,112,67,0.35);
}/* button */
.footer-btn {
    margin-top: 15px;
    display: inline-block;
}

/* bottom */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    font-size: 13px;
    color: #aaa;
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .socials {
        justify-content: center;
    }
}
        /* Responsive */
        @media (max-width: 768px) {
            .who-we-are, .services-intro, .footer-container {
                flex-direction: column;
            }
            .cards-grid {
                flex-direction: column;
            }
        }

        /* ===== NAVBAR ===== */
/* ===== FIXED STABLE NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    height: 80px;              /* ✅ FIXED HEIGHT */
    padding: 0 50px;           /* ❌ remove vertical padding */

    background: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 1000;

    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border-bottom: 1px solid #eee;

    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
/* LEFT SIDE */
.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 9999;

    background: white;
}

/* LOGO */
.logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.08);
}

/* BRAND TEXT */
/* ===== FIXED PREMIUM BRAND ===== */

/* Override global serif font */
/* ===== FIXED PREMIUM BRAND ===== */

.brand h1 {

    font-family: 'Poppins', sans-serif !important;

    font-size: 22px;
    font-weight: 700;

    margin: 0;

    color: #FF7043; /* fallback */

    background: linear-gradient(
        135deg,
        #FF7043,
        #D57D36
    );

    background-clip: text;
    -webkit-background-clip: text;

    -webkit-text-fill-color: initial;

    letter-spacing: 0.5px;

    transition: none !important;
}
/* Subtitle */
.brand span {
    font-family: 'Poppins', sans-serif !important;

    font-size: 11px;
    font-weight: 600;
    color: #375945;

    letter-spacing: 3px;
    text-transform: uppercase;
}

/* prevent disappearing on hover */

.brand,
.brand:hover,
.brand h1,
.brand h1:hover,
.brand span,
.brand span:hover {

    opacity: 1 !important;

    visibility: visible !important;

    transform: none !important;

    filter: none !important;
}

/* Layout */
.brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/*
.logo {
    border-radius: 10px;
    padding: 5px;
    background: rgba(255,112,67,0.1);
}*/

/* NAV LINKS */
nav {
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

/* smooth underline */
nav a::after {
    content: "";
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg,#FF7043,#ff5722);
    position: absolute;
    bottom: -6px;
    left: 0;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #FF7043;
}

/* RIGHT SIDE */
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* PREMIUM BUTTON */
.btn-donate {
    background: linear-gradient(135deg, #FF7043, #ff5722);
    color: white;
    padding: 10px 22px;
    border-radius: 30px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,112,67,0.4);
}

/* MOBILE MENU */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    nav {
        position: absolute;
        top: 70px;
        right: 0;
        background: white;
        width: 100%;
        flex-direction: column;
        display: none;
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .brand span {
        display: none;
    }
}


/*Animation*/
/* ===== APPLE STYLE SMOOTH ANIMATION ===== */
/* ===== LOAD ANIMATION (ONLY ONCE) ===== */

/* Default state (visible) */


/* Animation class (applied on load) */


/* Delay for smooth effect */
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
/* Card premium feel */

/* CARD BASE */
.card {
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease;
}

/*.card:hover {
    transform: translateY(-14px) scale(1.03);
    box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}*/

.card-icon {
    transition: transform 0.3s ease;
}

/*.card:hover .card-icon {
    transform: scale(1.15) rotate(5deg);
}*/

/* disable hover on mobile */
@media (hover: none) {
    .card:hover {
        transform: none !important;
        box-shadow: none !important;
    }
}

/* add tap feedback */
/*.card:active {
    transform: scale(0.97);
}*/
/*
.animate.active {
    opacity: 1;
    transition: all 0.8s ease;
}*/

/* Image smooth zoom */
.image-content img,
.image-container-relative img {
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.image-content img:hover,
.image-container-relative img:hover {
    transform: scale(1.04);
}

/* Button smooth lift */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(213,125,54,0.35);
}
/*.reveal {
    border: 2px solid red;
}*/

@media (max-width: 768px) {
    .load-animate {
        transform: translateY(25px);
    }
}

/* ===== DIRECTIONAL LOAD ANIMATION ===== */
/* ===== PREMIUM ANIMATION ===== */

/* Base */
.animate {
    opacity: 1;
    will-change: transform, opacity;
}

/* Initial state */
.animate.init {
    opacity: 0;
}

/* Directions with smooth feel */
.from-left.init {
    transform: translateX(-50px) scale(0.98);
}

.from-right.init {
    transform: translateX(50px) scale(0.98);
}

.from-bottom.init {
    transform: translateY(80px) scale(0.95);
}

/* Active (premium easing) */
.animate.active {
    opacity: 1;

    transition:
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.9s ease;
}
/* final position handled separately */
.from-left.active,
.from-right.active,
.from-bottom.active {
    transform: none;
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* final position */


/*left right fix mob*/
@media (max-width: 768px) {

    .from-left.init,
    .from-right.init {
        transform: translateY(30px) scale(0.98);
    }

    .from-bottom.init {
        transform: translateY(30px) scale(0.97);
    }

}
.card {
    position: relative;
    overflow: hidden;
}

/* glow layer */
.card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 15px;
    background: radial-gradient(circle at top left, rgba(255,112,67,0.25), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}



/* ===== FIX MOBILE HOVER STICK ===== */

/* ===== MOBILE ANIMATION FIX ===== */
@media (max-width: 768px) {

    .animate,
    .animate.active,
    .card,
    .from-bottom.active {
        transform: none !important;
    }

}

/* ===== DESKTOP ONLY HOVER ===== */
@media (hover: hover) and (pointer: fine) {

    .card:hover {
        transform: translateY(-14px) scale(1.03);
        box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    }

    .card:hover::before {
        opacity: 1;
    }

    .card:hover .card-icon {
        transform: scale(1.15) rotate(5deg);
    }

}


/* ===== FORCE DISABLE CARD HOVER ON MOBILE ===== */
@media (hover: none), (pointer: coarse), (max-width: 768px) {

    .card,
    .card:hover,
    .card:active,
    .card:focus,
    .card:hover::before,
    .card:active::before,
    .card:hover .card-icon,
    .card:active .card-icon {

        transform: none !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
        opacity: 1 !important;
        transition: none !important;
    }

    .card::before {
        display: none !important;
    }

}

/* ===== MOBILE LANDSCAPE FIX ===== */
@media screen and (max-width: 900px) and (orientation: landscape) {

    /* NAVBAR */
    .navbar {
        height: 70px;
        padding: 0 20px;
    }

    .logo {
        width: 38px;
    }

    .brand h1 {
        font-size: 18px;
    }

    .brand span {
        font-size: 10px;
        letter-spacing: 1px;
    }

    nav {
        gap: 18px;
    }

    nav a {
        font-size: 14px;
    }

    /* HERO */
    .hero {
        min-height: 100vh;
        height: auto;
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-content {
        max-width: 90%;
    }

    .hero-content h1 {
        font-size: 52px;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 16px;
        margin-top: 10px;
    }

    /* BUTTONS */
    .hero-buttons {
        margin-top: 20px;
        gap: 15px;
    }

    .btn,
    .btn-glass {
        padding: 12px 24px;
        font-size: 14px;
    }

}
/*over service*/
.services-divider {

    width: 80px;
    height: 4px;

    margin: 40px auto 35px;

    border-radius: 20px;

    background: linear-gradient(
        90deg,
        #FF7043,
        #2F5D50
    );
}

/* mini heading
.services-mini-heading {

    text-align: center;
    margin: 40px 0 35px;
}*/

/* ===== PREMIUM MINI HEADING ===== */
.services-mini-heading {

    text-align: center;
    margin: 40px 0 35px;

    opacity: 0;
    transform: translateY(30px);

    animation: fadeUpHeading 1s ease forwards;
}

/* smooth animation */
@keyframes fadeUpHeading {

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


.services-mini-heading span {

    display: inline-block;

    margin-bottom: 12px;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 2px;
    text-transform: uppercase;

    color: #2F5D50;
}
/* ===== MOBILE BUTTON TEXT CENTER ===== */
@media (max-width: 768px) {

    .btn {
        display: flex;
        justify-content: center;
        align-items: center;

        text-align: center;
    }

}
/* FLOATING DONATE BUTTON */

.floating-donate{

    position: fixed;

    right: 20px;

    bottom: 25px;

    /*background: #FF7043;*/

    background: linear-gradient(
            135deg,
            #2F5D50,
            #4CAF50
        );

    color: white;

    text-decoration: none;

    padding: 14px 22px;

    border-radius: 50px;

    font-weight: 600;

    box-shadow: 0 10px 25px rgba(0,0,0,0.2);

    z-index: 9999;

    transition: all .3s ease;

    animation: pulseDonate 2s infinite;
}

.floating-donate:hover{

    transform: translateY(-5px);
    background: linear-gradient(
            135deg,
            #265045,
            #43A047
        );

    color: white;

    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

@keyframes pulseDonate{

    0%{

        transform: scale(1);
    }

    50%{

        transform: scale(1.08);
    }

    100%{

        transform: scale(1);
    }
}
@media(max-width:768px){

    .floating-donate{

        right: 15px;

        bottom: 20px;

        padding: 12px 18px;

        font-size: 14px;
    }
}

