
        :root {
            --sage: #8fae8b;
            --sage-light: #b5ccb2;
            --sage-dark: #5e7d5a;
            --cream: #faf8f4;
            --warm-cream: #f5f0e8;
            --beige: #e8e0d4;
            --sand: #d4c5b0;
            --soft-green: #e8f0e6;
            --pale-mint: #f0f7ee;
            --blush: #f2e6e0;
            --text-dark: #3a3a3a;
            --text-medium: #5a5a5a;
            --text-light: #7a7a7a;
            --white: #ffffff;
            --gold-soft: #c9a96e;
            --lavender: #e8e0f0;
            --peach: #f7ebe4;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        img {
        max-width: 100%;
        height: auto;
        display: block;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            font-family: 'Nunito', sans-serif;
            color: var(--text-dark);
            background-color: var(--cream);
            overflow-x: hidden;
            line-height: 1.7;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            line-height: 1.3;
        }

        /* ===== NAVBAR ===== */
        .navbar {
            background: rgba(250, 248, 244, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 0.8rem 0;
            transition: all 0.4s ease;
            border-bottom: 1px solid transparent;
        }

        .navbar.scrolled {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(143, 174, 139, 0.15);
            box-shadow: 0 2px 30px rgba(0, 0, 0, 0.04);
        }

        .navbar-brand {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--sage-dark) !important;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .navbar-brand .brand-icon {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--sage), var(--sage-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.1rem;
        }

        .nav-link {
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--text-medium) !important;
            padding: 0.5rem 1rem !important;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--sage);
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--sage-dark) !important;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 20px;
        }

        .navbar-toggler {
            border: none;
            padding: 0.4rem;
            font-size: 1.3rem;
            color: var(--sage-dark);
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        /* ===== HERO ===== */
        .hero-section {
            min-height: 100vh;
            background: linear-gradient(160deg, var(--cream) 0%, var(--soft-green) 30%, var(--pale-mint) 60%, var(--warm-cream) 100%);
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(143, 174, 139, 0.12);
            border: 1px solid rgba(143, 174, 139, 0.25);
            padding: 0.45rem 1.2rem;
            border-radius: 50px;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--sage-dark);
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }

        .hero-title {
            font-size: clamp(2.5rem, 5.5vw, 4.2rem);
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            line-height: 1.15;
        }

        .hero-title span {
            color: var(--sage-dark);
            position: relative;
        }

        .hero-title span::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(143, 174, 139, 0.2);
            border-radius: 4px;
            z-index: -1;
        }

        .hero-subtitle {
            font-size: 1.15rem;
            color: var(--text-medium);
            max-width: 540px;
            margin-bottom: 2.5rem;
            font-weight: 400;
            line-height: 1.8;
        }

        .hero-btns {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .btn-primary-custom {
            background: linear-gradient(135deg, var(--sage), var(--sage-dark));
            border: none;
            color: white;
            padding: 0.85rem 2.2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.92rem;
            letter-spacing: 0.5px;
            transition: all 0.4s ease;
            box-shadow: 0 4px 20px rgba(143, 174, 139, 0.3);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(143, 174, 139, 0.4);
            color: white;
            background: linear-gradient(135deg, var(--sage-dark), #4a6b46);
        }

        .btn-whatsapp {
            background: #25D366;
            border: none;
            color: white;
            padding: 0.85rem 2.2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.92rem;
            letter-spacing: 0.5px;
            transition: all 0.4s ease;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-whatsapp:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
            color: white;
            background: #20bd5a;
        }

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-mandala {
            width: 420px;
            height: 420px;
            position: relative;
        }

        .mandala-ring {
            position: absolute;
            border-radius: 50%;
            border: 1.5px solid;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: spin-slow linear infinite;
        }

        .mandala-ring:nth-child(1) {
            width: 100%;
            height: 100%;
            border-color: rgba(143, 174, 139, 0.15);
            animation-duration: 40s;
        }

        .mandala-ring:nth-child(2) {
            width: 80%;
            height: 80%;
            border-color: rgba(201, 169, 110, 0.12);
            animation-duration: 30s;
            animation-direction: reverse;
        }

        .mandala-ring:nth-child(3) {
            width: 60%;
            height: 60%;
            border-color: rgba(143, 174, 139, 0.2);
            animation-duration: 25s;
        }

        .mandala-ring:nth-child(4) {
            width: 40%;
            height: 40%;
            border-color: rgba(201, 169, 110, 0.15);
            animation-duration: 20s;
            animation-direction: reverse;
        }

        .mandala-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(143, 174, 139, 0.15), rgba(201, 169, 110, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            animation: pulse-soft 4s ease-in-out infinite;
        }

        @keyframes spin-slow {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        @keyframes pulse-soft {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.9; }
            50% { transform: translate(-50%, -50%) scale(1.05); opacity: 1; }
        }

        .mandala-dot {
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--sage);
            border-radius: 50%;
            opacity: 0.4;
        }

        /* ===== SECTION STYLES ===== */
        section {
            padding: 6rem 0;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--sage-dark);
            margin-bottom: 1rem;
        }

        .section-badge i {
            font-size: 0.6rem;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.05rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto 3rem;
            line-height: 1.8;
        }

        .divider {
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--sage), var(--gold-soft));
            border-radius: 3px;
            margin: 1rem auto 1.5rem;
        }

        /* ===== ABOUT ===== */
        .about-section {
            background: var(--white);
        }

        .about-card {
            background: linear-gradient(135deg, var(--soft-green), var(--pale-mint));
            border-radius: 24px;
            padding: 3rem;
            border: 1px solid rgba(143, 174, 139, 0.15);
        }

        .about-text {
            font-size: 1.05rem;
            color: var(--text-medium);
            line-height: 1.9;
        }

        .about-feature {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.2rem 0;
        }

        .about-feature-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            background: rgba(143, 174, 139, 0.15);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--sage-dark);
            font-size: 1.2rem;
        }

        .about-feature h5 {
            font-size: 1.15rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
            color: var(--text-dark);
        }

        .about-feature p {
            font-size: 0.92rem;
            color: var(--text-light);
            margin: 0;
            line-height: 1.6;
        }

        /* ===== SERVICES CARDS ===== */
        .services-section {
            background: linear-gradient(180deg, var(--cream) 0%, var(--soft-green) 100%);
        }

        .service-card {
            background: var(--white);
            border-radius: 24px;
            padding: 2.5rem 2rem;
            border: 1px solid rgba(143, 174, 139, 0.1);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            border-radius: 24px 24px 0 0;
            transition: height 0.4s ease;
        }

        .service-card.yoga-card::before {
            background: linear-gradient(90deg, var(--sage), var(--sage-light));
        }

        .service-card.healing-card::before {
            background: linear-gradient(90deg, var(--gold-soft), #dbb87a);
        }

        .service-card.lifestyle-card::before {
            background: linear-gradient(90deg, #b5a3c9, #c9b5d9);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
        }

        .service-card:hover::before {
            height: 6px;
        }

        .service-icon {
            width: 70px;
            height: 70px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }

        .yoga-card .service-icon {
            background: rgba(143, 174, 139, 0.12);
            color: var(--sage-dark);
        }

        .healing-card .service-icon {
            background: rgba(201, 169, 110, 0.12);
            color: var(--gold-soft);
        }

        .lifestyle-card .service-icon {
            background: rgba(181, 163, 201, 0.15);
            color: #8a6fad;
        }

        .service-card h3 {
            font-size: 1.6rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .service-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .service-list li {
            padding: 0.5rem 0;
            font-size: 0.95rem;
            color: var(--text-medium);
            display: flex;
            align-items: center;
            gap: 0.7rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        }

        .service-list li:last-child {
            border-bottom: none;
        }

        .service-list li i {
            color: var(--sage);
            font-size: 0.7rem;
        }

        /* ===== DETAILED SECTIONS ===== */
        .detail-section {
            position: relative;
        }

        .detail-section:nth-child(even) {
            background: var(--white);
        }

        .detail-icon-large {
            width: 80px;
            height: 80px;
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
        }

        .benefit-item {
            background: var(--white);
            border-radius: 16px;
            padding: 1.5rem;
            border: 1px solid rgba(143, 174, 139, 0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        .benefit-item:hover {
            border-color: rgba(143, 174, 139, 0.3);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
            transform: translateY(-3px);
        }

        .benefit-item .icon-sm {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .benefit-item h5 {
            font-size: 1.1rem;
            margin-bottom: 0.4rem;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
        }

        .benefit-item p {
            font-size: 0.88rem;
            color: var(--text-light);
            margin: 0;
            line-height: 1.6;
        }

        .yoga-detail { background: linear-gradient(180deg, var(--soft-green), var(--cream)); }
        .healing-detail { background: linear-gradient(180deg, var(--peach), var(--cream)); }
        .lifestyle-detail { background: linear-gradient(180deg, var(--lavender), var(--cream)); }

        .yoga-detail .benefit-item .icon-sm {
            background: rgba(143, 174, 139, 0.12);
            color: var(--sage-dark);
        }

        .healing-detail .benefit-item .icon-sm {
            background: rgba(201, 169, 110, 0.12);
            color: var(--gold-soft);
        }

        .lifestyle-detail .benefit-item .icon-sm {
            background: rgba(181, 163, 201, 0.12);
            color: #8a6fad;
        }

        .healing-detail .benefit-item:hover {
            border-color: rgba(201, 169, 110, 0.3);
        }

        .lifestyle-detail .benefit-item:hover {
            border-color: rgba(181, 163, 201, 0.3);
        }

        /* ===== WHY CHOOSE ===== */
        .why-section {
            background: var(--white);
        }

        .why-item {
            text-align: center;
            padding: 2rem 1.5rem;
        }

        .why-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: rgba(143, 174, 139, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.2rem;
            font-size: 1.5rem;
            color: var(--sage-dark);
            transition: all 0.3s ease;
        }

        .why-item:hover .why-icon {
            background: linear-gradient(135deg, var(--sage), var(--sage-dark));
            color: white;
            transform: scale(1.1);
        }

        .why-item h5 {
            font-size: 1.15rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .why-item p {
            font-size: 0.9rem;
            color: var(--text-light);
            margin: 0;
            line-height: 1.6;
        }

        /* ===== CTA ===== */
        .cta-section {
            background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 50%, var(--sage-light) 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-section h2 {
            color: white;
            font-size: clamp(1.8rem, 4vw, 2.6rem);
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.85);
        }

        .btn-cta {
            background: white;
            color: var(--sage-dark);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            transition: all 0.4s ease;
            border: none;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
            color: var(--sage-dark);
            background: var(--cream);
        }

        /* ===== CONTACT ===== */
        .contact-section {
            background: linear-gradient(180deg, var(--cream) 0%, var(--soft-green) 100%);
        }

        .contact-card {
            background: var(--white);
            border-radius: 24px;
            padding: 2.5rem;
            border: 1px solid rgba(143, 174, 139, 0.1);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
        }

        .form-control-custom {
            border: 1.5px solid rgba(143, 174, 139, 0.2);
            border-radius: 14px;
            padding: 0.85rem 1.2rem;
            font-size: 0.95rem;
            background: var(--cream);
            transition: all 0.3s ease;
            font-family: 'Nunito', sans-serif;
            color: var(--text-dark);
        }

        .form-control-custom:focus {
            border-color: var(--sage);
            box-shadow: 0 0 0 4px rgba(143, 174, 139, 0.1);
            background: white;
            outline: none;
        }

        .form-control-custom::placeholder {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .form-label-custom {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-medium);
            margin-bottom: 0.4rem;
            letter-spacing: 0.5px;
        }

        .btn-submit {
            background: linear-gradient(135deg, var(--sage), var(--sage-dark));
            border: none;
            color: white;
            padding: 0.9rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.4s ease;
            width: 100%;
            box-shadow: 0 4px 20px rgba(143, 174, 139, 0.3);
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(143, 174, 139, 0.4);
            background: linear-gradient(135deg, var(--sage-dark), #4a6b46);
            color: white;
        }

        .contact-info-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem 0;
            border-bottom: 1px solid rgba(143, 174, 139, 0.1);
        }

        .contact-info-item:last-child {
            border-bottom: none;
        }

        .contact-info-icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            border-radius: 14px;
            background: rgba(143, 174, 139, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--sage-dark);
            font-size: 1.2rem;
        }

        .contact-info-item h6 {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.15rem;
            font-family: 'Nunito', sans-serif;
        }

        .contact-info-item p {
            font-size: 1rem;
            color: var(--text-dark);
            margin: 0;
            font-weight: 500;
        }

        .btn-whatsapp-contact {
            background: #25D366;
            border: none;
            color: white;
            padding: 0.85rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.92rem;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            width: 100%;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
        }

        .btn-whatsapp-contact:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
            color: white;
            background: #20bd5a;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #2a3a28;
            color: rgba(255, 255, 255, 0.75);
            padding: 4rem 0 1.5rem;
        }

        .footer h5 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
        }

        .footer-brand {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.8rem;
        }

        .footer-text {
            font-size: 0.9rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.55);
            max-width: 320px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.6rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }

        .footer-links a:hover {
            color: var(--sage-light);
            padding-left: 5px;
        }

        .social-icons {
            display: flex;
            gap: 0.8rem;
        }

        .social-icons a {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: var(--sage);
            color: white;
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 1.5rem;
            margin-top: 3rem;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.4);
        }

        /* ===== SCROLL ANIMATIONS ===== */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== SCROLL TO TOP ===== */
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--sage), var(--sage-dark));
            color: white;
            border: none;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 4px 20px rgba(143, 174, 139, 0.3);
            z-index: 1000;
        }

        .scroll-top.show {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(143, 174, 139, 0.4);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--cream);
                border-radius: 16px;
                padding: 1rem;
                margin-top: 0.5rem;
                border: 1px solid rgba(143, 174, 139, 0.1);
                box-shadow: 0 10px 40px rgba(0,0,0,0.05);
            }

            .hero-mandala {
                width: 280px;
                height: 280px;
                margin-top: 3rem;
            }

            section {
                padding: 4rem 0;
            }

            .about-card {
                padding: 2rem;
            }

            .contact-card {
                padding: 1.5rem;
            }
        }

        @media (max-width: 575.98px) {
            .hero-title {
                font-size: 2.2rem;
            }

            .hero-btns {
                flex-direction: column;
            }

            .hero-btns a {
                justify-content: center;
            }

            .service-card {
                padding: 2rem 1.5rem;
            }

            .hero-mandala {
                width: 220px;
                height: 220px;
            }
        }

        /* Smooth transitions for all interactive elements */
        a, button {
            transition: all 0.3s ease;
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--cream);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--sage-light);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--sage);
        }
  

        .mandala-center img {
             width: 100%;
            max-width: 350px;
            margin: 0 auto;
            display: block;
        }

        