:root {
    --primary: #FF6DAF;

    --black: #000000;
    /* --neu-black: #111111; */
    --neu-black: #0f172a;

    --white: #ffffff;
    --neu-white: #f8fdff;

    --bg-light: #d2eeff;
    --muted: #6b7280;
    --glass: rgba(11, 19, 32, 0.04);


    --font-heading: "Arbutus Slab", serif;
    --font-body: "Barlow", sans-serif;

    /* other sizes */
    --carousel-height: 550px;
    /* --dot-size: 12px; */
    --transition-duration: 800ms;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

html,
body {
    height: 100%
}


body {
    font-size: 16px;
    font-family: var(--font-body);
    color: var(--neu-black);
    line-height: 1.6;
    /* line-height: 1.35; */
    /* background: var(--bg-light); */
    background: #fffff0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typographic scale — Fraunces for display headings */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    /* color: var(--neu-black); */
    /* letter-spacing: -0.02em */
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer
}

.btn_primary {
    background: linear-gradient(90deg, var(--primary), #ff77b4);
    /* color: var(--white); */
    color: var(--neu-black);
    box-shadow: 0 6px 18px rgba(79, 70, 229, 0.18)
}

.btn_ghost {
    background: transparent;
    border: 0;
    color: var(--neu-black)
}

.blob_wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: -10rem;
    /* -top-40 (40 * 0.25rem = 10rem) -> -160px at 16px root */
    z-index: -10;
    /* -z-10 */
    /* GPU-accelerate transforms */
    transform: translate3d(0, 0, 0);
    overflow: hidden;
    filter: blur(64px);
    /* blur-3xl -> 64px */
    pointer-events: none;
    /* decorative, avoid catching pointer events */
}

.blob {
    position: relative;
    left: 0;
    aspect-ratio: 1 / 1;
    width: 36.125rem;
    /* w-144.5 -> 144.5 * 0.25rem = 36.125rem (≈578px) */
    transform: translateX(-50%) rotate(30deg);
    /* -translate-x-1/2 + rotate-30 */
    background: linear-gradient(135deg, #ff80b5 0%, #9089fc 100%);
    /* bg-linear-to-tr + colors */
    opacity: 0.3;
    /* opacity-30 */
    border-radius: 20%;
    /* optional: matches the organic/rounded look in your example */
    will-change: transform;
    /* hint for smooth transforms */
    pointer-events: none;
    /* decorative */
}

.background_div {
    position: fixed;
    z-index: -1;
    overflow: hidden;
    width: calc(100vw - 15px);
    height: 100vh;
}

.background_img {
    /* position: fixed;
    top: -20%;
    left: -108%;
    transform: translateX(0vw) translateY(0vh) scale(1.1); */
    /* transform:translateX(-20vw) translateY(-54vh) scale(0.1) */
}

.background_img {
    position: fixed;
    top: -118vh;
    left: 1.5%;
    width: 96vw;
    height: 250vh;
    transform-origin: bottom center;
    transform: translateX(0vw) translateY(0vh) scale(1);
}



/* .background_img { */
/* transform: translateX(-6vw) translateY(-370vh) scale(0.26); */
/* } */

.background_img * {
    transition: fill 280ms ease, stroke 280ms ease;
    vector-effect: non-scaling-stroke;

}

/* first scroll animation */
/* .background_img {
    transform: translateX(-11vw) translateY(-330vh) scale(0.1);
} */




/* Header / Nav */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
     background-color: #f5f5dc; 
    border-bottom: 1px solid var(--primary);
    z-index: 1;

}

.brand {
    display: flex;
    gap: 8px;
    align-items: center
}

/* .logo_div {
    margin-top: -8px;
    margin-bottom: -12px;
} */

.logo {
    height: 40px;
}

.site-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem
}

.site-desc {
    font-size: 0.86rem;
    color: var(--muted);
    font-weight: 600
}

nav {
    position: relative
}

.nav-inner {
    display: flex;
    gap: 18px;
    align-items: center
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
    align-items: center
}

.nav-list>li {
    position: relative
}

.nav-link {
    background: none;
    border: 0;
    padding: 8px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 0.95rem
}

.nav-link:hover {
    background: var(--glass)
}

.nav-link.active {
    background: var(--neu-black);
    color: var(--neu-white);
}

.has-dropdown {
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.dropdown-icon {
    transition: transform .28s ease;
    display: inline-block;
    font-size: 1.05rem;
    color: var(--muted)
}

.has-dropdown.open .dropdown-icon {
    transform: rotate(180deg);
    color: var(--card)
}

.hamburger {
    display: none;
    border: 0;
    background: none;
    padding: 8px;
    border-radius: 8px
}

.line-divider {
    height: 1px;
    background: var(--soft-gray);
    margin: 24px 16px;
}

/* megamenu */
.megamenu-panel {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 86px;
    margin: 0 auto;
    max-width: 1060px;
    background: var(--card);
    box-shadow: var(--shadow);
    border-radius: 16px;
    padding: 22px;
    display: none;
    z-index: 60
}

.megamenu-panel.show {
    display: block
}

.megamenu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.mm-column h3 {
    margin: 0 0 8px 0;
    font-size: 0.95rem;
    font-weight: 800
}

.mm-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.mm-column a {
    display: inline-block;
    padding: 8px 10px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--muted);
    font-weight: 700
}

.mm-column a:hover {
    background: linear-gradient(180deg, #f6f6f6, #fff);
    color: var(--accent)
}

/* --end Header / Nav */


.hero_section {
    transition: transform 1s ease, opacity 1s ease;
}

.quote_section,
.hero_section,
.industries_section {
    position: fixed;
    bottom: 0;
    width: 100%;
    /* height: 20vh; */
}

.quote_section {
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
}

.layer_card {
    /* width: 80%;
    margin: auto; */
    text-align: center;
    padding: 40px;
    padding-bottom: 65px;
    background: #d2eeff;
    background: linear-gradient(0deg, #d2eeff 0%, rgba(210, 238, 255, 0.5) 80%, rgba(210, 238, 255, 0) 100%);
}

.card_div {
    background-color: var(--white);
    width: 80%;
    margin: auto;
    text-align: center;
    padding: 40px;
    padding-bottom: 44px;
    border-radius: 60px 60px 0px 0px;
    box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.10);
}

.ghost_card {
    width: 400px;
}

.layer_card h1,
.card_div h1 {
    font-size: 2.5rem;
    line-height: 3.5rem;
}

.ghost_card h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.ghost_card p {
    font-size: 20px;
    font-weight: 500;
}

.layer_card p {
    margin-top: 8px;
    font-size: 18px;
    font-weight: 500;
}

.card_div p {
    color: var(--muted);
    margin-top: 8px;
    margin-bottom: 24px;
}

.number_section {
    /* opacity: 0; */
    pointer-events: none;
    transition: opacity 2s 1s ease;
    position: fixed;
    top: 0px;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 109, 175, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
}

.num_div {
    display: grid;
    grid-template-columns: auto auto;
    /* width: 60%; */
    gap: 104px;
    margin-right: 4%;
}

.num_content h1 {
    font-size: 5rem;
    color: var(--white);
}

.num_content p {
    font-size: 1.5rem;
    color: var(--white);
    width: 280px;
}

.industries_section {
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    transition: opacity .28s ease;
}

.industries_section .card_div {
    width: fit-content;
    margin: 0px 24px 60px;
    border-radius: 16px;
    padding: 16px;
    text-align: left;
}

.industries_section .card_div p {
    margin-bottom: 0px;
}

.wrapper {
    width: fit-content;
    text-wrap: nowrap;
    display: flex;
    gap: 16px;
}

.tooltip:after {
    content: " ";
    position: absolute;
    left: calc(3px + 50%);
    bottom: -10px;
    width: 18px;
    height: 18px;
    transform: rotateZ(45deg);
    margin-left: -13px;
    border: solid 1px var(--neu-black);
    border-width: 0px 1px 1px 0px;
    background-color: var(--white);
}

.tooltip {
    opacity: 0;
    position: absolute;
    pointer-events: none;
    transition: none;
    display: block;
    width: fit-content;
    padding: 8px 24px;
    border: 1px solid var(--neu-black);
    border-radius: 40px;
    color: var(--neu-black);
    background: var(--white);
    -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
}

.tooltip:nth-child(1) {
    top: -235%;
    left: 33%;
}

.tooltip:nth-child(2) {
    top: -100%;
    left: 53%;
}

.tooltip:nth-child(3) {
    top: -190%;
    left: 71%;
}

.tooltip:nth-child(4) {
    top: -242%;
    left: 88%;
}

.tooltip:nth-child(5) {
    top: -125%;
    left: 10%;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* .nj_first_sect{
    opacity: 0;
} */

/* .show_num_sec .number_section { */
/* .show_num_sec .pink-section { */
/* .show_num_sec .nj_first_sect { */
.hide_first_sec .nj_first_sect {
    opacity: 0;
    /* pointer-events: all; */
    /* animation: fadeIn 800ms ease forwards; */
    /* animation-delay: 0.5s; */
}

.hide_hero_sec .hero_section {
    pointer-events: all;
    opacity: 0;
    transform: translateY(100%);
}

.show_industries_sec .industries_section {
    opacity: 1;
}


.show_quote_sec .quote_section {
    opacity: 1;
}

.hide {
    visibility: hidden !important;
}

#svg-wrap svg {
    /* overflow: visible; */
}

/* .bulding_23,
.other_bulding,
#holo_path_1,
#holo_path_2 {
    opacity: 0;
}

.logo {
    transform: translateY(-40vh);
} */

body {
    /* background-color: oklch(28.3% 0.141 291.089); */
}


.service_section {
    position: fixed;
    top: 0;
    width: 100%;
    /* height: 800px; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto;
}

.service_section svg {
    transform: rotateZ(-90deg);
    width: 400px;
    display: block;
    /* filter: blur(12px); */
}

.service_section svg>path {
    stroke: var(--bg-light);
    stroke-width: 4px;
}

.service_section svg>.ss_path_1 {
    fill: oklch(65.6% 0.241 354.308);
}

.service_section svg>.ss_path_2 {
    fill: oklch(79.5% 0.184 86.047);
}

.service_section svg>.ss_path_3 {
    fill: oklch(54.6% 0.245 262.881);
}

.service_section svg>.ss_path_4 {
    fill: oklch(62.7% 0.194 149.214);
}

.service_section svg>.ss_path_5 {
    /* fill: oklch(55.8% 0.288 302.321); */
    fill: oklch(54.1% 0.281 293.009);
}

.mask_path path {
    opacity: 0;
    /* transform: rotateZ(0deg);
            transform-origin: center; */
}

/* .service_scroll {
    height: 400vh;
} */

.service_div {
    display: flex;
    flex-direction: column;
    gap: 32vh;
    padding: 48vh 80px 48vh;
}


.nj_first_sect {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    background-color: beige;
    display: flex;
    justify-content: center;
}

/* 🌍 Orbit Container */
.orbit-container {
    position: relative;
    width: 700px;
    height: 100vh;
    /* ✅ full screen */
    display: flex;
    justify-content: center;
    align-items: center;
    /* z-index: 1; */
}

/* ☀️ Center Logo */
.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.center-logo img {
    width: 350px;
    height: 200px;
    /* border-radius: 50%; */
    object-fit: contain;
}

/* 🪐 Common Orbit Styles */
.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1.5px solid #9e9e9e;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: orbitRotate linear infinite;
    opacity: 0.9;
}

/* 🚀 Orbit Sizes and Speeds */
.orbit1 {
    width: 350px;
    height: 350px;
    animation-duration: 12s;
}

.orbit2 {
    width: 490px;
    height: 490px;
    animation-duration: 16s;
}

.orbit3 {
    width: 640px;
    height: 640px;
    animation-duration: 20s;
}

/* 🌀 Rotation Animation */
@keyframes orbitRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* 🌟 Icons on Orbit */
.icon {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 90px;
}

.icon img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: #fff;
    object-fit: contain;
}

/* 🌸 Pink Section Styling (updated for transparency) */
.pink-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(255, 128, 170);
    /* soft pink with opacity */
    color: #fff;
    opacity: 0;
    /* GSAP controls this fade */
    z-index: 2;
    /* above SVG but below any UI text */

}



/* 🌆 SVG Background Visibility */
/* #svg-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    opacity: 1;
    pointer-events: none;
} */

@media (max-width: 1440px) {

    /* 🧠 Background SVG adjustment */
    /* .background_img {
        top: 28%;
        left: -138%;
        transform: scale(0.95);
    } */


    /* 🌸 Pink section (keep centered properly) */
    .pink-section {
        background-color: rgb(255, 128, 170);
        justify-content: center;
        align-items: center;
    }

    /* 🪐 Orbit section adjustments */
    .orbit-container {
        width: 600px;
        height: 80vh;
    }

    .center-logo img {
        width: 250px;
        height: auto;
    }

    .icon img {
        width: 45px;
        height: 45px;
    }

    /* ✨ Card section text scaling */
    .card_div h1 {
        font-size: 2.5rem;
        line-height: 3.6rem;
    }

    .card_div p {
        font-size: 20px;
    }

    /* 📊 Number section text smaller */

    .num_div {
        gap: 30px;
        margin-top: 0%;
        margin-left: 19%;
    }

    .num_content h1 {
        font-size: 5.5rem;
    }

    .num_content p {
        font-size: 1.29rem;
        width: 69%;
    }

    .btn.btn_primary {
        width: 25%;
        padding: 20px 45px;
        font-size: 17px;
    }

    /* 🧱 Tooltip placement */
    .tooltip:nth-child(1) {
        top: -236%;
        left: 31%;
    }

    .tooltip:nth-child(2) {
        top: -120%;
        left: 51%;
    }

    .tooltip:nth-child(3) {
        top: -190%;
        left: 70%;
    }

    .tooltip:nth-child(4) {
        top: -235%;
        left: 86%;
    }

    .tooltip:nth-child(5) {
        top: -140%;
        left: 7%;
    }

    /* Header spacing */
    header {
        padding: 10px 18px;
    }


    /* 🪐 Fix orbit visibility at 1440px */
    .orbit-container {
        position: relative;
        z-index: 3;
        /* bring orbits above background */
        width: 640px;
        height: 90vh;
        /* taller area to keep orbits visible */
    }

    .orbit {
        /* opacity: 1 !important; */
        /* ensure they’re visible during this breakpoint */
        border-width: 1.2px;
    }

    .center-logo {
        z-index: 4;
        /* keep logo above orbits */
    }

    .center-logo img {
        width: 280px;
        /* slightly bigger to match balance */
        height: auto;
    }

    .pink-section {
        z-index: 2;
        /* stays behind orbit when visible */
    }

    .quote_section.layer_card h1 {

        font-size: 3.5rem;
    }

    .quote_section.layer_card p {

        font-size: 1.5rem;
    }

    .quote_section.layer_card {
        padding-bottom: 30px;
    }
}

@media (max-width: 1024px) {

    .background_div {
        left: 28px;
        top: 120px;
        width: calc(100vw - 60px);
        height: 55vh;
        border-radius: 40px;
        /*background-color: #d9f1ff;*/
    }

    .background_img {
        /*position: relative;*/
        bottom: 0vh;
        top: -50vh;
        left: -50vw;
        width: 180vw;
        height: 130vh;
        /* transform-origin: bottom center; */
        /* transform: translateX(0vw) translateY(0vh) scale(1); */
    }

    /* 🪐 Orbit section – corrected for 1024px (same layout feel as 1440px) */
    .orbit-container {
        position: relative;
        z-index: 3;
        width: 540px;
        /* smaller than 1440’s 640px */
        height: 78vh;
        /* keeps outer orbit visible */
        margin: 0 auto;
        transform: translateY(25px);
        overflow: visible;
        /* allow full orbit ring to be visible */
    }

    .orbit1 {
        width: 280px;
        height: 280px;
    }

    .orbit2 {
        width: 400px;
        height: 400px;
    }

    .orbit3 {
        width: 520px;
        height: 520px;
    }

    .orbit {
        transform: scale(0.93);
        /* shrink orbit circles proportionally */
    }

    .center-logo {
        z-index: 4;
        transform: translate(-50%, -50%) scale(0.8);
        /* balance with smaller orbits */
    }

    .center-logo img {
        width: 220px;
        /* slightly smaller than 1440px version */
        height: auto;
    }

    .icon img {
        width: 28px;
        height: 28px;
    }

    .pink-section {
        z-index: 2;
        /* stays behind orbit when visible */
    }




    .pink-section {
        background-color: rgb(255, 128, 170);
        justify-content: center;
        align-items: center;
    }



    .center-logo img {
        width: 250px;
        height: auto;
    }

    .icon img {
        width: 32px;
        height: 32px;
    }




    .card_div h1 {
        font-size: 1.7rem;
        line-height: 3rem;
    }

    .card_div p {
        font-size: 16px;
        width: 90%;
        margin: 0 auto 10px;
    }

    /* 🧮 Number section (pink stats) */
    .num_div {
        gap: 30px;
        margin-top: 0%;
        margin-left: 19%;
    }

    .num_content h1 {
        font-size: 4.5rem;
    }

    .num_content p {
        font-size: 1rem;
        width: 65%;
        margin-top: -20px;
    }

    .tooltip:after {
        content: none;
    }

    .tooltip {
        position: static;
    }

    .wrapper {
        flex-wrap: wrap;
        margin: 0px 16px;
    }


    .industries_section {
        flex-direction: column-reverse;
        align-items: flex-start;
        justify-content: flex-end;
        margin-top: 40px;
    }

    .industries_section .card_div {
        width: calc(100% - 32px);
        margin: 24px 16px 60px;
    }

    .industries_section{
        top: 65vh;
    }
    
    .quote_section {
        top: 75vh;
    }

    /* 💡 Button scaling */
    .btn.btn_primary {
        width: 34%;
        padding: 20px 27px;
        font-size: 1rem;
    }


    /* Header spacing */
    header {
        padding: 8px 16px;
    }

    .quote_section.layer_card h1 {

        font-size: 2.5rem;
    }

    .quote_section.layer_card p {

        font-size: 1.3rem;
    }

    .quote_section.layer_card {
background: #FFFFF0;
background: linear-gradient(180deg, rgba(255, 255, 240, 0) 0%, rgba(255, 255, 240, 0.6) 12%, rgba(255, 255, 240, 0.8) 30%, rgba(255, 255, 240, 1) 50%);
padding-bottom: 20px;
    }

}

@media (max-width: 768px) {

    /* 🧠 Background SVG adjustment (tablet) */
    /* .background_img {
        top: -125%;
        left: -311%;
        transform: scale(0.48);
        opacity: 1;
        z-index: 1;
        position: absolute;
    } */

    /* 🌸 Pink stats section */
    .pink-section {
        background-color: rgb(255, 128, 170);
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    /* 🪐 Orbit section (scaled down for tablets) */
    .orbit-container {
        position: relative;
        z-index: 3;
        width: 420px;
        /* smaller orbit container */
        height: 70vh;
        margin: 0 auto;
        transform: translateY(20px);
        overflow: visible;
    }

    .orbit1 {
        width: 200px;
        height: 200px;
    }

    .orbit2 {
        width: 330px;
        height: 330px;
    }

    .orbit3 {
        width: 450px;
        height: 450px;
    }

    .center-logo {
        z-index: 4;
        transform: translate(-50%, -50%) scale(0.7);
    }

    .center-logo img {
        width: 180px;
        height: auto;
    }

    .icon img {
        width: 26px;
        height: 26px;
    }

    /* ✨ Hero section text (tablet) */
    .hero_section {
        width: 90%;
        height: 35%;
        margin: 0px 30px;
        text-align: center;
    }

    .card_div h1 {
        font-size: 1.2rem;
        line-height: 2.5rem;
    }

    .card_div p {
        font-size: 12px;
        width: 95%;
        margin: 0 auto 8px;
    }

    /* 📊 Number section (tablet layout) */
    .num_div {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        row-gap: 25px;
        margin-top: 0;
        margin-left: 0;
        text-align: center;
    }

    .num_content h1 {
        font-size: 3.5rem;
    }

    .num_content p {
        font-size: 0.95rem;
        width: 60%;
        margin: 0 auto;
    }

    /* 💡 CTA Button */
    .btn.btn_primary {
        width: 45%;
        padding: 18px 20px;
        font-size: 0.95rem;
        margin: 15px auto;
        display: block;
    }

    /* 📑 Quote section (bottom area) */
    .quote_section.layer_card h1 {
        font-size: 1.9rem;
        line-height: 2.6rem;
    }

    .quote_section.layer_card p {
        font-size: 1rem;
    }

    .quote_section.layer_card {
        padding-bottom: 15px;
    }

    header {
        padding: 8px 14px;
    }
}

@media (max-width: 500px) {
    /* accutaly this is 375px media querry  */
    
    .first_scroll{
        margin-top: 30% !important;
    }

    .background_div {
        left: 28px;
        top: 90px;
        width: calc(100vw - 60px);
        height: 45vh;
        border-radius: 20px;
    }
    
    .background_img {
        bottom: 0vh;
        top: -45vh;
        left: -50vw;
        width: 180vw;
        height: 130vh;
     
    }

    .industries_section {
        top: 55vh;
    }
    .quote_section {
        top: 65vh;
    }

    .tooltip {
        font-size: 12px;
        padding: 4px 16px 6px;

    }

    /* 🌸 Pink stats section (mobile) */
    .pink-section {
        background-color: rgb(255, 128, 170);
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
        padding: 10px 0;
    }

    /* 🪐 Orbit section (mobile scaled) */
    .orbit-container {
        position: relative;
        z-index: 3;
        width: 300px;
        height: 55vh;
        margin: 0 auto;
        transform: translateY(30px);
        overflow: visible;
    }

    /* Orbits resized for mobile */
    .orbit1 {
        width: 150px;
        height: 150px;
    }

    .icon img {
        margin-top: 18px;
    }

    .orbit2 {
        width: 230px;
        height: 230px;
    }

    .orbit3 {
        width: 300px;
        height: 300px;
    }

    /* Center logo smaller */
    .center-logo {
        z-index: 4;
        transform: translate(-50%, -50%) scale(0.6);
    }

    .center-logo img {
        width: 130px;
        height: auto;
    }

    .icon {
        gap: 50px;
        margin-top: -13px;
    }

    /* Orbit icons */
    .icon img {
        width: 22px;
        height: 22px;
    }

    /* ✨ Hero section (text smaller + centered) */
    .hero_section {
        width: 120%;

        height: auto;
        text-align: center;
        padding-top: 20px;
        margin-left: -37px;
    }

    .card_div h1 {
        font-size: 22px;
        line-height: 1.8rem;
        margin-bottom: 10px;
    }

    .card_div p {
        width: 92%;
        margin: 0;
        font-weight: 700;
        font-size: 14px;
        color: #23262c;
    }

    /* 📊 Number section (mobile 2x2 grid + 1 full row) */
    .num_div {
        display: grid;
        grid-template-columns: auto;
        row-gap: 20px;
        margin: 10px 0;
        text-align: center;
    }

    .num_content h1 {
        font-size: 3.3rem;
    }

    .num_content p {
        font-size: 0.85rem;
        width: 70%;
        margin: 0 auto;
    }

    /* 💡 CTA Button */
    .btn.btn_primary {
        width: 60%;
        padding: 15px 12px;
        font-size: 13px;
        display: block;
        margin-bottom: -21px;
        font-weight: 600;
    }

    .industries_section .card_div {
        margin-bottom: 10px;
    }

    /* 📑 Quote section */
    .quote_section.layer_card h1 {
        font-size: 1.6rem;
        line-height: 2.2rem;
    }

    .quote_section.layer_card p {
        font-size: 0.9rem;
        line-height: 1.4rem;
        width: 95%;
        margin: 0 auto;
    }

    .quote_section.layer_card {
        padding-bottom: 12px;
    }

    /* Header */
    header {
        padding: 6px 10px;
    }
}