/* ================= GLOBAL CSS ================= */

:root {
    --primary: #1f7a4d;
    --primary-dark: #145c39;
    --secondary: #f4a261;
    --accent: #e76f51;
    --dark: #1f2933;
    --text: #5f6c7b;
    --light: #f8f7f2;
    --white: #ffffff;
    --border: #e5e7eb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.section-padding {
    padding: 90px 0;
}

.min-vh-75 {
    min-height: 75vh;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(31, 122, 77, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-text {
    color: var(--text);
    font-size: 16px;
    max-width: 720px;
}

/* ================= BUTTONS ================= */

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary-custom:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(31, 122, 77, 0.25);
}

.btn-outline-custom {
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-donate {
    background: var(--accent);
    color: var(--white);
    border-radius: 50px;
    padding: 10px 22px;
    font-weight: 600;
}

.btn-donate:hover {
    background: var(--primary);
    color: var(--white);
}

/* ================= AUTH PAGES ================= */

.auth-page-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(31, 122, 77, 0.1), rgba(244, 162, 97, 0.12)),
        var(--light);
    padding: 96px 0;
}

.auth-page-section .container {
    position: relative;
    z-index: 2;
}

.auth-bg-shape {
    position: absolute;
    border-radius: 999px;
    opacity: 0.18;
    pointer-events: none;
}

.auth-shape-one {
    width: 280px;
    height: 280px;
    top: 70px;
    left: -110px;
    background: var(--primary);
}

.auth-shape-two {
    width: 240px;
    height: 240px;
    right: -90px;
    bottom: 80px;
    background: var(--accent);
}

.auth-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 520px);
    align-items: stretch;
    max-width: 1080px;
    margin: 0 auto;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 28px 70px rgba(31, 41, 51, 0.12);
    overflow: hidden;
    border: 1px solid rgba(31, 122, 77, 0.12);
}

.auth-intro-panel {
    position: relative;
    min-height: 100%;
    padding: 56px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(20, 92, 57, 0.95), rgba(31, 122, 77, 0.86)),
        url("../img/img.jpeg") center/cover;
}

.auth-intro-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(20, 92, 57, 0.92), rgba(31, 41, 51, 0.72));
}

.auth-intro-panel > * {
    position: relative;
    z-index: 1;
}

.auth-badge {
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
    margin-bottom: 24px;
}

.auth-intro-panel h1 {
    max-width: 420px;
    margin-bottom: 18px;
    font-size: 46px;
    line-height: 1.12;
    font-weight: 900;
}

.auth-intro-panel p {
    max-width: 460px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 16px;
}

.auth-feature-list {
    display: grid;
    gap: 14px;
}

.auth-feature-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
}

.auth-feature-list i {
    color: var(--secondary);
}

.auth-card {
    background: var(--white);
    padding: 46px;
}

.auth-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.auth-brand img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 18px;
    border: 1px solid rgba(31, 122, 77, 0.12);
    background: var(--white);
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.08);
}

.auth-brand h2 {
    margin: 0;
    color: var(--dark);
    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;
}

.auth-brand span {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.auth-alert {
    border: 0;
    border-radius: 16px;
    background: rgba(31, 122, 77, 0.09);
    color: var(--primary-dark);
}

.auth-form {
    display: grid;
    gap: 18px;
}

.auth-field label {
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
}

.auth-input-wrap {
    position: relative;
}

.auth-input-wrap i {
    position: absolute;
    top: 50%;
    left: 18px;
    color: var(--primary);
    transform: translateY(-50%);
    pointer-events: none;
}

.auth-input-wrap .form-control {
    width: 100%;
    min-height: 54px;
    border: 1px solid rgba(31, 122, 77, 0.16);
    border-radius: 16px;
    padding: 13px 16px 13px 48px;
    color: var(--dark);
    background: #fbfcfb;
    font-weight: 500;
    box-shadow: none;
}

.auth-input-wrap .form-control:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(31, 122, 77, 0.12);
}

.auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 14px;
}

.auth-check {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--text);
    font-weight: 600;
}

.auth-check input {
    width: 17px;
    height: 17px;
    accent-color: var(--primary);
}

.auth-options a,
.auth-switch a {
    color: var(--primary);
    font-weight: 800;
}

.auth-options a:hover,
.auth-switch a:hover {
    color: var(--accent);
}

.auth-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    width: 100%;
    border-radius: 16px;
    font-weight: 800;
}

.auth-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 4px;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .auth-page-section {
        padding: 70px 0;
    }

    .auth-shell {
        grid-template-columns: 1fr;
        max-width: 640px;
    }

    .auth-intro-panel {
        min-height: auto;
        padding: 42px;
    }

    .auth-intro-panel h1 {
        font-size: 38px;
    }
}

@media (max-width: 575px) {
    .auth-page-section {
        padding: 42px 0;
    }

    .auth-shell {
        border-radius: 20px;
    }

    .auth-intro-panel,
    .auth-card {
        padding: 28px 22px;
    }

    .auth-intro-panel h1 {
        font-size: 30px;
    }

    .auth-brand {
        align-items: flex-start;
    }

    .auth-brand h2 {
        font-size: 18px;
    }

    .auth-switch {
        flex-direction: column;
        gap: 2px;
    }
}

/* ================= GLOBAL CSS END================= */










/* ================= HEADER SECTION ================= */

.main-header {
    z-index: 999;
}

.main-navbar {
    min-height: 84px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(31, 122, 77, 0.08);
    box-shadow: 0 10px 35px rgba(31, 41, 51, 0.08);
    transition: 0.3s ease;
}

/* Logo */
.site-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 16px;
    background: #fff;
}

/* Brand Text */
.brand-text {
    display: flex;
    flex-direction: column;
    font-size: 22px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.05;
    letter-spacing: -0.5px;
}

.brand-text small {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    margin-top: 4px;
    letter-spacing: 0;
}

/* Desktop Menu */
.navbar-nav {
    gap: 3px;
}

.navbar-nav .nav-link {
    position: relative;
    color: var(--dark);
    font-size: 15px;
    font-weight: 700;
    padding: 10px 13px !important;
    transition: 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 3px;
    height: 2px;
    background: var(--primary);
    border-radius: 30px;
    transform: scaleX(0);
    transform-origin: center;
    transition: 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

/* Donate Button */
.btn-donate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), #ff8a5b);
    color: var(--white);
    border-radius: 50px;
    padding: 11px 24px;
    font-size: 15px;
    font-weight: 800;
    border: none;
    box-shadow: 0 12px 28px rgba(231, 111, 81, 0.28);
    transition: 0.3s ease;
}

.btn-donate:hover {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(31, 122, 77, 0.32);
}

/* Mobile Donate Icon */
.mobile-donate-btn {
    width: 42px;
    height: 42px;
    margin-left: auto;
    margin-right: 10px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), #ff8a5b);
    color: var(--white);
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(231, 111, 81, 0.25);
}

.mobile-donate-btn:hover {
    color: var(--white);
}

/* Custom Hamburger */
.custom-toggler {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 14px;
    background: rgba(31, 122, 77, 0.1);
    padding: 0;
    box-shadow: none !important;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.custom-toggler span {
    width: 19px;
    height: 2px;
    border-radius: 30px;
    background: var(--primary);
    display: block;
    transition: 0.3s ease;
}

.custom-toggler[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.custom-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.custom-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-head,
.mobile-menu-footer {
    display: none;
}

/* ================= ULTRA PREMIUM HEADER ================= */

.main-header {
    z-index: 9999;
}

.premium-navbar {
    position: relative;
    min-height: 86px;
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(31, 122, 77, 0.08);
    box-shadow: 0 14px 45px rgba(31, 41, 51, 0.08);
}

/* Brand */
.premium-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0;
}

.brand-logo-wrap {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    padding: 5px;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, rgba(31, 122, 77, 0.45), rgba(244, 162, 97, 0.55)) border-box;
    border: 1px solid transparent;
    box-shadow: 0 12px 28px rgba(31, 122, 77, 0.13);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
}

.brand-content {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-title {
    font-size: 23px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.7px;
}

.brand-subtitle {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    margin-top: 5px;
    letter-spacing: 0.2px;
}

/* Desktop Menu */
.navbar-nav {
    gap: 3px;
}

.navbar-nav .nav-link {
    position: relative;
    color: var(--dark);
    font-size: 15px;
    font-weight: 800;
    padding: 10px 13px !important;
    border-radius: 14px;
    transition: 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 5px;
    height: 2px;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
    background: rgba(31, 122, 77, 0.06);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

/* Donate Button */
.btn-donate {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 24px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), #ff8a5b);
    color: var(--white);
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 14px 32px rgba(231, 111, 81, 0.32);
    transition: 0.35s ease;
}

.btn-donate::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 55%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transform: skewX(-20deg);
    transition: 0.6s ease;
}

.btn-donate:hover::before {
    left: 130%;
}

.btn-donate:hover {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(31, 122, 77, 0.35);
}

/* Mobile Donate Icon */
.mobile-donate-icon {
    width: 43px;
    height: 43px;
    margin-left: auto;
    margin-right: 10px;
    border-radius: 16px;
    color: var(--white);
    background: linear-gradient(135deg, var(--accent), #ff8a5b);
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 26px rgba(231, 111, 81, 0.32);
}

.mobile-donate-icon:hover {
    color: var(--white);
}

/* Premium Toggler */
.premium-toggler {
    width: 43px;
    height: 43px;
    border: 0;
    border-radius: 16px;
    padding: 0;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, rgba(31, 122, 77, 0.35), rgba(244, 162, 97, 0.45)) border-box;
    border: 1px solid transparent;
    box-shadow: 0 12px 26px rgba(31, 41, 51, 0.1);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.premium-toggler:focus {
    box-shadow: 0 12px 26px rgba(31, 41, 51, 0.1);
}

.premium-toggler span {
    width: 19px;
    height: 2px;
    border-radius: 50px;
    background: var(--primary);
    transition: 0.3s ease;
}

.premium-toggler[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.premium-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.premium-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hidden on desktop */
.mobile-menu-title,
.mobile-menu-footer {
    display: none;
}

/* Premium Toggler END*/
/* ================= LOGO ONLY - NO BACKGROUND ================= */

.logo-only-brand {
    display: inline-flex;
    align-items: center;
    padding: 0;
    margin-right: 28px;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
}

.logo-only-brand .brand-logo-wrap {
    width: 82px;
    height: 82px;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.logo-only-brand .site-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
}

/* Hide old brand text safely */
.premium-brand .brand-content,
.premium-brand .brand-title,
.premium-brand .brand-subtitle,
.brand-text {
    display: none !important;
}

/* Navbar balance */
.premium-navbar {
    min-height: 94px;
}

/* Mobile */
@media (max-width: 991px) {
    .logo-only-brand {
        margin-right: 0;
    }

    .logo-only-brand .brand-logo-wrap {
        width: 70px;
        height: 70px;
    }

    .premium-navbar {
        min-height: 86px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .logo-only-brand .brand-logo-wrap {
        width: 62px;
        height: 62px;
    }

    .premium-navbar {
        min-height: 80px;
    }
}

/* Extra Small Mobile */
@media (max-width: 390px) {
    .logo-only-brand .brand-logo-wrap {
        width: 56px;
        height: 56px;
    }
}

/* ================= MOBILE ULTRA PREMIUM HEADER ================= */

@media (max-width: 991px) {

    .premium-navbar {
        min-height: 82px;
        padding: 12px 0;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 247, 242, 0.98));
    }

    .premium-navbar .container {
        position: relative;
    }

    .brand-logo-wrap {
        width: 52px;
        height: 52px;
        border-radius: 18px;
        padding: 4px;
    }

    .site-logo {
        border-radius: 14px;
    }

    .brand-title {
        font-size: 22px;
        line-height: 1;
        letter-spacing: -0.5px;
    }

    .brand-subtitle {
        font-size: 12px;
        margin-top: 5px;
        max-width: 185px;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mobile-donate-icon,
    .premium-toggler {
        display: inline-flex;
        width: 48px;
        height: 48px;
        border-radius: 17px;
        font-size: 18px;
    }

    .mobile-donate-icon {
        margin-left: auto;
        margin-right: 10px;
    }

    .premium-toggler span {
        width: 22px;
        height: 2.5px;
    }

    .premium-toggler[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .premium-toggler[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .premium-menu {
        position: absolute;
        top: calc(100% + 14px);
        left: 10px;
        right: 10px;
        width: auto;
        padding: 22px;
        border-radius: 30px;
        background:
            radial-gradient(circle at top left, rgba(244, 162, 97, 0.2), transparent 34%),
            radial-gradient(circle at bottom right, rgba(31, 122, 77, 0.18), transparent 34%),
            rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border: 1px solid rgba(31, 122, 77, 0.14);
        box-shadow:
            0 32px 85px rgba(31, 41, 51, 0.23),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
        max-height: calc(100vh - 110px);
        overflow-y: auto;
    }

    .mobile-menu-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        padding: 4px 4px 18px;
        margin-bottom: 14px;
        border-bottom: 1px solid rgba(31, 122, 77, 0.12);
    }

    .mobile-menu-title h6 {
        margin: 0 0 5px;
        font-size: 22px;
        font-weight: 900;
        color: var(--dark);
        letter-spacing: -0.5px;
        line-height: 1.1;
    }

    .mobile-menu-title p {
        margin: 0;
        font-size: 14px;
        font-weight: 600;
        color: var(--text);
        line-height: 1.45;
    }

    .mobile-menu-badge {
        min-width: 58px;
        height: 40px;
        border-radius: 999px;
        background: rgba(31, 122, 77, 0.11);
        color: var(--primary);
        font-size: 14px;
        font-weight: 900;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .navbar-nav {
        display: grid;
        gap: 11px;
        align-items: stretch !important;
        padding: 0;
        margin: 0 !important;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        width: 100%;
        min-height: 62px;
        padding: 13px 15px !important;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.86);
        border: 1px solid rgba(31, 122, 77, 0.09);
        box-shadow: 0 10px 25px rgba(31, 41, 51, 0.055);
        color: var(--dark);
        font-size: 18px;
        line-height: 1.1;
        font-weight: 850;
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .mobile-link-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        border-radius: 16px;
        background:
            linear-gradient(135deg, rgba(31, 122, 77, 0.13), rgba(244, 162, 97, 0.15));
        color: var(--primary);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 21px;
        transition: 0.3s ease;
    }

    .mobile-link-arrow {
        margin-left: auto;
        color: rgba(31, 41, 51, 0.4);
        font-size: 16px;
        transition: 0.3s ease;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--primary);
        background: rgba(31, 122, 77, 0.1);
        border-color: rgba(31, 122, 77, 0.18);
        transform: translateX(4px);
        box-shadow: 0 14px 30px rgba(31, 122, 77, 0.1);
    }

    .navbar-nav .nav-link:hover .mobile-link-icon,
    .navbar-nav .nav-link.active .mobile-link-icon {
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: var(--white);
        box-shadow: 0 12px 24px rgba(31, 122, 77, 0.24);
    }

    .navbar-nav .nav-link:hover .mobile-link-arrow,
    .navbar-nav .nav-link.active .mobile-link-arrow {
        color: var(--primary);
        transform: translateX(3px);
    }

    .donate-nav-item {
        margin-top: 8px;
    }

    .donate-nav-item .btn-donate {
        width: 100%;
        min-height: 64px;
        border-radius: 21px;
        font-size: 18px;
        letter-spacing: 0.2px;
    }

    .mobile-menu-footer {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 18px;
        padding-top: 18px;
        border-top: 1px solid rgba(31, 122, 77, 0.12);
    }

    .mobile-menu-footer a {
        min-height: 50px;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 11px 14px;
        border-radius: 17px;
        background: rgba(255, 255, 255, 0.76);
        border: 1px solid rgba(31, 122, 77, 0.08);
        color: var(--text);
        font-size: 15px;
        line-height: 1.2;
        font-weight: 800;
    }

    .mobile-menu-footer a i {
        width: 36px;
        height: 36px;
        min-width: 36px;
        border-radius: 13px;
        background: rgba(231, 111, 81, 0.13);
        color: var(--accent);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 17px;
    }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 575px) {

    .premium-navbar {
        min-height: 78px;
        padding: 11px 0;
    }

    .brand-logo-wrap {
        width: 48px;
        height: 48px;
        border-radius: 17px;
    }

    .brand-title {
        font-size: 20px;
    }

    .brand-subtitle {
        font-size: 11px;
        max-width: 165px;
    }

    .mobile-donate-icon,
    .premium-toggler {
        width: 45px;
        height: 45px;
        border-radius: 16px;
        font-size: 17px;
    }

    .mobile-donate-icon {
        margin-right: 8px;
    }

    .premium-toggler span {
        width: 21px;
    }

    .premium-menu {
        top: calc(100% + 11px);
        left: 8px;
        right: 8px;
        padding: 19px;
        border-radius: 28px;
    }

    .mobile-menu-title {
        padding-bottom: 16px;
        margin-bottom: 13px;
    }

    .mobile-menu-title h6 {
        font-size: 21px;
    }

    .mobile-menu-title p {
        font-size: 13.5px;
    }

    .mobile-menu-badge {
        min-width: 54px;
        height: 38px;
        font-size: 13px;
    }

    .navbar-nav {
        gap: 10px;
    }

    .navbar-nav .nav-link {
        min-height: 58px;
        padding: 12px 14px !important;
        border-radius: 19px;
        font-size: 17px;
    }

    .mobile-link-icon {
        width: 41px;
        height: 41px;
        min-width: 41px;
        border-radius: 15px;
        font-size: 20px;
    }

    .mobile-link-arrow {
        font-size: 15px;
    }

    .donate-nav-item .btn-donate {
        min-height: 60px;
        border-radius: 20px;
        font-size: 17px;
    }

    .mobile-menu-footer a {
        min-height: 48px;
        font-size: 14px;
    }
}

/* ================= EXTRA SMALL MOBILE ================= */

@media (max-width: 390px) {

    .premium-brand {
        gap: 8px;
    }

    .brand-logo-wrap {
        width: 44px;
        height: 44px;
    }

    .brand-title {
        font-size: 18px;
    }

    .brand-subtitle {
        display: none;
    }

    .mobile-donate-icon,
    .premium-toggler {
        width: 42px;
        height: 42px;
        border-radius: 15px;
    }

    .premium-toggler span {
        width: 20px;
    }

    .premium-menu {
        left: 6px;
        right: 6px;
        padding: 16px;
        border-radius: 25px;
    }

    .mobile-menu-title h6 {
        font-size: 20px;
    }

    .mobile-menu-title p {
        font-size: 13px;
    }

    .navbar-nav .nav-link {
        min-height: 56px;
        font-size: 16px;
        border-radius: 18px;
    }

    .mobile-link-icon {
        width: 39px;
        height: 39px;
        min-width: 39px;
        font-size: 19px;
    }

    .donate-nav-item .btn-donate {
        min-height: 58px;
        font-size: 16.5px;
    }
}

/* ================= HEADER END CSS ================= */







/* ================= PREMIUM HERO ================= */

.hero-section {
    position: relative;
    overflow: hidden;
    margin-top: -18px;
    padding: 70px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(244, 162, 97, 0.22), transparent 28%),
        radial-gradient(circle at 86% 12%, rgba(31, 122, 77, 0.18), transparent 30%),
        radial-gradient(circle at 72% 82%, rgba(231, 111, 81, 0.12), transparent 28%),
        linear-gradient(135deg, #fff8ec 0%, #f7f5ed 42%, #eef8f1 100%);
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.82) 0%, transparent 38%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.045) 0px,
            rgba(31, 122, 77, 0.045) 1px,
            transparent 1px,
            transparent 18px);
    opacity: 0.7;
    pointer-events: none;
}

.hero-section::after {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    right: -260px;
    top: -240px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.45) 0%, rgba(31, 122, 77, 0.16) 38%, transparent 68%);
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-wrapper {
    position: relative;
    padding: 46px;
    border-radius: 38px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(31, 122, 77, 0.11);
    box-shadow: 0 30px 80px rgba(31, 41, 51, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.hero-content {
    max-width: 620px;
}

.hero-badge {
    background: rgba(31, 122, 77, 0.09);
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.05);
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.8px;
    margin-bottom: 22px;
    color: var(--dark);
}

.hero-title::first-line {
    color: var(--primary-dark);
}

.hero-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    max-width: 590px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.hero-buttons .btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-impact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-impact-item {
    min-width: 135px;
    padding: 14px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(31, 122, 77, 0.1);
    box-shadow: 0 12px 28px rgba(31, 41, 51, 0.06);
}

.hero-impact-item h4 {
    font-size: 25px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 2px;
}

.hero-impact-item p {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0;
}

/* Right Image */

.hero-image-wrap {
    position: relative;
    padding: 12px;
}

.hero-image-wrap::before {
    content: "";
    position: absolute;
    inset: 46px 0 0 48px;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(31, 122, 77, 0.17), rgba(244, 162, 97, 0.2));
    transform: rotate(-4deg);
    z-index: -1;
}

.hero-image-box {
    position: relative;
    overflow: hidden;
    height: 455px;
    border-radius: 32px;
    border: 8px solid rgba(255, 255, 255, 0.88);
    box-shadow: 0 28px 70px rgba(31, 41, 51, 0.2);
}

.hero-image-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.28)),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.25), transparent 34%);
    pointer-events: none;
}

.hero-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Small Floating Card */

.hero-small-card {
    position: absolute;
    left: -5px;
    bottom: 42px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 245px;
    padding: 14px 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 18px 42px rgba(31, 41, 51, 0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hero-small-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.hero-small-card h6 {
    font-size: 15px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 3px;
}

.hero-small-card p {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0;
}

/* ================= HERO RESPONSIVE ================= */

@media (max-width: 991px) {
    .hero-section {
        padding: 55px 0 42px;
    }

    .hero-wrapper {
        padding: 34px;
        border-radius: 32px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 48px;
        line-height: 1.1;
        letter-spacing: -1.2px;
    }

    .hero-text {
        font-size: 18px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-impact-row {
        justify-content: center;
    }

    .hero-image-wrap {
        margin-top: 10px;
        padding: 10px;
    }

    .hero-image-box {
        height: 390px;
        border-radius: 28px;
    }

    .hero-small-card {
        left: 24px;
        bottom: 34px;
    }
}

@media (max-width: 575px) {
    .hero-section {
        padding: 38px 0 32px;
    }

    .hero-wrapper {
        padding: 24px;
        border-radius: 28px;
    }

    .hero-badge {
        font-size: 14px;
        padding: 8px 14px;
        margin-bottom: 16px;
    }

    .hero-title {
        font-size: 39px;
        line-height: 1.12;
        letter-spacing: -0.9px;
        margin-bottom: 18px;
    }

    .hero-text {
        font-size: 16.5px;
        line-height: 1.65;
        margin-bottom: 24px;
    }

    .hero-buttons {
        gap: 10px;
        margin-bottom: 28px;
    }

    .hero-buttons .btn {
        width: 100%;
        min-height: 52px;
        font-size: 15.5px;
    }

    .hero-impact-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .hero-impact-item {
        min-width: auto;
        padding: 12px 8px;
        border-radius: 17px;
        text-align: center;
    }

    .hero-impact-item h4 {
        font-size: 21px;
    }

    .hero-impact-item p {
        font-size: 11px;
        line-height: 1.25;
    }

    .hero-image-wrap {
        padding: 6px;
    }

    .hero-image-box {
        height: 315px;
        border-radius: 24px;
        border-width: 6px;
    }

    .hero-small-card {
        left: 18px;
        right: 18px;
        bottom: 22px;
        min-width: auto;
        padding: 12px 14px;
        border-radius: 19px;
    }

    .hero-small-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 14px;
        font-size: 18px;
    }

    .hero-small-card h6 {
        font-size: 14px;
    }

    .hero-small-card p {
        font-size: 11px;
    }
}

@media (max-width: 390px) {
    .hero-wrapper {
        padding: 20px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-text {
        font-size: 15.5px;
    }

    .hero-impact-row {
        grid-template-columns: 1fr;
    }

    .hero-impact-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        padding: 12px 15px;
    }

    .hero-image-box {
        height: 285px;
    }
}

/* ================= PREMIUM HERO END ================= */








/* ================= ABOUT ================= */

.about-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 20%, rgba(31, 122, 77, 0.08), transparent 30%),
        radial-gradient(circle at 90% 75%, rgba(244, 162, 97, 0.15), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #f8f7f2 55%, #eef8f1 100%);
}

.about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.03) 0px,
            rgba(31, 122, 77, 0.03) 1px,
            transparent 1px,
            transparent 22px);
    opacity: 0.55;
    pointer-events: none;
}

.about-section .container {
    position: relative;
    margin-top: -100px;
    z-index: 2;
}

/* Laptop fit */
.about-row {
    min-height: 520px;
}

/* Image Side */
.about-image-wrap {
    position: relative;
    max-width: 560px;
    margin-left: auto;
    transform: translateY(12px);
}

.about-image-wrap::before {
    content: "";
    position: absolute;
    inset: 34px -18px -18px 34px;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(31, 122, 77, 0.18), rgba(244, 162, 97, 0.2));
    z-index: -1;
}

.about-img {
    margin-top: -30px;
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
    border-radius: 34px;
    border: 8px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 28px 70px rgba(31, 41, 51, 0.18);
}

.about-image-card {
    position: absolute;
    left: -20px;
    bottom: 34px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 245px;
    padding: 14px 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 18px 42px rgba(31, 41, 51, 0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.about-image-card i {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.about-image-card h6 {
    font-size: 15px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 3px;
}

.about-image-card p {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0;
}

/* Content Side */
.about-content {
    max-width: 610px;
    padding-left: 18px;
    transform: translateY(-10px);
}

.about-badge {
    background: rgba(31, 122, 77, 0.09);
    border: 1px solid rgba(31, 122, 77, 0.12);
}

.about-title {
    margin-bottom: 18px;
}

.about-text {
    color: var(--text);
    font-size: 15px;
    line-height: 1.58;
    margin-bottom: 15px;
}

.about-points {
    display: grid;
    gap: 11px;
    margin: 25px 0 28px;
}

.about-point {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 15px;
    font-weight: 800;
    color: var(--dark);
}

.about-point i {
    color: var(--primary);
    font-size: 18px;
}

.about-btn {
    /* min-height: 35px; */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ================= ABOUT RESPONSIVE ================= */

@media (max-width: 1199px) {
    .about-row {
        min-height: 500px;
    }

    .about-img {
        height: 400px;
    }

    .about-title {
        font-size: 38px;
    }

    .about-text {
        font-size: 16px;
        line-height: 1.7;
    }
}

@media (max-width: 991px) {
    .about-row {
        min-height: auto;
    }

    .about-image-wrap {
        max-width: 100%;
        margin: 0;
        transform: none;
    }

    .about-content {
        max-width: 100%;
        padding-left: 0;
        transform: none;
        text-align: center;
    }

    .about-points {
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-point {
        justify-content: center;
    }

    .about-img {
        height: 390px;
    }

    .about-image-card {
        left: 24px;
        bottom: 28px;
    }
}

@media (max-width: 575px) {
    .about-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .about-img {
        height: 310px;
        border-radius: 26px;
        border-width: 6px;
    }

    .about-image-wrap::before {
        inset: 26px -10px -10px 26px;
        border-radius: 26px;
    }

    .about-image-card {
        left: 16px;
        right: 16px;
        bottom: 18px;
        min-width: auto;
        padding: 12px 14px;
        border-radius: 18px;
    }

    .about-title {
        font-size: 32px;
        line-height: 1.15;
    }

    .about-text {
        font-size: 16px;
        line-height: 1.65;
    }

    .about-point {
        justify-content: flex-start;
        text-align: left;
        padding: 12px 14px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(31, 122, 77, 0.08);
        font-size: 14.5px;
    }

    .about-btn {
        width: 100%;
    }
}

@media (max-width: 390px) {
    .about-img {
        height: 280px;
    }

    .about-title {
        font-size: 29px;
    }

    .about-image-card {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 14px;
    }
}

/* ================= ABOUT END CSS ================= */








/* ================= PROGRAMS START CSS================= */

.programs-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(31, 122, 77, 0.12), transparent 30%),
        radial-gradient(circle at 88% 20%, rgba(244, 162, 97, 0.18), transparent 32%),
        radial-gradient(circle at 50% 95%, rgba(231, 111, 81, 0.10), transparent 30%),
        linear-gradient(135deg, #eef8f1 0%, #fff8ec 48%, #ffffff 100%);
}

.programs-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.72) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.035) 0px,
            rgba(31, 122, 77, 0.035) 1px,
            transparent 1px,
            transparent 22px);
    opacity: 0.65;
    pointer-events: none;
}

.programs-section::after {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    right: -220px;
    bottom: -220px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(31, 122, 77, 0.14) 0%,
            rgba(31, 122, 77, 0.08) 38%,
            transparent 70%);
    pointer-events: none;
}

.programs-section .container {
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.programs-badge {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.055);
}

.program-card {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 242, 0.72));
    padding: 34px;
    border-radius: 26px;
    height: 100%;
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 16px 42px rgba(31, 41, 51, 0.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: 0.35s ease;
}

.program-card::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -55px;
    top: -55px;
    border-radius: 50%;
    background: rgba(31, 122, 77, 0.08);
    z-index: -1;
    transition: 0.35s ease;
}

.program-card::after {
    content: "";
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.35s ease;
}

.program-card:hover {
    transform: translateY(-8px);
    border-color: rgba(31, 122, 77, 0.22);
    box-shadow: 0 26px 65px rgba(31, 41, 51, 0.13);
}

.program-card:hover::before {
    transform: scale(1.28);
    background: rgba(244, 162, 97, 0.14);
}

.program-card:hover::after {
    transform: scaleX(1);
}

.program-icon {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(31, 122, 77, 0.13), rgba(244, 162, 97, 0.16));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 24px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
    transition: 0.35s ease;
}

.program-card:hover .program-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: rotate(-4deg) scale(1.04);
    box-shadow: 0 14px 30px rgba(31, 122, 77, 0.25);
}

.program-card h4 {
    font-size: 23px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.program-card p {
    color: var(--text);
    font-size: 15.5px;
    line-height: 1.72;
    margin-bottom: 20px;
}

.program-card a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-size: 15px;
    font-weight: 900;
    transition: 0.3s ease;
}

.program-card a i {
    transition: 0.3s ease;
}

.program-card a:hover {
    color: var(--accent);
}

.program-card a:hover i {
    transform: translateX(4px);
}

/* ================= PROGRAMS RESPONSIVE ================= */

@media (max-width: 991px) {
    .program-card {
        padding: 30px;
        border-radius: 24px;
    }

    .program-card h4 {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .programs-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .program-card {
        padding: 26px;
        border-radius: 22px;
    }

    .program-icon {
        width: 64px;
        height: 64px;
        border-radius: 21px;
        font-size: 30px;
        margin-bottom: 20px;
    }

    .program-card h4 {
        font-size: 21px;
    }

    .program-card p {
        font-size: 15px;
        line-height: 1.65;
    }
}

/* ================= PROGRAMS END CSS================= */








/* ================= IMPACT ================= */

.impact-section {
    position: relative;
    overflow: hidden;
    padding: 85px 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(244, 162, 97, 0.20), transparent 30%),
        radial-gradient(circle at 90% 75%, rgba(31, 122, 77, 0.18), transparent 32%),
        linear-gradient(135deg, #fff8ec 0%, #eef8f1 48%, #ffffff 100%);
}

.impact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.76) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.04) 0px,
            rgba(31, 122, 77, 0.04) 1px,
            transparent 1px,
            transparent 22px);
    opacity: 0.68;
    pointer-events: none;
}

.impact-section::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    left: -240px;
    bottom: -260px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(31, 122, 77, 0.16) 0%,
            rgba(31, 122, 77, 0.08) 38%,
            transparent 70%);
    pointer-events: none;
}

.impact-section .container {
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.impact-head {
    max-width: 760px;
    margin: 0 auto 45px;
}

.impact-badge {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.055);
}

.impact-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.impact-text {
    color: var(--text);
    font-size: 16.5px;
    line-height: 1.75;
    margin-bottom: 0;
}

/* Impact Cards */

.impact-box {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 34px 20px;
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.76));
    border: 1px solid rgba(31, 122, 77, 0.12);
    color: var(--dark);
    box-shadow: 0 18px 45px rgba(31, 41, 51, 0.075);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: 0.38s ease;
}

.impact-box::before {
    content: "";
    position: absolute;
    width: 135px;
    height: 135px;
    right: -58px;
    top: -58px;
    border-radius: 50%;
    background: rgba(31, 122, 77, 0.08);
    transition: 0.38s ease;
}

.impact-box::after {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: center;
    transition: 0.38s ease;
}

.impact-icon {
    position: relative;
    z-index: 2;
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    border-radius: 23px;
    background:
        linear-gradient(135deg, rgba(31, 122, 77, 0.13), rgba(244, 162, 97, 0.16));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 31px;
    transition: 0.38s ease;
}

.impact-box h3 {
    position: relative;
    z-index: 2;
    font-size: 48px;
    font-weight: 950;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.impact-box p {
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    color: var(--text);
    font-size: 15px;
    font-weight: 800;
}

/* Hover Effect */

.impact-box:hover {
    transform: translateY(-10px);
    border-color: rgba(31, 122, 77, 0.22);
    box-shadow: 0 28px 70px rgba(31, 41, 51, 0.14);
}

.impact-box:hover::before {
    transform: scale(1.35);
    background: rgba(244, 162, 97, 0.16);
}

.impact-box:hover::after {
    transform: scaleX(1);
}

.impact-box:hover .impact-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: rotate(-5deg) scale(1.06);
    box-shadow: 0 16px 32px rgba(31, 122, 77, 0.26);
}

.impact-box:hover h3 {
    color: var(--accent);
}

/* Soft animation */

.impact-box {
    animation: impactFloat 4.5s ease-in-out infinite;
}

.impact-section .col-6:nth-child(2) .impact-box {
    animation-delay: 0.4s;
}

.impact-section .col-6:nth-child(3) .impact-box {
    animation-delay: 0.8s;
}

.impact-section .col-6:nth-child(4) .impact-box {
    animation-delay: 1.2s;
}

@keyframes impactFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.impact-box:hover {
    animation-play-state: paused;
}

/* ================= IMPACT RESPONSIVE ================= */

@media (max-width: 991px) {
    .impact-section {
        padding: 75px 0;
    }

    .impact-title {
        font-size: 36px;
    }

    .impact-box {
        padding: 30px 18px;
        border-radius: 25px;
    }

    .impact-box h3 {
        font-size: 42px;
    }
}

@media (max-width: 575px) {
    .impact-section {
        padding: 65px 0;
    }

    .impact-head {
        margin-bottom: 35px;
    }

    .impact-title {
        font-size: 31px;
        line-height: 1.18;
    }

    .impact-text {
        font-size: 15.5px;
    }

    .impact-box {
        padding: 26px 12px;
        border-radius: 22px;
    }

    .impact-icon {
        width: 58px;
        height: 58px;
        border-radius: 20px;
        font-size: 27px;
        margin-bottom: 15px;
    }

    .impact-box h3 {
        font-size: 36px;
    }

    .impact-box p {
        font-size: 13.5px;
    }
}

@media (max-width: 390px) {
    .impact-box {
        padding: 24px 10px;
    }

    .impact-box h3 {
        font-size: 32px;
    }

    .impact-icon {
        width: 54px;
        height: 54px;
        font-size: 25px;
    }
}

/* ================= IMPACT END CSS ================= */







/* ================= EVENTS ================= */

.events-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 18%, rgba(244, 162, 97, 0.17), transparent 30%),
        radial-gradient(circle at 92% 78%, rgba(31, 122, 77, 0.16), transparent 32%),
        linear-gradient(135deg, #ffffff 0%, #fff8ec 48%, #eef8f1 100%);
}

.events-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.72) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.035) 0px,
            rgba(31, 122, 77, 0.035) 1px,
            transparent 1px,
            transparent 22px);
    opacity: 0.62;
    pointer-events: none;
}

.events-section::after {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    right: -230px;
    top: -230px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(31, 122, 77, 0.14) 0%,
            rgba(31, 122, 77, 0.08) 38%,
            transparent 70%);
    pointer-events: none;
}

.events-section .container {
    margin-top: -30px;
    position: relative;
    z-index: 2;
}

.events-badge {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.055);
}

/* Event Card */

.event-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 16px 42px rgba(31, 41, 51, 0.075);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: 0.35s ease;
}

.event-card::after {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: center;
    transition: 0.35s ease;
}

.event-card:hover {
    transform: translateY(-8px);
    border-color: rgba(31, 122, 77, 0.22);
    box-shadow: 0 26px 62px rgba(31, 41, 51, 0.14);
}

.event-card:hover::after {
    transform: scaleX(1);
}

/* Compact Image */

.event-img {
    position: relative;
    height: 185px;
    overflow: hidden;
}

.event-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.42)),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.20), transparent 34%);
    pointer-events: none;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

.event-card:hover .event-img img {
    transform: scale(1.08);
}

.event-category {
    position: absolute;
    left: 16px;
    bottom: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 7px 13px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.14);
    backdrop-filter: blur(10px);
}

/* Compact Content */

.event-content {
    padding: 22px 22px 24px;
}

.event-date {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: var(--accent);
    font-weight: 800;
    margin-bottom: 10px;
}

.event-content h4 {
    font-size: 21px;
    line-height: 1.25;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 9px;
    letter-spacing: -0.25px;
}

.event-content p {
    color: var(--text);
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.event-content a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-size: 14.5px;
    font-weight: 900;
    transition: 0.3s ease;
}

.event-content a i {
    transition: 0.3s ease;
}

.event-content a:hover {
    color: var(--accent);
}

.event-content a:hover i {
    transform: translateX(4px);
}

/* Soft animation */

.event-card {
    animation: eventFloat 5s ease-in-out infinite;
}

.events-section .col-md-6:nth-child(2) .event-card {
    animation-delay: 0.5s;
}

.events-section .col-md-6:nth-child(3) .event-card {
    animation-delay: 1s;
}

.event-card:hover {
    animation-play-state: paused;
}

@keyframes eventFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ================= EVENTS RESPONSIVE ================= */

@media (max-width: 991px) {
    .events-head {
        gap: 16px;
    }

    .event-img {
        height: 200px;
    }

    .event-content {
        padding: 22px;
    }
}

@media (max-width: 575px) {
    .events-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .events-head {
        text-align: center;
        justify-content: center !important;
    }

    .events-head>div {
        width: 100%;
    }

    .events-head .btn {
        width: 100%;
        min-height: 50px;
    }

    .event-card {
        border-radius: 22px;
    }

    .event-img {
        height: 175px;
    }

    .event-content {
        padding: 20px;
    }

    .event-content h4 {
        font-size: 20px;
    }

    .event-content p {
        font-size: 14px;
    }
}

/* ================= EVENTS END CSS================= */








/* ================= CTA ================= */

.cta-section {
    position: relative;
    overflow: hidden;
    padding: 85px 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(31, 122, 77, 0.12), transparent 30%),
        radial-gradient(circle at 88% 80%, rgba(244, 162, 97, 0.18), transparent 32%),
        linear-gradient(135deg, #eef8f1 0%, #fff8ec 48%, #ffffff 100%);
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.72) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.035) 0px,
            rgba(31, 122, 77, 0.035) 1px,
            transparent 1px,
            transparent 22px);
    opacity: 0.65;
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-box {
    position: relative;
    overflow: hidden;
    padding: 55px;
    border-radius: 34px;
    color: var(--white);
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.16), transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(244, 162, 97, 0.28), transparent 34%),
        linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow:
        0 32px 80px rgba(31, 122, 77, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transition: 0.4s ease;
}

.cta-box:hover {
    transform: translateY(-6px);
    box-shadow:
        0 42px 95px rgba(31, 122, 77, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(135deg,
            rgba(255, 255, 255, 0.08) 0px,
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px,
            transparent 18px);
    opacity: 0.45;
    pointer-events: none;
}

.cta-box::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -90px;
    top: -90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    animation: ctaPulse 4.5s ease-in-out infinite;
}

.cta-box::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    left: -70px;
    bottom: -70px;
    border-radius: 50%;
    background: rgba(244, 162, 97, 0.22);
    animation: ctaPulse 5.2s ease-in-out infinite reverse;
}

.cta-content,
.cta-actions {
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    margin-bottom: 18px;
    border-radius: 50px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 14px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.cta-box h2 {
    max-width: 760px;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.cta-box p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16.5px;
    line-height: 1.75;
    margin-bottom: 0;
}

.cta-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.cta-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 13px;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 13px;
    font-weight: 800;
}

.cta-highlights span i {
    color: var(--secondary);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.btn-light-custom {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--primary);
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 900;
    border: none;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
    transition: 0.35s ease;
}

.btn-light-custom:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-4px);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
}

.btn-outline-light-custom {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.72);
    color: var(--white);
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 900;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: 0.35s ease;
}

.btn-outline-light-custom:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
}

@keyframes ctaPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.12);
        opacity: 1;
    }
}

/* ================= CTA RESPONSIVE ================= */

@media (max-width: 991px) {
    .cta-section {
        padding: 75px 0;
    }

    .cta-box {
        padding: 42px;
        border-radius: 30px;
        text-align: center;
    }

    .cta-box h2 {
        font-size: 34px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-box p {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-highlights {
        justify-content: center;
    }

    .cta-actions {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .cta-section {
        padding: 65px 0;
    }

    .cta-box {
        padding: 30px 22px;
        border-radius: 26px;
    }

    .cta-badge {
        font-size: 13px;
        padding: 8px 13px;
    }

    .cta-box h2 {
        font-size: 29px;
        line-height: 1.18;
    }

    .cta-box p {
        font-size: 15.5px;
        line-height: 1.65;
    }

    .cta-highlights {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .cta-highlights span {
        justify-content: center;
        font-size: 12.8px;
    }

    .cta-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 4px;
    }

    .btn-light-custom,
    .btn-outline-light-custom {
        width: 100%;
        min-height: 52px;
        font-size: 15px;
    }
}

/* ================= CTA END CSS ================= */






/* ================= GALLERY ================= */

.gallery-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(31, 122, 77, 0.12), transparent 30%),
        radial-gradient(circle at 88% 78%, rgba(244, 162, 97, 0.18), transparent 32%),
        linear-gradient(135deg, #ffffff 0%, #eef8f1 48%, #fff8ec 100%);
}

.gallery-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.74) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.035) 0px,
            rgba(31, 122, 77, 0.035) 1px,
            transparent 1px,
            transparent 22px);
    opacity: 0.62;
    pointer-events: none;
}

.gallery-section::after {
    content: "";
    position: absolute;
    width: 470px;
    height: 470px;
    left: -230px;
    bottom: -230px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(31, 122, 77, 0.14) 0%,
            rgba(31, 122, 77, 0.08) 38%,
            transparent 70%);
    pointer-events: none;
}

.gallery-section .container {
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.gallery-badge {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.055);
}

.gallery-card {
    position: relative;
    overflow: hidden;
    height: 260px;
    border-radius: 26px;
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 18px 45px rgba(31, 41, 51, 0.09);
    background: var(--white);
    transition: 0.38s ease;
    animation: galleryFloat 5s ease-in-out infinite;
}

.gallery-section .col-md-4:nth-child(2) .gallery-card {
    animation-delay: 0.45s;
}

.gallery-section .col-md-4:nth-child(3) .gallery-card {
    animation-delay: 0.9s;
}

.gallery-card::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 21px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: 0.35s ease;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.55s ease;
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.58)),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 34%);
    opacity: 0.82;
    transition: 0.35s ease;
    pointer-events: none;
}

.gallery-overlay {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.gallery-overlay span {
    color: var(--white);
    font-size: 15px;
    font-weight: 900;
    text-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.gallery-overlay a {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 12px 28px rgba(31, 41, 51, 0.18);
    backdrop-filter: blur(10px);
    transition: 0.35s ease;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(31, 41, 51, 0.16);
    border-color: rgba(31, 122, 77, 0.22);
    animation-play-state: paused;
}

.gallery-card:hover::before {
    opacity: 1;
}

.gallery-card:hover::after {
    opacity: 1;
}

.gallery-card:hover img {
    transform: scale(1.09);
}

.gallery-card:hover .gallery-overlay a {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: rotate(8deg) scale(1.05);
}

@keyframes galleryFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ================= GALLERY RESPONSIVE ================= */

@media (max-width: 991px) {
    .gallery-card {
        height: 240px;
        border-radius: 24px;
    }
}

@media (max-width: 575px) {
    .gallery-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .gallery-card {
        height: 220px;
        border-radius: 22px;
    }

    .gallery-overlay {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .gallery-overlay span {
        font-size: 14px;
    }

    .gallery-overlay a {
        width: 39px;
        height: 39px;
        min-width: 39px;
        border-radius: 14px;
        font-size: 17px;
    }
}

/* ================= GALLERY END CSS================= */







/* ================= CONTACT SHORTCUT ================= */

.contact-shortcut {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(31, 122, 77, 0.12), transparent 30%),
        radial-gradient(circle at 88% 75%, rgba(244, 162, 97, 0.18), transparent 32%),
        linear-gradient(135deg, #fff8ec 0%, #ffffff 48%, #eef8f1 100%);
}

.contact-shortcut::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.74) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.035) 0px,
            rgba(31, 122, 77, 0.035) 1px,
            transparent 1px,
            transparent 22px);
    opacity: 0.62;
    pointer-events: none;
}

.contact-shortcut::after {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    right: -230px;
    bottom: -230px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(31, 122, 77, 0.14) 0%,
            rgba(31, 122, 77, 0.08) 38%,
            transparent 70%);
    pointer-events: none;
}

.contact-shortcut .container {
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.contact-badge {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.055);
}

/* Compact Contact Card */

.contact-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 215px;
    padding: 28px 24px;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.76));
    border: 1px solid rgba(31, 122, 77, 0.12);
    text-align: center;
    box-shadow: 0 16px 42px rgba(31, 41, 51, 0.075);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: 0.35s ease;
    animation: contactFloat 5s ease-in-out infinite;
}

.contact-shortcut .col-md-6:nth-child(2) .contact-card {
    animation-delay: 0.45s;
}

.contact-shortcut .col-md-6:nth-child(3) .contact-card {
    animation-delay: 0.9s;
}

.contact-card::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -58px;
    top: -58px;
    border-radius: 50%;
    background: rgba(31, 122, 77, 0.08);
    transition: 0.35s ease;
}

.contact-card::after {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: center;
    transition: 0.35s ease;
}

.contact-icon {
    position: relative;
    z-index: 2;
    width: 62px;
    height: 62px;
    margin: 0 auto 16px;
    border-radius: 21px;
    background:
        linear-gradient(135deg, rgba(31, 122, 77, 0.13), rgba(244, 162, 97, 0.16));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 29px;
    transition: 0.35s ease;
}

.contact-card h5 {
    position: relative;
    z-index: 2;
    font-size: 21px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 7px;
}

.contact-card p {
    position: relative;
    z-index: 2;
    color: var(--text);
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 14px;
}

.contact-card a {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 900;
    transition: 0.3s ease;
}

.contact-card a i {
    transition: 0.3s ease;
}

/* Hover */

.contact-card:hover {
    transform: translateY(-8px);
    border-color: rgba(31, 122, 77, 0.22);
    box-shadow: 0 26px 62px rgba(31, 41, 51, 0.14);
    animation-play-state: paused;
}

.contact-card:hover::before {
    transform: scale(1.35);
    background: rgba(244, 162, 97, 0.16);
}

.contact-card:hover::after {
    transform: scaleX(1);
}

.contact-card:hover .contact-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: rotate(-5deg) scale(1.06);
    box-shadow: 0 16px 32px rgba(31, 122, 77, 0.25);
}

.contact-card:hover a {
    color: var(--accent);
}

.contact-card:hover a i {
    transform: translateX(4px);
}

/* Animation */

@keyframes contactFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ================= CONTACT RESPONSIVE ================= */

@media (max-width: 991px) {
    .contact-card {
        min-height: 210px;
        padding: 26px 22px;
    }
}

@media (max-width: 575px) {
    .contact-shortcut {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .contact-shortcut-head {
        margin-bottom: 35px !important;
    }

    .contact-card {
        min-height: auto;
        padding: 24px 20px;
        border-radius: 22px;
    }

    .contact-icon {
        width: 56px;
        height: 56px;
        border-radius: 19px;
        font-size: 26px;
        margin-bottom: 14px;
    }

    .contact-card h5 {
        font-size: 20px;
    }

    .contact-card p {
        font-size: 14px;
        margin-bottom: 12px;
    }
}

/* ================= CONTACT SHORTCUT END CSS================= */






/* ================= FOOTER ================= */

.footer-section {
    position: relative;
    overflow: hidden;
    padding: 72px 0 22px;
    color: rgba(255, 255, 255, 0.76);
    background:
        radial-gradient(circle at 12% 18%, rgba(244, 162, 97, 0.14), transparent 30%),
        radial-gradient(circle at 88% 78%, rgba(31, 122, 77, 0.26), transparent 32%),
        linear-gradient(135deg, #0b2118 0%, #103823 48%, #08130f 100%);
}

.footer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.045) 0%, transparent 45%),
        repeating-linear-gradient(135deg,
            rgba(255, 255, 255, 0.035) 0px,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px,
            transparent 22px);
    opacity: 0.52;
    pointer-events: none;
}

.footer-section::after {
    content: "";
    position: absolute;
    width: 440px;
    height: 440px;
    right: -220px;
    top: -220px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(244, 162, 97, 0.20) 0%,
            rgba(244, 162, 97, 0.08) 38%,
            transparent 70%);
    pointer-events: none;
}

.footer-section .container {
    position: relative;
    z-index: 2;
}

/* Main Footer Box */

.footer-main {
    position: relative;
    padding: 26px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.052);
    border: 1px solid rgba(255, 255, 255, 0.105);
    box-shadow:
        0 26px 70px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* Compact Footer Cards */

.footer-widget {
    height: 100%;
    padding: 19px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.32s ease;
}

.footer-widget:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.072);
    border-color: rgba(244, 162, 97, 0.24);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.17);
}

/* Logo */

.footer-logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo-img {
    margin-top: -20px;
    width: 100px;
    height: 100px;
    min-width: 56px;
    object-fit: contain;
    display: block;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.footer-section h4 {
    color: var(--white);
    font-size: 19px;
    line-height: 1.25;
    font-weight: 900;
    margin-bottom: 4px;
}

.footer-logo-box span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 700;
}

/* Headings */

.footer-section h5 {
    position: relative;
    color: var(--white);
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 15px;
    padding-bottom: 9px;
}

.footer-section h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 3px;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.footer-section p {
    color: rgba(255, 255, 255, 0.70);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 0;
}

/* Links */

.footer-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-section ul li {
    margin-bottom: 9px;
}

.footer-section ul li:last-child {
    margin-bottom: 0;
}

.footer-section ul li a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 700;
    transition: 0.28s ease;
}

.footer-section ul li a i {
    color: var(--secondary);
    font-size: 11px;
    transition: 0.28s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary);
    transform: translateX(4px);
}

/* Social */

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 18px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.075);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.32s ease;
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(244, 162, 97, 0.20);
}

/* Contact */

.footer-contact {
    display: grid;
    gap: 9px;
}

.footer-contact h5 {
    margin-bottom: 6px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 10px 11px;
    border-radius: 15px;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.042);
    border: 1px solid rgba(255, 255, 255, 0.065);
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.45;
    transition: 0.28s ease;
}

.footer-contact-item i {
    width: 29px;
    height: 29px;
    min-width: 29px;
    border-radius: 10px;
    background: rgba(244, 162, 97, 0.14);
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.footer-contact-item:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.075);
    transform: translateX(3px);
}

/* CTA Strip */

.footer-cta {
    margin-top: 22px;
    padding: 16px 18px;
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(244, 162, 97, 0.17), rgba(255, 255, 255, 0.075));
    border: 1px solid rgba(244, 162, 97, 0.17);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-cta h6 {
    color: var(--white);
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 3px;
}

.footer-cta p {
    font-size: 13px;
}

.footer-cta-btn {
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--dark);
    background: var(--secondary);
    font-size: 13.5px;
    font-weight: 900;
    transition: 0.32s ease;
}

.footer-cta-btn:hover {
    color: var(--white);
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(244, 162, 97, 0.22);
}

/* Footer Bottom */

.footer-bottom {
    margin-top: 22px;
    padding-top: 19px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.63);
    font-size: 13.5px;
}

.footer-bottom-links {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.footer-bottom-links a,
.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.60);
    font-size: 13px;
    font-weight: 700;
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

/* Remove continuous floating animation for cleaner footer */
.footer-widget {
    animation: none !important;
}

/* ================= FOOTER RESPONSIVE ================= */

@media (max-width: 991px) {
    .footer-section {
        padding: 64px 0 22px;
    }

    .footer-main {
        padding: 22px;
        border-radius: 28px;
    }

    .footer-cta {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .footer-section {
        padding: 56px 0 20px;
    }

    .footer-main {
        padding: 16px;
        border-radius: 24px;
    }

    .footer-widget {
        padding: 17px;
        border-radius: 20px;
    }

    .footer-logo-img {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .footer-section h4 {
        font-size: 17px;
    }

    .footer-section h5 {
        font-size: 16px;
        margin-bottom: 13px;
    }

    .footer-section p,
    .footer-section ul li a {
        font-size: 13.5px;
    }

    .footer-social a {
        width: 37px;
        height: 37px;
        border-radius: 13px;
    }

    .footer-cta {
        padding: 15px;
        border-radius: 18px;
    }

    .footer-cta h6 {
        font-size: 15.5px;
    }

    .footer-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom {
        margin-top: 20px;
        padding-top: 17px;
    }

    .footer-bottom p {
        font-size: 12.8px;
    }
}

/* =================HOME PAGE FOOTER END CSS ================= */
























/* =================ABOUT  PAGE  START CSS ================= */



/* ================= INNER HERO / ABOUT PAGE HERO ================= */

.inner-hero {
    position: relative;
    overflow: hidden;
    padding: 62px 0;
    background:
        radial-gradient(circle at 14% 18%, rgba(244, 162, 97, 0.20), transparent 28%),
        radial-gradient(circle at 86% 20%, rgba(31, 122, 77, 0.18), transparent 30%),
        radial-gradient(circle at 70% 85%, rgba(231, 111, 81, 0.10), transparent 28%),
        linear-gradient(135deg, #fff8ec 0%, #ffffff 44%, #eef8f1 100%);
}

.inner-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.82) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.04) 0px,
            rgba(31, 122, 77, 0.04) 1px,
            transparent 1px,
            transparent 20px);
    opacity: 0.68;
    pointer-events: none;
}

.inner-hero::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -260px;
    top: -260px;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(31, 122, 77, 0.15) 0%,
            rgba(31, 122, 77, 0.08) 38%,
            transparent 70%);
    pointer-events: none;
}

.inner-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: innerFloat 5s ease-in-out infinite;
}

.inner-shape-1 {
    width: 95px;
    height: 95px;
    left: 8%;
    top: 22%;
    background: rgba(244, 162, 97, 0.18);
}

.inner-shape-2 {
    width: 70px;
    height: 70px;
    right: 12%;
    bottom: 18%;
    background: rgba(31, 122, 77, 0.14);
    animation-delay: 1.2s;
}

.inner-hero .container {
    position: relative;
    z-index: 2;
}

.inner-hero-box {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    padding: 38px 42px;
    border-radius: 32px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.90), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.14);
    box-shadow:
        0 26px 70px rgba(31, 41, 51, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    overflow: hidden;
    animation: heroCardUp 0.8s ease both;
    transition: 0.35s ease;
}

.inner-hero-box:hover {
    transform: translateY(-5px);
    box-shadow:
        0 34px 85px rgba(31, 41, 51, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.inner-hero-box::before {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    right: -85px;
    top: -90px;
    border-radius: 50%;
    background: rgba(31, 122, 77, 0.09);
    pointer-events: none;
}

.inner-hero-box::after {
    content: "";
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.inner-badge {
    position: relative;
    z-index: 2;
    background: rgba(31, 122, 77, 0.08);
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.05);
}

.inner-hero-box h1 {
    position: relative;
    z-index: 2;
    font-size: 48px;
    font-weight: 950;
    color: var(--dark);
    line-height: 1.08;
    letter-spacing: -1.4px;
    margin-bottom: 14px;
}

.inner-hero-box h1::first-letter {
    color: var(--primary);
}

.inner-hero-box p {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto 18px;
    color: var(--text);
    font-size: 16.5px;
    line-height: 1.7;
}

.inner-hero-tags {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
    margin-bottom: 22px;
}

.inner-hero-tags span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(31, 122, 77, 0.10);
    color: var(--dark);
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(31, 41, 51, 0.045);
    transition: 0.3s ease;
}

.inner-hero-tags span i {
    color: var(--primary);
}

.inner-hero-tags span:hover {
    background: rgba(31, 122, 77, 0.09);
    color: var(--primary);
    transform: translateY(-3px);
}

.breadcrumb {
    position: relative;
    z-index: 2;
}

.breadcrumb .breadcrumb-item {
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
}

.breadcrumb .breadcrumb-item a {
    color: var(--primary);
    font-weight: 900;
    transition: 0.3s ease;
}

.breadcrumb .breadcrumb-item a:hover {
    color: var(--accent);
}

.breadcrumb .breadcrumb-item.active {
    color: var(--text);
    font-weight: 700;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(31, 122, 77, 0.45);
}

/* Animations */

@keyframes heroCardUp {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes innerFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* ================= INNER HERO RESPONSIVE ================= */

@media (max-width: 991px) {
    .inner-hero {
        padding: 54px 0;
    }

    .inner-hero-box {
        max-width: 760px;
        padding: 34px;
        border-radius: 30px;
    }

    .inner-hero-box h1 {
        font-size: 42px;
    }

    .inner-hero-box p {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .inner-hero {
        padding: 42px 0;
    }

    .inner-hero-box {
        padding: 26px 20px;
        border-radius: 26px;
    }

    .inner-badge {
        font-size: 13px;
        padding: 8px 13px;
        margin-bottom: 15px;
    }

    .inner-hero-box h1 {
        font-size: 35px;
        letter-spacing: -0.8px;
    }

    .inner-hero-box p {
        font-size: 15.5px;
        line-height: 1.65;
        margin-bottom: 16px;
    }

    .inner-hero-tags {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 20px;
    }

    .inner-hero-tags span {
        justify-content: center;
        font-size: 13px;
    }

    .breadcrumb .breadcrumb-item {
        font-size: 13px;
    }

    .inner-shape-1,
    .inner-shape-2 {
        display: none;
    }
}

@media (max-width: 390px) {
    .inner-hero-box {
        padding: 24px 18px;
    }

    .inner-hero-box h1 {
        font-size: 31px;
    }

    .inner-hero-box p {
        font-size: 15px;
    }
}

/* ================= INNER HERO / ABOUT PAGE HERO END ================= */





/* ================= ABOUT INTRO ================= */

.about-intro-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(31, 122, 77, 0.12), transparent 30%),
        radial-gradient(circle at 88% 78%, rgba(244, 162, 97, 0.18), transparent 32%),
        radial-gradient(circle at 50% 100%, rgba(231, 111, 81, 0.08), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #fff8ec 46%, #eef8f1 100%);
}

.about-intro-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.76) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.035) 0px,
            rgba(31, 122, 77, 0.035) 1px,
            transparent 1px,
            transparent 22px);
    opacity: 0.62;
    pointer-events: none;
}

.about-intro-section::after {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    right: -230px;
    bottom: -230px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(31, 122, 77, 0.14) 0%,
            rgba(31, 122, 77, 0.08) 38%,
            transparent 70%);
    pointer-events: none;
}

.about-intro-section .container {
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.about-intro-row {
    min-height: 520px;
}

/* Image Side */

.about-page-image-wrap {
    margin-top: -200px;
    position: relative;
    max-width: 540px;
    margin-left: auto;
    transform: translateY(8px);
    animation: introImageUp 0.9s ease both;
}

.about-page-image-wrap::before {
    content: "";
    position: absolute;
    inset: 30px -16px -16px 32px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(31, 122, 77, 0.18), rgba(244, 162, 97, 0.22));
    z-index: -1;
    transition: 0.4s ease;
}

.about-page-image-wrap:hover::before {
    transform: rotate(-2deg) translate(4px, 4px);
}

.about-page-img {
    width: 100%;
    height: 405px;
    object-fit: cover;
    display: block;
    border-radius: 32px;
    border: 7px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 28px 70px rgba(31, 41, 51, 0.18);
    transition: 0.45s ease;
}

.about-page-image-wrap:hover .about-page-img {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 36px 82px rgba(31, 41, 51, 0.22);
}

.about-page-floating-card {
    position: absolute;
    left: -14px;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 240px;
    padding: 13px 15px;
    border-radius: 21px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 18px 42px rgba(31, 41, 51, 0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    animation: introFloatCard 4.5s ease-in-out infinite;
}

.about-page-floating-card i {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.about-page-floating-card h6 {
    font-size: 14px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 3px;
}

.about-page-floating-card p {
    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0;
}

/* Content Side */

.about-page-content {
    position: relative;
    padding: 34px;
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 250, 242, 0.62));
    border: 1px solid rgba(31, 122, 77, 0.11);
    box-shadow:
        0 22px 58px rgba(31, 41, 51, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateY(-8px);
    animation: introContentUp 0.9s ease both;
    transition: 0.35s ease;
}

.about-page-content:hover {
    transform: translateY(-13px);
    box-shadow:
        0 30px 72px rgba(31, 41, 51, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.about-page-content::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -60px;
    top: -60px;
    border-radius: 50%;
    background: rgba(31, 122, 77, 0.08);
    pointer-events: none;
}

.about-badge {
    position: relative;
    z-index: 2;
    background: rgba(31, 122, 77, 0.09);
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.045);
}

.about-page-content .section-title {
    position: relative;
    z-index: 2;
    margin-bottom: 16px;
}

.about-page-content p {
    position: relative;
    z-index: 2;
    color: var(--text);
    font-size: 16px;
    line-height: 1.72;
    margin-bottom: 14px;
}

/* Small Stats */

.about-intro-stats {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 22px;
}

.about-intro-stats div {
    flex: 1;
    min-width: 120px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(31, 122, 77, 0.09);
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.045);
    transition: 0.3s ease;
}

.about-intro-stats div:hover {
    transform: translateY(-4px);
    background: rgba(31, 122, 77, 0.08);
}

.about-intro-stats strong {
    display: block;
    font-size: 22px;
    line-height: 1;
    font-weight: 950;
    color: var(--primary);
    margin-bottom: 5px;
}

.about-intro-stats span {
    font-size: 12px;
    font-weight: 800;
    color: var(--text);
}

/* Points */

.about-page-points {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 10px;
    margin-top: 0;
}

.about-page-points span {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 13px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(31, 122, 77, 0.08);
    color: var(--dark);
    font-size: 14.5px;
    font-weight: 850;
    transition: 0.3s ease;
}

.about-page-points span:hover {
    background: rgba(31, 122, 77, 0.09);
    color: var(--primary);
    transform: translateX(4px);
}

.about-page-points i {
    color: var(--primary);
    font-size: 17px;
}

/* Animations */

@keyframes introImageUp {
    0% {
        opacity: 0;
        transform: translateY(22px);
    }

    100% {
        opacity: 1;
        transform: translateY(8px);
    }
}

@keyframes introContentUp {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }

    100% {
        opacity: 1;
        transform: translateY(-8px);
    }
}

@keyframes introFloatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ================= ABOUT INTRO RESPONSIVE ================= */

@media (max-width: 1199px) {
    .about-intro-row {
        min-height: 500px;
    }

    .about-page-img {
        height: 380px;
    }

    .about-page-content {
        padding: 30px;
    }

    .about-page-content .section-title {
        font-size: 38px;
    }

    .about-page-content p {
        font-size: 15.5px;
    }
}

@media (max-width: 991px) {
    .about-intro-row {
        min-height: auto;
    }

    .about-page-image-wrap {
        max-width: 100%;
        margin: 0;
        transform: none;
    }

    .about-page-content {
        text-align: center;
        transform: none;
        padding: 32px;
    }

    .about-page-content:hover {
        transform: translateY(-6px);
    }

    .about-intro-stats {
        justify-content: center;
    }

    .about-page-points {
        max-width: 540px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-page-points span {
        justify-content: center;
    }

    .about-page-img {
        height: 380px;
    }

    .about-page-floating-card {
        left: 24px;
        bottom: 26px;
    }

    @keyframes introImageUp {
        0% {
            opacity: 0;
            transform: translateY(18px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes introContentUp {
        0% {
            opacity: 0;
            transform: translateY(18px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

@media (max-width: 575px) {
    .about-intro-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .about-page-img {
        height: 295px;
        border-radius: 26px;
        border-width: 6px;
    }

    .about-page-image-wrap::before {
        inset: 24px -9px -9px 24px;
        border-radius: 26px;
    }

    .about-page-floating-card {
        left: 14px;
        right: 14px;
        bottom: 16px;
        min-width: auto;
        padding: 12px 14px;
        border-radius: 18px;
    }

    .about-page-floating-card i {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 14px;
        font-size: 17px;
    }

    .about-page-content {
        padding: 24px;
        border-radius: 26px;
    }

    .about-page-content .section-title {
        font-size: 31px;
        line-height: 1.16;
    }

    .about-page-content p {
        font-size: 15.5px;
        line-height: 1.65;
    }

    .about-intro-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .about-intro-stats div {
        min-width: auto;
        padding: 11px 8px;
        text-align: center;
    }

    .about-intro-stats strong {
        font-size: 20px;
    }

    .about-intro-stats span {
        font-size: 10.5px;
        line-height: 1.2;
    }

    .about-page-points span {
        justify-content: flex-start;
        text-align: left;
        font-size: 14px;
    }
}

@media (max-width: 390px) {
    .about-page-img {
        height: 265px;
    }

    .about-page-floating-card {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 14px;
    }

    .about-page-content {
        padding: 21px;
    }

    .about-page-content .section-title {
        font-size: 28px;
    }

    .about-intro-stats {
        grid-template-columns: 1fr;
    }

    .about-intro-stats div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        padding: 12px 14px;
    }
}

/* ================= ABOUT INTRO ================= */







/* ================= FOUNDATION STORY ================= */

.founder-story-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(244, 162, 97, 0.18), transparent 30%),
        radial-gradient(circle at 88% 76%, rgba(31, 122, 77, 0.16), transparent 32%),
        radial-gradient(circle at 52% 100%, rgba(231, 111, 81, 0.08), transparent 30%),
        linear-gradient(135deg, #fff8ec 0%, #ffffff 48%, #eef8f1 100%);
}

.founder-story-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.76) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.035) 0px,
            rgba(31, 122, 77, 0.035) 1px,
            transparent 1px,
            transparent 22px);
    opacity: 0.62;
    pointer-events: none;
}

.founder-story-section::after {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    left: -230px;
    bottom: -230px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(31, 122, 77, 0.14) 0%,
            rgba(31, 122, 77, 0.08) 38%,
            transparent 70%);
    pointer-events: none;
}

.founder-story-section .container {
    position: relative;
    z-index: 2;
}

/* Compact Premium Cards */

.story-title-card,
.story-content-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 30px;
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow:
        0 18px 45px rgba(31, 41, 51, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: 0.35s ease;
    animation: storyFloat 5s ease-in-out infinite;
}

.story-content-card {
    animation-delay: 0.45s;
}

.story-title-card:hover,
.story-content-card:hover {
    transform: translateY(-8px);
    border-color: rgba(31, 122, 77, 0.22);
    box-shadow:
        0 28px 68px rgba(31, 41, 51, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    animation-play-state: paused;
}

.story-title-card::before,
.story-content-card::before {
    content: "";
    position: absolute;
    width: 145px;
    height: 145px;
    right: -62px;
    top: -62px;
    border-radius: 50%;
    background: rgba(31, 122, 77, 0.08);
    transition: 0.35s ease;
    pointer-events: none;
}

.story-title-card:hover::before,
.story-content-card:hover::before {
    transform: scale(1.35);
    background: rgba(244, 162, 97, 0.16);
}

.story-title-card::after,
.story-content-card::after {
    content: "";
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: center;
    transition: 0.35s ease;
}

.story-title-card:hover::after,
.story-content-card:hover::after {
    transform: scaleX(1);
}

.story-badge {
    position: relative;
    z-index: 2;
    background: rgba(31, 122, 77, 0.09);
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.045);
}

.story-title-card h2 {
    position: relative;
    z-index: 2;
    font-size: 34px;
    font-weight: 950;
    line-height: 1.14;
    letter-spacing: -0.8px;
    color: var(--dark);
    margin-bottom: 14px;
}

.story-title-card p,
.story-content-card p {
    position: relative;
    z-index: 2;
    color: var(--text);
    font-size: 15.5px;
    line-height: 1.72;
    margin-bottom: 14px;
}

/* Left small purpose box */

.story-mini-box {
    position: relative;
    z-index: 2;
    margin-top: 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(31, 122, 77, 0.08);
    border: 1px solid rgba(31, 122, 77, 0.10);
    transition: 0.3s ease;
}

.story-mini-box:hover {
    background: rgba(244, 162, 97, 0.13);
    transform: translateX(4px);
}

.story-mini-box i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.story-mini-box strong {
    display: block;
    color: var(--dark);
    font-size: 14.5px;
    font-weight: 900;
    margin-bottom: 3px;
}

.story-mini-box span {
    display: block;
    color: var(--text);
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.45;
}

/* Content quote icon */

.story-quote-icon {
    position: absolute;
    right: 24px;
    top: 20px;
    color: rgba(31, 122, 77, 0.09);
    font-size: 76px;
    line-height: 1;
    pointer-events: none;
}

/* Story List */

.story-list {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.story-list div {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 12px 14px;
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(31, 122, 77, 0.08);
    color: var(--dark);
    font-size: 14.5px;
    font-weight: 800;
    line-height: 1.45;
    transition: 0.3s ease;
}

.story-list div:hover {
    background: rgba(31, 122, 77, 0.09);
    color: var(--primary);
    transform: translateX(5px);
}

.story-list i {
    color: var(--primary);
    font-size: 17px;
    margin-top: 2px;
    transition: 0.3s ease;
}

.story-list div:hover i {
    color: var(--accent);
    transform: translateX(3px);
}

/* Animation */

@keyframes storyFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ================= STORY RESPONSIVE ================= */

@media (max-width: 991px) {

    .story-title-card,
    .story-content-card {
        padding: 28px;
        border-radius: 26px;
    }

    .story-title-card {
        text-align: center;
    }

    .story-title-card h2 {
        font-size: 32px;
    }

    .story-mini-box {
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }
}

@media (max-width: 575px) {
    .founder-story-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .story-title-card,
    .story-content-card {
        padding: 23px;
        border-radius: 23px;
    }

    .story-title-card h2 {
        font-size: 29px;
        line-height: 1.16;
    }

    .story-title-card p,
    .story-content-card p {
        font-size: 15px;
        line-height: 1.65;
    }

    .story-mini-box {
        padding: 13px;
        border-radius: 18px;
    }

    .story-list div {
        padding: 11px 12px;
        border-radius: 16px;
        font-size: 14px;
    }

    .story-quote-icon {
        font-size: 58px;
        right: 18px;
        top: 16px;
    }
}

@media (max-width: 390px) {

    .story-title-card,
    .story-content-card {
        padding: 20px;
    }

    .story-title-card h2 {
        font-size: 26px;
    }

    .story-mini-box {
        flex-direction: column;
    }
}

/* ================= STORY CSS END ================= */







/* ================= MISSION VISION ================= */

.mission-vision-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(31, 122, 77, 0.13), transparent 30%),
        radial-gradient(circle at 88% 78%, rgba(244, 162, 97, 0.18), transparent 32%),
        radial-gradient(circle at 50% 100%, rgba(231, 111, 81, 0.08), transparent 30%),
        linear-gradient(135deg, #eef8f1 0%, #ffffff 48%, #fff8ec 100%);
}

.mission-vision-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.76) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.035) 0px,
            rgba(31, 122, 77, 0.035) 1px,
            transparent 1px,
            transparent 22px);
    opacity: 0.62;
    pointer-events: none;
}

.mission-vision-section::after {
    content: "";
    position: absolute;
    width: 470px;
    height: 470px;
    right: -230px;
    top: -230px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(31, 122, 77, 0.14) 0%,
            rgba(31, 122, 77, 0.08) 38%,
            transparent 70%);
    pointer-events: none;
}

.mission-vision-section .container {
    position: relative;
    z-index: 2;
}

.mission-badge {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.055);
}

/* Mission Card */

.mission-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 30px;
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow:
        0 18px 45px rgba(31, 41, 51, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: 0.35s ease;
    animation: missionFloat 5s ease-in-out infinite;
}

.vision-card {
    background:
        radial-gradient(circle at 88% 18%, rgba(244, 162, 97, 0.22), transparent 30%),
        linear-gradient(145deg, rgba(31, 122, 77, 0.96), rgba(20, 92, 57, 0.97));
    animation-delay: 0.5s;
}

.mission-card::before {
    content: "";
    position: absolute;
    width: 145px;
    height: 145px;
    right: -62px;
    top: -62px;
    border-radius: 50%;
    background: rgba(31, 122, 77, 0.08);
    transition: 0.35s ease;
    pointer-events: none;
}

.vision-card::before {
    background: rgba(255, 255, 255, 0.12);
}

.mission-card::after {
    content: "";
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: center;
    transition: 0.35s ease;
}

.vision-card::after {
    background: linear-gradient(90deg, var(--secondary), var(--white), var(--accent));
}

.mission-card:hover {
    transform: translateY(-8px);
    border-color: rgba(31, 122, 77, 0.22);
    box-shadow:
        0 28px 68px rgba(31, 41, 51, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    animation-play-state: paused;
}

.vision-card:hover {
    box-shadow:
        0 30px 72px rgba(31, 122, 77, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.mission-card:hover::before {
    transform: scale(1.35);
    background: rgba(244, 162, 97, 0.16);
}

.vision-card:hover::before {
    background: rgba(255, 255, 255, 0.18);
}

.mission-card:hover::after {
    transform: scaleX(1);
}

.mission-tag {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 2;
    padding: 7px 13px;
    border-radius: 50px;
    background: rgba(31, 122, 77, 0.09);
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    border: 1px solid rgba(31, 122, 77, 0.10);
}

.vision-card .mission-tag {
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.18);
}

.mission-icon {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(31, 122, 77, 0.13), rgba(244, 162, 97, 0.16));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
    transition: 0.35s ease;
}

.vision-card .mission-icon {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.mission-card:hover .mission-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 16px 32px rgba(31, 122, 77, 0.25);
}

.vision-card:hover .mission-icon {
    background: rgba(255, 255, 255, 0.22);
    color: var(--white);
}

.mission-card h3 {
    position: relative;
    z-index: 2;
    font-size: 27px;
    font-weight: 950;
    color: var(--dark);
    margin-bottom: 11px;
    letter-spacing: -0.4px;
}

.mission-card p {
    position: relative;
    z-index: 2;
    color: var(--text);
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 0;
}

.vision-card h3,
.vision-card p {
    color: var(--white);
}

.vision-card p {
    opacity: 0.88;
}

/* Mission Points */

.mission-points {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 22px;
}

.mission-points span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 50px;
    background: rgba(31, 122, 77, 0.08);
    border: 1px solid rgba(31, 122, 77, 0.09);
    color: var(--dark);
    font-size: 13px;
    font-weight: 850;
    transition: 0.3s ease;
}

.mission-points i {
    color: var(--primary);
}

.vision-card .mission-points span {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.92);
}

.vision-card .mission-points i {
    color: var(--secondary);
}

.mission-points span:hover {
    transform: translateY(-3px);
    background: rgba(244, 162, 97, 0.14);
}

/* Animation */

@keyframes missionFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ================= MISSION RESPONSIVE ================= */

@media (max-width: 991px) {
    .mission-card {
        padding: 28px;
        border-radius: 26px;
    }

    .mission-head {
        margin-bottom: 35px !important;
    }

    .mission-card h3 {
        font-size: 26px;
    }
}

@media (max-width: 575px) {
    .mission-vision-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .mission-card {
        padding: 23px;
        border-radius: 23px;
    }

    .mission-tag {
        top: 18px;
        right: 18px;
        font-size: 11px;
        padding: 6px 11px;
    }

    .mission-icon {
        width: 58px;
        height: 58px;
        border-radius: 20px;
        font-size: 27px;
        margin-bottom: 17px;
    }

    .mission-card h3 {
        font-size: 24px;
    }

    .mission-card p {
        font-size: 15px;
        line-height: 1.65;
    }

    .mission-points {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .mission-points span {
        justify-content: center;
    }
}

@media (max-width: 390px) {
    .mission-card {
        padding: 20px;
    }

    .mission-card h3 {
        font-size: 22px;
    }

    .mission-tag {
        position: static;
        display: inline-flex;
        margin-bottom: 14px;
    }
}

/* ================= MISSION VISION END================= */









/* ================= CORE VALUES ================= */

.core-values-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(244, 162, 97, 0.18), transparent 30%),
        radial-gradient(circle at 88% 76%, rgba(31, 122, 77, 0.16), transparent 32%),
        radial-gradient(circle at 50% 100%, rgba(231, 111, 81, 0.08), transparent 30%),
        linear-gradient(135deg, #fff8ec 0%, #ffffff 48%, #eef8f1 100%);
}

.core-values-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.76) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.035) 0px,
            rgba(31, 122, 77, 0.035) 1px,
            transparent 1px,
            transparent 22px);
    opacity: 0.62;
    pointer-events: none;
}

.core-values-section::after {
    content: "";
    position: absolute;
    width: 470px;
    height: 470px;
    right: -230px;
    bottom: -230px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(31, 122, 77, 0.14) 0%,
            rgba(31, 122, 77, 0.08) 38%,
            transparent 70%);
    pointer-events: none;
}

.core-values-section .container {
    position: relative;
    z-index: 2;
}

.values-badge {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.055);
}

/* Compact Value Card */

.value-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 225px;
    padding: 26px 22px;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow:
        0 16px 42px rgba(31, 41, 51, 0.075),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: 0.35s ease;
    animation: valueFloat 5s ease-in-out infinite;
}

.core-values-section .col-md-6:nth-child(2) .value-card {
    animation-delay: 0.35s;
}

.core-values-section .col-md-6:nth-child(3) .value-card {
    animation-delay: 0.7s;
}

.core-values-section .col-md-6:nth-child(4) .value-card {
    animation-delay: 1.05s;
}

.value-card::before {
    content: "";
    position: absolute;
    width: 125px;
    height: 125px;
    right: -55px;
    top: -55px;
    border-radius: 50%;
    background: rgba(31, 122, 77, 0.08);
    transition: 0.35s ease;
    pointer-events: none;
}

.value-card::after {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: center;
    transition: 0.35s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(31, 122, 77, 0.22);
    box-shadow:
        0 26px 62px rgba(31, 41, 51, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    animation-play-state: paused;
}

.value-card:hover::before {
    transform: scale(1.35);
    background: rgba(244, 162, 97, 0.16);
}

.value-card:hover::after {
    transform: scaleX(1);
}

/* Icon */

.value-icon {
    position: relative;
    z-index: 2;
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(31, 122, 77, 0.13), rgba(244, 162, 97, 0.16));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    margin-bottom: 18px;
    transition: 0.35s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: rotate(-5deg) scale(1.06);
    box-shadow: 0 16px 32px rgba(31, 122, 77, 0.25);
}

.value-card h4 {
    position: relative;
    z-index: 2;
    font-size: 20px;
    font-weight: 950;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.value-card p {
    position: relative;
    z-index: 2;
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

.value-count {
    position: absolute;
    right: 20px;
    bottom: 16px;
    font-size: 38px;
    line-height: 1;
    font-weight: 950;
    color: rgba(31, 122, 77, 0.09);
    transition: 0.35s ease;
}

.value-card:hover .value-count {
    color: rgba(244, 162, 97, 0.22);
    transform: translateY(-4px);
}

/* Animation */

@keyframes valueFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ================= CORE VALUES RESPONSIVE ================= */

@media (max-width: 991px) {
    .value-card {
        min-height: 210px;
        padding: 24px 21px;
        border-radius: 23px;
    }

    .value-card h4 {
        font-size: 19px;
    }
}

@media (max-width: 575px) {
    .core-values-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .values-head {
        margin-bottom: 35px !important;
    }

    .value-card {
        min-height: auto;
        padding: 23px;
        border-radius: 22px;
    }

    .value-icon {
        width: 54px;
        height: 54px;
        border-radius: 18px;
        font-size: 25px;
        margin-bottom: 16px;
    }

    .value-card h4 {
        font-size: 19px;
    }

    .value-card p {
        font-size: 14px;
        line-height: 1.55;
        max-width: 260px;
    }

    .value-count {
        font-size: 34px;
        right: 18px;
        bottom: 15px;
    }
}

@media (max-width: 390px) {
    .value-card {
        padding: 21px;
    }

    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 23px;
    }

    .value-card h4 {
        font-size: 18px;
    }

    .value-card p {
        font-size: 13.5px;
    }
}

/* ================= VALUES END CSS================= */








/* ================= OBJECTIVES LEGAL ================= */

.objectives-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(31, 122, 77, 0.13), transparent 30%),
        radial-gradient(circle at 88% 76%, rgba(244, 162, 97, 0.18), transparent 32%),
        radial-gradient(circle at 50% 100%, rgba(231, 111, 81, 0.08), transparent 30%),
        linear-gradient(135deg, #eef8f1 0%, #ffffff 48%, #fff8ec 100%);
}

.objectives-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.76) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.035) 0px,
            rgba(31, 122, 77, 0.035) 1px,
            transparent 1px,
            transparent 22px);
    opacity: 0.62;
    pointer-events: none;
}

.objectives-section::after {
    content: "";
    position: absolute;
    width: 470px;
    height: 470px;
    left: -230px;
    bottom: -230px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(31, 122, 77, 0.14) 0%,
            rgba(31, 122, 77, 0.08) 38%,
            transparent 70%);
    pointer-events: none;
}

.objectives-section .container {
    position: relative;
    z-index: 2;
}

/* Cards */

.objectives-card,
.legal-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 30px;
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow:
        0 18px 45px rgba(31, 41, 51, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: 0.35s ease;
    animation: objectivesFloat 5s ease-in-out infinite;
}

.legal-card {
    animation-delay: 0.45s;
}

.objectives-card:hover,
.legal-card:hover {
    transform: translateY(-8px);
    border-color: rgba(31, 122, 77, 0.22);
    box-shadow:
        0 28px 68px rgba(31, 41, 51, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    animation-play-state: paused;
}

.objectives-card::before,
.legal-card::before {
    content: "";
    position: absolute;
    width: 145px;
    height: 145px;
    right: -62px;
    top: -62px;
    border-radius: 50%;
    background: rgba(31, 122, 77, 0.08);
    transition: 0.35s ease;
    pointer-events: none;
}

.objectives-card:hover::before,
.legal-card:hover::before {
    transform: scale(1.35);
    background: rgba(244, 162, 97, 0.16);
}

.objectives-card::after,
.legal-card::after {
    content: "";
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: center;
    transition: 0.35s ease;
}

.objectives-card:hover::after,
.legal-card:hover::after {
    transform: scaleX(1);
}

/* Headings */

.objectives-badge,
.legal-badge {
    position: relative;
    z-index: 2;
    background: rgba(31, 122, 77, 0.09);
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.045);
}

.objectives-card h2,
.legal-card h2 {
    position: relative;
    z-index: 2;
    font-size: 32px;
    font-weight: 950;
    line-height: 1.16;
    letter-spacing: -0.7px;
    color: var(--dark);
    margin-bottom: 12px;
}

.objectives-text,
.legal-text {
    position: relative;
    z-index: 2;
    color: var(--text);
    font-size: 15.5px;
    line-height: 1.68;
    margin-bottom: 20px;
}

/* Objective List */

.objective-list {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.objective-list div {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 12px 14px;
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(31, 122, 77, 0.08);
    color: var(--dark);
    font-size: 14.5px;
    font-weight: 800;
    line-height: 1.45;
    transition: 0.3s ease;
}

.objective-list div:hover {
    background: rgba(31, 122, 77, 0.09);
    color: var(--primary);
    transform: translateX(5px);
}

.objective-list i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 2px;
    transition: 0.3s ease;
}

.objective-list div:hover i {
    color: var(--accent);
    transform: scale(1.12);
}

/* Legal List */

.legal-card ul {
    position: relative;
    z-index: 2;
    list-style: none;
    padding: 0;
    margin: 20px 0 18px;
    display: grid;
    gap: 10px;
}

.legal-card li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 12px 13px;
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(31, 122, 77, 0.08);
    color: var(--text);
    transition: 0.3s ease;
}

.legal-card li:hover {
    background: rgba(31, 122, 77, 0.09);
    transform: translateX(5px);
}

.legal-card li>i {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 12px;
    background: rgba(31, 122, 77, 0.10);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: 0.3s ease;
}

.legal-card li:hover>i {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.legal-card strong {
    display: block;
    color: var(--dark);
    font-size: 13.5px;
    font-weight: 900;
    margin-bottom: 3px;
}

.legal-card span {
    display: block;
    color: var(--text);
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.35;
}

.legal-link {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-size: 14.5px;
    font-weight: 900;
    transition: 0.3s ease;
}

.legal-link i {
    transition: 0.3s ease;
}

.legal-link:hover {
    color: var(--accent);
}

.legal-link:hover i {
    transform: translateX(4px);
}

/* Animation */

@keyframes objectivesFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ================= OBJECTIVES RESPONSIVE ================= */

@media (max-width: 991px) {

    .objectives-card,
    .legal-card {
        padding: 28px;
        border-radius: 26px;
    }

    .objectives-card h2,
    .legal-card h2 {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .objectives-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .objectives-card,
    .legal-card {
        padding: 23px;
        border-radius: 23px;
    }

    .objectives-card h2,
    .legal-card h2 {
        font-size: 26px;
        line-height: 1.18;
    }

    .objectives-text,
    .legal-text {
        font-size: 15px;
        line-height: 1.6;
    }

    .objective-list div,
    .legal-card li {
        padding: 11px 12px;
        border-radius: 16px;
        font-size: 14px;
    }

    .legal-card li>i {
        width: 32px;
        height: 32px;
        min-width: 32px;
        border-radius: 11px;
    }
}

@media (max-width: 390px) {

    .objectives-card,
    .legal-card {
        padding: 20px;
    }

    .objectives-card h2,
    .legal-card h2 {
        font-size: 24px;
    }

    .objective-list div,
    .legal-card li {
        gap: 9px;
    }
}

/* ================= OBJECTIVES LEGAL END CSS ================= */








/* ================= FOUNDER MESSAGE ================= */

.founder-message-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(244, 162, 97, 0.18), transparent 30%),
        radial-gradient(circle at 88% 76%, rgba(31, 122, 77, 0.16), transparent 32%),
        radial-gradient(circle at 50% 100%, rgba(231, 111, 81, 0.08), transparent 30%),
        linear-gradient(135deg, #fff8ec 0%, #ffffff 48%, #eef8f1 100%);
}

.founder-message-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.76) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.035) 0px,
            rgba(31, 122, 77, 0.035) 1px,
            transparent 1px,
            transparent 22px);
    opacity: 0.62;
    pointer-events: none;
}

.founder-message-section::after {
    content: "";
    position: absolute;
    width: 470px;
    height: 470px;
    right: -230px;
    top: -230px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(31, 122, 77, 0.14) 0%,
            rgba(31, 122, 77, 0.08) 38%,
            transparent 70%);
    pointer-events: none;
}

.founder-message-section .container {
    position: relative;
    z-index: 2;
}

/* Main Box */

.founder-message-box {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: 32px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow:
        0 22px 58px rgba(31, 41, 51, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: 0.35s ease;
    animation: founderFloat 5s ease-in-out infinite;
}

.founder-message-box:hover {
    transform: translateY(-8px);
    border-color: rgba(31, 122, 77, 0.22);
    box-shadow:
        0 32px 78px rgba(31, 41, 51, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    animation-play-state: paused;
}

.founder-message-box::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    right: -72px;
    top: -72px;
    border-radius: 50%;
    background: rgba(31, 122, 77, 0.08);
    transition: 0.35s ease;
    pointer-events: none;
}

.founder-message-box:hover::before {
    transform: scale(1.35);
    background: rgba(244, 162, 97, 0.16);
}

.founder-message-box::after {
    content: "";
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: center;
    transition: 0.35s ease;
}

.founder-message-box:hover::after {
    transform: scaleX(1);
}

/* Founder Image */

.founder-photo-wrap {
    position: relative;
}

.founder-photo-wrap::before {
    content: "";
    position: absolute;
    inset: 28px -12px -12px 28px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(31, 122, 77, 0.18), rgba(244, 162, 97, 0.22));
    z-index: -1;
    transition: 0.35s ease;
}

.founder-message-box:hover .founder-photo-wrap::before {
    transform: rotate(-2deg) translate(4px, 4px);
}

.founder-photo {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 7px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 55px rgba(31, 41, 51, 0.16);
}

.founder-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.28)),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.25), transparent 34%);
    pointer-events: none;
}

.founder-photo img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: 0.45s ease;
}

.founder-message-box:hover .founder-photo img {
    transform: scale(1.06);
}

.founder-photo-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(31, 122, 77, 0.12);
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(31, 41, 51, 0.14);
    backdrop-filter: blur(10px);
    animation: founderBadgeFloat 4s ease-in-out infinite;
}

/* Founder Content */

.founder-content {
    position: relative;
    z-index: 2;
    padding: 10px 8px 10px 18px;
}

.founder-quote-icon {
    position: absolute;
    right: 12px;
    top: -18px;
    font-size: 92px;
    line-height: 1;
    color: rgba(31, 122, 77, 0.08);
    pointer-events: none;
}

.founder-badge {
    position: relative;
    z-index: 2;
    background: rgba(31, 122, 77, 0.09);
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.045);
}

.founder-content h2 {
    position: relative;
    z-index: 2;
    font-size: 34px;
    font-weight: 950;
    line-height: 1.14;
    letter-spacing: -0.8px;
    color: var(--dark);
    margin-bottom: 14px;
}

.founder-content p {
    position: relative;
    z-index: 2;
    color: var(--text);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 0;
}

/* Founder Name */

.founder-name {
    position: relative;
    z-index: 2;
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(31, 122, 77, 0.08);
    border: 1px solid rgba(31, 122, 77, 0.10);
    max-width: 430px;
    transition: 0.3s ease;
}

.founder-name:hover {
    background: rgba(244, 162, 97, 0.13);
    transform: translateX(4px);
}

.founder-sign-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

.founder-name h5 {
    color: var(--primary);
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 3px;
}

.founder-name span {
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
}

/* Animations */

@keyframes founderFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes founderBadgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* ================= FOUNDER MESSAGE RESPONSIVE ================= */

@media (max-width: 991px) {
    .founder-message-box {
        padding: 28px;
        border-radius: 28px;
    }

    .founder-content {
        padding: 12px 0 0;
        text-align: center;
    }

    .founder-content h2 {
        font-size: 31px;
    }

    .founder-photo img {
        height: 320px;
    }

    .founder-name {
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .founder-quote-icon {
        right: 50%;
        transform: translateX(50%);
        top: -8px;
        font-size: 78px;
    }
}

@media (max-width: 575px) {
    .founder-message-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .founder-message-box {
        padding: 22px;
        border-radius: 24px;
    }

    .founder-photo {
        border-radius: 24px;
        border-width: 6px;
    }

    .founder-photo-wrap::before {
        inset: 24px -9px -9px 24px;
        border-radius: 24px;
    }

    .founder-photo img {
        height: 270px;
    }

    .founder-photo-badge {
        left: 14px;
        bottom: 14px;
        font-size: 12px;
        padding: 8px 12px;
    }

    .founder-content h2 {
        font-size: 27px;
        line-height: 1.18;
    }

    .founder-content p {
        font-size: 15px;
        line-height: 1.65;
    }

    .founder-name {
        padding: 13px;
        border-radius: 18px;
    }

    .founder-sign-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 14px;
        font-size: 17px;
    }

    .founder-name h5 {
        font-size: 14.5px;
    }

    .founder-name span {
        font-size: 12.5px;
    }
}

@media (max-width: 390px) {
    .founder-message-box {
        padding: 19px;
    }

    .founder-photo img {
        height: 240px;
    }

    .founder-name {
        flex-direction: column;
        text-align: center;
    }

    .founder-content h2 {
        font-size: 25px;
    }
}

/* ================= FOUNDER MESSAGE END CSS================= */








/* ================= LONG TERM GOALS ================= */

.goals-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(31, 122, 77, 0.13), transparent 30%),
        radial-gradient(circle at 88% 78%, rgba(244, 162, 97, 0.18), transparent 32%),
        radial-gradient(circle at 50% 100%, rgba(231, 111, 81, 0.08), transparent 30%),
        linear-gradient(135deg, #eef8f1 0%, #ffffff 48%, #fff8ec 100%);
}

.goals-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.76) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.035) 0px,
            rgba(31, 122, 77, 0.035) 1px,
            transparent 1px,
            transparent 22px);
    opacity: 0.62;
    pointer-events: none;
}

.goals-section::after {
    content: "";
    position: absolute;
    width: 470px;
    height: 470px;
    left: -230px;
    bottom: -230px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(31, 122, 77, 0.14) 0%,
            rgba(31, 122, 77, 0.08) 38%,
            transparent 70%);
    pointer-events: none;
}

.goals-section .container {
    position: relative;
    z-index: 2;
}

.goals-badge {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.055);
}

/* Goal Card */

.goal-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 245px;
    padding: 26px 24px;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow:
        0 16px 42px rgba(31, 41, 51, 0.075),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: 0.35s ease;
    animation: goalFloat 5s ease-in-out infinite;
}

.goals-section .col-md-6:nth-child(2) .goal-card {
    animation-delay: 0.4s;
}

.goals-section .col-md-6:nth-child(3) .goal-card {
    animation-delay: 0.8s;
}

.goal-card::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -58px;
    top: -58px;
    border-radius: 50%;
    background: rgba(31, 122, 77, 0.08);
    transition: 0.35s ease;
    pointer-events: none;
}

.goal-card::after {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: center;
    transition: 0.35s ease;
}

.goal-card:hover {
    transform: translateY(-8px);
    border-color: rgba(31, 122, 77, 0.22);
    box-shadow:
        0 26px 62px rgba(31, 41, 51, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    animation-play-state: paused;
}

.goal-card:hover::before {
    transform: scale(1.35);
    background: rgba(244, 162, 97, 0.16);
}

.goal-card:hover::after {
    transform: scaleX(1);
}

.goal-number {
    position: absolute;
    right: 22px;
    top: 18px;
    z-index: 1;
    font-size: 46px;
    line-height: 1;
    font-weight: 950;
    color: rgba(31, 122, 77, 0.09);
    transition: 0.35s ease;
}

.goal-card:hover .goal-number {
    color: rgba(244, 162, 97, 0.24);
    transform: translateY(-4px);
}

.goal-icon {
    position: relative;
    z-index: 2;
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(31, 122, 77, 0.13), rgba(244, 162, 97, 0.16));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    margin-bottom: 18px;
    transition: 0.35s ease;
}

.goal-card:hover .goal-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: rotate(-5deg) scale(1.06);
    box-shadow: 0 16px 32px rgba(31, 122, 77, 0.25);
}

.goal-card h4 {
    position: relative;
    z-index: 2;
    font-size: 20px;
    font-weight: 950;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.goal-card p {
    position: relative;
    z-index: 2;
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.goal-card a {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 900;
    transition: 0.3s ease;
}

.goal-card a i {
    transition: 0.3s ease;
}

.goal-card a:hover {
    color: var(--accent);
}

.goal-card a:hover i {
    transform: translateX(4px);
}

/* Animation */

@keyframes goalFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ================= GOALS RESPONSIVE ================= */

@media (max-width: 991px) {
    .goal-card {
        min-height: 230px;
        padding: 24px 22px;
        border-radius: 23px;
    }

    .goal-card h4 {
        font-size: 19px;
    }
}

@media (max-width: 575px) {
    .goals-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .goals-head {
        margin-bottom: 35px !important;
    }

    .goal-card {
        min-height: auto;
        padding: 23px;
        border-radius: 22px;
    }

    .goal-number {
        font-size: 38px;
        right: 18px;
        top: 16px;
    }

    .goal-icon {
        width: 54px;
        height: 54px;
        border-radius: 18px;
        font-size: 25px;
        margin-bottom: 16px;
    }

    .goal-card h4 {
        font-size: 19px;
    }

    .goal-card p {
        font-size: 14px;
        line-height: 1.55;
    }
}

@media (max-width: 390px) {
    .goal-card {
        padding: 21px;
    }

    .goal-icon {
        width: 50px;
        height: 50px;
        font-size: 23px;
    }

    .goal-card h4 {
        font-size: 18px;
    }

    .goal-card p {
        font-size: 13.5px;
    }
}

/* ================= GOALS ENDS PAGE ================= */




























/* ================= PROGRAM PAGE HERO ================= */
/* ================= PROGRAM PAGE HERO - UNIQUE SPLIT ================= */

.program-page-hero {
    position: relative;
    overflow: hidden;
    padding: 64px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(244, 162, 97, 0.20), transparent 30%),
        radial-gradient(circle at 88% 22%, rgba(31, 122, 77, 0.18), transparent 32%),
        radial-gradient(circle at 70% 88%, rgba(231, 111, 81, 0.10), transparent 28%),
        linear-gradient(135deg, #fff8ec 0%, #ffffff 45%, #eef8f1 100%);
}

.program-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.80) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.04) 0px,
            rgba(31, 122, 77, 0.04) 1px,
            transparent 1px,
            transparent 20px);
    opacity: 0.68;
    pointer-events: none;
}

.program-page-hero::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -260px;
    top: -260px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(31, 122, 77, 0.15) 0%,
            rgba(31, 122, 77, 0.08) 38%,
            transparent 70%);
    pointer-events: none;
}

.program-page-hero .container {
    position: relative;
    z-index: 2;
}

.program-hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: programShapeFloat 5s ease-in-out infinite;
}

.program-hero-shape.shape-one {
    width: 90px;
    height: 90px;
    left: 7%;
    top: 26%;
    background: rgba(244, 162, 97, 0.18);
}

.program-hero-shape.shape-two {
    width: 70px;
    height: 70px;
    right: 12%;
    bottom: 18%;
    background: rgba(31, 122, 77, 0.14);
    animation-delay: 1s;
}

.program-hero-wrapper {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.90), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.14);
    box-shadow:
        0 28px 76px rgba(31, 41, 51, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    animation: programHeroUp 0.8s ease both;
}

.program-hero-wrapper::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -100px;
    top: -100px;
    border-radius: 50%;
    background: rgba(31, 122, 77, 0.08);
    pointer-events: none;
}

.program-hero-wrapper::after {
    content: "";
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 0;
    height: 4px;
    border-radius: 30px 30px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.program-hero-content {
    position: relative;
    z-index: 2;
}

.program-hero-badge {
    background: rgba(31, 122, 77, 0.08);
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.045);
}

.program-hero-content h1 {
    max-width: 720px;
    font-size: 52px;
    font-weight: 950;
    line-height: 1.08;
    letter-spacing: -1.6px;
    color: var(--dark);
    margin-bottom: 16px;
}

.program-hero-content h1::first-line {
    color: var(--primary-dark);
}

.program-hero-content p {
    max-width: 680px;
    color: var(--text);
    font-size: 16.5px;
    line-height: 1.75;
    margin-bottom: 24px;
}

.program-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.program-hero-actions .btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.program-breadcrumb .breadcrumb-item {
    font-size: 14px;
    font-weight: 700;
}

.program-breadcrumb .breadcrumb-item a {
    color: var(--primary);
    font-weight: 900;
}

.program-breadcrumb .breadcrumb-item.active {
    color: var(--text);
}

.program-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(31, 122, 77, 0.45);
}

/* Right Side Cards */

.program-hero-side {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 14px;
}

.program-impact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(31, 122, 77, 0.96), rgba(20, 92, 57, 0.97));
    color: var(--white);
    box-shadow: 0 20px 46px rgba(31, 122, 77, 0.24);
    animation: programCardFloat 4.5s ease-in-out infinite;
}

.program-impact-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.program-impact-card h4 {
    font-size: 22px;
    font-weight: 950;
    margin-bottom: 4px;
}

.program-impact-card p {
    font-size: 13.5px;
    line-height: 1.5;
    opacity: 0.86;
    margin-bottom: 0;
}

.program-hero-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.program-mini-card {
    min-height: 115px;
    padding: 18px 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(31, 122, 77, 0.10);
    box-shadow: 0 14px 32px rgba(31, 41, 51, 0.065);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.35s ease;
}

.program-mini-card:hover {
    transform: translateY(-6px);
    background: rgba(31, 122, 77, 0.09);
    border-color: rgba(31, 122, 77, 0.18);
}

.program-mini-card i {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    background:
        linear-gradient(135deg, rgba(31, 122, 77, 0.13), rgba(244, 162, 97, 0.16));
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    margin-bottom: 12px;
    transition: 0.35s ease;
}

.program-mini-card:hover i {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: rotate(-5deg) scale(1.05);
}

.program-mini-card h5 {
    color: var(--dark);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 0;
}

/* Animations */

@keyframes programHeroUp {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes programShapeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes programCardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

/* ================= PROGRAM HERO RESPONSIVE ================= */

@media (max-width: 991px) {
    .program-page-hero {
        padding: 54px 0;
    }

    .program-hero-wrapper {
        padding: 34px;
        border-radius: 30px;
        text-align: center;
    }

    .program-hero-content h1 {
        font-size: 42px;
        margin-left: auto;
        margin-right: auto;
    }

    .program-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .program-hero-actions {
        justify-content: center;
    }

    .program-breadcrumb .breadcrumb {
        justify-content: center;
    }

    .program-hero-side {
        margin-top: 10px;
    }
}

@media (max-width: 575px) {
    .program-page-hero {
        padding: 42px 0;
    }

    .program-hero-wrapper {
        padding: 24px 20px;
        border-radius: 26px;
    }

    .program-hero-content h1 {
        font-size: 34px;
        line-height: 1.12;
        letter-spacing: -0.8px;
    }

    .program-hero-content p {
        font-size: 15.5px;
        line-height: 1.65;
    }

    .program-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .program-hero-actions .btn {
        width: 100%;
    }

    .program-impact-card {
        padding: 15px;
        border-radius: 21px;
        text-align: left;
    }

    .program-impact-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        border-radius: 18px;
        font-size: 23px;
    }

    .program-impact-card h4 {
        font-size: 18px;
    }

    .program-impact-card p {
        font-size: 12.5px;
    }

    .program-hero-mini-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .program-mini-card {
        min-height: auto;
        padding: 14px;
        border-radius: 18px;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        text-align: left;
    }

    .program-mini-card i {
        margin-bottom: 0;
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 14px;
        font-size: 19px;
    }

    .program-hero-shape {
        display: none;
    }
}

@media (max-width: 390px) {
    .program-hero-wrapper {
        padding: 22px 18px;
    }

    .program-hero-content h1 {
        font-size: 30px;
    }
}

/* ================= PROGRAM CATEGORY ================= */

.program-category-section,
.more-programs-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(31, 122, 77, 0.13), transparent 30%),
        radial-gradient(circle at 88% 78%, rgba(244, 162, 97, 0.18), transparent 32%),
        radial-gradient(circle at 50% 100%, rgba(231, 111, 81, 0.08), transparent 30%),
        linear-gradient(135deg, #eef8f1 0%, #ffffff 48%, #fff8ec 100%);
}

.program-category-section::before,
.more-programs-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.76) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.035) 0px,
            rgba(31, 122, 77, 0.035) 1px,
            transparent 1px,
            transparent 22px);
    opacity: 0.62;
    pointer-events: none;
}

.program-category-section .container,
.more-programs-section .container {
    position: relative;
    z-index: 2;
}

.program-badge,
.more-programs-badge,
.details-badge {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.055);
}

/* Work Card */

.work-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 275px;
    padding: 26px 22px;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow:
        0 16px 42px rgba(31, 41, 51, 0.075),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: 0.35s ease;
    animation: workFloat 5s ease-in-out infinite;
}

.program-category-section .col-md-6:nth-child(2) .work-card {
    animation-delay: 0.3s;
}

.program-category-section .col-md-6:nth-child(3) .work-card {
    animation-delay: 0.6s;
}

.program-category-section .col-md-6:nth-child(4) .work-card {
    animation-delay: 0.9s;
}

.program-category-section .col-md-6:nth-child(5) .work-card {
    animation-delay: 1.2s;
}

.program-category-section .col-md-6:nth-child(6) .work-card {
    animation-delay: 1.5s;
}

.work-card::before {
    content: "";
    position: absolute;
    width: 125px;
    height: 125px;
    right: -55px;
    top: -55px;
    border-radius: 50%;
    background: rgba(31, 122, 77, 0.08);
    transition: 0.35s ease;
}

.work-card::after {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: center;
    transition: 0.35s ease;
}

.work-card:hover {
    transform: translateY(-8px);
    border-color: rgba(31, 122, 77, 0.22);
    box-shadow:
        0 26px 62px rgba(31, 41, 51, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    animation-play-state: paused;
}

.work-card:hover::before {
    transform: scale(1.35);
    background: rgba(244, 162, 97, 0.16);
}

.work-card:hover::after {
    transform: scaleX(1);
}

.work-icon {
    position: relative;
    z-index: 2;
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(31, 122, 77, 0.13), rgba(244, 162, 97, 0.16));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    margin-bottom: 17px;
    transition: 0.35s ease;
}

.work-card:hover .work-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: rotate(-5deg) scale(1.06);
    box-shadow: 0 16px 32px rgba(31, 122, 77, 0.25);
}

.work-card h4 {
    position: relative;
    z-index: 2;
    font-size: 20px;
    font-weight: 950;
    color: var(--dark);
    margin-bottom: 8px;
}

.work-card p {
    position: relative;
    z-index: 2;
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.work-meta {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.work-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 50px;
    background: rgba(31, 122, 77, 0.08);
    color: var(--dark);
    font-size: 12px;
    font-weight: 800;
}

.work-meta i {
    color: var(--primary);
}

.work-card a {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 900;
    transition: 0.3s ease;
}

.work-card a:hover {
    color: var(--accent);
}

.work-card a i {
    transition: 0.3s ease;
}

.work-card a:hover i {
    transform: translateX(4px);
}

/* ================= PROGRAM DETAILS ================= */

.program-details-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(244, 162, 97, 0.18), transparent 30%),
        radial-gradient(circle at 88% 76%, rgba(31, 122, 77, 0.16), transparent 32%),
        linear-gradient(135deg, #fff8ec 0%, #ffffff 48%, #eef8f1 100%);
}

.program-details-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.76) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.035) 0px,
            rgba(31, 122, 77, 0.035) 1px,
            transparent 1px,
            transparent 22px);
    opacity: 0.62;
    pointer-events: none;
}

.program-details-section .container {
    position: relative;
    z-index: 2;
}

.program-detail-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border-radius: 28px;
    margin-bottom: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow:
        0 18px 45px rgba(31, 41, 51, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    transition: 0.35s ease;
}

.program-detail-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 28px 68px rgba(31, 41, 51, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.program-detail-img {
    overflow: hidden;
    height: 260px;
    border-radius: 24px;
    border: 6px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 40px rgba(31, 41, 51, 0.12);
}

.program-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s ease;
}

.program-detail-card:hover .program-detail-img img {
    transform: scale(1.06);
}

.program-detail-content {
    padding: 8px 10px;
}

.program-label {
    display: inline-flex;
    padding: 8px 13px;
    border-radius: 50px;
    background: rgba(31, 122, 77, 0.09);
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 14px;
}

.program-detail-content h3 {
    font-size: 28px;
    font-weight: 950;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 12px;
}

.program-detail-content p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.68;
    margin-bottom: 18px;
}

.program-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
    margin-bottom: 18px;
}

.program-info-grid div {
    padding: 12px 14px;
    border-radius: 17px;
    background: rgba(31, 122, 77, 0.08);
    border: 1px solid rgba(31, 122, 77, 0.09);
}

.program-info-grid strong {
    display: block;
    color: var(--dark);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 3px;
}

.program-info-grid span {
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
}

.program-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 900;
    transition: 0.3s ease;
}

.program-btn:hover {
    color: var(--accent);
}

.program-btn i {
    transition: 0.3s ease;
}

.program-btn:hover i {
    transform: translateX(4px);
}

/* ================= MINI PROGRAMS ================= */

.mini-program-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 205px;
    padding: 24px 20px;
    border-radius: 23px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow:
        0 16px 42px rgba(31, 41, 51, 0.075),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    transition: 0.35s ease;
    animation: workFloat 5s ease-in-out infinite;
}

.more-programs-section .col-md-6:nth-child(2) .mini-program-card {
    animation-delay: 0.35s;
}

.more-programs-section .col-md-6:nth-child(3) .mini-program-card {
    animation-delay: 0.7s;
}

.more-programs-section .col-md-6:nth-child(4) .mini-program-card {
    animation-delay: 1.05s;
}

.mini-program-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -55px;
    top: -55px;
    border-radius: 50%;
    background: rgba(31, 122, 77, 0.08);
    transition: 0.35s ease;
}

.mini-program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 62px rgba(31, 41, 51, 0.14);
    animation-play-state: paused;
}

.mini-program-card:hover::before {
    transform: scale(1.35);
    background: rgba(244, 162, 97, 0.16);
}

.mini-program-card>i {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(31, 122, 77, 0.13), rgba(244, 162, 97, 0.16));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    margin-bottom: 16px;
    transition: 0.35s ease;
}

.mini-program-card:hover>i {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: rotate(-5deg) scale(1.06);
}

.mini-program-card h4 {
    position: relative;
    z-index: 2;
    font-size: 18px;
    font-weight: 950;
    color: var(--dark);
    margin-bottom: 8px;
}

.mini-program-card p {
    position: relative;
    z-index: 2;
    color: var(--text);
    font-size: 13.5px;
    line-height: 1.58;
    margin-bottom: 0;
}

/* ================= PROGRAM CTA ================= */

.program-cta-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(31, 122, 77, 0.13), transparent 30%),
        linear-gradient(135deg, #eef8f1 0%, #fff8ec 100%);
}

.program-cta-section .container {
    position: relative;
    z-index: 2;
}

.program-cta-box {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border-radius: 30px;
    color: var(--white);
    background:
        radial-gradient(circle at 90% 20%, rgba(244, 162, 97, 0.28), transparent 32%),
        linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 30px 80px rgba(31, 122, 77, 0.28);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.program-cta-box span {
    display: inline-flex;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 8px;
}

.program-cta-box h2 {
    font-size: 34px;
    font-weight: 950;
    line-height: 1.15;
    margin-bottom: 10px;
}

.program-cta-box p {
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 0;
}

.program-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Animation */

@keyframes workFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes programHeroUp {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= PROGRAM PAGE RESPONSIVE ================= */

@media (max-width: 991px) {
    .program-hero-box {
        padding: 34px;
        border-radius: 30px;
    }

    .program-hero-box h1 {
        font-size: 42px;
    }

    .work-card {
        min-height: 255px;
    }

    .program-detail-content {
        text-align: center;
    }

    .program-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 34px;
    }

    .program-cta-actions {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .program-page-hero {
        padding: 42px 0;
    }

    .program-hero-box {
        padding: 26px 20px;
        border-radius: 26px;
    }

    .program-hero-box h1 {
        font-size: 35px;
    }

    .program-hero-box p {
        font-size: 15.5px;
    }

    .program-category-section,
    .program-details-section,
    .more-programs-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .work-card {
        min-height: auto;
        padding: 23px;
        border-radius: 22px;
    }

    .work-icon {
        width: 54px;
        height: 54px;
        border-radius: 18px;
        font-size: 25px;
    }

    .work-card h4 {
        font-size: 19px;
    }

    .program-detail-card {
        padding: 18px;
        border-radius: 24px;
    }

    .program-detail-img {
        height: 220px;
        border-radius: 20px;
    }

    .program-detail-content h3 {
        font-size: 24px;
    }

    .program-info-grid {
        grid-template-columns: 1fr;
    }

    .mini-program-card {
        min-height: auto;
        padding: 22px;
        border-radius: 21px;
    }

    .program-cta-section {
        padding: 60px 0;
    }

    .program-cta-box {
        padding: 28px 20px;
        border-radius: 25px;
    }

    .program-cta-box h2 {
        font-size: 27px;
    }

    .program-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .program-cta-actions .btn {
        width: 100%;
    }
}

@media (max-width: 390px) {
    .program-hero-box h1 {
        font-size: 31px;
    }

    .program-detail-img {
        height: 200px;
    }

    .program-detail-content h3 {
        font-size: 22px;
    }
}

/* ================= PROGRAM PAGE END CSS ================= */

























/* ================= EVENTS PAGE HERO ================= */

.events-page-hero {
    position: relative;
    overflow: hidden;
    padding: 64px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(244, 162, 97, 0.20), transparent 30%),
        radial-gradient(circle at 88% 22%, rgba(31, 122, 77, 0.18), transparent 32%),
        radial-gradient(circle at 70% 88%, rgba(231, 111, 81, 0.10), transparent 28%),
        linear-gradient(135deg, #fff8ec 0%, #ffffff 45%, #eef8f1 100%);
}

.events-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.80) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.04) 0px,
            rgba(31, 122, 77, 0.04) 1px,
            transparent 1px,
            transparent 20px);
    opacity: 0.68;
    pointer-events: none;
}

.events-page-hero::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -260px;
    top: -260px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(31, 122, 77, 0.15) 0%,
            rgba(31, 122, 77, 0.08) 38%,
            transparent 70%);
    pointer-events: none;
}

.events-page-hero .container {
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.events-hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: eventsShapeFloat 5s ease-in-out infinite;
}

.events-shape-one {
    width: 90px;
    height: 90px;
    left: 7%;
    top: 26%;
    background: rgba(244, 162, 97, 0.18);
}

.events-shape-two {
    width: 70px;
    height: 70px;
    right: 12%;
    bottom: 18%;
    background: rgba(31, 122, 77, 0.14);
    animation-delay: 1s;
}

.events-hero-wrapper {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.90), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.14);
    box-shadow:
        0 28px 76px rgba(31, 41, 51, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    animation: eventsHeroUp 0.8s ease both;
}

.events-hero-wrapper::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -100px;
    top: -100px;
    border-radius: 50%;
    background: rgba(31, 122, 77, 0.08);
    pointer-events: none;
}

.events-hero-wrapper::after {
    content: "";
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 0;
    height: 4px;
    border-radius: 30px 30px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.events-hero-content {
    position: relative;
    z-index: 2;
}

.events-hero-badge {
    background: rgba(31, 122, 77, 0.08);
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.045);
}

.events-hero-content h1 {
    max-width: 760px;
    font-size: 52px;
    font-weight: 950;
    line-height: 1.08;
    letter-spacing: -1.6px;
    color: var(--dark);
    margin-bottom: 16px;
}

.events-hero-content h1::first-line {
    color: var(--primary-dark);
}

.events-hero-content p {
    max-width: 690px;
    color: var(--text);
    font-size: 16.5px;
    line-height: 1.75;
    margin-bottom: 24px;
}

.events-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.events-hero-actions .btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.events-breadcrumb .breadcrumb-item {
    font-size: 14px;
    font-weight: 700;
}

.events-breadcrumb .breadcrumb-item a {
    color: var(--primary);
    font-weight: 900;
}

.events-breadcrumb .breadcrumb-item.active {
    color: var(--text);
}

.events-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(31, 122, 77, 0.45);
}

/* Hero Side */

.events-hero-side {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 14px;
}

.events-feature-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(31, 122, 77, 0.96), rgba(20, 92, 57, 0.97));
    color: var(--white);
    box-shadow: 0 20px 46px rgba(31, 122, 77, 0.24);
    animation: eventsCardFloat 4.5s ease-in-out infinite;
}

.events-feature-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.events-feature-card h4 {
    font-size: 22px;
    font-weight: 950;
    margin-bottom: 4px;
}

.events-feature-card p {
    font-size: 13.5px;
    line-height: 1.5;
    opacity: 0.86;
    margin-bottom: 0;
}

.events-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.events-mini-card {
    min-height: 115px;
    padding: 18px 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(31, 122, 77, 0.10);
    box-shadow: 0 14px 32px rgba(31, 41, 51, 0.065);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.35s ease;
}

.events-mini-card:hover {
    transform: translateY(-6px);
    background: rgba(31, 122, 77, 0.09);
    border-color: rgba(31, 122, 77, 0.18);
}

.events-mini-card i {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    background:
        linear-gradient(135deg, rgba(31, 122, 77, 0.13), rgba(244, 162, 97, 0.16));
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    margin-bottom: 12px;
    transition: 0.35s ease;
}

.events-mini-card:hover i {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: rotate(-5deg) scale(1.05);
}

.events-mini-card h5 {
    color: var(--dark);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 0;
}

/* ================= FEATURED CAMPAIGN ================= */

.featured-campaign-section,
.events-list-section,
.event-gallery-strip-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(31, 122, 77, 0.13), transparent 30%),
        radial-gradient(circle at 88% 78%, rgba(244, 162, 97, 0.18), transparent 32%),
        radial-gradient(circle at 50% 100%, rgba(231, 111, 81, 0.08), transparent 30%),
        linear-gradient(135deg, #eef8f1 0%, #ffffff 48%, #fff8ec 100%);
}

.featured-campaign-section::before,
.events-list-section::before,
.event-gallery-strip-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.76) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.035) 0px,
            rgba(31, 122, 77, 0.035) 1px,
            transparent 1px,
            transparent 22px);
    opacity: 0.62;
    pointer-events: none;
}

.featured-campaign-section .container,
.events-list-section .container,
.event-gallery-strip-section .container {
    position: relative;
    z-index: 2;
}

.featured-campaign-box {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow:
        0 18px 45px rgba(31, 41, 51, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    transition: 0.35s ease;
}

.featured-campaign-box:hover {
    transform: translateY(-7px);
    box-shadow:
        0 28px 68px rgba(31, 41, 51, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.featured-campaign-img {
    position: relative;
    overflow: hidden;
    height: 300px;
    border-radius: 24px;
    border: 6px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 40px rgba(31, 41, 51, 0.12);
}

.featured-campaign-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s ease;
}

.featured-campaign-box:hover .featured-campaign-img img {
    transform: scale(1.06);
}

.featured-status {
    position: absolute;
    left: 16px;
    bottom: 16px;
    padding: 8px 13px;
    border-radius: 50px;
    background: var(--secondary);
    color: var(--dark);
    font-size: 12px;
    font-weight: 900;
}

.featured-campaign-content h2 {
    font-size: 34px;
    font-weight: 950;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 12px;
}

.featured-campaign-content p {
    color: var(--text);
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.featured-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.featured-info span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 50px;
    background: rgba(31, 122, 77, 0.08);
    color: var(--dark);
    font-size: 13px;
    font-weight: 800;
}

.featured-info i {
    color: var(--primary);
}

.featured-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* ================= EVENTS LIST ================= */

.events-list-badge,
.featured-badge,
.gallery-strip-badge {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.055);
}

.event-filter-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
    margin-top: 24px;
}

.event-filter-chips button {
    border: 1px solid rgba(31, 122, 77, 0.14);
    background: rgba(255, 255, 255, 0.78);
    color: var(--dark);
    padding: 9px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 900;
    transition: 0.3s ease;
}

.event-filter-chips button:hover,
.event-filter-chips button.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: translateY(-3px);
}

/* Campaign Card */

.campaign-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow:
        0 16px 42px rgba(31, 41, 51, 0.075),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    transition: 0.35s ease;
    animation: campaignFloat 5s ease-in-out infinite;
}

.events-list-section .col-md-6:nth-child(2) .campaign-card {
    animation-delay: 0.3s;
}

.events-list-section .col-md-6:nth-child(3) .campaign-card {
    animation-delay: 0.6s;
}

.events-list-section .col-md-6:nth-child(4) .campaign-card {
    animation-delay: 0.9s;
}

.events-list-section .col-md-6:nth-child(5) .campaign-card {
    animation-delay: 1.2s;
}

.events-list-section .col-md-6:nth-child(6) .campaign-card {
    animation-delay: 1.5s;
}

.campaign-card:hover {
    transform: translateY(-8px);
    border-color: rgba(31, 122, 77, 0.22);
    box-shadow:
        0 26px 62px rgba(31, 41, 51, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    animation-play-state: paused;
}

.campaign-card::after {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: center;
    transition: 0.35s ease;
}

.campaign-card:hover::after {
    transform: scaleX(1);
}

.campaign-img {
    position: relative;
    height: 178px;
    overflow: hidden;
}

.campaign-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.45)),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.20), transparent 34%);
    pointer-events: none;
}

.campaign-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s ease;
}

.campaign-card:hover .campaign-img img {
    transform: scale(1.08);
}

.campaign-status,
.campaign-category {
    position: absolute;
    z-index: 2;
    padding: 7px 11px;
    border-radius: 50px;
    font-size: 11.5px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.14);
}

.campaign-status {
    top: 14px;
    left: 14px;
}

.campaign-status.upcoming {
    background: var(--secondary);
    color: var(--dark);
}

.campaign-status.past {
    background: rgba(255, 255, 255, 0.88);
    color: var(--primary);
}

.campaign-category {
    right: 14px;
    bottom: 14px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--primary);
}

.campaign-content {
    padding: 20px;
}

.campaign-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.campaign-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text);
    font-size: 12px;
    font-weight: 800;
}

.campaign-meta i {
    color: var(--accent);
}

.campaign-content h4 {
    font-size: 20px;
    font-weight: 950;
    color: var(--dark);
    margin-bottom: 8px;
}

.campaign-content p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.58;
    margin-bottom: 14px;
}

.campaign-gallery-preview {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.campaign-gallery-preview img,
.campaign-gallery-preview span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -7px;
    object-fit: cover;
    box-shadow: 0 8px 18px rgba(31, 41, 51, 0.12);
}

.campaign-gallery-preview img:first-child {
    margin-left: 0;
}

.campaign-gallery-preview span {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-size: 11px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.campaign-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.campaign-actions a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 13.5px;
    font-weight: 900;
    transition: 0.3s ease;
}

.campaign-actions a:last-child {
    padding: 7px 13px;
    border-radius: 50px;
    background: rgba(31, 122, 77, 0.09);
}

.campaign-actions a:hover {
    color: var(--accent);
}

.campaign-actions a i {
    transition: 0.3s ease;
}

.campaign-actions a:hover i {
    transform: translateX(4px);
}

/* ================= GALLERY STRIP ================= */

.event-gallery-strip {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 26px;
    align-items: center;
    padding: 28px;
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 18px 45px rgba(31, 41, 51, 0.08);
}

.event-gallery-content h2 {
    font-size: 34px;
    font-weight: 950;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 12px;
}

.event-gallery-content p {
    color: var(--text);
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.event-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.event-gallery-grid img {
    width: 100%;
    height: 145px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 14px 32px rgba(31, 41, 51, 0.10);
    transition: 0.35s ease;
}

.event-gallery-grid img:hover {
    transform: translateY(-5px) scale(1.02);
}

/* ================= EVENT CTA ================= */

.event-cta-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(31, 122, 77, 0.13), transparent 30%),
        linear-gradient(135deg, #eef8f1 0%, #fff8ec 100%);
}

.event-cta-section .container {
    position: relative;
    z-index: 2;
}

.event-cta-box {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border-radius: 30px;
    color: var(--white);
    background:
        radial-gradient(circle at 90% 20%, rgba(244, 162, 97, 0.28), transparent 32%),
        linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 30px 80px rgba(31, 122, 77, 0.28);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.event-cta-box span {
    display: inline-flex;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 8px;
}

.event-cta-box h2 {
    font-size: 34px;
    font-weight: 950;
    line-height: 1.15;
    margin-bottom: 10px;
}

.event-cta-box p {
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 0;
}

.event-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Animations */

@keyframes eventsHeroUp {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes eventsShapeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes eventsCardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

@keyframes campaignFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ================= EVENTS PAGE RESPONSIVE ================= */

@media (max-width: 991px) {
    .events-page-hero {
        padding: 54px 0;
    }

    .events-hero-wrapper {
        padding: 34px;
        border-radius: 30px;
        text-align: center;
    }

    .events-hero-content h1 {
        font-size: 42px;
        margin-left: auto;
        margin-right: auto;
    }

    .events-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .events-hero-actions {
        justify-content: center;
    }

    .events-breadcrumb .breadcrumb {
        justify-content: center;
    }

    .events-hero-side {
        margin-top: 10px;
    }

    .featured-campaign-img {
        height: 270px;
    }

    .featured-campaign-content {
        text-align: center;
    }

    .featured-info,
    .featured-actions {
        justify-content: center;
    }

    .event-gallery-strip {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .event-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 34px;
    }

    .event-cta-actions {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .events-page-hero {
        padding: 42px 0;
    }

    .events-hero-wrapper {
        padding: 24px 20px;
        border-radius: 26px;
    }

    .events-hero-content h1 {
        font-size: 34px;
        line-height: 1.12;
        letter-spacing: -0.8px;
    }

    .events-hero-content p {
        font-size: 15.5px;
        line-height: 1.65;
    }

    .events-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .events-hero-actions .btn {
        width: 100%;
    }

    .events-feature-card {
        padding: 15px;
        border-radius: 21px;
        text-align: left;
    }

    .events-feature-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        border-radius: 18px;
        font-size: 23px;
    }

    .events-feature-card h4 {
        font-size: 18px;
    }

    .events-feature-card p {
        font-size: 12.5px;
    }

    .events-mini-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .events-mini-card {
        min-height: auto;
        padding: 14px;
        border-radius: 18px;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        text-align: left;
    }

    .events-mini-card i {
        margin-bottom: 0;
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 14px;
        font-size: 19px;
    }

    .events-hero-shape {
        display: none;
    }

    .featured-campaign-section,
    .events-list-section,
    .event-gallery-strip-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .featured-campaign-box {
        padding: 18px;
        border-radius: 24px;
    }

    .featured-campaign-img {
        height: 220px;
        border-radius: 20px;
    }

    .featured-campaign-content h2,
    .event-gallery-content h2 {
        font-size: 26px;
    }

    .campaign-img {
        height: 170px;
    }

    .campaign-content {
        padding: 18px;
    }

    .event-filter-chips button {
        font-size: 12.5px;
        padding: 8px 12px;
    }

    .event-gallery-strip {
        padding: 20px;
        border-radius: 24px;
    }

    .event-gallery-grid {
        grid-template-columns: 1fr;
    }

    .event-gallery-grid img {
        height: 185px;
    }

    .event-cta-section {
        padding: 60px 0;
    }

    .event-cta-box {
        padding: 28px 20px;
        border-radius: 25px;
    }

    .event-cta-box h2 {
        font-size: 27px;
    }

    .event-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .event-cta-actions .btn {
        width: 100%;
    }
}

@media (max-width: 390px) {
    .events-hero-content h1 {
        font-size: 30px;
    }

    .campaign-content h4 {
        font-size: 18px;
    }

    .campaign-gallery-preview img,
    .campaign-gallery-preview span {
        width: 31px;
        height: 31px;
    }
}

/* ================= EVENTS PAGE HERO END CSS================= */

























/* ================= DONATION HERO ================= */

.donation-hero {
    position: relative;
    overflow: hidden;
    padding: 64px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(244, 162, 97, 0.20), transparent 30%),
        radial-gradient(circle at 88% 22%, rgba(31, 122, 77, 0.18), transparent 32%),
        radial-gradient(circle at 70% 88%, rgba(231, 111, 81, 0.10), transparent 28%),
        linear-gradient(135deg, #fff8ec 0%, #ffffff 45%, #eef8f1 100%);
}

.donation-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.80) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.04) 0px,
            rgba(31, 122, 77, 0.04) 1px,
            transparent 1px,
            transparent 20px);
    opacity: 0.68;
    pointer-events: none;
}

.donation-hero::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -260px;
    top: -260px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(31, 122, 77, 0.15) 0%,
            rgba(31, 122, 77, 0.08) 38%,
            transparent 70%);
    pointer-events: none;
}

.donation-hero .container {
    position: relative;
    z-index: 2;
}

.donation-hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: donationShapeFloat 5s ease-in-out infinite;
}

.donation-hero-shape.shape-one {
    width: 90px;
    height: 90px;
    left: 7%;
    top: 26%;
    background: rgba(244, 162, 97, 0.18);
}

.donation-hero-shape.shape-two {
    width: 70px;
    height: 70px;
    right: 12%;
    bottom: 18%;
    background: rgba(31, 122, 77, 0.14);
    animation-delay: 1s;
}

.donation-hero-wrapper {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.90), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.14);
    box-shadow:
        0 28px 76px rgba(31, 41, 51, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    animation: donationHeroUp 0.8s ease both;
}

.donation-hero-wrapper::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -100px;
    top: -100px;
    border-radius: 50%;
    background: rgba(31, 122, 77, 0.08);
    pointer-events: none;
}

.donation-hero-wrapper::after {
    content: "";
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 0;
    height: 4px;
    border-radius: 30px 30px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.donation-hero-content {
    position: relative;
    z-index: 2;
}

.donation-hero-badge {
    background: rgba(31, 122, 77, 0.08);
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.045);
}

.donation-hero-content h1 {
    max-width: 760px;
    font-size: 52px;
    font-weight: 950;
    line-height: 1.08;
    letter-spacing: -1.6px;
    color: var(--dark);
    margin-bottom: 16px;
}

.donation-hero-content h1::first-line {
    color: var(--primary-dark);
}

.donation-hero-content p {
    max-width: 690px;
    color: var(--text);
    font-size: 16.5px;
    line-height: 1.75;
    margin-bottom: 24px;
}

.donation-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.donation-hero-actions .btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.donation-breadcrumb .breadcrumb-item {
    font-size: 14px;
    font-weight: 700;
}

.donation-breadcrumb .breadcrumb-item a {
    color: var(--primary);
    font-weight: 900;
}

.donation-breadcrumb .breadcrumb-item.active {
    color: var(--text);
}

.donation-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(31, 122, 77, 0.45);
}

/* Hero Side */

.donation-hero-side {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 14px;
}

.donation-impact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(31, 122, 77, 0.96), rgba(20, 92, 57, 0.97));
    color: var(--white);
    box-shadow: 0 20px 46px rgba(31, 122, 77, 0.24);
    animation: donationCardFloat 4.5s ease-in-out infinite;
}

.donation-impact-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.donation-impact-card h4 {
    font-size: 22px;
    font-weight: 950;
    margin-bottom: 4px;
}

.donation-impact-card p {
    font-size: 13.5px;
    line-height: 1.5;
    opacity: 0.86;
    margin-bottom: 0;
}

.donation-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.donation-mini-card {
    min-height: 115px;
    padding: 18px 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(31, 122, 77, 0.10);
    box-shadow: 0 14px 32px rgba(31, 41, 51, 0.065);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.35s ease;
}

.donation-mini-card:hover {
    transform: translateY(-6px);
    background: rgba(31, 122, 77, 0.09);
    border-color: rgba(31, 122, 77, 0.18);
}

.donation-mini-card i {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    background:
        linear-gradient(135deg, rgba(31, 122, 77, 0.13), rgba(244, 162, 97, 0.16));
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    margin-bottom: 12px;
    transition: 0.35s ease;
}

.donation-mini-card:hover i {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: rotate(-5deg) scale(1.05);
}

.donation-mini-card h5 {
    color: var(--dark);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 0;
}

/* ================= WHY DONATE ================= */

.why-donate-section,
.donation-form-section,
.donation-support-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(31, 122, 77, 0.13), transparent 30%),
        radial-gradient(circle at 88% 78%, rgba(244, 162, 97, 0.18), transparent 32%),
        radial-gradient(circle at 50% 100%, rgba(231, 111, 81, 0.08), transparent 30%),
        linear-gradient(135deg, #eef8f1 0%, #ffffff 48%, #fff8ec 100%);
}

.why-donate-section::before,
.donation-form-section::before,
.donation-support-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.76) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.035) 0px,
            rgba(31, 122, 77, 0.035) 1px,
            transparent 1px,
            transparent 22px);
    opacity: 0.62;
    pointer-events: none;
}

.why-donate-section .container,
.donation-form-section .container,
.donation-support-section .container {
    position: relative;
    z-index: 2;
}

.donation-badge,
.donation-form-badge,
.payment-badge,
.tax-badge {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.055);
}

/* Why Cards */

.why-donate-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 215px;
    padding: 24px 20px;
    border-radius: 23px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow:
        0 16px 42px rgba(31, 41, 51, 0.075),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    transition: 0.35s ease;
    animation: donateFloat 5s ease-in-out infinite;
}

.why-donate-section .col-md-6:nth-child(2) .why-donate-card {
    animation-delay: 0.35s;
}

.why-donate-section .col-md-6:nth-child(3) .why-donate-card {
    animation-delay: 0.7s;
}

.why-donate-section .col-md-6:nth-child(4) .why-donate-card {
    animation-delay: 1.05s;
}

.why-donate-card::before {
    content: "";
    position: absolute;
    width: 125px;
    height: 125px;
    right: -55px;
    top: -55px;
    border-radius: 50%;
    background: rgba(31, 122, 77, 0.08);
    transition: 0.35s ease;
}

.why-donate-card::after {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: center;
    transition: 0.35s ease;
}

.why-donate-card:hover {
    transform: translateY(-8px);
    border-color: rgba(31, 122, 77, 0.22);
    box-shadow: 0 26px 62px rgba(31, 41, 51, 0.14);
    animation-play-state: paused;
}

.why-donate-card:hover::before {
    transform: scale(1.35);
    background: rgba(244, 162, 97, 0.16);
}

.why-donate-card:hover::after {
    transform: scaleX(1);
}

.why-icon {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(31, 122, 77, 0.13), rgba(244, 162, 97, 0.16));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    margin-bottom: 16px;
    transition: 0.35s ease;
}

.why-donate-card:hover .why-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: rotate(-5deg) scale(1.06);
}

.why-donate-card h4 {
    position: relative;
    z-index: 2;
    color: var(--dark);
    font-size: 19px;
    font-weight: 950;
    margin-bottom: 8px;
}

.why-donate-card p {
    position: relative;
    z-index: 2;
    color: var(--text);
    font-size: 13.8px;
    line-height: 1.58;
    margin-bottom: 0;
}

/* ================= FORM + PAYMENT ================= */

.donation-form-card,
.payment-details-card,
.tax-card,
.donation-contact-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 28px;
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow:
        0 18px 45px rgba(31, 41, 51, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    transition: 0.35s ease;
    animation: donateFloat 5s ease-in-out infinite;
}

.payment-details-card,
.donation-contact-card {
    animation-delay: 0.45s;
}

.donation-form-card:hover,
.payment-details-card:hover,
.tax-card:hover,
.donation-contact-card:hover {
    transform: translateY(-7px);
    border-color: rgba(31, 122, 77, 0.22);
    box-shadow: 0 28px 68px rgba(31, 41, 51, 0.14);
    animation-play-state: paused;
}

.donation-form-card h2,
.payment-details-card h2 {
    font-size: 30px;
    font-weight: 950;
    color: var(--dark);
    line-height: 1.16;
    margin-bottom: 10px;
}

.donation-form-text,
.payment-text {
    color: var(--text);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 22px;
}

.donation-form label {
    color: var(--dark);
    font-size: 13.5px;
    font-weight: 850;
    margin-bottom: 7px;
}

.donation-form .form-control,
.donation-form .form-select {
    min-height: 48px;
    border-radius: 15px;
    border: 1px solid rgba(31, 122, 77, 0.12);
    background: rgba(255, 255, 255, 0.78);
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    box-shadow: none;
}

.donation-form .form-control:focus,
.donation-form .form-select:focus {
    border-color: rgba(31, 122, 77, 0.45);
    box-shadow: 0 0 0 4px rgba(31, 122, 77, 0.08);
}

.donation-amount-options {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.donation-amount-options button {
    border: 1px solid rgba(31, 122, 77, 0.14);
    background: rgba(255, 255, 255, 0.78);
    color: var(--dark);
    padding: 9px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 900;
    transition: 0.3s ease;
}

.donation-amount-options button:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: translateY(-3px);
}

.donation-submit-btn {
    width: 100%;
    min-height: 52px;
}

/* QR + Payment */

.qr-box {
    padding: 14px;
    border-radius: 22px;
    background: rgba(31, 122, 77, 0.08);
    border: 1px dashed rgba(31, 122, 77, 0.26);
    margin-bottom: 20px;
}

.qr-placeholder {
    min-height: 150px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 900;
}

.qr-placeholder i {
    font-size: 50px;
    margin-bottom: 8px;
}

.payment-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.payment-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 12px 13px;
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(31, 122, 77, 0.08);
    transition: 0.3s ease;
}

.payment-list li:hover {
    background: rgba(31, 122, 77, 0.09);
    transform: translateX(5px);
}

.payment-list li>i {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 12px;
    background: rgba(31, 122, 77, 0.10);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.payment-list strong {
    display: block;
    color: var(--dark);
    font-size: 13.5px;
    font-weight: 900;
    margin-bottom: 3px;
}

.payment-list span {
    display: block;
    color: var(--text);
    font-size: 13.5px;
    font-weight: 700;
}

/* ================= TAX SUPPORT ================= */

.tax-card,
.donation-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.tax-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(31, 122, 77, 0.13), rgba(244, 162, 97, 0.16));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.tax-card h3,
.donation-contact-card h3 {
    color: var(--dark);
    font-size: 24px;
    font-weight: 950;
    margin: 12px 0 8px;
}

.tax-card p,
.donation-contact-card p {
    color: var(--text);
    font-size: 14.5px;
    line-height: 1.62;
}

.tax-card ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    gap: 8px;
}

.tax-card li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
    font-size: 13.5px;
    font-weight: 800;
}

.tax-card li i {
    color: var(--primary);
}

.donation-support-links {
    display: grid;
    gap: 9px;
    margin-top: 15px;
}

.donation-support-links a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 900;
}

.donation-support-links i {
    width: 32px;
    height: 32px;
    border-radius: 11px;
    background: rgba(31, 122, 77, 0.10);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ================= DONATION CTA ================= */

.donation-cta-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(31, 122, 77, 0.13), transparent 30%),
        linear-gradient(135deg, #eef8f1 0%, #fff8ec 100%);
}

.donation-cta-section .container {
    position: relative;
    z-index: 2;
}

.donation-cta-box {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border-radius: 30px;
    color: var(--white);
    background:
        radial-gradient(circle at 90% 20%, rgba(244, 162, 97, 0.28), transparent 32%),
        linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 30px 80px rgba(31, 122, 77, 0.28);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.donation-cta-box span {
    display: inline-flex;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 8px;
}

.donation-cta-box h2 {
    font-size: 34px;
    font-weight: 950;
    line-height: 1.15;
    margin-bottom: 10px;
}

.donation-cta-box p {
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 0;
}

.donation-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Animations */

@keyframes donationHeroUp {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes donationShapeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes donationCardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

@keyframes donateFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ================= DONATION RESPONSIVE ================= */

@media (max-width: 991px) {
    .donation-hero {
        padding: 54px 0;
    }

    .donation-hero-wrapper {
        padding: 34px;
        border-radius: 30px;
        text-align: center;
    }

    .donation-hero-content h1 {
        font-size: 42px;
        margin-left: auto;
        margin-right: auto;
    }

    .donation-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .donation-hero-actions {
        justify-content: center;
    }

    .donation-breadcrumb .breadcrumb {
        justify-content: center;
    }

    .donation-hero-side {
        margin-top: 10px;
    }

    .donation-form-card,
    .payment-details-card,
    .tax-card,
    .donation-contact-card {
        padding: 26px;
        border-radius: 26px;
    }

    .donation-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 34px;
    }

    .donation-cta-actions {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .donation-hero {
        padding: 42px 0;
    }

    .donation-hero-wrapper {
        padding: 24px 20px;
        border-radius: 26px;
    }

    .donation-hero-content h1 {
        font-size: 34px;
        line-height: 1.12;
        letter-spacing: -0.8px;
    }

    .donation-hero-content p {
        font-size: 15.5px;
        line-height: 1.65;
    }

    .donation-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .donation-hero-actions .btn {
        width: 100%;
    }

    .donation-impact-card {
        padding: 15px;
        border-radius: 21px;
        text-align: left;
    }

    .donation-impact-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        border-radius: 18px;
        font-size: 23px;
    }

    .donation-impact-card h4 {
        font-size: 18px;
    }

    .donation-impact-card p {
        font-size: 12.5px;
    }

    .donation-mini-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .donation-mini-card {
        min-height: auto;
        padding: 14px;
        border-radius: 18px;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        text-align: left;
    }

    .donation-mini-card i {
        margin-bottom: 0;
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 14px;
        font-size: 19px;
    }

    .donation-hero-shape {
        display: none;
    }

    .why-donate-section,
    .donation-form-section,
    .donation-support-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .why-donate-card {
        min-height: auto;
        padding: 22px;
        border-radius: 21px;
    }

    .donation-form-card,
    .payment-details-card,
    .tax-card,
    .donation-contact-card {
        padding: 22px;
        border-radius: 23px;
    }

    .donation-form-card h2,
    .payment-details-card h2 {
        font-size: 26px;
    }

    .donation-amount-options {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .donation-amount-options button {
        width: 100%;
    }

    .qr-placeholder {
        min-height: 130px;
    }

    .tax-card,
    .donation-contact-card {
        flex-direction: column;
    }

    .donation-cta-section {
        padding: 60px 0;
    }

    .donation-cta-box {
        padding: 28px 20px;
        border-radius: 25px;
    }

    .donation-cta-box h2 {
        font-size: 27px;
    }

    .donation-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .donation-cta-actions .btn {
        width: 100%;
    }
}

@media (max-width: 390px) {
    .donation-hero-content h1 {
        font-size: 30px;
    }

    .donation-form-card,
    .payment-details-card {
        padding: 19px;
    }

    .payment-list li {
        gap: 9px;
    }
}

/* ================= DONATION PAGE END CSS ================= */

























/* ================= GALLERY PAGE HERO ================= */

.gallery-page-hero {
    position: relative;
    overflow: hidden;
    padding: 64px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(244, 162, 97, 0.20), transparent 30%),
        radial-gradient(circle at 88% 22%, rgba(31, 122, 77, 0.18), transparent 32%),
        radial-gradient(circle at 70% 88%, rgba(231, 111, 81, 0.10), transparent 28%),
        linear-gradient(135deg, #fff8ec 0%, #ffffff 45%, #eef8f1 100%);
}

.gallery-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.80) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.04) 0px,
            rgba(31, 122, 77, 0.04) 1px,
            transparent 1px,
            transparent 20px);
    opacity: 0.68;
    pointer-events: none;
}

.gallery-page-hero::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -260px;
    top: -260px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(31, 122, 77, 0.15) 0%,
            rgba(31, 122, 77, 0.08) 38%,
            transparent 70%);
    pointer-events: none;
}

.gallery-page-hero .container {
    position: relative;
    z-index: 2;
}

.gallery-hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: galleryShapeFloat 5s ease-in-out infinite;
}

.gallery-shape-one {
    width: 90px;
    height: 90px;
    left: 7%;
    top: 26%;
    background: rgba(244, 162, 97, 0.18);
}

.gallery-shape-two {
    width: 70px;
    height: 70px;
    right: 12%;
    bottom: 18%;
    background: rgba(31, 122, 77, 0.14);
    animation-delay: 1s;
}

.gallery-hero-wrapper {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.90), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.14);
    box-shadow:
        0 28px 76px rgba(31, 41, 51, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    animation: galleryHeroUp 0.8s ease both;
}

.gallery-hero-wrapper::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -100px;
    top: -100px;
    border-radius: 50%;
    background: rgba(31, 122, 77, 0.08);
    pointer-events: none;
}

.gallery-hero-wrapper::after {
    content: "";
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 0;
    height: 4px;
    border-radius: 30px 30px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.gallery-hero-content {
    position: relative;
    z-index: 2;
}

.gallery-hero-badge {
    background: rgba(31, 122, 77, 0.08);
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.045);
}

.gallery-hero-content h1 {
    max-width: 760px;
    font-size: 52px;
    font-weight: 950;
    line-height: 1.08;
    letter-spacing: -1.6px;
    color: var(--dark);
    margin-bottom: 16px;
}

.gallery-hero-content h1::first-line {
    color: var(--primary-dark);
}

.gallery-hero-content p {
    max-width: 690px;
    color: var(--text);
    font-size: 16.5px;
    line-height: 1.75;
    margin-bottom: 24px;
}

.gallery-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.gallery-hero-actions .btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gallery-breadcrumb .breadcrumb-item {
    font-size: 14px;
    font-weight: 700;
}

.gallery-breadcrumb .breadcrumb-item a {
    color: var(--primary);
    font-weight: 900;
}

.gallery-breadcrumb .breadcrumb-item.active {
    color: var(--text);
}

.gallery-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(31, 122, 77, 0.45);
}

/* Hero Right */

.gallery-hero-side {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 14px;
}

.gallery-feature-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(31, 122, 77, 0.96), rgba(20, 92, 57, 0.97));
    color: var(--white);
    box-shadow: 0 20px 46px rgba(31, 122, 77, 0.24);
    animation: galleryCardFloat 4.5s ease-in-out infinite;
}

.gallery-feature-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.gallery-feature-card h4 {
    font-size: 22px;
    font-weight: 950;
    margin-bottom: 4px;
}

.gallery-feature-card p {
    font-size: 13.5px;
    line-height: 1.5;
    opacity: 0.86;
    margin-bottom: 0;
}

.gallery-hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
}

.gallery-hero-grid img {
    width: 100%;
    height: 118px;
    object-fit: cover;
    border-radius: 20px;
    border: 4px solid rgba(255, 255, 255, 0.88);
    box-shadow: 0 14px 32px rgba(31, 41, 51, 0.10);
    transition: 0.35s ease;
}

.gallery-hero-grid img:nth-child(1),
.gallery-hero-grid img:nth-child(4) {
    transform: translateY(10px);
}

.gallery-hero-grid img:hover {
    transform: translateY(-1px);
}

/* ================= COMMON GALLERY BACKGROUNDS ================= */

.photo-gallery-section,
.event-wise-gallery-section,
.video-gallery-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(31, 122, 77, 0.13), transparent 30%),
        radial-gradient(circle at 88% 78%, rgba(244, 162, 97, 0.18), transparent 32%),
        radial-gradient(circle at 50% 100%, rgba(231, 111, 81, 0.08), transparent 30%),
        linear-gradient(135deg, #eef8f1 0%, #ffffff 48%, #fff8ec 100%);
}

.photo-gallery-section::before,
.event-wise-gallery-section::before,
.video-gallery-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.76) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.035) 0px,
            rgba(31, 122, 77, 0.035) 1px,
            transparent 1px,
            transparent 22px);
    opacity: 0.62;
    pointer-events: none;
}

.photo-gallery-section .container,
.event-wise-gallery-section .container,
.video-gallery-section .container {
    position: relative;
    z-index: 2;
}

.photo-gallery-badge,
.event-wise-badge,
.video-badge {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.055);
}

/* Filter Chips */

.gallery-filter-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
    margin-top: 24px;
}

.gallery-filter-chips button {
    border: 1px solid rgba(31, 122, 77, 0.14);
    background: rgba(255, 255, 255, 0.78);
    color: var(--dark);
    padding: 9px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 900;
    transition: 0.3s ease;
}

.gallery-filter-chips button:hover,
.gallery-filter-chips button.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: translateY(-3px);
}

/* ================= PREMIUM MASONRY GALLERY ================= */

.premium-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 170px;
    gap: 18px;
}

.premium-gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: var(--white);
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow:
        0 16px 42px rgba(31, 41, 51, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    transition: 0.35s ease;
    animation: galleryItemFloat 5s ease-in-out infinite;
}

.premium-gallery-card:nth-child(2) {
    animation-delay: 0.25s;
}

.premium-gallery-card:nth-child(3) {
    animation-delay: 0.5s;
}

.premium-gallery-card:nth-child(4) {
    animation-delay: 0.75s;
}

.premium-gallery-card:nth-child(5) {
    animation-delay: 1s;
}

.premium-gallery-card:nth-child(6) {
    animation-delay: 1.25s;
}

.premium-gallery-card:nth-child(7) {
    animation-delay: 1.5s;
}

.premium-gallery-card.tall {
    grid-row: span 2;
}

.premium-gallery-card.wide {
    grid-column: span 2;
}

.premium-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.55s ease;
}

.premium-gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.62)),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 34%);
    opacity: 0.8;
    transition: 0.35s ease;
    pointer-events: none;
}

.gallery-card-overlay {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.gallery-card-overlay span {
    color: var(--white);
    font-size: 14.5px;
    font-weight: 900;
    text-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.gallery-card-overlay i {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.90);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    box-shadow: 0 12px 28px rgba(31, 41, 51, 0.18);
    transition: 0.35s ease;
}

.premium-gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(31, 41, 51, 0.16);
    animation-play-state: paused;
}

.premium-gallery-card:hover img {
    transform: scale(1.08);
}

.premium-gallery-card:hover .gallery-card-overlay i {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: rotate(8deg) scale(1.05);
}

/* ================= CSS LIGHTBOX ================= */

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(8, 19, 15, 0.92);
    backdrop-filter: blur(10px);
}

.gallery-lightbox:target {
    display: flex;
}

.gallery-lightbox img {
    max-width: min(100%, 980px);
    max-height: 84vh;
    object-fit: contain;
    border-radius: 24px;
    border: 8px solid rgba(255, 255, 255, 0.88);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
    animation: lightboxZoom 0.35s ease both;
}

.lightbox-close {
    position: fixed;
    top: 22px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--white);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    z-index: 100000;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

/* ================= EVENT-WISE GALLERY ================= */

.event-gallery-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow:
        0 16px 42px rgba(31, 41, 51, 0.075),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    transition: 0.35s ease;
    animation: galleryItemFloat 5s ease-in-out infinite;
}

.event-wise-gallery-section .col-md-6:nth-child(2) .event-gallery-card {
    animation-delay: 0.35s;
}

.event-wise-gallery-section .col-md-6:nth-child(3) .event-gallery-card {
    animation-delay: 0.7s;
}

.event-gallery-card::after {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: center;
    transition: 0.35s ease;
}

.event-gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 62px rgba(31, 41, 51, 0.14);
    animation-play-state: paused;
}

.event-gallery-card:hover::after {
    transform: scaleX(1);
}

.event-gallery-cover {
    position: relative;
    overflow: hidden;
    height: 175px;
}

.event-gallery-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s ease;
}

.event-gallery-card:hover .event-gallery-cover img {
    transform: scale(1.08);
}

.event-gallery-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.42)),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.20), transparent 34%);
}

.event-gallery-cover span {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 2;
    padding: 7px 12px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
}

.event-gallery-content {
    padding: 20px;
}

.event-gallery-date {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 850;
    margin-bottom: 9px;
}

.event-gallery-content h4 {
    font-size: 20px;
    font-weight: 950;
    color: var(--dark);
    margin-bottom: 8px;
}

.event-gallery-content p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.58;
    margin-bottom: 14px;
}

.event-gallery-content a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 900;
    transition: 0.3s ease;
}

.event-gallery-content a:hover {
    color: var(--accent);
}

.event-gallery-content a i {
    transition: 0.3s ease;
}

.event-gallery-content a:hover i {
    transform: translateX(4px);
}

/* ================= VIDEO GALLERY ================= */

.video-gallery-box {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 18px 45px rgba(31, 41, 51, 0.08);
}

.video-gallery-content h2 {
    font-size: 34px;
    font-weight: 950;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 12px;
}

.video-gallery-content p {
    color: var(--text);
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.video-card {
    padding: 14px;
    border-radius: 24px;
    background: rgba(31, 122, 77, 0.06);
    border: 1px solid rgba(31, 122, 77, 0.10);
    transition: 0.35s ease;
}

.video-card:hover {
    transform: translateY(-6px);
    background: rgba(244, 162, 97, 0.10);
}

.video-thumb {
    position: relative;
    overflow: hidden;
    height: 190px;
    border-radius: 20px;
    margin-bottom: 13px;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s ease;
}

.video-card:hover .video-thumb img {
    transform: scale(1.08);
}

.video-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(8, 19, 15, 0.25);
}

.video-play {
    position: absolute;
    inset: 0;
    margin: auto;
    z-index: 2;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
    transition: 0.35s ease;
}

.video-card:hover .video-play {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: scale(1.08);
}

.video-card h4 {
    color: var(--dark);
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 0;
}

/* ================= GALLERY CTA ================= */

.gallery-cta-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(31, 122, 77, 0.13), transparent 30%),
        linear-gradient(135deg, #eef8f1 0%, #fff8ec 100%);
}

.gallery-cta-section .container {
    position: relative;
    z-index: 2;
}

.gallery-cta-box {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border-radius: 30px;
    color: var(--white);
    background:
        radial-gradient(circle at 90% 20%, rgba(244, 162, 97, 0.28), transparent 32%),
        linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 30px 80px rgba(31, 122, 77, 0.28);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.gallery-cta-box span {
    display: inline-flex;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 8px;
}

.gallery-cta-box h2 {
    font-size: 34px;
    font-weight: 950;
    line-height: 1.15;
    margin-bottom: 10px;
}

.gallery-cta-box p {
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 0;
}

.gallery-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ================= ANIMATIONS ================= */

@keyframes galleryHeroUp {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes galleryShapeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes galleryCardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

@keyframes galleryItemFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes lightboxZoom {
    0% {
        opacity: 0;
        transform: scale(0.92);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ================= GALLERY RESPONSIVE ================= */

@media (max-width: 991px) {
    .gallery-page-hero {
        padding: 54px 0;
    }

    .gallery-hero-wrapper {
        padding: 34px;
        border-radius: 30px;
        text-align: center;
    }

    .gallery-hero-content h1 {
        font-size: 42px;
        margin-left: auto;
        margin-right: auto;
    }

    .gallery-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .gallery-hero-actions {
        justify-content: center;
    }

    .gallery-breadcrumb .breadcrumb {
        justify-content: center;
    }

    .gallery-hero-side {
        margin-top: 10px;
    }

    .premium-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .video-gallery-box {
        padding: 26px;
    }

    .video-gallery-content {
        text-align: center;
    }

    .gallery-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 34px;
    }

    .gallery-cta-actions {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .gallery-page-hero {
        padding: 42px 0;
    }

    .gallery-hero-wrapper {
        padding: 24px 20px;
        border-radius: 26px;
    }

    .gallery-hero-content h1 {
        font-size: 34px;
        line-height: 1.12;
        letter-spacing: -0.8px;
    }

    .gallery-hero-content p {
        font-size: 15.5px;
        line-height: 1.65;
    }

    .gallery-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .gallery-hero-actions .btn {
        width: 100%;
    }

    .gallery-feature-card {
        padding: 15px;
        border-radius: 21px;
        text-align: left;
    }

    .gallery-feature-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        border-radius: 18px;
        font-size: 23px;
    }

    .gallery-feature-card h4 {
        font-size: 18px;
    }

    .gallery-feature-card p {
        font-size: 12.5px;
    }

    .gallery-hero-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 9px;
    }

    .gallery-hero-grid img {
        height: 95px;
        border-radius: 16px;
    }

    .gallery-hero-shape {
        display: none;
    }

    .photo-gallery-section,
    .event-wise-gallery-section,
    .video-gallery-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .gallery-filter-chips button {
        font-size: 12.5px;
        padding: 8px 12px;
    }

    .premium-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
        gap: 16px;
    }

    .premium-gallery-card.tall,
    .premium-gallery-card.wide {
        grid-row: span 1;
        grid-column: span 1;
    }

    .gallery-lightbox {
        padding: 16px;
    }

    .gallery-lightbox img {
        border-width: 5px;
        border-radius: 18px;
    }

    .lightbox-close {
        top: 14px;
        right: 14px;
        width: 42px;
        height: 42px;
        border-radius: 14px;
        font-size: 18px;
    }

    .event-gallery-cover {
        height: 170px;
    }

    .event-gallery-content {
        padding: 18px;
    }

    .video-gallery-box {
        padding: 20px;
        border-radius: 24px;
    }

    .video-gallery-content h2 {
        font-size: 27px;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-thumb {
        height: 180px;
    }

    .gallery-cta-section {
        padding: 60px 0;
    }

    .gallery-cta-box {
        padding: 28px 20px;
        border-radius: 25px;
    }

    .gallery-cta-box h2 {
        font-size: 27px;
    }

    .gallery-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .gallery-cta-actions .btn {
        width: 100%;
    }
}

@media (max-width: 390px) {
    .gallery-hero-content h1 {
        font-size: 30px;
    }

    .premium-gallery-grid {
        grid-auto-rows: 200px;
    }

    .gallery-card-overlay span {
        font-size: 13.5px;
    }

    .video-thumb {
        height: 165px;
    }
}




























/* ================= BLOG PAGE HERO ================= */

.blog-page-hero {
    position: relative;
    overflow: hidden;
    padding: 64px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(244, 162, 97, 0.20), transparent 30%),
        radial-gradient(circle at 88% 22%, rgba(31, 122, 77, 0.18), transparent 32%),
        radial-gradient(circle at 70% 88%, rgba(231, 111, 81, 0.10), transparent 28%),
        linear-gradient(135deg, #fff8ec 0%, #ffffff 45%, #eef8f1 100%);
}

.blog-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.80) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.04) 0px,
            rgba(31, 122, 77, 0.04) 1px,
            transparent 1px,
            transparent 20px);
    opacity: 0.68;
    pointer-events: none;
}

.blog-page-hero::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -260px;
    top: -260px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(31, 122, 77, 0.15) 0%,
            rgba(31, 122, 77, 0.08) 38%,
            transparent 70%);
    pointer-events: none;
}

.blog-page-hero .container {
    position: relative;
    z-index: 2;
}

.blog-hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: blogShapeFloat 5s ease-in-out infinite;
}

.blog-shape-one {
    width: 90px;
    height: 90px;
    left: 7%;
    top: 26%;
    background: rgba(244, 162, 97, 0.18);
}

.blog-shape-two {
    width: 70px;
    height: 70px;
    right: 12%;
    bottom: 18%;
    background: rgba(31, 122, 77, 0.14);
    animation-delay: 1s;
}

.blog-hero-wrapper {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.90), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.14);
    box-shadow:
        0 28px 76px rgba(31, 41, 51, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    animation: blogHeroUp 0.8s ease both;
}

.blog-hero-wrapper::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -100px;
    top: -100px;
    border-radius: 50%;
    background: rgba(31, 122, 77, 0.08);
    pointer-events: none;
}

.blog-hero-wrapper::after {
    content: "";
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 0;
    height: 4px;
    border-radius: 30px 30px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.blog-hero-content {
    position: relative;
    z-index: 2;
}

.blog-hero-badge {
    background: rgba(31, 122, 77, 0.08);
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.045);
}

.blog-hero-content h1 {
    max-width: 760px;
    font-size: 52px;
    font-weight: 950;
    line-height: 1.08;
    letter-spacing: -1.6px;
    color: var(--dark);
    margin-bottom: 16px;
}

.blog-hero-content h1::first-line {
    color: var(--primary-dark);
}

.blog-hero-content p {
    max-width: 690px;
    color: var(--text);
    font-size: 16.5px;
    line-height: 1.75;
    margin-bottom: 24px;
}

.blog-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.blog-hero-actions .btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.blog-breadcrumb .breadcrumb-item {
    font-size: 14px;
    font-weight: 700;
}

.blog-breadcrumb .breadcrumb-item a {
    color: var(--primary);
    font-weight: 900;
}

.blog-breadcrumb .breadcrumb-item.active {
    color: var(--text);
}

.blog-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(31, 122, 77, 0.45);
}

/* Hero Side */

.blog-hero-side {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 14px;
}

.blog-feature-note {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(31, 122, 77, 0.96), rgba(20, 92, 57, 0.97));
    color: var(--white);
    box-shadow: 0 20px 46px rgba(31, 122, 77, 0.24);
    animation: blogSideFloat 4.5s ease-in-out infinite;
}

.blog-feature-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.blog-feature-note h4 {
    font-size: 22px;
    font-weight: 950;
    margin-bottom: 4px;
}

.blog-feature-note p {
    font-size: 13.5px;
    line-height: 1.5;
    opacity: 0.86;
    margin-bottom: 0;
}

.blog-topic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.blog-topic-card {
    min-height: 115px;
    padding: 18px 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(31, 122, 77, 0.10);
    box-shadow: 0 14px 32px rgba(31, 41, 51, 0.065);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.35s ease;
}

.blog-topic-card:hover {
    transform: translateY(-6px);
    background: rgba(31, 122, 77, 0.09);
    border-color: rgba(31, 122, 77, 0.18);
}

.blog-topic-card i {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    background:
        linear-gradient(135deg, rgba(31, 122, 77, 0.13), rgba(244, 162, 97, 0.16));
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    margin-bottom: 12px;
    transition: 0.35s ease;
}

.blog-topic-card:hover i {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: rotate(-5deg) scale(1.05);
}

.blog-topic-card h5 {
    color: var(--dark);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 0;
}

/* ================= COMMON BLOG BACKGROUND ================= */

.featured-blog-section,
.blog-list-section,
.blog-topics-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(31, 122, 77, 0.13), transparent 30%),
        radial-gradient(circle at 88% 78%, rgba(244, 162, 97, 0.18), transparent 32%),
        radial-gradient(circle at 50% 100%, rgba(231, 111, 81, 0.08), transparent 30%),
        linear-gradient(135deg, #eef8f1 0%, #ffffff 48%, #fff8ec 100%);
}

.featured-blog-section::before,
.blog-list-section::before,
.blog-topics-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.76) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.035) 0px,
            rgba(31, 122, 77, 0.035) 1px,
            transparent 1px,
            transparent 22px);
    opacity: 0.62;
    pointer-events: none;
}

.featured-blog-section .container,
.blog-list-section .container,
.blog-topics-section .container {
    position: relative;
    z-index: 2;
}

.featured-blog-badge,
.blog-list-badge,
.blog-topics-badge {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.055);
}

/* ================= FEATURED BLOG ================= */

.featured-blog-box {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow:
        0 18px 45px rgba(31, 41, 51, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    transition: 0.35s ease;
}

.featured-blog-box:hover {
    transform: translateY(-7px);
    box-shadow:
        0 28px 68px rgba(31, 41, 51, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.featured-blog-img {
    position: relative;
    overflow: hidden;
    height: 305px;
    border-radius: 24px;
    border: 6px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 40px rgba(31, 41, 51, 0.12);
}

.featured-blog-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.36)),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.20), transparent 34%);
}

.featured-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s ease;
}

.featured-blog-box:hover .featured-blog-img img {
    transform: scale(1.06);
}

.featured-blog-tag {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 2;
    padding: 8px 13px;
    border-radius: 50px;
    background: var(--secondary);
    color: var(--dark);
    font-size: 12px;
    font-weight: 900;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 13px;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text);
    font-size: 12.5px;
    font-weight: 800;
}

.blog-meta i {
    color: var(--accent);
}

.featured-blog-content h2 {
    font-size: 34px;
    font-weight: 950;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 12px;
}

.featured-blog-content p {
    color: var(--text);
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ================= BLOG LIST ================= */

.blog-filter-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
    margin-top: 24px;
}

.blog-filter-chips button {
    border: 1px solid rgba(31, 122, 77, 0.14);
    background: rgba(255, 255, 255, 0.78);
    color: var(--dark);
    padding: 9px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 900;
    transition: 0.3s ease;
}

.blog-filter-chips button:hover,
.blog-filter-chips button.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: translateY(-3px);
}

/* Blog Card */

.blog-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow:
        0 16px 42px rgba(31, 41, 51, 0.075),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    transition: 0.35s ease;
    animation: blogCardFloat 5s ease-in-out infinite;
}

.blog-list-section .col-md-6:nth-child(2) .blog-card {
    animation-delay: 0.3s;
}

.blog-list-section .col-md-6:nth-child(3) .blog-card {
    animation-delay: 0.6s;
}

.blog-list-section .col-md-6:nth-child(4) .blog-card {
    animation-delay: 0.9s;
}

.blog-list-section .col-md-6:nth-child(5) .blog-card {
    animation-delay: 1.2s;
}

.blog-list-section .col-md-6:nth-child(6) .blog-card {
    animation-delay: 1.5s;
}

.blog-card::after {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: center;
    transition: 0.35s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(31, 122, 77, 0.22);
    box-shadow:
        0 26px 62px rgba(31, 41, 51, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    animation-play-state: paused;
}

.blog-card:hover::after {
    transform: scaleX(1);
}

.blog-card-img {
    position: relative;
    height: 178px;
    overflow: hidden;
}

.blog-card-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.42)),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.20), transparent 34%);
    pointer-events: none;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.08);
}

.blog-category {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 2;
    padding: 7px 11px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--primary);
    font-size: 11.5px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.14);
}

.blog-card-content {
    padding: 20px;
}

.blog-card-content h4 {
    font-size: 20px;
    line-height: 1.32;
    font-weight: 950;
    margin-bottom: 10px;
}

.blog-card-content h4 a {
    color: var(--dark);
    transition: 0.3s ease;
}

.blog-card-content h4 a:hover {
    color: var(--primary);
}

.blog-card-content p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.58;
    margin-bottom: 14px;
}

.blog-read-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 900;
    transition: 0.3s ease;
}

.blog-read-link i {
    transition: 0.3s ease;
}

.blog-read-link:hover {
    color: var(--accent);
}

.blog-read-link:hover i {
    transform: translateX(4px);
}

/* Pagination */

.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 42px;
}

.blog-pagination a {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(31, 122, 77, 0.12);
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    transition: 0.3s ease;
}

.blog-pagination a:hover,
.blog-pagination a.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: translateY(-4px);
}

/* ================= TOPIC CARDS ================= */

.topic-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 205px;
    padding: 24px 20px;
    border-radius: 23px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow:
        0 16px 42px rgba(31, 41, 51, 0.075),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    transition: 0.35s ease;
    animation: blogCardFloat 5s ease-in-out infinite;
}

.blog-topics-section .col-md-6:nth-child(2) .topic-card {
    animation-delay: 0.35s;
}

.blog-topics-section .col-md-6:nth-child(3) .topic-card {
    animation-delay: 0.7s;
}

.blog-topics-section .col-md-6:nth-child(4) .topic-card {
    animation-delay: 1.05s;
}

.topic-card::before {
    content: "";
    position: absolute;
    width: 125px;
    height: 125px;
    right: -55px;
    top: -55px;
    border-radius: 50%;
    background: rgba(31, 122, 77, 0.08);
    transition: 0.35s ease;
}

.topic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 62px rgba(31, 41, 51, 0.14);
    animation-play-state: paused;
}

.topic-card:hover::before {
    transform: scale(1.35);
    background: rgba(244, 162, 97, 0.16);
}

.topic-card>i {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(31, 122, 77, 0.13), rgba(244, 162, 97, 0.16));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    margin-bottom: 16px;
    transition: 0.35s ease;
}

.topic-card:hover>i {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: rotate(-5deg) scale(1.06);
}

.topic-card h4 {
    position: relative;
    z-index: 2;
    color: var(--dark);
    font-size: 18px;
    font-weight: 950;
    margin-bottom: 8px;
}

.topic-card p {
    position: relative;
    z-index: 2;
    color: var(--text);
    font-size: 13.5px;
    line-height: 1.58;
    margin-bottom: 0;
}

/* ================= NEWSLETTER ================= */

.blog-newsletter-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(31, 122, 77, 0.13), transparent 30%),
        linear-gradient(135deg, #eef8f1 0%, #fff8ec 100%);
}

.blog-newsletter-section .container {
    position: relative;
    z-index: 2;
}

.blog-newsletter-box {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border-radius: 30px;
    color: var(--white);
    background:
        radial-gradient(circle at 90% 20%, rgba(244, 162, 97, 0.28), transparent 32%),
        linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 30px 80px rgba(31, 122, 77, 0.28);
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
    gap: 24px;
}

.blog-newsletter-box span {
    display: inline-flex;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 8px;
}

.blog-newsletter-box h2 {
    font-size: 34px;
    font-weight: 950;
    line-height: 1.15;
    margin-bottom: 10px;
}

.blog-newsletter-box p {
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 0;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.newsletter-form input {
    flex: 1;
    min-height: 48px;
    border: 0;
    outline: none;
    border-radius: 999px;
    padding: 0 16px;
    background: var(--white);
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
}

.newsletter-form button {
    min-height: 48px;
    border: 0;
    border-radius: 999px;
    padding: 0 20px;
    background: var(--secondary);
    color: var(--dark);
    font-size: 14px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

/* ================= BLOG ANIMATIONS ================= */

@keyframes blogHeroUp {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blogShapeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes blogSideFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

@keyframes blogCardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ================= BLOG RESPONSIVE ================= */

@media (max-width: 991px) {
    .blog-page-hero {
        padding: 54px 0;
    }

    .blog-hero-wrapper {
        padding: 34px;
        border-radius: 30px;
        text-align: center;
    }

    .blog-hero-content h1 {
        font-size: 42px;
        margin-left: auto;
        margin-right: auto;
    }

    .blog-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .blog-hero-actions {
        justify-content: center;
    }

    .blog-breadcrumb .breadcrumb {
        justify-content: center;
    }

    .blog-hero-side {
        margin-top: 10px;
    }

    .featured-blog-content {
        text-align: center;
    }

    .featured-blog-content .blog-meta {
        justify-content: center;
    }

    .featured-blog-img {
        height: 270px;
    }

    .blog-newsletter-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 34px;
    }
}

@media (max-width: 575px) {
    .blog-page-hero {
        padding: 42px 0;
    }

    .blog-hero-wrapper {
        padding: 24px 20px;
        border-radius: 26px;
    }

    .blog-hero-content h1 {
        font-size: 34px;
        line-height: 1.12;
        letter-spacing: -0.8px;
    }

    .blog-hero-content p {
        font-size: 15.5px;
        line-height: 1.65;
    }

    .blog-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .blog-hero-actions .btn {
        width: 100%;
    }

    .blog-feature-note {
        padding: 15px;
        border-radius: 21px;
        text-align: left;
    }

    .blog-feature-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        border-radius: 18px;
        font-size: 23px;
    }

    .blog-feature-note h4 {
        font-size: 18px;
    }

    .blog-feature-note p {
        font-size: 12.5px;
    }

    .blog-topic-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .blog-topic-card {
        min-height: auto;
        padding: 14px;
        border-radius: 18px;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        text-align: left;
    }

    .blog-topic-card i {
        margin-bottom: 0;
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 14px;
        font-size: 19px;
    }

    .blog-hero-shape {
        display: none;
    }

    .featured-blog-section,
    .blog-list-section,
    .blog-topics-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .featured-blog-box {
        padding: 18px;
        border-radius: 24px;
    }

    .featured-blog-img {
        height: 220px;
        border-radius: 20px;
    }

    .featured-blog-content h2 {
        font-size: 26px;
    }

    .blog-filter-chips button {
        font-size: 12.5px;
        padding: 8px 12px;
    }

    .blog-card-img {
        height: 170px;
    }

    .blog-card-content {
        padding: 18px;
    }

    .blog-card-content h4 {
        font-size: 18px;
    }

    .topic-card {
        min-height: auto;
        padding: 22px;
        border-radius: 21px;
    }

    .blog-newsletter-section {
        padding: 60px 0;
    }

    .blog-newsletter-box {
        padding: 28px 20px;
        border-radius: 25px;
    }

    .blog-newsletter-box h2 {
        font-size: 27px;
    }

    .newsletter-form {
        display: grid;
        grid-template-columns: 1fr;
        border-radius: 22px;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 390px) {
    .blog-hero-content h1 {
        font-size: 30px;
    }

    .blog-card-content h4 {
        font-size: 17px;
    }

    .blog-pagination a {
        width: 38px;
        height: 38px;
        border-radius: 13px;
    }
}





























/* ================= CONTACT PAGE HERO ================= */

.contact-page-hero {
    position: relative;
    overflow: hidden;
    padding: 64px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(244, 162, 97, 0.20), transparent 30%),
        radial-gradient(circle at 88% 22%, rgba(31, 122, 77, 0.18), transparent 32%),
        radial-gradient(circle at 70% 88%, rgba(231, 111, 81, 0.10), transparent 28%),
        linear-gradient(135deg, #fff8ec 0%, #ffffff 45%, #eef8f1 100%);
}

.contact-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.80) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.04) 0px,
            rgba(31, 122, 77, 0.04) 1px,
            transparent 1px,
            transparent 20px);
    opacity: 0.68;
    pointer-events: none;
}

.contact-page-hero::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -260px;
    top: -260px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(31, 122, 77, 0.15) 0%,
            rgba(31, 122, 77, 0.08) 38%,
            transparent 70%);
    pointer-events: none;
}

.contact-page-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: contactShapeFloat 5s ease-in-out infinite;
}

.contact-shape-one {
    width: 90px;
    height: 90px;
    left: 7%;
    top: 26%;
    background: rgba(244, 162, 97, 0.18);
}

.contact-shape-two {
    width: 70px;
    height: 70px;
    right: 12%;
    bottom: 18%;
    background: rgba(31, 122, 77, 0.14);
    animation-delay: 1s;
}

.contact-hero-wrapper {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.90), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.14);
    box-shadow:
        0 28px 76px rgba(31, 41, 51, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    animation: contactHeroUp 0.8s ease both;
}

.contact-hero-wrapper::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -100px;
    top: -100px;
    border-radius: 50%;
    background: rgba(31, 122, 77, 0.08);
    pointer-events: none;
}

.contact-hero-wrapper::after {
    content: "";
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 0;
    height: 4px;
    border-radius: 30px 30px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero-badge {
    background: rgba(31, 122, 77, 0.08);
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.045);
}

.contact-hero-content h1 {
    max-width: 760px;
    font-size: 52px;
    font-weight: 950;
    line-height: 1.08;
    letter-spacing: -1.6px;
    color: var(--dark);
    margin-bottom: 16px;
}

.contact-hero-content h1::first-line {
    color: var(--primary-dark);
}

.contact-hero-content p {
    max-width: 690px;
    color: var(--text);
    font-size: 16.5px;
    line-height: 1.75;
    margin-bottom: 24px;
}

.contact-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.contact-hero-actions .btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-breadcrumb .breadcrumb-item {
    font-size: 14px;
    font-weight: 700;
}

.contact-breadcrumb .breadcrumb-item a {
    color: var(--primary);
    font-weight: 900;
}

.contact-breadcrumb .breadcrumb-item.active {
    color: var(--text);
}

.contact-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(31, 122, 77, 0.45);
}

/* Hero Side */

.contact-hero-side {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 14px;
}

.contact-feature-note {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(31, 122, 77, 0.96), rgba(20, 92, 57, 0.97));
    color: var(--white);
    box-shadow: 0 20px 46px rgba(31, 122, 77, 0.24);
    animation: contactSideFloat 4.5s ease-in-out infinite;
}

.contact-feature-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.contact-feature-note h4 {
    font-size: 22px;
    font-weight: 950;
    margin-bottom: 4px;
}

.contact-feature-note p {
    font-size: 13.5px;
    line-height: 1.5;
    opacity: 0.86;
    margin-bottom: 0;
}

.contact-topic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.contact-topic-card {
    min-height: 115px;
    padding: 18px 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(31, 122, 77, 0.10);
    box-shadow: 0 14px 32px rgba(31, 41, 51, 0.065);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.35s ease;
}

.contact-topic-card:hover {
    transform: translateY(-6px);
    background: rgba(31, 122, 77, 0.09);
    border-color: rgba(31, 122, 77, 0.18);
}

.contact-topic-card i {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    background:
        linear-gradient(135deg, rgba(31, 122, 77, 0.13), rgba(244, 162, 97, 0.16));
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    margin-bottom: 12px;
    transition: 0.35s ease;
}

.contact-topic-card:hover i {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: rotate(-5deg) scale(1.05);
}

.contact-topic-card h5 {
    color: var(--dark);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 0;
}

/* ================= COMMON CONTACT BACKGROUND ================= */

.contact-info-section,
.contact-form-section,
.map-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(31, 122, 77, 0.13), transparent 30%),
        radial-gradient(circle at 88% 78%, rgba(244, 162, 97, 0.18), transparent 32%),
        radial-gradient(circle at 50% 100%, rgba(231, 111, 81, 0.08), transparent 30%),
        linear-gradient(135deg, #eef8f1 0%, #ffffff 48%, #fff8ec 100%);
}

.contact-info-section::before,
.contact-form-section::before,
.map-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.76) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.035) 0px,
            rgba(31, 122, 77, 0.035) 1px,
            transparent 1px,
            transparent 22px);
    opacity: 0.62;
    pointer-events: none;
}

.contact-info-section .container,
.contact-form-section .container,
.map-section .container {
    position: relative;
    z-index: 2;
}

.contact-info-badge,
.contact-form-badge,
.contact-support-badge,
.map-badge {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.055);
}

/* ================= CONTACT DETAIL CARDS ================= */

.contact-detail-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 220px;
    padding: 24px 20px;
    border-radius: 23px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow:
        0 16px 42px rgba(31, 41, 51, 0.075),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    transition: 0.35s ease;
    animation: contactCardFloat 5s ease-in-out infinite;
}

.contact-info-section .col-md-6:nth-child(2) .contact-detail-card {
    animation-delay: 0.35s;
}

.contact-info-section .col-md-6:nth-child(3) .contact-detail-card {
    animation-delay: 0.7s;
}

.contact-info-section .col-md-6:nth-child(4) .contact-detail-card {
    animation-delay: 1.05s;
}

.contact-detail-card::before {
    content: "";
    position: absolute;
    width: 125px;
    height: 125px;
    right: -55px;
    top: -55px;
    border-radius: 50%;
    background: rgba(31, 122, 77, 0.08);
    transition: 0.35s ease;
}

.contact-detail-card::after {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: center;
    transition: 0.35s ease;
}

.contact-detail-card:hover {
    transform: translateY(-8px);
    border-color: rgba(31, 122, 77, 0.22);
    box-shadow: 0 26px 62px rgba(31, 41, 51, 0.14);
    animation-play-state: paused;
}

.contact-detail-card:hover::before {
    transform: scale(1.35);
    background: rgba(244, 162, 97, 0.16);
}

.contact-detail-card:hover::after {
    transform: scaleX(1);
}

.contact-detail-icon {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(31, 122, 77, 0.13), rgba(244, 162, 97, 0.16));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    margin-bottom: 16px;
    transition: 0.35s ease;
}

.contact-detail-card:hover .contact-detail-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: rotate(-5deg) scale(1.06);
}

.contact-detail-card h4 {
    position: relative;
    z-index: 2;
    color: var(--dark);
    font-size: 19px;
    font-weight: 950;
    margin-bottom: 8px;
}

.contact-detail-card p {
    position: relative;
    z-index: 2;
    color: var(--text);
    font-size: 13.8px;
    line-height: 1.58;
    margin-bottom: 13px;
}

.contact-detail-card a {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-size: 13.8px;
    font-weight: 900;
    transition: 0.3s ease;
}

.contact-detail-card a:hover {
    color: var(--accent);
}

.contact-detail-card a i {
    transition: 0.3s ease;
}

.contact-detail-card a:hover i {
    transform: translateX(4px);
}

/* ================= CONTACT FORM ================= */

.contact-form-card,
.contact-support-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 28px;
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow:
        0 18px 45px rgba(31, 41, 51, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    transition: 0.35s ease;
    animation: contactCardFloat 5s ease-in-out infinite;
}

.contact-support-card {
    animation-delay: 0.45s;
}

.contact-form-card:hover,
.contact-support-card:hover {
    transform: translateY(-7px);
    border-color: rgba(31, 122, 77, 0.22);
    box-shadow: 0 28px 68px rgba(31, 41, 51, 0.14);
    animation-play-state: paused;
}

.contact-form-card h2,
.contact-support-card h2 {
    font-size: 30px;
    font-weight: 950;
    color: var(--dark);
    line-height: 1.16;
    margin-bottom: 10px;
}

.contact-form-text,
.contact-support-card p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 22px;
}

.contact-page-form label {
    color: var(--dark);
    font-size: 13.5px;
    font-weight: 850;
    margin-bottom: 7px;
}

.contact-page-form .form-control {
    min-height: 48px;
    border-radius: 15px;
    border: 1px solid rgba(31, 122, 77, 0.12);
    background: rgba(255, 255, 255, 0.78);
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    box-shadow: none;
}

.contact-page-form textarea.form-control {
    min-height: 135px;
    resize: none;
    padding-top: 14px;
}

.contact-page-form .form-control:focus {
    border-color: rgba(31, 122, 77, 0.45);
    box-shadow: 0 0 0 4px rgba(31, 122, 77, 0.08);
}

.contact-submit-btn {
    width: 100%;
    min-height: 52px;
}

/* Support Card */

.support-person-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(31, 122, 77, 0.08);
    border: 1px solid rgba(31, 122, 77, 0.10);
    margin-bottom: 18px;
}

.support-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.support-person-box h5 {
    color: var(--dark);
    font-size: 15px;
    font-weight: 950;
    margin-bottom: 3px;
}

.support-person-box span {
    color: var(--text);
    font-size: 12.5px;
    font-weight: 700;
}

.support-contact-list {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
}

.support-contact-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 13px;
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(31, 122, 77, 0.08);
    color: var(--text);
    font-size: 14px;
    font-weight: 800;
    transition: 0.3s ease;
}

.support-contact-list a:hover {
    background: rgba(31, 122, 77, 0.09);
    color: var(--primary);
    transform: translateX(5px);
}

.support-contact-list i {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 12px;
    background: rgba(31, 122, 77, 0.10);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-social-box {
    padding: 16px;
    border-radius: 20px;
    background: rgba(244, 162, 97, 0.12);
    border: 1px solid rgba(244, 162, 97, 0.16);
}

.contact-social-box h5 {
    color: var(--dark);
    font-size: 16px;
    font-weight: 950;
    margin-bottom: 12px;
}

.contact-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-social-links a {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    background: var(--white);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    border: 1px solid rgba(31, 122, 77, 0.09);
    transition: 0.32s ease;
}

.contact-social-links a:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: translateY(-4px);
}

/* ================= MAP SECTION ================= */

.map-premium-box {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 24px;
    align-items: stretch;
    padding: 28px;
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 18px 45px rgba(31, 41, 51, 0.08);
}

.map-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-content h2 {
    color: var(--dark);
    font-size: 32px;
    font-weight: 950;
    line-height: 1.15;
    margin-bottom: 12px;
}

.map-content p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 20px;
}

.map-frame {
    min-height: 360px;
    overflow: hidden;
    border-radius: 24px;
    border: 6px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 40px rgba(31, 41, 51, 0.12);
}

.map-frame iframe {
    display: block;
    filter: grayscale(10%) contrast(1.05);
}

/* ================= CONTACT CTA ================= */

.contact-cta-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(31, 122, 77, 0.13), transparent 30%),
        linear-gradient(135deg, #eef8f1 0%, #fff8ec 100%);
}

.contact-cta-section .container {
    position: relative;
    z-index: 2;
}

.contact-cta-box {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border-radius: 30px;
    color: var(--white);
    background:
        radial-gradient(circle at 90% 20%, rgba(244, 162, 97, 0.28), transparent 32%),
        linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 30px 80px rgba(31, 122, 77, 0.28);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.contact-cta-box span {
    display: inline-flex;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 8px;
}

.contact-cta-box h2 {
    font-size: 34px;
    font-weight: 950;
    line-height: 1.15;
    margin-bottom: 10px;
}

.contact-cta-box p {
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 0;
}

.contact-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ================= CONTACT ANIMATIONS ================= */

@keyframes contactHeroUp {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes contactShapeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes contactSideFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

@keyframes contactCardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ================= CONTACT RESPONSIVE ================= */

@media (max-width: 991px) {
    .contact-page-hero {
        padding: 54px 0;
    }

    .contact-hero-wrapper {
        padding: 34px;
        border-radius: 30px;
        text-align: center;
    }

    .contact-hero-content h1 {
        font-size: 42px;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-hero-actions {
        justify-content: center;
    }

    .contact-breadcrumb .breadcrumb {
        justify-content: center;
    }

    .contact-hero-side {
        margin-top: 10px;
    }

    .contact-form-card,
    .contact-support-card {
        padding: 26px;
        border-radius: 26px;
    }

    .map-premium-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .map-frame {
        min-height: 330px;
    }

    .contact-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 34px;
    }

    .contact-cta-actions {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .contact-page-hero {
        padding: 42px 0;
    }

    .contact-hero-wrapper {
        padding: 24px 20px;
        border-radius: 26px;
    }

    .contact-hero-content h1 {
        font-size: 34px;
        line-height: 1.12;
        letter-spacing: -0.8px;
    }

    .contact-hero-content p {
        font-size: 15.5px;
        line-height: 1.65;
    }

    .contact-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .contact-hero-actions .btn {
        width: 100%;
    }

    .contact-feature-note {
        padding: 15px;
        border-radius: 21px;
        text-align: left;
    }

    .contact-feature-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        border-radius: 18px;
        font-size: 23px;
    }

    .contact-feature-note h4 {
        font-size: 18px;
    }

    .contact-feature-note p {
        font-size: 12.5px;
    }

    .contact-topic-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .contact-topic-card {
        min-height: auto;
        padding: 14px;
        border-radius: 18px;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        text-align: left;
    }

    .contact-topic-card i {
        margin-bottom: 0;
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 14px;
        font-size: 19px;
    }

    .contact-hero-shape {
        display: none;
    }

    .contact-info-section,
    .contact-form-section,
    .map-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .contact-detail-card {
        min-height: auto;
        padding: 22px;
        border-radius: 21px;
    }

    .contact-form-card,
    .contact-support-card {
        padding: 22px;
        border-radius: 23px;
    }

    .contact-form-card h2,
    .contact-support-card h2 {
        font-size: 26px;
    }

    .support-person-box {
        align-items: flex-start;
    }

    .map-premium-box {
        padding: 20px;
        border-radius: 24px;
    }

    .map-content h2 {
        font-size: 27px;
    }

    .map-frame {
        min-height: 260px;
        border-radius: 20px;
        border-width: 5px;
    }

    .contact-cta-section {
        padding: 60px 0;
    }

    .contact-cta-box {
        padding: 28px 20px;
        border-radius: 25px;
    }

    .contact-cta-box h2 {
        font-size: 27px;
    }

    .contact-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .contact-cta-actions .btn {
        width: 100%;
    }
}

@media (max-width: 390px) {
    .contact-hero-content h1 {
        font-size: 30px;
    }

    .contact-form-card,
    .contact-support-card {
        padding: 19px;
    }

    .support-person-box {
        flex-direction: column;
    }

    .contact-detail-card p {
        font-size: 13.5px;
    }
}






























/* ================= BLOG DETAIL HERO ================= */

.blog-detail-hero {
    position: relative;
    overflow: hidden;
    padding: 64px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(244, 162, 97, 0.20), transparent 30%),
        radial-gradient(circle at 88% 22%, rgba(31, 122, 77, 0.18), transparent 32%),
        radial-gradient(circle at 70% 88%, rgba(231, 111, 81, 0.10), transparent 28%),
        linear-gradient(135deg, #fff8ec 0%, #ffffff 45%, #eef8f1 100%);
}

.blog-detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.80) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.04) 0px,
            rgba(31, 122, 77, 0.04) 1px,
            transparent 1px,
            transparent 20px);
    opacity: 0.68;
    pointer-events: none;
}

.blog-detail-hero::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -260px;
    top: -260px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(31, 122, 77, 0.15) 0%,
            rgba(31, 122, 77, 0.08) 38%,
            transparent 70%);
    pointer-events: none;
}

.blog-detail-hero .container {
    position: relative;
    z-index: 2;
}

.blog-detail-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: blogDetailShapeFloat 5s ease-in-out infinite;
}

.detail-shape-one {
    width: 90px;
    height: 90px;
    left: 7%;
    top: 26%;
    background: rgba(244, 162, 97, 0.18);
}

.detail-shape-two {
    width: 70px;
    height: 70px;
    right: 12%;
    bottom: 18%;
    background: rgba(31, 122, 77, 0.14);
    animation-delay: 1s;
}

.blog-detail-hero-box {
    position: relative;
    overflow: hidden;
    max-width: 950px;
    margin: 0 auto;
    padding: 42px;
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.90), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.14);
    box-shadow:
        0 28px 76px rgba(31, 41, 51, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    animation: blogDetailHeroUp 0.8s ease both;
}

.blog-detail-hero-box::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -100px;
    top: -100px;
    border-radius: 50%;
    background: rgba(31, 122, 77, 0.08);
    pointer-events: none;
}

.blog-detail-hero-box::after {
    content: "";
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 0;
    height: 4px;
    border-radius: 30px 30px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.blog-detail-badge {
    position: relative;
    z-index: 2;
    background: rgba(31, 122, 77, 0.08);
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.045);
}

.blog-detail-hero-box h1 {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto 16px;
    font-size: 50px;
    font-weight: 950;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--dark);
}

.blog-detail-hero-box p {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto 20px;
    color: var(--text);
    font-size: 16.5px;
    line-height: 1.75;
}

.blog-detail-meta {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
}

.blog-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(31, 122, 77, 0.10);
    color: var(--dark);
    font-size: 13px;
    font-weight: 850;
}

.blog-detail-meta i {
    color: var(--accent);
}

.blog-detail-breadcrumb {
    position: relative;
    z-index: 2;
}

.blog-detail-breadcrumb .breadcrumb-item {
    font-size: 14px;
    font-weight: 700;
}

.blog-detail-breadcrumb .breadcrumb-item a {
    color: var(--primary);
    font-weight: 900;
}

.blog-detail-breadcrumb .breadcrumb-item.active {
    color: var(--text);
}

/* ================= BLOG DETAIL CONTENT ================= */

.blog-detail-section,
.related-blog-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(31, 122, 77, 0.13), transparent 30%),
        radial-gradient(circle at 88% 78%, rgba(244, 162, 97, 0.18), transparent 32%),
        radial-gradient(circle at 50% 100%, rgba(231, 111, 81, 0.08), transparent 30%),
        linear-gradient(135deg, #eef8f1 0%, #ffffff 48%, #fff8ec 100%);
}

.blog-detail-section::before,
.related-blog-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.76) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.035) 0px,
            rgba(31, 122, 77, 0.035) 1px,
            transparent 1px,
            transparent 22px);
    opacity: 0.62;
    pointer-events: none;
}

.blog-detail-section .container,
.related-blog-section .container {
    position: relative;
    z-index: 2;
}

.blog-detail-article {
    overflow: hidden;
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow:
        0 18px 45px rgba(31, 41, 51, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.blog-detail-main-img {
    height: 405px;
    overflow: hidden;
}

.blog-detail-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-content {
    padding: 34px;
}

.blog-detail-content p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 18px;
}

.blog-detail-content .blog-lead {
    font-size: 18px;
    color: var(--dark);
    font-weight: 700;
}

.blog-detail-content h2 {
    color: var(--dark);
    font-size: 30px;
    font-weight: 950;
    line-height: 1.2;
    margin: 30px 0 14px;
}

.blog-detail-content ul {
    margin: 18px 0 22px;
    padding-left: 0;
    list-style: none;
    display: grid;
    gap: 11px;
}

.blog-detail-content ul li {
    position: relative;
    padding: 12px 14px 12px 42px;
    border-radius: 16px;
    background: rgba(31, 122, 77, 0.08);
    color: var(--dark);
    font-size: 15px;
    font-weight: 750;
}

.blog-detail-content ul li::before {
    content: "\F26A";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 14px;
    top: 12px;
    color: var(--primary);
}

.blog-highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(244, 162, 97, 0.13);
    border: 1px solid rgba(244, 162, 97, 0.20);
    margin: 26px 0;
}

.blog-highlight-box i {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.blog-highlight-box h4 {
    color: var(--dark);
    font-size: 19px;
    font-weight: 950;
    margin-bottom: 5px;
}

.blog-highlight-box p {
    margin-bottom: 0;
    font-size: 14.5px;
    line-height: 1.65;
}

.blog-detail-content blockquote {
    position: relative;
    margin: 28px 0;
    padding: 24px 26px;
    border-radius: 24px;
    color: var(--white);
    background:
        radial-gradient(circle at 90% 20%, rgba(244, 162, 97, 0.22), transparent 32%),
        linear-gradient(135deg, var(--primary), var(--primary-dark));
    font-size: 20px;
    font-weight: 850;
    line-height: 1.55;
    box-shadow: 0 22px 52px rgba(31, 122, 77, 0.20);
}

.blog-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 28px;
}

.blog-detail-tags span {
    padding: 9px 13px;
    border-radius: 50px;
    background: rgba(31, 122, 77, 0.08);
    border: 1px solid rgba(31, 122, 77, 0.10);
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
}

/* ================= BLOG DETAIL SIDEBAR ================= */

.blog-detail-sidebar {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 18px;
}

.sidebar-card,
.sidebar-donate-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow:
        0 16px 42px rgba(31, 41, 51, 0.075),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    transition: 0.35s ease;
}

.sidebar-card:hover,
.sidebar-donate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 62px rgba(31, 41, 51, 0.14);
}

.author-icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 14px;
}

.sidebar-card h4,
.sidebar-donate-card h4 {
    color: var(--dark);
    font-size: 20px;
    font-weight: 950;
    margin-bottom: 10px;
}

.sidebar-card p,
.sidebar-donate-card p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 0;
}

.blog-share-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-share-links a {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    background: rgba(31, 122, 77, 0.08);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.3s ease;
}

.blog-share-links a:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: translateY(-4px);
}

.blog-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.blog-category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 16px;
    background: rgba(31, 122, 77, 0.08);
    color: var(--dark);
    font-size: 14px;
    font-weight: 850;
    transition: 0.3s ease;
}

.blog-category-list a:hover {
    background: rgba(244, 162, 97, 0.14);
    color: var(--primary);
    transform: translateX(4px);
}

.blog-category-list strong {
    color: var(--primary);
}

.sidebar-donate-card {
    color: var(--white);
    background:
        radial-gradient(circle at 90% 20%, rgba(244, 162, 97, 0.25), transparent 32%),
        linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.sidebar-donate-card span {
    display: inline-flex;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 8px;
}

.sidebar-donate-card h4 {
    color: var(--white);
}

.sidebar-donate-card p {
    color: rgba(255, 255, 255, 0.84);
    margin-bottom: 18px;
}

.sidebar-donate-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    background: var(--secondary);
    color: var(--dark);
    font-size: 14px;
    font-weight: 900;
}

.related-blog-badge {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 10px 24px rgba(31, 41, 51, 0.055);
}

/* ================= BLOG DETAIL CTA ================= */

.blog-detail-cta-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(31, 122, 77, 0.13), transparent 30%),
        linear-gradient(135deg, #eef8f1 0%, #fff8ec 100%);
}

.blog-detail-cta-section .container {
    position: relative;
    z-index: 2;
}

.blog-detail-cta-box {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border-radius: 30px;
    color: var(--white);
    background:
        radial-gradient(circle at 90% 20%, rgba(244, 162, 97, 0.28), transparent 32%),
        linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 30px 80px rgba(31, 122, 77, 0.28);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.blog-detail-cta-box span {
    display: inline-flex;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 8px;
}

.blog-detail-cta-box h2 {
    font-size: 34px;
    font-weight: 950;
    line-height: 1.15;
    margin-bottom: 10px;
}

.blog-detail-cta-box p {
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 0;
}

.blog-detail-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ================= BLOG DETAIL ANIMATION ================= */

@keyframes blogDetailHeroUp {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blogDetailShapeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* ================= BLOG DETAIL RESPONSIVE ================= */

@media (max-width: 991px) {
    .blog-detail-hero {
        padding: 54px 0;
    }

    .blog-detail-hero-box {
        padding: 34px;
        border-radius: 30px;
    }

    .blog-detail-hero-box h1 {
        font-size: 40px;
    }

    .blog-detail-sidebar {
        position: static;
    }

    .blog-detail-main-img {
        height: 320px;
    }

    .blog-detail-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 34px;
    }

    .blog-detail-cta-actions {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .blog-detail-hero {
        padding: 42px 0;
    }

    .blog-detail-hero-box {
        padding: 24px 20px;
        border-radius: 26px;
    }

    .blog-detail-hero-box h1 {
        font-size: 31px;
        line-height: 1.14;
        letter-spacing: -0.8px;
    }

    .blog-detail-hero-box p {
        font-size: 15.5px;
        line-height: 1.65;
    }

    .blog-detail-meta {
        display: grid;
        grid-template-columns: 1fr;
    }

    .blog-detail-meta span {
        justify-content: center;
    }

    .blog-detail-shape {
        display: none;
    }

    .blog-detail-section,
    .related-blog-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .blog-detail-main-img {
        height: 230px;
    }

    .blog-detail-content {
        padding: 22px;
    }

    .blog-detail-content .blog-lead {
        font-size: 16px;
    }

    .blog-detail-content p {
        font-size: 15px;
        line-height: 1.72;
    }

    .blog-detail-content h2 {
        font-size: 24px;
    }

    .blog-highlight-box {
        flex-direction: column;
        padding: 16px;
        border-radius: 20px;
    }

    .blog-detail-content blockquote {
        font-size: 17px;
        padding: 20px;
        border-radius: 20px;
    }

    .sidebar-card,
    .sidebar-donate-card {
        padding: 21px;
        border-radius: 22px;
    }

    .blog-detail-cta-section {
        padding: 60px 0;
    }

    .blog-detail-cta-box {
        padding: 28px 20px;
        border-radius: 25px;
    }

    .blog-detail-cta-box h2 {
        font-size: 27px;
    }

    .blog-detail-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .blog-detail-cta-actions .btn {
        width: 100%;
    }
}

@media (max-width: 390px) {
    .blog-detail-hero-box h1 {
        font-size: 28px;
    }

    .blog-detail-main-img {
        height: 205px;
    }

    .blog-detail-content {
        padding: 19px;
    }
}


























/* ================= EVENT DETAIL PAGE ================= */

.event-detail-hero {
    position: relative;
    overflow: hidden;
    padding: 58px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(244, 162, 97, 0.20), transparent 30%),
        radial-gradient(circle at 88% 22%, rgba(31, 122, 77, 0.18), transparent 32%),
        linear-gradient(135deg, #fff8ec 0%, #ffffff 45%, #eef8f1 100%);
}

.event-detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.80) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.04) 0px,
            rgba(31, 122, 77, 0.04) 1px,
            transparent 1px,
            transparent 20px);
    opacity: 0.66;
    pointer-events: none;
}

.event-detail-hero .container {
    position: relative;
    z-index: 2;
}

.event-detail-hero-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 38px;
    border-radius: 32px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 242, 0.76));
    border: 1px solid rgba(31, 122, 77, 0.14);
    box-shadow:
        0 28px 76px rgba(31, 41, 51, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    animation: eventDetailUp 0.8s ease both;
}

.event-detail-badge {
    background: rgba(31, 122, 77, 0.08);
    border: 1px solid rgba(31, 122, 77, 0.12);
}

.event-detail-hero-box h1 {
    font-size: 46px;
    font-weight: 950;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 14px;
}

.event-detail-hero-box p {
    max-width: 720px;
    margin: 0 auto 18px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
}

.event-detail-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
    margin-bottom: 18px;
}

.event-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(31, 122, 77, 0.10);
    color: var(--dark);
    font-size: 13px;
    font-weight: 850;
}

.event-detail-meta i {
    color: var(--accent);
}

.event-detail-hero .breadcrumb-item a {
    color: var(--primary);
    font-weight: 900;
}

.event-detail-hero .breadcrumb-item.active {
    color: var(--text);
    font-weight: 700;
}

/* Content Section */

.event-detail-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(31, 122, 77, 0.13), transparent 30%),
        radial-gradient(circle at 88% 78%, rgba(244, 162, 97, 0.18), transparent 32%),
        linear-gradient(135deg, #eef8f1 0%, #ffffff 48%, #fff8ec 100%);
}

.event-detail-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.76) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.035) 0px,
            rgba(31, 122, 77, 0.035) 1px,
            transparent 1px,
            transparent 22px);
    opacity: 0.62;
    pointer-events: none;
}

.event-detail-section .container {
    position: relative;
    z-index: 2;
}

.event-detail-main-card,
.event-info-card,
.event-join-card {
    overflow: hidden;
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow:
        0 18px 45px rgba(31, 41, 51, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    transition: 0.35s ease;
}

.event-detail-main-card:hover,
.event-info-card:hover,
.event-join-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 68px rgba(31, 41, 51, 0.14);
}

.event-detail-image {
    position: relative;
    height: 335px;
    overflow: hidden;
}

.event-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s ease;
}

.event-detail-main-card:hover .event-detail-image img {
    transform: scale(1.06);
}

.event-detail-image span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 8px 14px;
    border-radius: 50px;
    background: var(--secondary);
    color: var(--dark);
    font-size: 12px;
    font-weight: 900;
}

.event-detail-content {
    padding: 30px;
}

.event-detail-content h2,
.event-detail-content h3 {
    color: var(--dark);
    font-weight: 950;
    line-height: 1.2;
}

.event-detail-content h2 {
    font-size: 30px;
    margin-bottom: 12px;
}

.event-detail-content h3 {
    font-size: 24px;
    margin: 28px 0 14px;
}

.event-detail-content p {
    color: var(--text);
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 14px;
}

.event-detail-points {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.event-detail-points div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(31, 122, 77, 0.08);
    color: var(--dark);
    font-size: 14px;
    font-weight: 850;
}

.event-detail-points i {
    color: var(--primary);
}

.event-detail-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.event-detail-gallery img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(31, 41, 51, 0.10);
    transition: 0.35s ease;
}

.event-detail-gallery img:hover {
    transform: translateY(-5px) scale(1.03);
}

/* Sidebar */

.event-detail-sidebar {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 110px;
}

.event-info-card {
    padding: 24px;
}

.event-info-card h4 {
    color: var(--dark);
    font-size: 22px;
    font-weight: 950;
    margin-bottom: 18px;
}

.event-info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.event-info-card li {
    display: flex;
    gap: 11px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(31, 122, 77, 0.08);
}

.event-info-card li>i {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 12px;
    background: rgba(31, 122, 77, 0.12);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.event-info-card strong {
    display: block;
    color: var(--dark);
    font-size: 13px;
    font-weight: 900;
}

.event-info-card span {
    display: block;
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
}

.event-join-card {
    padding: 24px;
    color: var(--white);
    background:
        radial-gradient(circle at 90% 20%, rgba(244, 162, 97, 0.26), transparent 32%),
        linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.event-join-card span {
    display: inline-flex;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 8px;
}

.event-join-card h4 {
    color: var(--white);
    font-size: 22px;
    font-weight: 950;
    margin-bottom: 10px;
}

.event-join-card p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 18px;
}

.event-join-actions {
    display: grid;
    gap: 10px;
}

/* Animation */

@keyframes eventDetailUp {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */

@media (max-width: 991px) {
    .event-detail-hero-box {
        padding: 32px;
    }

    .event-detail-hero-box h1 {
        font-size: 38px;
    }

    .event-detail-sidebar {
        position: static;
    }

    .event-detail-image {
        height: 280px;
    }
}

@media (max-width: 575px) {
    .event-detail-hero {
        padding: 42px 0;
    }

    .event-detail-hero-box {
        padding: 24px 20px;
        border-radius: 26px;
    }

    .event-detail-hero-box h1 {
        font-size: 31px;
    }

    .event-detail-hero-box p {
        font-size: 15px;
    }

    .event-detail-meta {
        display: grid;
        grid-template-columns: 1fr;
    }

    .event-detail-meta span {
        justify-content: center;
    }

    .event-detail-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .event-detail-image {
        height: 220px;
    }

    .event-detail-content {
        padding: 22px;
    }

    .event-detail-content h2 {
        font-size: 25px;
    }

    .event-detail-content h3 {
        font-size: 21px;
    }

    .event-detail-content p {
        font-size: 15px;
    }

    .event-detail-gallery {
        grid-template-columns: 1fr;
    }

    .event-detail-gallery img {
        height: 180px;
    }

    .event-info-card,
    .event-join-card {
        padding: 21px;
        border-radius: 24px;
    }
}





























/* ================= VOLUNTEER PAGE ================= */

.volunteer-hero {
    position: relative;
    overflow: hidden;
    padding: 58px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(244, 162, 97, 0.20), transparent 30%),
        radial-gradient(circle at 88% 22%, rgba(31, 122, 77, 0.18), transparent 32%),
        linear-gradient(135deg, #fff8ec 0%, #ffffff 45%, #eef8f1 100%);
}

.volunteer-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.80) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.04) 0px,
            rgba(31, 122, 77, 0.04) 1px,
            transparent 1px,
            transparent 20px);
    opacity: 0.66;
    pointer-events: none;
}

.volunteer-hero .container {
    position: relative;
    z-index: 2;
}

.volunteer-hero-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 38px;
    border-radius: 32px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 242, 0.76));
    border: 1px solid rgba(31, 122, 77, 0.14);
    box-shadow:
        0 28px 76px rgba(31, 41, 51, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    animation: volunteerUp 0.8s ease both;
}

.volunteer-hero-badge,
.volunteer-badge,
.volunteer-form-badge,
.volunteer-side-badge {
    background: rgba(31, 122, 77, 0.08);
    border: 1px solid rgba(31, 122, 77, 0.12);
}

.volunteer-hero-box h1 {
    font-size: 46px;
    font-weight: 950;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 14px;
}

.volunteer-hero-box p {
    max-width: 760px;
    margin: 0 auto 22px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
}

.volunteer-hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.volunteer-hero .breadcrumb-item a {
    color: var(--primary);
    font-weight: 900;
}

.volunteer-hero .breadcrumb-item.active {
    color: var(--text);
    font-weight: 700;
}

/* Common Background */

.volunteer-category-section,
.volunteer-form-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(31, 122, 77, 0.13), transparent 30%),
        radial-gradient(circle at 88% 78%, rgba(244, 162, 97, 0.18), transparent 32%),
        linear-gradient(135deg, #eef8f1 0%, #ffffff 48%, #fff8ec 100%);
}

.volunteer-category-section::before,
.volunteer-form-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.76) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.035) 0px,
            rgba(31, 122, 77, 0.035) 1px,
            transparent 1px,
            transparent 22px);
    opacity: 0.62;
    pointer-events: none;
}

.volunteer-category-section .container,
.volunteer-form-section .container {
    position: relative;
    z-index: 2;
}

/* Category Cards */

.volunteer-category-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 215px;
    padding: 24px 20px;
    border-radius: 23px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow:
        0 16px 42px rgba(31, 41, 51, 0.075),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    transition: 0.35s ease;
    animation: volunteerFloat 5s ease-in-out infinite;
}

.volunteer-category-section .col-md-6:nth-child(2) .volunteer-category-card {
    animation-delay: 0.3s;
}

.volunteer-category-section .col-md-6:nth-child(3) .volunteer-category-card {
    animation-delay: 0.6s;
}

.volunteer-category-section .col-md-6:nth-child(4) .volunteer-category-card {
    animation-delay: 0.9s;
}

.volunteer-category-section .col-md-6:nth-child(5) .volunteer-category-card {
    animation-delay: 1.2s;
}

.volunteer-category-section .col-md-6:nth-child(6) .volunteer-category-card {
    animation-delay: 1.5s;
}

.volunteer-category-card::before {
    content: "";
    position: absolute;
    width: 125px;
    height: 125px;
    right: -55px;
    top: -55px;
    border-radius: 50%;
    background: rgba(31, 122, 77, 0.08);
    transition: 0.35s ease;
}

.volunteer-category-card::after {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: center;
    transition: 0.35s ease;
}

.volunteer-category-card:hover {
    transform: translateY(-8px);
    border-color: rgba(31, 122, 77, 0.22);
    box-shadow: 0 26px 62px rgba(31, 41, 51, 0.14);
    animation-play-state: paused;
}

.volunteer-category-card:hover::before {
    transform: scale(1.35);
    background: rgba(244, 162, 97, 0.16);
}

.volunteer-category-card:hover::after {
    transform: scaleX(1);
}

.volunteer-icon {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(31, 122, 77, 0.13), rgba(244, 162, 97, 0.16));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    margin-bottom: 16px;
    transition: 0.35s ease;
}

.volunteer-category-card:hover .volunteer-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: rotate(-5deg) scale(1.06);
}

.volunteer-category-card h4 {
    position: relative;
    z-index: 2;
    color: var(--dark);
    font-size: 19px;
    font-weight: 950;
    margin-bottom: 8px;
}

.volunteer-category-card p {
    position: relative;
    z-index: 2;
    color: var(--text);
    font-size: 13.8px;
    line-height: 1.58;
    margin-bottom: 0;
}

/* Form Cards */

.volunteer-form-card,
.volunteer-side-card {
    height: 100%;
    padding: 28px;
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow:
        0 18px 45px rgba(31, 41, 51, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    transition: 0.35s ease;
}

.volunteer-form-card:hover,
.volunteer-side-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 68px rgba(31, 41, 51, 0.14);
}

.volunteer-form-card h2,
.volunteer-side-card h2 {
    color: var(--dark);
    font-size: 30px;
    font-weight: 950;
    line-height: 1.16;
    margin-bottom: 10px;
}

.volunteer-form-card p,
.volunteer-side-card p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 22px;
}

.volunteer-page-form label {
    color: var(--dark);
    font-size: 13.5px;
    font-weight: 850;
    margin-bottom: 7px;
}

.volunteer-page-form .form-control,
.volunteer-page-form .form-select {
    min-height: 48px;
    border-radius: 15px;
    border: 1px solid rgba(31, 122, 77, 0.12);
    background: rgba(255, 255, 255, 0.78);
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    box-shadow: none;
}

.volunteer-page-form textarea.form-control {
    min-height: 130px;
    resize: none;
    padding-top: 14px;
}

.volunteer-page-form .form-control:focus,
.volunteer-page-form .form-select:focus {
    border-color: rgba(31, 122, 77, 0.45);
    box-shadow: 0 0 0 4px rgba(31, 122, 77, 0.08);
}

.volunteer-submit-btn {
    width: 100%;
    min-height: 52px;
}

.volunteer-benefit-list {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
}

.volunteer-benefit-list div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(31, 122, 77, 0.08);
    color: var(--dark);
    font-size: 14px;
    font-weight: 850;
}

.volunteer-benefit-list i {
    color: var(--primary);
    margin-top: 2px;
}

.volunteer-contact-box {
    padding: 18px;
    border-radius: 22px;
    color: var(--white);
    background:
        radial-gradient(circle at 90% 20%, rgba(244, 162, 97, 0.26), transparent 32%),
        linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.volunteer-contact-box h5 {
    color: var(--white);
    font-size: 18px;
    font-weight: 950;
    margin-bottom: 12px;
}

.volunteer-contact-box a {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 9px;
}

.volunteer-contact-box a:last-child {
    margin-bottom: 0;
}

.volunteer-contact-box i {
    color: var(--secondary);
}

/* CTA */

.volunteer-cta-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(31, 122, 77, 0.13), transparent 30%),
        linear-gradient(135deg, #eef8f1 0%, #fff8ec 100%);
}

.volunteer-cta-box {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border-radius: 30px;
    color: var(--white);
    background:
        radial-gradient(circle at 90% 20%, rgba(244, 162, 97, 0.28), transparent 32%),
        linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 30px 80px rgba(31, 122, 77, 0.28);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.volunteer-cta-box span {
    display: inline-flex;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 8px;
}

.volunteer-cta-box h2 {
    font-size: 34px;
    font-weight: 950;
    line-height: 1.15;
    margin-bottom: 10px;
}

.volunteer-cta-box p {
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 0;
}

.volunteer-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Animation */

@keyframes volunteerUp {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes volunteerFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Responsive */

@media (max-width: 991px) {
    .volunteer-hero-box {
        padding: 32px;
    }

    .volunteer-hero-box h1 {
        font-size: 38px;
    }

    .volunteer-form-card,
    .volunteer-side-card {
        padding: 26px;
    }

    .volunteer-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 34px;
    }

    .volunteer-cta-actions {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .volunteer-hero {
        padding: 42px 0;
    }

    .volunteer-hero-box {
        padding: 24px 20px;
        border-radius: 26px;
    }

    .volunteer-hero-box h1 {
        font-size: 31px;
    }

    .volunteer-hero-box p {
        font-size: 15px;
    }

    .volunteer-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .volunteer-hero-actions .btn {
        width: 100%;
    }

    .volunteer-category-section,
    .volunteer-form-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .volunteer-category-card {
        min-height: auto;
        padding: 22px;
        border-radius: 21px;
    }

    .volunteer-form-card,
    .volunteer-side-card {
        padding: 22px;
        border-radius: 23px;
    }

    .volunteer-form-card h2,
    .volunteer-side-card h2 {
        font-size: 26px;
    }

    .volunteer-cta-section {
        padding: 60px 0;
    }

    .volunteer-cta-box {
        padding: 28px 20px;
        border-radius: 25px;
    }

    .volunteer-cta-box h2 {
        font-size: 27px;
    }

    .volunteer-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .volunteer-cta-actions .btn {
        width: 100%;
    }
}



























/* ================= FAQ PAGE ================= */

.faq-hero {
    position: relative;
    overflow: hidden;
    padding: 58px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(244, 162, 97, 0.20), transparent 30%),
        radial-gradient(circle at 88% 22%, rgba(31, 122, 77, 0.18), transparent 32%),
        linear-gradient(135deg, #fff8ec 0%, #ffffff 45%, #eef8f1 100%);
}

.faq-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.80) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.04) 0px,
            rgba(31, 122, 77, 0.04) 1px,
            transparent 1px,
            transparent 20px);
    opacity: 0.66;
    pointer-events: none;
}

.faq-hero .container {
    position: relative;
    z-index: 2;
}

.faq-hero-box {
    max-width: 850px;
    margin: 0 auto;
    padding: 36px;
    border-radius: 32px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 242, 0.76));
    border: 1px solid rgba(31, 122, 77, 0.14);
    box-shadow:
        0 28px 76px rgba(31, 41, 51, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    animation: faqUp 0.8s ease both;
}

.faq-hero-badge,
.faq-info-badge {
    background: rgba(31, 122, 77, 0.08);
    border: 1px solid rgba(31, 122, 77, 0.12);
}

.faq-hero-box h1 {
    font-size: 44px;
    font-weight: 950;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 14px;
}

.faq-hero-box p {
    max-width: 700px;
    margin: 0 auto 18px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
}

.faq-hero .breadcrumb-item a {
    color: var(--primary);
    font-weight: 900;
}

.faq-hero .breadcrumb-item.active {
    color: var(--text);
    font-weight: 700;
}

/* FAQ Section */

.faq-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(31, 122, 77, 0.13), transparent 30%),
        radial-gradient(circle at 88% 78%, rgba(244, 162, 97, 0.18), transparent 32%),
        linear-gradient(135deg, #eef8f1 0%, #ffffff 48%, #fff8ec 100%);
}

.faq-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.76) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.035) 0px,
            rgba(31, 122, 77, 0.035) 1px,
            transparent 1px,
            transparent 22px);
    opacity: 0.62;
    pointer-events: none;
}

.faq-section .container {
    position: relative;
    z-index: 2;
}

.faq-info-card,
.faq-accordion-card {
    height: 100%;
    padding: 28px;
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow:
        0 18px 45px rgba(31, 41, 51, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    transition: 0.35s ease;
}

.faq-info-card:hover,
.faq-accordion-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 68px rgba(31, 41, 51, 0.14);
}

.faq-info-card h2 {
    color: var(--dark);
    font-size: 30px;
    font-weight: 950;
    line-height: 1.16;
    margin-bottom: 12px;
}

.faq-info-card p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 22px;
}

.faq-help-box {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px;
    border-radius: 20px;
    background:
        radial-gradient(circle at 90% 20%, rgba(244, 162, 97, 0.24), transparent 32%),
        linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.faq-help-box>i {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.16);
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}

.faq-help-box h5 {
    color: var(--white);
    font-size: 16px;
    font-weight: 950;
    margin-bottom: 3px;
}

.faq-help-box a {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 900;
}

/* Accordion */

.faq-accordion-card .accordion {
    display: grid;
    gap: 12px;
}

.faq-accordion-card .accordion-item {
    overflow: hidden;
    border: 1px solid rgba(31, 122, 77, 0.10);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
}

.faq-accordion-card .accordion-button {
    padding: 17px 18px;
    background: rgba(255, 255, 255, 0.80);
    color: var(--dark);
    font-size: 15px;
    font-weight: 900;
    box-shadow: none;
}

.faq-accordion-card .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.faq-accordion-card .accordion-button::after {
    filter: none;
}

.faq-accordion-card .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.faq-accordion-card .accordion-body {
    padding: 16px 18px 18px;
    color: var(--text);
    font-size: 14.5px;
    line-height: 1.65;
    font-weight: 600;
}

/* CTA */

.faq-cta-section {
    position: relative;
    overflow: hidden;
    padding: 66px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(31, 122, 77, 0.13), transparent 30%),
        linear-gradient(135deg, #eef8f1 0%, #fff8ec 100%);
}

.faq-cta-box {
    position: relative;
    overflow: hidden;
    padding: 38px;
    border-radius: 30px;
    color: var(--white);
    background:
        radial-gradient(circle at 90% 20%, rgba(244, 162, 97, 0.28), transparent 32%),
        linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 30px 80px rgba(31, 122, 77, 0.28);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.faq-cta-box span {
    display: inline-flex;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 8px;
}

.faq-cta-box h2 {
    font-size: 32px;
    font-weight: 950;
    line-height: 1.15;
    margin-bottom: 8px;
}

.faq-cta-box p {
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 0;
}

.faq-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

@keyframes faqUp {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */

@media (max-width: 991px) {
    .faq-hero-box {
        padding: 32px;
    }

    .faq-hero-box h1 {
        font-size: 38px;
    }

    .faq-info-card,
    .faq-accordion-card {
        padding: 25px;
    }

    .faq-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 32px;
    }

    .faq-cta-actions {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .faq-hero {
        padding: 42px 0;
    }

    .faq-hero-box {
        padding: 24px 20px;
        border-radius: 26px;
    }

    .faq-hero-box h1 {
        font-size: 31px;
    }

    .faq-hero-box p {
        font-size: 15px;
    }

    .faq-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .faq-info-card,
    .faq-accordion-card {
        padding: 21px;
        border-radius: 23px;
    }

    .faq-info-card h2 {
        font-size: 25px;
    }

    .faq-accordion-card .accordion-button {
        font-size: 14px;
        padding: 15px;
    }

    .faq-accordion-card .accordion-body {
        font-size: 14px;
    }

    .faq-cta-section {
        padding: 58px 0;
    }

    .faq-cta-box {
        padding: 26px 20px;
        border-radius: 25px;
    }

    .faq-cta-box h2 {
        font-size: 26px;
    }

    .faq-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .faq-cta-actions .btn {
        width: 100%;
    }
}

























/* ================= TESTIMONIAL PAGE ================= */

.testimonial-hero {
    position: relative;
    overflow: hidden;
    padding: 58px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(244, 162, 97, 0.20), transparent 30%),
        radial-gradient(circle at 88% 22%, rgba(31, 122, 77, 0.18), transparent 32%),
        linear-gradient(135deg, #fff8ec 0%, #ffffff 45%, #eef8f1 100%);
}

.testimonial-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.80) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.04) 0px,
            rgba(31, 122, 77, 0.04) 1px,
            transparent 1px,
            transparent 20px);
    opacity: 0.66;
    pointer-events: none;
}

.testimonial-hero .container {
    position: relative;
    z-index: 2;
}

.testimonial-hero-box {
    max-width: 850px;
    margin: 0 auto;
    padding: 36px;
    border-radius: 32px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 242, 0.76));
    border: 1px solid rgba(31, 122, 77, 0.14);
    box-shadow:
        0 28px 76px rgba(31, 41, 51, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    animation: testimonialUp 0.8s ease both;
}

.testimonial-hero-badge,
.testimonial-badge,
.impact-story-badge {
    background: rgba(31, 122, 77, 0.08);
    border: 1px solid rgba(31, 122, 77, 0.12);
}

.testimonial-hero-box h1 {
    font-size: 44px;
    font-weight: 950;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 14px;
}

.testimonial-hero-box p {
    max-width: 700px;
    margin: 0 auto 18px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
}

.testimonial-hero .breadcrumb-item a {
    color: var(--primary);
    font-weight: 900;
}

.testimonial-hero .breadcrumb-item.active {
    color: var(--text);
    font-weight: 700;
}

/* Background */

.testimonial-section,
.impact-story-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(31, 122, 77, 0.13), transparent 30%),
        radial-gradient(circle at 88% 78%, rgba(244, 162, 97, 0.18), transparent 32%),
        linear-gradient(135deg, #eef8f1 0%, #ffffff 48%, #fff8ec 100%);
}

.testimonial-section::before,
.impact-story-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.76) 0%, transparent 42%),
        repeating-linear-gradient(135deg,
            rgba(31, 122, 77, 0.035) 0px,
            rgba(31, 122, 77, 0.035) 1px,
            transparent 1px,
            transparent 22px);
    opacity: 0.62;
    pointer-events: none;
}

.testimonial-section .container,
.impact-story-section .container {
    position: relative;
    z-index: 2;
}

/* Testimonial Cards */

.testimonial-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 245px;
    padding: 26px 22px;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow:
        0 16px 42px rgba(31, 41, 51, 0.075),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    transition: 0.35s ease;
    animation: testimonialFloat 5s ease-in-out infinite;
}

.testimonial-section .col-md-6:nth-child(2) .testimonial-card {
    animation-delay: 0.35s;
}

.testimonial-section .col-md-6:nth-child(3) .testimonial-card {
    animation-delay: 0.7s;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    width: 125px;
    height: 125px;
    right: -55px;
    top: -55px;
    border-radius: 50%;
    background: rgba(31, 122, 77, 0.08);
    transition: 0.35s ease;
}

.testimonial-card::after {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: center;
    transition: 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(31, 122, 77, 0.22);
    box-shadow: 0 26px 62px rgba(31, 41, 51, 0.14);
    animation-play-state: paused;
}

.testimonial-card:hover::before {
    transform: scale(1.35);
    background: rgba(244, 162, 97, 0.16);
}

.testimonial-card:hover::after {
    transform: scaleX(1);
}

.testimonial-quote {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(31, 122, 77, 0.13), rgba(244, 162, 97, 0.16));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
    transition: 0.35s ease;
}

.testimonial-card:hover .testimonial-quote {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: rotate(-5deg) scale(1.06);
}

.testimonial-card p {
    position: relative;
    z-index: 2;
    color: var(--text);
    font-size: 14.5px;
    line-height: 1.68;
    margin-bottom: 20px;
}

.testimonial-user {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    background: rgba(31, 122, 77, 0.10);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.testimonial-user h5 {
    color: var(--dark);
    font-size: 15.5px;
    font-weight: 950;
    margin-bottom: 2px;
}

.testimonial-user span {
    color: var(--text);
    font-size: 12.5px;
    font-weight: 700;
}

/* Impact Story */

.impact-story-box {
    padding: 26px;
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.74));
    border: 1px solid rgba(31, 122, 77, 0.12);
    box-shadow: 0 18px 45px rgba(31, 41, 51, 0.08);
    transition: 0.35s ease;
}

.impact-story-box:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 68px rgba(31, 41, 51, 0.14);
}

.impact-story-img {
    overflow: hidden;
    height: 280px;
    border-radius: 24px;
    border: 6px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 40px rgba(31, 41, 51, 0.12);
}

.impact-story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s ease;
}

.impact-story-box:hover .impact-story-img img {
    transform: scale(1.06);
}

.impact-story-content h2 {
    color: var(--dark);
    font-size: 32px;
    font-weight: 950;
    line-height: 1.15;
    margin-bottom: 12px;
}

.impact-story-content p {
    color: var(--text);
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.impact-story-points {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.impact-story-points span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 50px;
    background: rgba(31, 122, 77, 0.08);
    color: var(--dark);
    font-size: 13px;
    font-weight: 850;
}

.impact-story-points i {
    color: var(--primary);
}

/* CTA */

.testimonial-cta-section {
    position: relative;
    overflow: hidden;
    padding: 66px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(31, 122, 77, 0.13), transparent 30%),
        linear-gradient(135deg, #eef8f1 0%, #fff8ec 100%);
}

.testimonial-cta-box {
    position: relative;
    overflow: hidden;
    padding: 38px;
    border-radius: 30px;
    color: var(--white);
    background:
        radial-gradient(circle at 90% 20%, rgba(244, 162, 97, 0.28), transparent 32%),
        linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 30px 80px rgba(31, 122, 77, 0.28);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.testimonial-cta-box span {
    display: inline-flex;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 8px;
}

.testimonial-cta-box h2 {
    font-size: 32px;
    font-weight: 950;
    line-height: 1.15;
    margin-bottom: 8px;
}

.testimonial-cta-box p {
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 0;
}

.testimonial-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Animations */

@keyframes testimonialUp {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes testimonialFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Responsive */

@media (max-width: 991px) {
    .testimonial-hero-box {
        padding: 32px;
    }

    .testimonial-hero-box h1 {
        font-size: 38px;
    }

    .impact-story-content {
        text-align: center;
    }

    .impact-story-points {
        justify-content: center;
    }

    .testimonial-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 32px;
    }

    .testimonial-cta-actions {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .testimonial-hero {
        padding: 42px 0;
    }

    .testimonial-hero-box {
        padding: 24px 20px;
        border-radius: 26px;
    }

    .testimonial-hero-box h1 {
        font-size: 31px;
    }

    .testimonial-hero-box p {
        font-size: 15px;
    }

    .testimonial-section,
    .impact-story-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .testimonial-card {
        min-height: auto;
        padding: 22px;
        border-radius: 21px;
    }

    .impact-story-box {
        padding: 18px;
        border-radius: 24px;
    }

    .impact-story-img {
        height: 220px;
        border-radius: 20px;
    }

    .impact-story-content h2 {
        font-size: 26px;
    }

    .testimonial-cta-section {
        padding: 58px 0;
    }

    .testimonial-cta-box {
        padding: 26px 20px;
        border-radius: 25px;
    }

    .testimonial-cta-box h2 {
        font-size: 26px;
    }

    .testimonial-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .testimonial-cta-actions .btn {
        width: 100%;
    }
}
