/* ============================================
   Homoeo Dynamics - Custom Styles
   Bootstrap 5.3 + Manrope typography
   ============================================ */

:root {
    --hd-bg-blue: #DDEEF6;
    --hd-bg-blue-2: #E5F1F8;
    --hd-green-dark: #234E4A;
    --hd-green-darker: #1C4340;
    --hd-green: #7EC142;
    --hd-green-hover: #6BAE36;
    --hd-cream: #F6EFD9;
    --hd-orange: #E76A3E;
    --hd-text: #1a1a1a;
    --hd-muted: #6b7280;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--hd-text);
    background: #ffffff;
    overflow-x: hidden;
}

.hd-site {
    position: relative;
}

/* -------- Top Bar -------- */
.hd-topbar {
    background: #f7f3e2;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--hd-green-dark);
    letter-spacing: 0.5px;
}

    .hd-topbar a {
        color: var(--hd-green-dark);
        text-decoration: none;
    }

        .hd-topbar a:hover {
            color: var(--hd-green);
        }

/* -------- Navbar -------- */
.hd-navbar-wrap {
    background: var(--hd-bg-blue);
    padding: 10px 0 0;
}

.hd-navbar {
    background: #ffffff;
    border-radius: 60px;
    padding: 14px 34px;
    box-shadow: 0 6px 24px rgba(35, 78, 74, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

    .hd-navbar.sticky-top-active {
        position: fixed !important;
        top: 12px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1030;
        width: calc(100% - 48px);
        max-width: 1320px;
        box-shadow: 0 10px 40px rgba(35, 78, 74, 0.12);
    }

.hd-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .hd-logo img {
        height: 56px;
        width: auto;
    }

.hd-nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .hd-nav-links a {
        color: var(--hd-text);
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        position: relative;
        padding: 6px 0;
        transition: color .2s ease;
    }

        .hd-nav-links a::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: -4px;
            height: 2px;
            background: var(--hd-green);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .3s ease;
        }

        .hd-nav-links a:hover {
            color: var(--hd-green-dark);
        }

            .hd-nav-links a:hover::after {
                transform: scaleX(1);
            }

        .hd-nav-links a.active {
            color: var(--hd-green-dark);
        }

.hd-mobile-toggle {
    background: transparent;
    border: none;
    color: var(--hd-green-dark);
    display: none;
}

/* -------- Hero -------- */
.hd-hero {
    background: var(--hd-bg-blue);
    padding: 40px 0 60px;
    position: relative;
    overflow: hidden;
}

.hd-hero-title {
    font-family: "Poppins", sans-serif;
    color: var(--hd-green-dark);
    font-size: clamp(64px, 11vw, 200px);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -2px;
    margin: 0;
}

    .hd-hero-title span {
        display: block;
    }

.hd-hero-sub {
    color: var(--hd-orange);
    font-size: clamp(20px, 2vw, 30px);
    font-weight: 700;
    line-height: 1.25;
    margin-top: 24px;
    max-width: 620px;
}

.hd-hero-image-wrap {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hd-hero-image {
    width: 100%;
    max-width: 460px;
    aspect-ratio: 4/5;
    border-radius: 260px 260px 260px 260px / 300px 300px 300px 300px;
    object-fit: cover;
    object-position: center 25%;
    border: 3px solid #ffffff;
    box-shadow: 0 20px 60px rgba(35, 78, 74, 0.18);
}

/* -------- Quote strip -------- */
.hd-quote {
    background: var(--hd-green-dark);
    color: #ffffff;
    padding: 44px 0;
}


.hd-quote-author {
    color: var(--hd-green);
    font-weight: 700;
    font-size: 16px;
    margin-top: 6px;
}

    .hd-quote-author small {
        display: block;
        color: #cfeacf;
        font-weight: 400;
        font-size: 13px;
        margin-top: 2px;
    }

/* -------- Section: Premium Care -------- */
.hd-premium {
    background: var(--hd-cream);
    padding: 90px 0;
}

.hd-eyebrow {
    color: var(--hd-green);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.hd-h2 {
    font-family: "Poppins", sans-serif;
    color: var(--hd-green-dark);
    font-weight: 800;
    font-size: clamp(30px, 3.4vw, 46px);
    line-height: 1.12;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.hd-p {
    color: #2b2b2b;
    font-size: 16px;
    line-height: 1.7;
}

.hd-feature-card {
    background: var(--hd-green);
    color: #ffffff;
    border-radius: 22px;
    padding: 28px 22px;
    text-align: center;
    height: 100%;
    transition: transform .3s ease, box-shadow .3s ease;
}

    .hd-feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(126, 193, 66, 0.35);
    }

    .hd-feature-card .icon-circle {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: rgba(255,255,255,.18);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 12px;
    }

    .hd-feature-card h5 {
        font-weight: 700;
        font-size: 16px;
        margin: 0;
        line-height: 1.35;
        color: #fff !important;
    }

.hd-btn-green {
    background: var(--hd-green);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .2s ease, transform .2s ease;
    white-space: nowrap;
}

    .hd-btn-green:hover {
        background: var(--hd-green-hover);
        color: #ffffff;
        transform: translateY(-1px);
    }

.hd-info-pill {
    background: #ffffff;
    border-radius: 40px;
    padding: 14px 28px;
    color: var(--hd-green-dark);
    font-weight: 600;
    font-size: 15px;
    border: 1px solid #eadfba;
    display: inline-block;
}

/* -------- Homeopathy Clinic banner (dark green with medicine bg) -------- */
.hd-clinic-banner {
    position: relative;
    min-height: 520px;
    background: #2f7a5f url('../images/globuli-medical-bless-you-homeopathy-163186.avif') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

    .hd-clinic-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(35, 78, 74, 0.55), rgba(35, 78, 74, 0.35));
    }

.hd-clinic-card {
    position: relative;
    background: rgba(35, 78, 74, 0.92);
    color: #ffffff;
    border-radius: 24px;
    padding: 42px 40px;
    max-width: 560px;
    backdrop-filter: blur(6px);
}

    .hd-clinic-card h3 {
        font-weight: 800;
        font-size: clamp(26px, 2.4vw, 34px);
        margin-bottom: 18px;
        letter-spacing: -0.3px;
    }

    .hd-clinic-card p {
        font-size: 15px;
        line-height: 1.75;
        color: #e6f3ee;
    }

/* -------- Services -------- */
.hd-services {
    padding: 90px 0;
    background: #f7f3e2;
}

.hd-service-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 24px;
    text-align: center;
    height: 100%;
    border: 1px solid #e5eef4;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

    .hd-service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(35, 78, 74, 0.12);
        border-color: var(--hd-green);
    }

    .hd-service-card h5 {
        font-weight: 700;
        font-size: 17px;
        margin: 0;
        line-height: 1.35;
    }

/* -------- Medicine banner strip -------- */
.hd-med-strip {
    background: var(--hd-green-dark);
    color: #ffffff;
    padding: 22px 0;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.4px;
    text-align: center;
}

    .hd-med-strip .divider {
        color: var(--hd-green);
        margin: 0 10px;
    }

/* -------- Best Medicine section -------- */

.hd-best .hd-eyebrow {
    color: var(--hd-green);
}

.hd-best h2 {
    color: #ffffff;
    font-weight: 800;
    font-size: clamp(30px, 3.2vw, 44px);
    line-height: 1.15;
    margin-bottom: 30px;
}

.hd-stat {
    display: flex;
    flex-direction: column;
}

    .hd-stat .num {
        font-size: 46px;
        font-weight: 800;
        color: #ffffff;
        line-height: 1;
    }

    .hd-stat .lbl {
        color: #cfeacf;
        font-size: 14px;
        font-weight: 500;
        margin-top: 6px;
    }

.hd-best-desc {
    color: #cfeacf;
    font-size: 13px;
    line-height: 1.75;
    margin-top: 20px;
    letter-spacing: 0.3px;
}

.hd-best-image {
    width: 100%;
    max-width: 460px;
    aspect-ratio: 4/5;
    border-radius: 260px 260px 260px 260px / 300px 300px 300px 300px;
    object-fit: cover;
    border: 3px solid #ffffff;
}

/* -------- Patient Trust -------- */
.hd-trust {
    background: var(--hd-cream);
    padding: 90px 0;
}

.hd-trust-pill {
    background: #ffffff;
    border: 1px solid #e0d5b5;
    border-radius: 40px;
    padding: 14px 26px;
    color: var(--hd-green-dark);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}

    .hd-trust-pill:hover {
        background: var(--hd-green-dark);
        color: #ffffff;
        transform: translateY(-2px);
    }

    .hd-trust-pill.active {
        background: var(--hd-green);
        color: #ffffff;
        border-color: var(--hd-green);
    }

.hd-testimonial-btn {
    background: var(--hd-green);
    color: #ffffff !important;
    border: none;
    border-radius: 40px;
    padding: 12px 26px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}

    .hd-testimonial-btn:hover {
        background: var(--hd-green-hover);
    }

/* -------- Footer -------- */
.hd-footer {
    background: var(--hd-green-dark);
    color: #dfeee8;
    padding: 60px 0 0;
}

    .hd-footer h6 {
        color: #ffffff;
        font-weight: 700;
        font-size: 15px;
        margin-bottom: 16px;
        letter-spacing: 0.4px;
    }

    .hd-footer a {
        color: #dfeee8;
        text-decoration: none;
        font-size: 14px;
        transition: color .2s ease;
    }

        .hd-footer a:hover {
            color: var(--hd-green);
        }

    .hd-footer ul {
        list-style: none;
        padding: 0;
    }

        .hd-footer ul li {
            margin-bottom: 10px;
        }

    .hd-footer .social-icons {
        display: flex;
        gap: 12px;
    }

        .hd-footer .social-icons a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: transparent;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: background .25s ease;
        }

            .hd-footer .social-icons a:hover {
                background: var(--hd-green);
            }

.hd-footer-bottom {
    background: #142f2c;
    color: #ffffff;
    padding: 16px 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-top: 40px;
}

/* -------- Floating book badge -------- */
.hd-book-badge {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0,0,0,.15);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: hd-spin 14s linear infinite;
    cursor: pointer;
    text-decoration: none;
}

    .hd-book-badge .center {
        position: absolute;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: var(--hd-green);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        animation: hd-spin 14s linear infinite reverse;
    }

    .hd-book-badge svg.text-circle {
        width: 100%;
        height: 100%;
    }

    .hd-book-badge text {
        font-family: "Poppins", sans-serif;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 2px;
        fill: var(--hd-green-dark);
    }

@keyframes hd-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* -------- Mobile responsiveness -------- */
@media (max-width: 991.98px) {
    .hd-nav-links {
        display: none;
    }

    .hd-mobile-toggle {
        display: inline-flex;
    }

    .hd-mobile-menu {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        background: #ffffff;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0,0,0,.12);
        padding: 18px 20px;
        z-index: 20;
    }

        .hd-mobile-menu a {
            display: block;
            padding: 10px 6px;
            font-weight: 600;
            color: var(--hd-text);
            text-decoration: none;
            border-bottom: 1px solid #eef3f6;
        }

            .hd-mobile-menu a:last-child {
                border-bottom: none;
            }

    .hd-hero {
        padding: 30px 0 40px;
    }

    .hd-hero-image {
        max-width: 340px;
        margin: 30px auto 0;
    }

    .hd-clinic-card {
        padding: 32px 26px;
    }

    .hd-book-badge {
        width: 92px;
        height: 92px;
    }

        .hd-book-badge .center {
            width: 50px;
            height: 50px;
        }
}

@media (max-width: 575.98px) {
    .hd-navbar {
        padding: 10px 16px;
        border-radius: 40px;
    }

    .hd-logo img {
        height: 44px;
    }

    .hd-topbar {
        font-size: 11px;
        padding: 8px 0;
    }

    .hd-book-badge {
        width: 78px;
        height: 78px;
        bottom: 12px;
        left: 12px;
    }

        .hd-book-badge .center {
            width: 40px;
            height: 40px;
        }
}

/* Kill React default styles */
.App {
    text-align: left !important;
}

.App-header, .App-logo, .App-link {
    display: none !important;
}

* {
    box-sizing: border-box;
}

.slider-banner {
    position: relative;
    width: 100%;
    aspect-ratio: 1400 / 637;
    /* background: #DCEEF3; */
    overflow: hidden;
    display: flex;
    align-items: center;
    font-family: "Poppins", sans-serif;
    /* background-image: url(../images/banner.png); */
    background-repeat: no-repeat;
    background-position: 45% 50%;
    height: 660px;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.35;
    filter: blur(2px);
}

.shape1 {
    width: 12%;
    aspect-ratio: 1;
    background: #c7e4ec;
    top: -6%;
    left: 8%;
    animation: drift1 9s ease-in-out infinite;
}

.shape2 {
    width: 7%;
    aspect-ratio: 1;
    background: #c7e4ec;
    bottom: -4%;
    left: 30%;
    animation: drift2 7s ease-in-out infinite;
}

@keyframes drift1 {
    0%, 100% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(1.5%, 2%);
    }
}

@keyframes drift2 {
    0%, 100% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(-2%, -1.5%);
    }
}

.content {
    position: relative;
    z-index: 2;
    padding-left: 0%;
    width: 62%;
}

.headline {
    margin: 0;
    line-height: 0.92;
    color: #1F4A44;
    font-size: clamp(28px, 6.2vw, 92px);
    letter-spacing: 0.5px;
}

    .headline .line {
        display: block;
        opacity: 0;
        transform: translateY(40px);
        animation: riseIn 0.7s cubic-bezier(.2,.8,.2,1) forwards;
        animation-delay: calc(var(--d) * 0.15s + 0.2s);
    }
@keyframes riseIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    animation-duration: 1.25s;
}
.zoomIn {
    animation-name: zoomIn;
}
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}

.zoomIn {
    animation-name: zoomIn;
}

.subtext {
    margin: 6% 0 6% 0;
    color: #000;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    line-height: 1.15;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeUp 0.7s ease forwards;
    animation-delay: 0.95s;
    padding-left: 10px;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animated.animated-slow {
    animation-duration: 2s;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0,100%,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUp {
    animation-name: fadeInUp
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0,-100%,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInDown {
    animation-name: fadeInDown
}
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%,0,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInLeft {
    animation-name: fadeInLeft
}

.portrait-wrap {
    position: absolute;
    right: 0%;
    top: 50%;
    transform: translateY(-50%);
    width: 30%;
    aspect-ratio: 420/590;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-ring {
    position: absolute;
    inset: -4%;
    border-radius: 999em 999em 999em 999em;
    border: 2px solid #E8622F;
    opacity: 0;
    animation: pulseRing 2.6s ease-out infinite;
    animation-delay: 1.3s;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.92);
        opacity: 0.6;
    }

    70% {
        transform: scale(1.06);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.portrait {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 999em 999em 999em 999em;
    overflow: hidden;
    border: 2px solid #ffffff;
    box-shadow: 0 12px 30px rgba(31,74,68,0.18);
    opacity: 1;
    /*transform: scale(0.85);
    animation: popIn 0.8s cubic-bezier(.2,.8,.2,1) forwards, floaty 4.5s ease-in-out infinite;
    animation-delay: 0.4s, 1.4s;*/
}

    .portrait img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floaty {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .headline .line, .subtext, .portrait, .pulse-ring, .bg-shape {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (max-width: 700px) {
    .slider-banner {
        aspect-ratio: 1 / 1.05;
        flex-direction: column;
        padding-top: 2%;
    }

    .content {
        width: 92%;
        padding-left: 0;
        text-align: center;
    }

    .headline .line {
        display: inline;
    }

    .headline {
        line-height: 1.05;
    }

    .portrait-wrap {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 55%;
        margin-top: 6%;
    }

    .subtext br {
        display: none;
    }
}

.hero {
    position: relative;
    min-height: 85vh;
    background: radial-gradient(circle at 78% 45%, var(--bg-2) 0%, var(--bg) 55%);
    display: flex;
    align-items: center;
    padding: 0px 8vw;
    overflow: hidden;
}

/* ---------- ambient floating leaves in background ---------- */
.leaf {
    position: absolute;
    border-radius: 0 100% 0 100%;
    background: linear-gradient(135deg, rgba(138,197,65,0.18), rgba(138,197,65,0.04));
    opacity: 0;
    animation: driftIn 1.6s ease forwards, drift 9s ease-in-out infinite;
}

.leaf1 {
    width: 120px;
    height: 120px;
    top: 8%;
    left: 38%;
    animation-delay: .2s, 1.8s;
}

.leaf2 {
    width: 80px;
    height: 80px;
    bottom: 12%;
    left: 46%;
    animation-delay: .4s, 2.1s;
}

.leaf3 {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 30%;
    animation-delay: .6s, 2.4s;
}

@keyframes driftIn {
    to {
        opacity: 1;
    }
}

@keyframes drift {
    0%,100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(8deg);
    }
}

/* ---------- LEFT: text content ---------- */
.content {
    position: relative;
    z-index: 2;
    max-width: 560px;
}

.stats {
    display: flex;
    gap: 54px;
    margin-bottom: 30px;
}

.stat {
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp .7s ease forwards;
}

    .stat:nth-child(1) {
        animation-delay: .5s;
    }

    .stat:nth-child(2) {
        animation-delay: .62s;
    }

.stat-num {
    color: #3e7a28;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    display: flex;
    align-items: flex-start;
}

    .stat-num span.pct {
        font-size: 18px;
        font-weight: 700;
        margin-left: 2px;
    }

.stat-label {
    color: #000;
    font-size: 13px;
    margin-top: 6px;
}

.taglist {
    color: var(--text-light);
    font-size: 13.5px;
    line-height: 1.9;
    margin: 0 0 30px 0;
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp .7s ease forwards;
    animation-delay: .74s;
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--green-btn), var(--green-btn-dark));
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 17px 26px;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp .7s ease forwards, pulse 2.6s ease-in-out infinite;
    animation-delay: .9s, 2.4s;
    box-shadow: 0 8px 22px rgba(90,164,50,0.0);
    transition: box-shadow .3s ease, transform .25s ease;
}

    .cta:hover {
        transform: translateY(-3px) scale(1.03);
        box-shadow: 0 12px 28px rgba(90,164,50,0.45);
    }

    .cta svg {
        animation: ring 2.5s ease-in-out infinite;
        transform-origin: center;
    }

@keyframes ring {
    0%, 88%, 100% {
        transform: rotate(0deg);
    }

    90% {
        transform: rotate(-15deg);
    }

    92% {
        transform: rotate(12deg);
    }

    94% {
        transform: rotate(-10deg);
    }

    96% {
        transform: rotate(6deg);
    }

    98% {
        transform: rotate(0deg);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%,100% {
        box-shadow: 0 8px 22px rgba(90,164,50,0.0);
    }

    50% {
        box-shadow: 0 8px 26px rgba(122,197,65,0.35);
    }
}

/* ---------- RIGHT: image composition ---------- */
.visual {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: right;
    align-items: center;
    height: 560px;
}

.circle-photo {
    position: relative;
    width: 420px;
    height: 500px;
    border-radius: 50% 50% 46% 46% / 55% 55% 45% 45%;
    background: radial-gradient(circle at 30% 75%, #d8c3a5 0%, #d8c3a5 18%, transparent 19%), linear-gradient(160deg, #3f6b3a 0%, #2c5230 35%, #4a7a3d 60%, #1f3f27 100%);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
    opacity: 0;
    transform: scale(.85) translateY(20px);
    animation: popIn 1s cubic-bezier(.22,1,.36,1) forwards, floaty 6s ease-in-out infinite;
    animation-delay: .2s, 1.2s;
}

    .circle-photo::before {
        /* leafy texture using layered radial gradients */
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 20%, rgba(120,180,90,0.55) 0 40px, transparent 41px), radial-gradient(circle at 60% 10%, rgba(90,150,70,0.5) 0 55px, transparent 56px), radial-gradient(circle at 85% 35%, rgba(140,190,100,0.45) 0 45px, transparent 46px), radial-gradient(circle at 15% 55%, rgba(80,130,60,0.5) 0 50px, transparent 51px), radial-gradient(circle at 70% 65%, rgba(110,165,80,0.4) 0 60px, transparent 61px);
        filter: blur(1px);
    }

.person {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 260px;
    opacity: 0;
    animation: fadeUp .9s ease forwards;
    animation-delay: .9s;
}

    .person .head {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: linear-gradient(160deg,#e8c9a3,#d3a877);
        margin: 0 auto 6px auto;
    }

    .person .hair {
        width: 76px;
        height: 40px;
        background: linear-gradient(160deg,#8a5a3a,#6b4327);
        border-radius: 40px 40px 0 0;
        margin: -76px auto 0 auto;
        position: relative;
        z-index: 1;
    }

    .person .body {
        width: 200px;
        height: 170px;
        background: linear-gradient(160deg,#efe6da,#d8cbb8);
        border-radius: 60px 60px 20px 20px;
        margin: -4px auto 0 auto;
    }

@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes floaty {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.flower {
    position: absolute;
    top: 10%;
    left: 27%;
    width: 190px;
    height: 190px;
    z-index: 3;
    opacity: 0;
    transform: scale(.6) rotate(-25deg);
    animation: bloom 1s cubic-bezier(.34,1.56,.64,1) forwards, sway 5s ease-in-out infinite;
    animation-delay: .55s, 1.6s;
    transform-origin: 60% 60%;
}

@keyframes bloom {
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes sway {
    0%,100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(-6deg);
    }
}

.petal {
    position: absolute;
    width: 46px;
    height: 90px;
    background: linear-gradient(180deg, #ffffff, #f2eee6);
    border-radius: 50% 50% 50% 50%;
    top: 50%;
    left: 50%;
    transform-origin: 50% 100%;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.05);
}

.flower-center {
    position: absolute;
    width: 54px;
    height: 54px;
    background: radial-gradient(circle, #e8c94a 0%, #c9a52e 70%, #a5841f 100%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 2;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25) inset;
}

/* subtle sparkle accents */
.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--green-accent);
    border-radius: 50%;
    opacity: 0;
    animation: sparkle 3s ease-in-out infinite;
}

    .sparkle:nth-child(1) {
        top: 10%;
        right: 20%;
        animation-delay: 1.4s;
    }

    .sparkle:nth-child(2) {
        top: 40%;
        right: 5%;
        animation-delay: 2s;
    }

    .sparkle:nth-child(3) {
        bottom: 15%;
        right: 25%;
        animation-delay: 2.6s;
    }

@keyframes sparkle {
    0%,100% {
        opacity: 0;
        transform: scale(.5);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        padding: 50px 6vw;
        text-align: center;
    }

    .stats {
        justify-content: center;
    }

    .visual {
        height: 420px;
        margin-top: 40px;
    }

    .circle-photo {
        width: 320px;
        height: 380px;
    }

    .content {
        max-width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}


/*Header/Navbar*/
/* ---------- Header shell ---------- */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0px 40px;
    flex-wrap: wrap;
    background: #fff;
}

    header .container-xl {
        display: flex;
        gap: 10px;
    }

/* ---------- Logo ---------- */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.7s cubic-bezier(.2,.8,.2,1) 0.25s forwards;
}

    .logo svg {
        width: 64px;
        height: 60px;
        display: block;
    }

.logo-text {
    line-height: 1;
}

    .logo-text .name {
        font-family: Georgia, 'Times New Roman', serif;
        font-style: italic;
        font-weight: 700;
        font-size: 26px;
        color: var(--green);
        display: flex;
        align-items: flex-start;
    }

        .logo-text .name sup {
            font-size: 12px;
            font-style: normal;
        }

    .logo-text .tagline {
        font-size: 10px;
        letter-spacing: 2px;
        color: var(--orange);
        font-weight: 600;
        margin-top: 2px;
    }

/* ---------- Nav pill ---------- */
.nav-wrap {
    background: transparent;
    border-radius: 20px;
    box-shadow: var(--shadow);
    /* padding: 10px 0; */
    flex: 1;
    opacity: 0;
    transform: translateY(-20px);
    animation: dropIn 0.7s cubic-bezier(.2,.8,.2,1) 0.4s forwards;
    min-width: 260px;
}

    .nav-wrap nav {
        background: #fff;
        padding: 35px 0;
        border-radius: 18px;
    }

nav ul {
    list-style: none;
    display: flex;
    /* gap: 65px; */
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}

nav a {
    position: relative;
    text-decoration: none;
    color: #1c1c1c;
    font-weight: 700;
    font-size: 15px;
    padding-bottom: 4px;
    transition: color 0.25s ease;
}

    nav a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 0%;
        height: 2px;
        background: #e8752c;
        transition: width 0.3s ease;
    }

    nav a:hover {
        color: #e8752c;
    }

        nav a:hover::after {
            width: 100%;
        }

/* stagger nav items in */
nav li {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp 0.5s ease forwards;
}

    nav li:nth-child(1) {
        animation-delay: 0.6s;
    }

    nav li:nth-child(2) {
        animation-delay: 0.68s;
    }

    nav li:nth-child(3) {
        animation-delay: 0.76s;
    }

    nav li:nth-child(4) {
        animation-delay: 0.84s;
    }

    nav li:nth-child(5) {
        animation-delay: 0.92s;
    }

    nav li:nth-child(6) {
        animation-delay: 1.0s;
    }

    nav li:nth-child(7) {
        animation-delay: 1.08s;
    }

/* ---------- Hamburger (hidden on desktop) ---------- */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 20;
}

    .burger span {
        width: 26px;
        height: 3px;
        background: #1c4a5e;
        border-radius: 3px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .burger.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .burger.open span:nth-child(2) {
        opacity: 0;
    }

    .burger.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

/* ---------- Keyframes ---------- */
@keyframes dropIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    header {
        padding: 14px 20px 10px;
    }

    .hd-topbar {
        padding: 12px 20px 0;
        font-size: 13px;
        gap: 10px;
        flex-wrap: wrap;
    }

    .nav-wrap {
        order: 3;
        width: 100%;
        padding: 0;
        border-radius: 18px;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        transform: none;
        animation: none;
        box-shadow: none;
        transition: max-height 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
    }

        .nav-wrap.expanded {
            max-height: 500px;
            padding: 18px 10px;
            box-shadow: var(--shadow);
            margin-top: 14px;
        }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    nav li {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .burger {
        display: flex;
    }

    .logo {
        animation: slideInLeft 0.7s cubic-bezier(.2,.8,.2,1) 0.15s forwards;
    }
}

@media (max-width: 480px) {
    .topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        font-size: 12px;
    }

    .logo svg {
        width: 52px;
        height: 48px;
    }

    .logo-text .name {
        font-size: 21px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-delay: 0s !important;
        transition-duration: 0.01ms !important;
    }
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #5fa13b;
    color: #fff;
    border: none;
    padding: 14px 22px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.1s ease;
    white-space: nowrap;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.stat {
    background: rgba(220,239,2225,0.8);
    border-radius: 14px;
    padding: 20px 24px;
}

    .stat .label {
        font-size: 17px;
        color: #333;
        margin: 0 0 6px;
        font-weight: 600;
    }

    .stat .value {
        font-size: 30px;
        font-weight: 700;
        color: #3e7a28;
        margin: 0;
    }

.groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.group {
    background: #fff;
    border: 1px solid #dad5c6;
    border-radius: 15px;
    padding: 22px 10px 22px 15px;
}

.group-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

    .group-head .icon {
        width: 34px;
        height: 34px;
        border-radius: 8px;
        background: #EAF3E3;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

        .group-head .icon svg {
            width: 18px;
            height: 18px;
            stroke: #3e7a28;
        }

    .group-head h2 {
        font-size: 17px !important;
        font-weight: 700 !important;
        margin: 0;
        color: #1e3a34 !important;
    }

.group ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.group li {
    font-weight:500;
    font-size: 17px;
    line-height: 1.5;
    color: #333;
    display: flex;
    gap: 10px;
}

    .group li svg {
        width: 15px;
        height: 15px;
        stroke: #5fa13b;
        flex-shrink: 0;
        margin-top: 3px;
    }

.footline {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #49ab4b;
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 17px;
    color: #fff;
    font-weight: 500;
}

    .footline svg {
        width: 17px;
        height: 17px;
        stroke: #fff;
        flex-shrink: 0;
    }
/*Mobile Responsive */

@media only screen and (min-width: 260px) and (max-width: 768px) {
    .hd-hero-title {
        font-size: 25px !important;
        letter-spacing: 0 !important;
        line-height: 1.25 !important;
    }

    .subtext {
        font-size: 15px;
    }

    .hd-hero {
        padding: 0 !important;
    }

    .slider-banner {
        aspect-ratio: 1 / 1.05;
        flex-direction: column;
        padding-top: 20%;
    }

    .hd-quote-text {
        font-size: 22px !important;
    }

    .hd-info-pill {
        width: 100% !important;
    }

    .hd-h2 {
        font-size: 23px !important;
    }

    .hd-testimonial-btn {
        display: flex;
        justify-content: center;
        font-size: 18px !important;
        padding: 10px 30px !important;
    }

    .hidden {
        display: none;
    }

    .flower {
        left: -11% !important;
    }

    .social-icons {
        margin-top: 0rem !important;
    }

    .Qlink {
        margin-top: 0rem !important;
    }

    .hd-best {
        padding: 50px 30px;
    }

    header .container-xl {
        display: block;
    }

    .logo img {
        display: block;
        margin: auto;
    }

    .hd-topbar .container-xl div {
        justify-content: center !important;
    }

    .hd-btn-green {
        display: flex !important;
        justify-content: center;
        white-space: normal !important;
        font-size: 18px !important;
        padding: 10px 20px !important;
    }
}
.animated {
    animation-duration: 1.25s
}

    .animated.animated-slow {
        animation-duration: 2s
    }

    .animated.animated-fast {
        animation-duration: .75s
    }

    .animated.infinite {
        animation-iteration-count: infinite
    }

    .animated.reverse {
        animation-direction: reverse;
        animation-fill-mode: forwards
    }

@media (prefers-reduced-motion:reduce) {
    .animated {
        animation: none !important
    }

    html * {
        transition-delay: 0s !important;
        transition-duration: 0s !important
    }
}