:root {
    --primary-green: #065754;
    --primary-white: #FFFFFF;
    --primary-black: #000000;
    --light-green: #0b7a76;
    --soft-gray: #f5f5f5;
    --border-gray: #e0e0e0;
    --gradient-green: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    --green-light-bg: #e8f3f2;      /* new – soft green for backgrounds */
    --green-extra-light: #f0f9f8;   /* new – very light green */
    --green-dark: #043a38;         /* already used */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-white);
    color: var(--primary-black);
    overflow-x: hidden;
}

/* ===== ANIMATED SVG BACKGROUND ELEMENTS ===== */
@keyframes float {
    0% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-20px) translateX(10px); }
    100% { transform: translateY(0px) translateX(0px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.svg-float {
    animation: float 12s ease-in-out infinite;
}

.svg-rotate {
    animation: rotate 40s linear infinite;
}

/* ===== SECTION BACKGROUNDS – ALL GREEN BASED ===== */
.section-green-light {
    background-color: var(--green-light-bg);
}
.section-green-extra-light {
    background-color: var(--green-extra-light);
}
.section-gradient {
    background: var(--gradient-green);
    color: white;
}
.section-dark {
    background-color: var(--green-dark);
    color: white;
}

/* ===== HERO ===== */
.hero {
    background: var(--gradient-green);
    position: relative;
    overflow: hidden;
    color: white;
    padding: 5rem 0;
}
.hero .section-tag {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: white;
    display: inline-block;
    margin-bottom: 1.5rem;
}
.hero h1 {
    color: white;
}
.hero .lead {
    color: rgba(255,255,255,0.9);
}
.hero .btn-outline-primary {
    border-color: white;
    color: white;
}
.hero .btn-outline-primary:hover {
    background: white;
    color: var(--primary-green);
}

/* Floating stat cards – now with white glass bg */
.stat-card {
    position: absolute;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    padding: 1rem 1.5rem;
    border-radius: 100px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--primary-black);
}
.stat-1 {
    top: 15%;
    right: 5%;
}
.stat-2 {
    bottom: 15%;
    left: 5%;
}
.stat-icon {
    background: var(--primary-green);
    color: white;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* ===== FEATURE CARDS – glass white on green bg ===== */
.feature-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(6,87,84,0.08);
    transition: all 0.25s ease;
    height: 100%;
    border: 1px solid rgba(6,87,84,0.1);
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px rgba(6,87,84,0.15);
}
.feature-icon {
    background: rgba(6,87,84,0.1);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

/* ===== STEP ITEMS – dark green on light green bg ===== */
.step-item {
    text-align: center;
    padding: 2rem 1rem;
}
.step-number {
    width: 64px;
    height: 64px;
    background: var(--primary-green);
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(6,87,84,0.2);
}

/* ===== TESTIMONIAL CARDS ===== */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.03);
    transition: all 0.2s;
    border: 1px solid rgba(6,87,84,0.1);
}
.testimonial-card:hover {
    box-shadow: 0 20px 35px rgba(6,87,84,0.1);
}
.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-green);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: var(--gradient-green);
    border-radius: 32px;
    padding: 3rem;
    color: white;
}
.cta-banner .btn-light {
    background: white;
    color: var(--primary-green);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 700;
}
.cta-banner .btn-light:hover {
    background: rgba(255,255,255,0.9);
    transform: scale(1.02);
}

/* ===== LOGO CLOUD ===== */
.logo-cloud img {
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.2s;
    opacity: 0.7;
}
.logo-cloud img:hover {
    filter: none;
    opacity: 1;
    transform: scale(1.05);
}

/* ===== NAVBAR TWEAK ===== */
.navbar {
    backdrop-filter: blur(10px);
    background: rgba(6,87,84,0.95) !important;
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    padding-left: 2rem;
    border-left: 3px solid rgba(255,255,255,0.2);
}
.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
    padding-left: 1.5rem;
}
.timeline-item:last-child {
    padding-bottom: 0;
}
.timeline-marker {
    position: absolute;
    left: -2.45rem;
    top: 0.3rem;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--primary-green);
    box-shadow: 0 0 0 4px rgba(255,255,255,0.1);
}
.timeline-content h4 {
    margin-bottom: 0.5rem;
}
.timeline-content p {
    margin-bottom: 0;
}
@media (min-width: 992px) {
    .timeline {
        padding-left: 0;
        border-left: none;
        display: flex;
        justify-content: space-between;
    }
    .timeline-item {
        flex: 1;
        padding-left: 0;
        padding-bottom: 0;
        text-align: center;
    }
    .timeline-marker {
        position: relative;
        left: auto;
        top: auto;
        margin: 0 auto 1.5rem;
    }
}

/* ===== TEAM CARDS ===== */
.team-card {
    background: white;
    border-radius: 24px;
    padding: 1.5rem 1.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(6,87,84,0.08);
    transition: transform 0.25s, box-shadow 0.25s;
    height: 100%;
    border: 1px solid rgba(6,87,84,0.1);
}
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(6,87,84,0.15);
}
.team-image-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-green);
    box-shadow: 0 8px 20px rgba(6,87,84,0.2);
}
.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(6,87,84,0.9), transparent);
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0 0.5rem;
    opacity: 0;
    transition: opacity 0.25s;
}
.team-image-wrapper:hover .team-social {
    opacity: 1;
}
.team-social-link {
    color: white;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
    transition: background 0.2s;
}
.team-social-link:hover {
    background: white;
    color: var(--primary-green);
}

/* ===== CUSTOM ACCORDION (FAQ) ===== */
.custom-accordion .accordion-item {
    background-color: white;
    border: 1px solid rgba(6,87,84,0.15);
    border-radius: 16px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(6,87,84,0.04);
    transition: box-shadow 0.2s;
}
.custom-accordion .accordion-item:hover {
    box-shadow: 0 8px 20px rgba(6,87,84,0.08);
}
.custom-accordion .accordion-header {
    border-radius: 16px;
}
.custom-accordion .accordion-button {
    padding: 1.5rem 1.5rem;
    font-weight: 600;
    color: var(--primary-black);
    background-color: white;
    border-radius: 16px !important;
    box-shadow: none !important;
}
.custom-accordion .accordion-button:not(.collapsed) {
    background-color: white;
    color: var(--primary-green);
    border-bottom: 1px solid rgba(6,87,84,0.1);
}
.custom-accordion .accordion-button:focus {
    border-color: rgba(6,87,84,0.3);
    box-shadow: 0 0 0 3px rgba(6,87,84,0.1);
}
.custom-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23065754' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
.custom-accordion .accordion-body {
    padding: 1.5rem;
    background-color: white;
    color: #4a5568;
    line-height: 1.7;
}

/* ===== CONTACT INFO CARDS ===== */
.contact-info-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(6,87,84,0.08);
    text-align: center;
    height: 100%;
    border: 1px solid rgba(6,87,84,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}
.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(6,87,84,0.12);
}
.contact-icon {
    background: rgba(6,87,84,0.1);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--primary-green);
    margin: 0 auto 1.25rem;
}

/* ===== CONTACT FORM CARD ===== */
.form-card {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(6,87,84,0.08);
    border: 1px solid rgba(6,87,84,0.1);
}
.custom-input {
    background-color: #f9fbfb;
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
    transition: all 0.2s;
}
.custom-input:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(6,87,84,0.1);
    background-color: white;
}
.form-label {
    font-size: 0.95rem;
    color: #2d2d2d;
    margin-bottom: 0.5rem;
}

/* ===== CONTACT SOCIAL LINKS ===== */
.contact-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(6,87,84,0.08);
    color: var(--primary-green);
    border-radius: 50%;
    font-size: 1.25rem;
    transition: all 0.2s;
}
.contact-social-link:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-3px);
}

/* ===== SELECT DROPDOWN STYLING ===== */
.form-select.custom-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23065754' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-size: 16px;
}

/* ===== POLICY CARDS (Terms & Privacy) ===== */
.policy-card {
    background: white;
    padding: 2rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(6,87,84,0.05);
    border: 1px solid rgba(6,87,84,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}
.policy-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 35px rgba(6,87,84,0.1);
}
.policy-card h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.policy-card h4 i {
    font-size: 1.5rem;
}
.policy-card p {
    margin-bottom: 0;
    line-height: 1.7;
}

/* ===== AUTH CARD ===== */
.auth-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 32px;
    box-shadow: 0 25px 50px -8px rgba(6,87,84,0.15);
    border: 1px solid rgba(6,87,84,0.08);
}
@media (min-width: 768px) {
    .auth-card {
        padding: 3rem;
    }
}

/* ===== CUSTOM INPUTS (Bootstrap friendly) ===== */
.custom-input {
    background-color: #f9fbfb;
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
    transition: all 0.2s;
    width: 100%;
}
.custom-input:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(6,87,84,0.1);
    background-color: white;
    outline: none;
}

/* ===== BOOTSTRAP BUTTON OVERRIDE ===== */
.btn-primary {
    background: var(--gradient-green) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 0.75rem 1.5rem !important;
    font-weight: 700 !important;
    transition: all 0.2s;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(6,87,84,0.2) !important;
}

/* ===== FORM CHECK ===== */
.form-check-input:checked {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}
.form-check-input:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(6,87,84,0.15);
}