



       

       
        /* --- 2. HERO & PARALLAX --- */
        .hero {
            min-height: 100vh;
            padding: 140px 20px 90px;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-video-container {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
        }

        .hero-video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.12;
            filter: saturate(0);
        }

        .hero-arch-container {
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
        }

        .arch-img {
            position: absolute;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 4px solid #fff;
            box-shadow: 0 20px 40px rgba(0, 0, 0, .06);
        }

        .img-1 {
            top: 35%;
            left: 6%;
        }

        .img-2 {
            top: 12%;
            left: 22%;
            width: 140px;
            height: 140px;
        }

        .img-3 {
            top: -4%;
            left: 50%;
            transform: translateX(-50%);
            width: 170px;
            height: 170px;
        }

        .img-4 {
            top: 12%;
            right: 22%;
            width: 140px;
            height: 140px;
        }

        .img-5 {
            top: 35%;
            right: 6%;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            text-align: center;
            margin-bottom: 70px;
        }

        .pill {
            display: inline-block;
            padding: 8px 18px;
            border-radius: 999px;
            background: rgba(0, 0, 0, .05);
            font-size: .8rem;
            margin-bottom: 20px;
        }

        h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3rem, 8vw, 5.5rem);
            line-height: 1;
            margin-bottom: 22px;
        }

        h1 span {
            font-style: italic;
            font-weight: 400;
            color: var(--accent);
        }

        .subtext {
            color: #555;
            max-width: 620px;
            margin: 0 auto 40px;
            font-size: 1.2rem;
            font-weight: 300;
        }

        .btn-nav {
            display: inline-block;
            padding: 18px 46px;
            background: #111;
            color: #fff;
            border-radius: 999px;
            text-decoration: none;
            font-size: 1rem;
        }

        /* Cards */
        .cards-container {
            display: flex;
            gap: 20px;
            position: relative;
            z-index: 2;
        }

        .card {
            width: 185px;
            height: 230px;
            background: rgba(255, 255, 255, .95);
            border-radius: 24px;
            padding: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            cursor: pointer;
            transition: .6s cubic-bezier(.2, 1, .3, 1);
            border: 2px solid transparent;
            background:
                linear-gradient(#fff, #fff) padding-box,
                linear-gradient(90deg, #8e94f2, #f5d1ff, #c5a47e, #8e94f2) border-box;
            background-size: 300% 300%;
            animation: borderTwinkle 8s linear infinite;
        }

        .card:hover {
            transform: translateY(-15px) scale(1.05);
        }

        .card:nth-child(2),
        .card:nth-child(4) {
            margin-top: 40px;
        }

        .card:nth-child(3) {
            margin-top: 80px;
        }

        @keyframes borderTwinkle {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }


        /* --- 3. PRICING --- */


      


        /* --- 4. NEW PREMIUM "BENTO" WHY CHOOSE US --- */


        /* --- 5. DOCTOR --- */
        .doctor-section {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            align-items: center;
            text-align: left;
        }

        .doc-img {
            width: 100%;
            border-radius: 40px;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
            transition: 0.5s;
        }

        .doc-signature {
            font-family: 'Playfair Display';
            font-style: italic;
            font-size: 1.8rem;
            color: var(--accent);
            margin-top: 30px;
            display: block;
        }

        /* --- 6. LOOKBOOK --- */
        .style-gallery {
            display: flex;
            gap: 20px;
            height: 600px;
            margin-top: 50px;
        }

        .style-item {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 30px;
            transition: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
            cursor: pointer;
        }

        .style-item:hover {
            flex: 2.8;
        }

        .style-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 1.2s ease;
        }

        .style-item:hover .style-img {
            transform: scale(1.1);
        }

        .style-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 50px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: white;
            text-align: left;
            transform: translateY(60px);
            transition: 0.6s;
        }

        .style-item:hover .style-overlay {
            transform: translateY(0);
        }

        /* --- 7. TRANSFORMATION SLIDER --- */
        .comparison-container {
            position: relative;
            width: 100%;
            max-width: 900px;
            height: 550px;
            margin: 60px auto;
            border-radius: 40px;
            overflow: hidden;
            border: 4px solid white;
            cursor: ew-resize;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
        }

        .after-wrapper {
            position: absolute;
            inset: 0;
            width: 50%;
            overflow: hidden;
            border-right: 3px solid white;
            z-index: 2;
        }

        .after-wrapper img {
            width: 900px;
            height: 550px;
            object-fit: cover;
        }

        .slider-handle {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
            z-index: 100;
            pointer-events: none;
        }

        .slider-handle::after {
            content: '↔';
            color: var(--accent);
            font-weight: bold;
        }

        /* --- 8. REVIEWS & FAQ --- */
        /* --- GOOGLE-THEMED REVIEWS --- */
        .reviews-section {
            background: #080808 !important;
            /* Deepest Black */
            padding: 120px 5%;
            position: relative;
            z-index: 10;
            overflow: hidden;
            color: white;
        }

        /* Ambient Gold Glow Behind Grid */
        .reviews-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 70%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(197, 164, 126, 0.08), transparent 70%);
            pointer-events: none;
            z-index: 0;
        }




        .reviews-layout {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 80px;
            max-width: 1400px;
            margin: 0 auto;
            align-items: center;
            height: 800px;
            position: relative;
            z-index: 2;
        }

        /* --- LEFT: STICKY HEADER --- */
        .reviews-header {
            text-align: left;
            z-index: 20;
            position: relative;
        }

        /* Dark Mode Google Badge */
        .google-rating-row {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 35px;
            background: rgba(255, 255, 255, 0.05);
            padding: 12px 30px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .rating-num {
            font-size: 1.4rem;
            font-weight: 700;
            color: #fff;
            font-family: 'Inter', sans-serif;
        }

        .rating-stars {
            color: #c5a47e;
            font-size: 1.1rem;
            letter-spacing: 2px;
        }

        .reviews-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            line-height: 1.1;
            margin-bottom: 20px;
            color: #fff;
            text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
        }

        .reviews-header p {
            font-size: 1.1rem;
            color: #888;
            /* Cool Grey */
            margin-bottom: 40px;
            line-height: 1.6;
            max-width: 450px;
        }

        /* Liquid Gold Button */
        .btn-gold-leaf {
            /* A sophisticated gradient using your accent color */
            background: linear-gradient(135deg, #a6abf7 0%, #8e94f2 100%);
            color: #000;
            padding: 18px 45px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            transition: 0.4s;
            box-shadow: 0 10px 30px rgba(197, 164, 126, 0.2);
            letter-spacing: 0.5px;
        }

        .btn-gold-leaf:hover {
            background: #fff;
            color: #000;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
        }

        /* --- RIGHT: DUAL SCROLL ENGINE --- */
        .reviews-feed-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            height: 800px;
            overflow: hidden;
            position: relative;
            /* Fade Masks into Black */
            mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
            -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
        }

        .scrolling-column {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .col-down {
            animation: scrollDown 40s linear infinite;
        }

        .col-up {
            animation: scrollUp 45s linear infinite;
        }

        .reviews-feed-wrapper:hover .col-down,
        .reviews-feed-wrapper:hover .col-up {
            animation-play-state: paused;
        }

        @keyframes scrollUp {
            0% {
                transform: translateY(0);
            }

            100% {
                transform: translateY(-50%);
            }
        }

        @keyframes scrollDown {
            0% {
                transform: translateY(-50%);
            }

            100% {
                transform: translateY(0);
            }
        }

        /* --- MIDNIGHT CARD --- */
        .midnight-card {
            background: rgba(30, 30, 30, 0.4);
            padding: 35px;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            /* Faint border */
            transition: 0.4s;
            flex-shrink: 0;
            backdrop-filter: blur(10px);
        }

        .midnight-card:hover {
            transform: scale(1.02);
            background: rgba(40, 40, 40, 0.8);
            border-color: #c5a47e;
            /* Gold Border on Hover */
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        }

        .reviewer-row {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
        }

        .reviewer-pic {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            object-fit: cover;
            border: 1px solid #444;
        }

        .reviewer-name {
            font-weight: 700;
            font-size: 1rem;
            color: #fff;
            display: block;
            font-family: 'Inter', sans-serif;
        }

        .reviewer-meta {
            font-size: 0.75rem;
            color: #666;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .review-text {
            font-size: 0.95rem;
            line-height: 1.7;
            color: #ccc;
        }

        .card-stars {
            color: #c5a47e;
            font-size: 0.9rem;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }


        /* --- 9. CONTACT & MAP --- */
        .contact-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 50px;
            text-align: left;
            margin-top: 50px;
        }

        .quiz-card {
            background: white;
            padding: 60px;
            border-radius: 40px;
            position: relative;
            overflow: hidden;
            min-height: 500px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .progress-bar {
            position: absolute;
            top: 0;
            left: 0;
            height: 6px;
            width: 25%;
            background: var(--accent);
            transition: 0.8s;
        }

        .quiz-step {
            display: none;
            animation: fadeIn 0.8s forwards;
        }

        .quiz-step.active {
            display: block;
        }

        .quiz-option {
            padding: 20px;
            border: 1px solid #eee;
            border-radius: 15px;
            margin-bottom: 15px;
            cursor: pointer;
            transition: 0.3s;
            font-weight: 600;
        }

        .quiz-option:hover {
            background: var(--dynamic-accent);
            border-color: var(--accent);
        }

        .c-input {
            width: 100%;
            padding: 18px;
            margin-bottom: 20px;
            border-radius: 12px;
            border: 1px solid #eee;
        }

        .map-frame {
            border-radius: 40px;
            overflow: hidden;
            height: 100%;
            min-height: 500px;
            background: #eee;
            filter: grayscale(1);
            transition: 0.5s;
        }

        .map-frame:hover {
            filter: grayscale(0);
        }

        .success-checkmark {
            width: 80px;
            height: 80px;
            margin: 0 auto 30px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
        }

        /* --- 10. FOOTER --- */

        .social-proof-pill {
            position: fixed;
            bottom: 20px;
            left: 20px;
            background: #fff;
            padding: 8px 16px;
            border-radius: 50px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: sans-serif;
            border: 1px solid #eee;

            /* Animation State: Hidden by default */
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
            visibility: hidden;
        }

        /* Active State: Visible */
        .social-proof-pill.active {
            opacity: 1;
            transform: translateY(0);
            visibility: visible;
        }

        /* The Dot */
        .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            transition: background 0.3s ease;
        }


        #confetti-canvas {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 9999;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }




        .why-section {
            position: relative;
            padding: 160px 5%;
            overflow: visible;
            text-align: center;
        }

        .why-connections {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            max-width: 1100px;
            z-index: 0;
            pointer-events: none;
            opacity: 0.15;
            background-image: radial-gradient(circle, #ccc 1px, transparent 1px);
            background-size: 40px 40px;
            mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 80px;
            max-width: 1000px;
            margin: 100px auto 0;
            position: relative;
            z-index: 2;
        }

        .bento-card {
            background: white;
            border-radius: 50px;
            padding: 15px;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
            position: relative;
            transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.6s;
            border: 1px solid rgba(255, 255, 255, 0.9);
        }

        .bento-card:hover {
            transform: translateY(-20px) scale(1.05) rotate(0deg) !important;
            z-index: 20;
            box-shadow: 0 60px 120px rgba(142, 148, 242, 0.2);
        }


        .bento-card:nth-child(1) {
            /* transform: rotate(-3deg) translateY(0px); */
            z-index: 3;
        }


        .bento-card:nth-child(2) {
            /* transform: rotate(4deg) translateY(80px); */
            z-index: 2;
        }


        .bento-card:nth-child(3) {
            /* transform: rotate(2deg) translateY(-50px); */
            z-index: 4;
        }


        .bento-card:nth-child(4) {
            /* transform: rotate(-4deg) translateY(40px); */
            z-index: 1;
        }

        .bento-inner {
            border-radius: 40px;
            padding: 110px 40px 50px;
            height: 100%;
            text-align: left;
            position: relative;
        }

        .bento-icon {
            position: absolute;
            top: -50px;
            left: 40px;
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(240, 240, 240, 1));
            box-shadow:
                inset -5px -5px 20px rgba(0, 0, 0, 0.05),
                0 20px 40px rgba(0, 0, 0, 0.1);
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            border: 6px solid white;
        }

        .icon-gold {
            background: radial-gradient(circle at 30% 30%, #fde68a, #d97706);
            color: white;
        }

        .icon-blue {
            background: radial-gradient(circle at 30% 30%, #bfdbfe, #2563eb);
            color: white;
        }

        .icon-rose {
            background: radial-gradient(circle at 30% 30%, #fbcfe8, #db2777);
            color: white;
        }

        .icon-purple {
            background: radial-gradient(circle at 30% 30%, #e9d5ff, #7c3aed);
            color: white;
        }

        .bento-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--primary);
            font-weight: 700;
        }

        .bento-text {
            font-size: 1rem;
            color: #555;
            line-height: 1.6;
        }




        /***5)DOCTORS***/

        .modern-features-section {
            padding: 120px 8%;
            background: linear-gradient(135deg, #fbf7ff 0%, #f3e5ff 100%);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            font-family: 'Inter', sans-serif;
        }


        .features-content {
            display: flex;
            flex-direction: column;
            gap: 50px;
        }

        .feature-block h3 {
            font-family: 'Inter', sans-serif;
            font-size: 1.5rem;
            color: #2e1065;
            font-weight: 700;
            margin-bottom: 15px;
            display: inline-block;
            border-bottom: 3px solid #7c3aed;
            padding-bottom: 5px;
        }

        .feature-block p {
            color: #555;
            font-size: 1rem;
            line-height: 1.7;
            margin: 0;
        }

        .features-image-wrapper {
            position: relative;
            height: 600px;
            width: 100%;
            border-radius: 30px;
            box-shadow: 0 30px 60px rgba(124, 58, 237, 0.1);
        }

        .feature-doc-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 30px;
            display: block;
        }

        /* 
        .stats-floating-card {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            width:90%;
            max-width:380px;
            background: #ffffff;
            border-radius: 20px;
            padding: 25px 30px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
            display: flex;
            justify-content: space-between;
            align-items: center;
        } */

        .stat-group {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .stat-icon-box {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            flex-shrink: 0;
        }

        .icon-purple {
            background: #f3e8ff;
        }

        .icon-pink {
            background: #fce7f3;
        }

        .icon-orange {
            background: #ffedd5;
        }

        .stat-text strong {
            display: block;
            font-size: 1.4rem;
            color: #2e1065;
            font-weight: 800;
            line-height: 1.1;
        }

        .stat-text span {
            font-size: 0.8rem;
            color: #666;
            font-weight: 500;
        }

        .reviews-section {
            padding: 140px 0;
            background: #fcfcfc;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .google-badge-container {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: white;
            padding: 12px 30px;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid #eee;
            margin-bottom: 40px;
        }

        .google-g-logo {
            width: 24px;
            height: 24px;
        }

        .badge-text {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            color: #3c4043;
            font-size: 1rem;
        }

        .badge-stars {
            color: #fbbc04;
            letter-spacing: 1px;
        }

        .reviews-scroll {
            display: flex;
            gap: 25px;
            overflow-x: auto;
            padding: 20px 5%;
            scroll-snap-type: x mandatory;
            cursor: grab;
        }

        .reviews-scroll::-webkit-scrollbar {
            display: none;
        }
        .g-card {
            min-width: 360px;
            background: white;
            border-radius: 20px;
            padding: 30px;
            text-align: left;
            scroll-snap-align: center;
            border: 1px solid #f1f3f4;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .g-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        }

        .g-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .g-user {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .g-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            object-fit: cover;
            font-weight: 600;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
        }

        .g-info h4 {
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            color: #202124;
            margin: 0;
        }

        .g-info span {
            font-size: 0.75rem;
            color: #70757a;
            display: block;
            margin-top: 2px;
        }

        .g-icon-small {
            opacity: 0.5;
            width: 18px;
        }

        .g-star-row {
            color: #fbbc04;
            font-size: 1rem;
            margin-bottom: 12px;
            letter-spacing: 2px;
        }

        .g-text {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #3c4043;
          
        }

        .g-link {
            color: #1a73e8;
            /* Google Blue */
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            margin-top: 15px;
            display: inline-block;
        }

        @media (max-width: 768px) {
            .g-card {
                min-width: 300px;
            }
        }

        /**SERVICES***/

        .services-section {
            padding: 140px 5%;
            text-align: center;
            background: linear-gradient(to bottom, #ffffff, #fcfcfc);
        }

        .services-header {
            margin-bottom: 80px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .pill {
            display: inline-block;
            background: #fff;
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: 1px solid rgba(0, 0, 0, 0.05);
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
            color: #888;
        }

        .services-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 500;
            margin-bottom: 20px;
            line-height: 1.1;
            color: var(--primary);
        }

        .services-header p {
            font-size: 1.1rem;
            color: var(--text-grey);
            line-height: 1.6;
            font-weight: 300;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }
        .svc-card {
            border-radius: 35px;
            padding: 45px 35px;
            height: 550px;
            display: flex;
            flex-direction: column;
            text-align: left;
            position: relative;
            transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
            overflow: hidden;
            cursor: pointer;

            border: 1px solid rgba(255, 255, 255, 0.4);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
        }

        .svc-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 35px 70px rgba(0, 0, 0, 0.08);
        }

        .svc-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            line-height: 1.1;
            margin-bottom: 20px;
            color: var(--primary);
            font-weight: 500;
        }

        .svc-desc {
            font-size: 0.95rem;
            color: rgba(0, 0, 0, 0.65);
            line-height: 1.6;
            font-weight: 400;
            max-width: 95%;
        }

        .svc-img-wrapper {
            margin-top: auto;
            position: absolute;
            bottom: 30px;
            left: 20px;
            width: 200px;
            height: 200px;
            display: flex;
            align-items: flex-end;
            z-index: 1;
            animation: float 2.5s ease-in-out infinite;
        }

        .svc-card:nth-child(1) .svc-img-wrapper {
            animation-delay: 0s;
        }

        .svc-card:nth-child(2) .svc-img-wrapper {
            animation-delay: 0.5s;
        }

        .svc-card:nth-child(3) .svc-img-wrapper {
            animation-delay: 1.0s;
        }

        .svc-card:nth-child(4) .svc-img-wrapper {
            animation-delay: 1.5s;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-12px);
            }
            100% {
                transform: translateY(0px);
            }
        }

        .svc-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
            transition: transform 0.3s cubic-bezier(0.2, 1, 0.3, 1);
        }

        .svc-card:hover .svc-img {
            transform: scale(1.15) rotate(-5deg);
        }
        .svc-btn {
            position: absolute;
            bottom: 40px;
            right: 35px;
            width: 60px;
            height: 60px;
            background: var(--btn-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.2s ease;
            z-index: 2;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .svc-arrow {
            width: 24px;
            height: 24px;
            fill: none;
            stroke: white;
            stroke-width: 2;
            transition: 0.2s;
        }

        .svc-card:hover .svc-btn {
            background: #000;
            transform: scale(1.1);
        }

        .svc-card:hover .svc-arrow {
            transform: rotate(45deg);
        }

        @media (max-width: 1300px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .svc-card {
                height: 500px;
            }
        }

        @media (max-width: 700px) {
            .services-grid {
                grid-template-columns: 1fr;
            }

            .svc-card {
                height: 480px;
            }

            .services-section {
                padding: 80px 20px;
            }
        }

        .faq-section {
            padding: 120px 5%;
            position: relative;
            z-index: 10;
            text-align: center;
            background: linear-gradient(to bottom, #f8faff 0%, #fff 100%);
        }

        .faq-header {
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .faq-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: #1a1a1a;
            margin-bottom: 20px;
        }

        .faq-header p {
            font-family: 'Inter', sans-serif;
            color: #666;
            font-size: 1.1rem;
            font-weight: 300;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: left;
        }

        details {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 20px;
            margin-bottom: 20px;
            padding: 25px 30px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
            overflow: hidden;
        }

        details:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(142, 148, 242, 0.1);
            border-color: #eef2ff;
        }

        details[open] {
            background: #fff;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
            border-color: #8e94f2;
        }

        summary {
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            font-weight: 500;
            color: #1a1a1a;
        }

        summary::-webkit-details-marker {
            display: none;
        }

        summary::after {
            content: '+';
            font-family: 'Inter', sans-serif;
            font-size: 1.5rem;
            font-weight: 300;
            color: #8e94f2;
            transition: transform 0.3s ease;
        }

        details[open] summary::after {
            transform: rotate(45deg);
            color: #1a1a1a;
        }
        details p {
            margin-top: 20px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            color: #555;
            line-height: 1.7;
            font-weight: 300;
            animation: slideDown 0.4s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .faq-header h2 {
                font-size: 2.2rem;
            }

            details {
                padding: 20px;
            }

            summary {
                font-size: 1.1rem;
            }
        }
        .contact-section {
            padding: 140px 5%;
            background: #fff;
            position: relative;
            z-index: 10;
        }

        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            max-width: 1300px;
            margin: 0 auto;
            align-items: center;
        }

        .contact-form-wrapper {
            text-align: left;
        }

        .contact-form-wrapper h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .contact-form-wrapper p {
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 40px;
            font-weight: 300;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 10px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 20px;
            background: #fcfcfc;
            border: 1px solid #eee;
            border-radius: 15px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            color: #333;
            transition: all 0.3s ease;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            background: #fff;
            border-color: var(--accent);
            box-shadow: 0 5px 20px rgba(142, 148, 242, 0.1);
        }

        .form-textarea {
            height: 150px;
            resize: none;
        }

        .btn-submit {
            width: 100%;
            background: var(--primary);
            color: white;
            padding: 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: 0.3s;
            letter-spacing: 0.5px;
            margin-top: 10px;
        }

        .btn-submit:hover {
            background: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(142, 148, 242, 0.25);
        }

        .map-container {
            position: relative;
            height: 700px;
            border-radius: 40px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
        }
        .google-map {
            width: 100%;
            height: 100%;
            border: 0;
            filter: grayscale(100%) contrast(95%);
            transition: filter 0.5s ease;
        }
        .map-container:hover .google-map {
            filter: grayscale(0%) contrast(100%);
        }
        .info-overlay {
            position: absolute;
            bottom: 40px;
            left: 40px;
            right: 40px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            padding: 35px;
            border-radius: 25px;
            border: 1px solid rgba(255, 255, 255, 0.8);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
            pointer-events: none;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .info-item:last-child {
            margin-bottom: 0;
        }

        .info-icon {
            width: 40px;
            height: 40px;
            background: var(--dynamic-accent);
            color: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .info-content h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--primary);
        }

        .info-content p {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.5;
        }

        @media (max-width: 1000px) {
            .contact-layout {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .map-container {
                height: 500px;
            }
        }

    
        footer {
            background: #050505;
            color: #fff;
            padding-top: 120px;
            position: relative;
            font-family: 'Inter', sans-serif;
            margin-top: 150px;
     
        }

        
        .footer-cta {
            background: linear-gradient(110deg, #111111 0%, #1a1a1a 40%, #2d2d2d 100%);
            border-radius: 24px;
            padding: 70px 60px;
            max-width: 1200px;
            margin: -200px auto 100px;
            position: relative;
            z-index: 20;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: 1px solid rgba(255, 255, 255, 0.08);
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        }

        .footer-cta::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(142, 148, 242, 0.15), transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 600px;
        }

        .cta-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            margin-bottom: 15px;
            color: #fff;
            line-height: 1.1;
        }

        .cta-content p {
            color: #999;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .cta-btn {
            background: #fff;
            color: #000;
            padding: 18px 40px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
            position: relative;
            z-index: 2;
            font-size: 1rem;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(255, 255, 255, 0.15);
        }

     
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5% 80px;
            display: grid;
            grid-template-columns: 2.5fr 1fr 1fr 1fr;
            gap: 60px;
        }

        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 25px;
            display: block;
            text-decoration: none;
        }

        .footer-address {
            color: #777;
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 40px;
        }

     
        .contact-row {
            display: flex;
            gap: 50px;
        }

        .contact-item h5 {
            color: #555;
            font-size: 0.75rem;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 600;
        }

        .contact-item p {
            color: #fff;
            font-size: 1rem;
            font-weight: 500;
        }


        .footer-col h4 {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 30px;
            font-weight: 500;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-link {
            display: block;
            color: #bbb;
            text-decoration: none;
            margin-bottom: 18px;
            font-size: 0.95rem;
            transition: 0.3s;
        }

        .footer-link:hover {
            color: #fff;
            transform: translateX(5px);
        }


        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 30px 5%;
            max-width: 1200px;
            margin: 0 auto;
            text-align: left;
            color: #444;
            font-size: 0.85rem;
            display: flex;
            justify-content: space-between;
        }


        @media (max-width: 1000px) {
            .footer-cta {
                margin: -100px 20px 60px;
                flex-direction: column;
                text-align: center;
                gap: 30px;
                padding: 50px 30px;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 50px;
            }

            .contact-row {
                flex-direction: column;
                gap: 20px;
            }

            .footer-cta::after {
                width: 100%;
                height: 100%;
                top: 0;
                right: 0;
            }
        }

        @media (max-width: 600px) {
            .footer-content {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
        }

        .card-image{
            width: 200px !important;
            border-radius: 12px;
        }
        @media(max-width:800px)
        {
 .card-image{
width: 100px !important;
        }
        }
       