* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: linear-gradient(135deg, #f3c5b5, #e6ddff, #b8f1e8);
    background-size: 300% 300%;
    animation: bgFlow 16s ease infinite;
    color: #2f3a44;
    overflow-x: hidden;
}

@keyframes bgFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Cursor (desktop only) */
.cursor {
    position: fixed;
    width: 18px;
    height: 18px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: multiply;
    z-index: 100;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    padding: 0px 35px;
    background: rgba(255,255,255,0.45);
    backdrop-filter: blur(18px);
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #2f3a44;
    font-weight: 500;
}

.menu-toggle {
    display: none;
    font-size: 1.4rem;
    cursor: pointer;
}

/* Hero */
.hero {
    height: 100vh;
    position: relative;
}



.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) saturate(1.1);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 550px;
}

.hero h1 {
    font-size: 3.6rem;
    line-height: 1.1;
    color: #ffffff;
    text-shadow:
        0 4px 20px rgba(0,0,0,0.45);
}

.hero p {
    margin-top: 18px;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.92);
    text-shadow:
        0 2px 10px rgba(0,0,0,0.4);
}

/* Buttons */
button {
    margin-top: 30px;
    padding: 15px 45px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.primary-btn {
    background: linear-gradient(135deg, #ff8a65, #ffb74d);
    color: white;
}

.secondary-btn {
    background: linear-gradient(135deg, #4dd0e1, #81c784);
    color: white;
}

/* Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.blob1 {
    width: 320px;
    height: 320px;
    background: #ffab91;
    top: 25%;
    left: -140px;
}

.blob2 {
    width: 280px;
    height: 280px;
    background: #b39ddb;
    bottom: 15%;
    right: -140px;
}

/* Sections */
.section,
.impact,
.contact {
    padding: 120px 12%;
    text-align: center;
}

.section h2,
.impact h2,
.contact h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

/* Cards */
.cards {
    display: flex;
    gap: 40px;
    justify-content: center;
    padding: 120px 10%;
}

.card {
    width: 280px;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: 22px;
    text-align: center;
}

.card img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 15px;
}

/* Stats */
.stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stats span {
    font-size: 2.6rem;
    display: block;
}

/* Mobile */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 2.6rem;
    }

    .cards {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 20px;
        background: rgba(255,255,255,0.9);
        border-radius: 20px;
        flex-direction: column;
        padding: 20px;
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}


.page-transition {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #ffb74d, #ff8a65);
    transform: scaleY(0);
    transform-origin: bottom;
    z-index: 999;
}

.chart {
    width: 60%;
    margin: 40px auto;
}

.story {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.story-step {
    padding: 30px;
    border-radius: 22px;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(20px);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

.why-us {
    padding: 120px 12%;
    text-align: center;
}

.why-us h2 {
    font-size: 2.4rem;
    margin-bottom: 50px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 30px;
    text-align: left;
    transition: transform 0.4s ease;
}

.why-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.why-card p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Subtle motion */
.why-card:hover {
    transform: translateY(-6px);
}

/* Mobile */
@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 30px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card ul {
    padding-left: 18px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-card button {
    margin-top: 20px;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(20px);
    border-radius: 26px;
    padding: 35px;
    text-align: center;
}

.package-card .price {
    font-size: 1.8rem;
    margin: 15px 0;
    font-weight: 600;
}

.package-card ul {
    padding-left: 18px;
    text-align: left;
    line-height: 1.6;
}

.package-card.highlight {
    transform: scale(1.05);
}

.package-card.premium {
    border: 2px solid rgba(255,138,101,0.5);
}

@media (max-width: 900px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
}

.package-card.blue {
    background:
        linear-gradient(
            135deg,
            rgba(77,208,225,0.25),
            rgba(255,255,255,0.55)
        );
    border: 1px solid rgba(77,208,225,0.4);
}

.package-card.blue .price {
    color: #0288d1;
}

.package-card.blue button {
    background: linear-gradient(135deg, #4dd0e1, #81d4fa);
}

.package-card.pink {
    background:
        linear-gradient(
            135deg,
            rgba(255,138,101,0.25),
            rgba(255,255,255,0.55)
        );
    border: 1px solid rgba(255,138,101,0.4);
}

.package-card.pink .price {
    color: #e64a19;
}

.package-card.pink button {
    background: linear-gradient(135deg, #ff8a65, #ffb74d);
}

.package-card.dark {
    background:
        linear-gradient(
            135deg,
            rgba(55,71,79,0.35),
            rgba(255,255,255,0.5)
        );
    border: 1px solid rgba(55,71,79,0.5);
}

.package-card.dark .price {
    color: #263238;
}

.package-card.dark button {
    background: linear-gradient(135deg, #455a64, #607d8b);
}

.reviews {
    padding: 120px 12%;
    text-align: center;
}

.reviews h2 {
    font-size: 2.4rem;
    margin-bottom: 50px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 35px;
    text-align: left;
    position: relative;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-author {
    font-weight: 600;
    color: #455a64;
}

/* Subtle quote accent */
.review-card::before {
    content: "“";
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 4rem;
    color: rgba(0,0,0,0.08);
    font-family: serif;
}

/* Mobile */
@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

.footer {
    background: linear-gradient(
        135deg,
        rgba(47,58,68,0.9),
        rgba(69,90,100,0.9)
    );
    color: rgba(255,255,255,0.9);
    padding: 80px 12% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-block h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #ffffff;
}

.footer-block p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.designer {
    color: #ffb74d;
    font-weight: 500;
}

/* Mobile */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.logo img {
    height: 68px;
    width: auto;
}

.mvv {
    padding: 120px 12%;
    text-align: center;
}

.mvv h2 {
    font-size: 2.4rem;
    margin-bottom: 50px;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mvv-card {
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 35px;
    text-align: left;
}

.mvv-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.mvv-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.values-list {
    list-style: none;
    padding-left: 0;
}

.values-list li {
    padding-left: 22px;
    margin-bottom: 10px;
    position: relative;
    font-size: 0.95rem;
}

.values-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff8a65;
    font-weight: bold;
}

/* Mobile */
@media (max-width: 900px) {
    .mvv-grid {
        grid-template-columns: 1fr;
    }
}



