@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Outfit:wght@100..900&display=swap');
       
       
       :root {

            --accent: #8e94f2;
            --accent-gold: #c5a47e;
            --dynamic-bg: #f8faff;
            --dynamic-accent: #eef2ff;
            --text-main: #2d3436;
            --primary: #1a1a1a;
            --text-grey: #555;
            --btn-bg: #2d2a26;
            --btn-hover: #1a1a1a;
            --bg-color: #F3E8FF;
            --primary: #7C3AED;
            --heading: #2E1065;
            --text: #4B5563;
            --white: #FFFFFF;
            --shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
            --deep: #0f172a;
            --primary: 124, 77, 255;
            --bg: 255, 255, 255;
            --text: #222;
            --blur: 14px;
            --alpha: .65;
            --glass: rgba(255, 255, 255, 0.8);
              --navy-dark: #0a1128;    
            --navy-light: #1c2b4b;
            --bg-cream: #fdfcf8;
        }
 html {

            scroll-behavior: smooth;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        body {
            background: linear-gradient(145deg, var(--dynamic-bg) 0%, var(--dynamic-accent) 100%);
            color: var(--text-main);

            overflow-x: hidden;

            background-color: var(--dynamic-bg); /* connects to the variable */
    color: var(--text-main);             /* ensures text adjusts too */
    transition: background-color 0.3s ease; /* smooth switching */
        }

         .parallax-el {
            will-change: transform;
            transition: transform 0.1s linear;
        }

        section {
            padding: 140px 10%;
            text-align: center;
            position: relative;
        }

        .pill {
            background: #fff;
            padding: 8px 20px;
            border-radius: 100px;
            font-size: 0.65rem;
            font-weight: 600;
            color: var(--accent);
            letter-spacing: 3px;
            text-transform: uppercase;
            border: 1px solid rgba(142, 148, 242, 0.1);
            margin-bottom: 25px;
            display: inline-block;
        }

        h2 {
            font-family: 'Playfair Display';
            font-size: clamp(2.5rem, 5vw, 3.8rem);
            line-height: 1.1;
            margin-bottom: 30px;
        }

        /* --- 1. NAVIGATION --- */

     

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: Manrope, sans-serif;
            min-height: 200vh;
            background: linear-gradient(180deg, rgba(var(--primary), .12), #f5f6fa);
            color: var(--text);
        }

        .padding{
            padding: 1rem 2em;
            line-height: 1.6;
        }
        .heading-secondary{
 /* CHANGED FONT */
        font-size: 56px; /* Needs to be slightly bigger than Playfair */
        font-weight: 600;
        color: #333;
        margin: 0 0 15px 0;
        line-height: 1;
        letter-spacing: -1px;
        }
        .heading-tertiary{
  font-family: 'Outfit', serif !important;
  padding: 1rem  1.6rem;
        }
      

        header {
            position: sticky;
            top: 18px;
            z-index: 1000;
            display: flex;
            justify-content: center;
        }

        .nav {
            width: 92%;
            max-width: 1300px;
            padding: 18px 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;

            background: rgba(var(--bg), var(--alpha));
            backdrop-filter: blur(var(--blur));
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, .12);
            box-shadow: 0 20px 45px rgba(0, 0, 0, .35);
            transition: background .3s, backdrop-filter .3s;
            position: sticky;
        }

        .logo {
            font-family: Playfair Display, serif;
            font-size: 24px;
            letter-spacing: 1.5px;
        }

        .menu {
            display: flex;
            list-style: none;
            gap: 34px;
        }

        .menu a,
        .service-trigger {
            font-size: 13px;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            color: var(--text);
            cursor: pointer;
            position: relative;
            pointer-events: auto;
            z-index: 10;
        }

        .menu a::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -6px;
            width: 0;
            height: 2px;
            background: rgb(var(--primary));
            transform: translateX(-50%);
            transition: .3s;
        }

        .menu a:hover::after,
        .menu a.active::after {
            width: 100%;
        }

        .dropdown-wrap {
            position: relative;
        }

        .arrow {
            margin-left: 6px;
            transition: transform .25s;
        }

        .dropdown-wrap.open .arrow {
            transform: rotate(180deg);
        }

        .dropdown {
            position: absolute;
            top: 100%;
            left: 0%;
            width: 220px;
            list-style: none;
            background: rgba(var(--bg), .85);
            backdrop-filter: blur(16px);
            border-radius: 16px;
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transform: translate(-50px, 20px) !important;
            transition: .25s;
            box-shadow: 0 18px 35px rgba(0, 0, 0, .35);
        }

        .dropdown::before {
            content: "";
            position: absolute;
            top: -16px;
            left: 0;
            width: 100%;
            height: 16px;
        }


        .dropdown a {
            display: block;
            padding: 14px 24px;
            font-size: 14px;
            text-transform: none;
            letter-spacing: .4px;
        }

        .dropdown a:hover {
            background: rgba(var(--primary), .12);
        }

        @media (hover:hover) {
            .dropdown-wrap:hover .dropdown {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
        }

        .right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .toggle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            cursor: pointer;
            background: rgba(255, 255, 255, .15);
        }

        .cta {
            padding: 10px 26px;
            border-radius: 999px;
            text-decoration: none;
            font-size: 13px;
            letter-spacing: 2px;
            color: #fff;
            background: linear-gradient(135deg, rgb(var(--primary)), rgba(var(--primary), .85));
        }

        .hamburger {
            display: none;
            font-size: 26px;
            cursor: pointer;
        }

        .overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, .45);
            backdrop-filter: blur(6px);
            opacity: 0;
            visibility: hidden;
            transition: .3s;
        }

        .overlay.show {
            opacity: 1;
            visibility: visible;
        }

        .dropdown-wrap.open .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }


/*****PRICING******/

.consultation{
    padding:120px 5%;
    text-align:center;
}

.section-tag{
    display:inline-block;
    font-size:.75rem;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:600;
    color:var(--accent);
    border:1px solid rgba(142,148,242,.4);
    padding:8px 18px;
    border-radius:999px;
    background:rgba(142,148,242,.06);
    margin-bottom:1.5rem;
}

.consultation h1{
    font-family:'Playfair Display',serif;
    font-size:3.2rem;
    font-weight:400;
    margin-bottom:1rem;
}

.consultation .subtitle{
    max-width:520px;
    margin:0 auto 80px;
    font-size:1.1rem;
    color:var(--muted);
    font-weight:300;
}

.consultation-list{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    max-width:1200px;
    margin:auto;
}

.consultation-card{
    background:rgba(255,255,255,.85);
    border:1px solid rgba(255,255,255,.9);
    backdrop-filter:blur(20px);
    border-radius:26px;
    padding:3.5rem 2.8rem;
    width:340px;
    box-shadow:0 25px 60px rgba(0,0,0,.05);
    display:flex;
    flex-direction:column;
    transition:.4s ease;
}

.consultation-card:hover{
    transform:translateY(-10px);
}

.consultation-card.highlight{
    border:1px solid rgba(142,148,242,.4);
    box-shadow:0 35px 80px rgba(142,148,242,.25);
    transform:scale(1.03);
}

.card-badge{
    position:absolute;
    margin-top:-55px;
    background:var(--accent);
    color:#fff;
    font-size:.7rem;
    letter-spacing:2px;
    padding:8px 22px;
    border-radius:999px;
}

.consultation-card h3{
    font-family:'Playfair Display',serif;
    font-size:1.9rem;
    margin-bottom:10px;
}

.card-desc{
    font-size:.95rem;
    color:#888;
    margin-bottom:2rem;
    min-height:46px;
    line-height: 1.6;
}

.price{
    display:flex;
    justify-content:center;
    align-items:flex-start;
}

.currency{
    font-size:1.4rem;
    margin-top:8px;
    color:#aaa;
}

.amount{
    font-family:'Playfair Display',serif;
    font-size:4rem;
    letter-spacing:-2px;
}

.period{
    font-size:.85rem;
    color:#999;
    font-style:italic;
    margin-bottom:2rem;
}

.divider{
    width:40px;
    height:1px;
    background:var(--accent);
    margin:0 auto 2.5rem;
    opacity:.6;
}

.features{
    list-style:none;
    text-align:left;
    flex-grow:1;
    margin-bottom:3rem;
}

.features li{
    display:flex;
    gap:12px;
    margin-bottom:16px;
    font-size:.95rem;
    color:#555;
    font-weight:300;
}

.features li span{color:var(--accent);}

.btn{
    display:block;
    padding:16px 0;
    border-radius:999px;
    font-weight:600;
    text-decoration:none;
    transition:.3s ease;
}

.btn-primary{
    background:var(--accent);
    color:#fff;
    box-shadow:0 12px 25px rgba(142,148,242,.35);
}

.btn-primary:hover{
    background:#7a81e6;
    transform:translateY(-2px);
}

.btn-outline{
    border:1px solid #ddd;
    color:var(--text);
}

.btn-outline:hover{
    background:#111;
    color:#fff;
}

.note{
    max-width:700px;
    margin:50px auto 0;
    font-size:.9rem;
    color:#777;
}

@media(max-width:1000px){
    .consultation-card.highlight{transform:scale(1);}
}

   .cards-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 60px;
            position: relative;
            z-index: 10;
            /* No fixed height to allow wrapping */
        }

        .card {
            position: relative;
            border-radius: 24px;
            padding: 25px;
            width: 190px;
            height: 240px;
            text-align: center;
            transition: 0.4s;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border: 2px solid transparent;
            background: linear-gradient(white, white) padding-box,
                linear-gradient(90deg, #b0b8ff, #ffffff, #ffd19a, #b0b8ff) border-box;
            background-size: 300% 300%;
            animation: borderGlow 6s linear infinite;
            box-shadow: var(--shadow-soft);
        }

        .card:hover {
            transform: translateY(-10px);
        }

        .card h3 {
            font-family: 'Playfair Display';
            font-size: 1.2rem;
            margin-bottom: 8px;
            color: var(--primary);
        }

        .card p {
            font-size: 0.85rem;
            color: var(--text-light);
            line-height: 1.4;
        }

        .card-icon {
            font-size: 2rem;
            margin-bottom: 15px;
            display: block;
        }

        @keyframes borderGlow {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        @media (max-width: 760px) {
    .cards-container {
        display: flex !important;
        flex-direction: row !important; /* Forces horizontal layout */
        flex-wrap: wrap !important;     /* Allows wrapping to the second line */
        justify-content: center !important; /* Centers the bottom 2 cards */
        gap: 2% !important;            /* Uses % gap so it never overflows */
        padding: 0 10px !important;
    }

    .card {
        /* MATH: 100% / 3 = 33.3%. We use 32% to leave room for the gap. */
        width: 32% !important; 
        flex: 0 0 32% !important;
        
        /* Reset all spacing to ensure they fit */
        margin: 0 0 10px 0 !important; 
        padding: 0 !important;
        
        /* Remove card styling for the "collage" look */
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        animation: none !important;
        height: auto !important;
    }

    /* Target the inner div and image to ensure they shrink correctly */
    .card > div, 
    .card img {
        width: 100% !important;
        height: auto !important;
        border-radius: 8px !important;
        display: block !important;
        margin: 0 !important;
    }
}
.white-subtext{
        color: #fff;
        
  
           
                  max-width: 600px;
            margin: 0 auto 40px;
            font-weight: 300;
            padding: 0 20px;
               font-size: 1.2rem;
            line-height: 1.7;
     
        

}
