@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');

:root {
    --header-purple-main: #6a1b9a;
    --header-purple-dark: #4a0072;
    --header-purple-light-bg: #f3e5f5;
    --header-red-logo: #f04362;
    --header-text-primary: #111827;
    --header-text-secondary: #4b5563;
    --header-white: #ffffff;
    --header-grey-light: #f9fafb;
    --header-grey-border: #e5e7eb;
    --header-dotted-border-color: #d1d5db;
    --header-glass-bg: rgba(255, 255, 255, 0.4);
    --header-transition-speed: 0.35s;
    --header-transition-easing: cubic-bezier(0.23, 1, 0.32, 1);
}

body {
    padding-top: 80px;
}

.header {
    opacity: 1 !important;
    visibility: visible !important;
    font-family: 'Inter', sans-serif;
    color: var(--header-text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--header-glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: fixed;
    border-bottom: 1px solid var(--header-grey-border);
    top: 0;
    z-index: 1002;
    width: 100%;
    min-height: 60px;
}

.header .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.header a, .header button {
    text-decoration: none;
    color: inherit;
    font-family: inherit;
    cursor: pointer;
}

.header ul { list-style: none; }
.header button { background: none; border: none; }

.header .navbar {
    display: flex;
    align-items: center;
    height: 80px;
    position: relative;
    padding: 0;
}

.header .logo {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-right: auto;
}

.header .logo img { width: 34px; height: 34px; }
.header .logo-text { color: var(--header-red-logo); }

.header .nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 16px;
}

.header .nav-item, .header .dropdown-item { position: relative; }

.header .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--header-text-secondary);
    padding: 10px 16px;
    border-radius: 8px;
    transition: all var(--header-transition-speed) ease;
    white-space: nowrap;
}

.header .nav-link:hover,
.header .dropdown-item.is-open .dropdown-toggle {
    color: var(--header-purple-main);
    background-color: var(--header-purple-light-bg);
}

.header .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header .dropdown-chevron {
    transition: transform var(--header-transition-speed) var(--header-transition-easing);
}

.header .dropdown-item.is-open .dropdown-chevron {
    transform: rotate(180deg);
}

.header .nav-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header .cta-button {
    background-color: var(--header-white);
    color: #5D2A7B;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid var(--header-purple-main);
    font-weight: 600;
    font-size: 15px;
    transition: all var(--header-transition-speed) var(--header-transition-easing);
}

.header .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(106, 27, 154, 0.5);
}

.header .desktop-only { display: inline-flex; }

.header .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.header .hamburger-line {
    width: 24px;
    height: 2.5px;
    background-color: #374151;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: center;
    border-radius: 1px;
}

.header .hamburger-line:nth-child(2) { margin: 5px 0; }

ma-header:empty {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--header-glass-bg);
    border-bottom: 1px solid var(--header-grey-border);
    z-index: 1001;
}

@media screen and (max-width: 767px) {
    *,
    *::before,
    *::after {
        animation-duration: 0s !important;
        animation-delay: 0s !important;
        transition-duration: 0s !important;
        transition-delay: 0s !important;
    }

    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }

    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }

    .header .container { padding: 0 16px; }
    .header .navbar { height: 70px; }
    .header .nav-menu { display: none; }
    .header .desktop-only { display: none !important; }
    .header .mobile-menu-toggle { display: flex; }
    .header .logo { font-size: 20px; }
    .header .logo img { width: 28px; height: 28px; }

    ma-header:empty { height: 70px; }
    body { padding-top: 70px; }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
    .header .container { padding: 0 20px; }

    .header .nav-menu { display: none; }
    .header .desktop-only { display: none !important; }
    .header .mobile-menu-toggle { display: flex; }
}

@media screen and (max-width: 388px) {
    .header .container { padding: 0 12px; }

    .header .mobile-menu-list li a {
        padding: 6px 10px;
        font-size: 13px;
    }

    .header .mobile-group-title {
        font-size: 14px;
        padding: 12px 0 8px;
    }

    .header .mobile-cta-section {
        padding: 16px 12px;
    }

    .header .mobile-cta-button {
        padding: 10px 16px;
        font-size: 14px;
    }
}

:root {
    --color-text-primary: #4E276B; --color-text-secondary: #514F6E;
    --color-bg-light: #F9F8FE; --color-bg-dark: #4A2E63;
    --color-purple: #4A2E63;
    --color-purple-light: #f3e8ff;
    --color-blue-light: #e6f0ff;
    --font-sans: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


img {
    max-width: 100%;
    height: auto;
    display: block;
}


.sandbox-gradient-text {
    background: linear-gradient(90deg, #6a3093, #a044ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.sandbox-gradient-text-alt {
    background: linear-gradient(90deg, #4b266b, #a044ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.sandbox-hero-section,
.sandbox-what-is-section,
.sandbox-why-love-section,
.sandbox-what-can-do-section,
.sandbox-action-section,
.sandbox-designed-for-section,
.sandbox-cta-section {
    padding: 3rem 1rem;
}

.sandbox-hero-container,
.sandbox-what-is-container,
.sandbox-why-love-container,
.sandbox-what-can-do-container,
.sandbox-action-container,
.sandbox-designed-for-container,
.sandbox-cta-container,
.sandbox-footer-container {
    margin-left: auto;
    margin-right: auto;
}

.sandbox-hero-container, .sandbox-cta-container {
    max-width: 1300px;
}

.sandbox-what-is-container,
.sandbox-why-love-container,
.sandbox-what-can-do-container,
.sandbox-action-container,
.sandbox-designed-for-container,
.sandbox-footer-container {
    max-width: 1200px;
}


.sandbox-hero-container {
    background: linear-gradient(0deg, #F8F6FE 0%, #F5E7F7 55.65%, #E6DFFB 100%);
    border-radius: 1.5rem;
    padding: 2rem;
}

.sandbox-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.sandbox-hero-text-content {
    text-align: center;
}

.sandbox-hero-headline {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    background: var(--Text-gradient-1, linear-gradient(87deg, #8253C2 18.3%, #F45346 80.97%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sandbox-hero-subheadline {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    color: #514F6E;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.sandbox-hero-cta-group {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.sandbox-button-primary {
    background-color: #611F69;
    color: white;
    font-weight: 600;
    padding: 0.95rem 2rem;
    border-radius: 9999px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    transition: opacity 0.3s ease;
    width: 100%;
}

.sandbox-button-primary a{
    text-decoration: none;
    color: white;
}

.sandbox-button-primary:hover {
    opacity: 0.9;
}

.sandbox-button-large {
    padding: 1rem 2.5rem;
}

.sandbox-hero-features {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.sandbox-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sandbox-feature-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-purple);
}

.sandbox-feature-title {
    font-weight: 800;
    font-size: 1.25rem;
    color: #611F69;
}

.sandbox-feature-subtitle {
    font-size: 0.875rem;
    color: #514F6E;
}

.sandbox-separator {
    height: 2rem;
    width: 1px;
    background-color: #cbd5e1;
}

.sandbox-hero-image-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 400px;
    perspective: 1000px;
}

.sandbox-animation-container {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto;
}

.sandbox-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: slideAndRotate 21s ease-in-out infinite;
    border-radius: 1.5rem;
    }

.sandbox-icon-c { animation-delay: 0s; }
.sandbox-icon-cpp { animation-delay: 3s; }
.sandbox-icon-python { animation-delay: 6s; }
.sandbox-icon-js { animation-delay: 9s; }
.sandbox-icon-ts { animation-delay: 12s; }
.sandbox-icon-node { animation-delay: 15s; }
.sandbox-icon-java { animation-delay: 18s; }


@keyframes slideAndRotate {
    0% {
        transform: translateY(-90%) rotateX(90deg);
        opacity: 0;
    }
    4% {
        transform: translateY(0) rotateX(0);
        opacity: 1;
    }
    10% {
        transform: translateY(0) rotateX(0);
        opacity: 1;
    }
    14% {
        transform: translateY(90%) rotateX(-90deg);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.sandbox-why-love-title,
.sandbox-action-title-main,
.sandbox-designed-for-title-main {
    font-size: 2.25rem;
    font-weight: 600;
    text-align: center;
    background: linear-gradient(87deg, #611F69 18.3%, #F45346 80.97%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sandbox-what-can-do-title{
    font-size: 2.25rem;
    font-weight: 600;
    text-align: center;
    color: #FFF;
}

.sandbox-what-is-title{
    font-size: 2.25rem;
    font-weight: 700;
    background: linear-gradient(87deg, #611F69 18.3%, #F45346 80.97%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sandbox-what-is-paragraph {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.75;
    color: #514F6E;
    font-weight: 600;
}

.sandbox-what-is-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.sandbox-code-image-wrapper img {
    border-radius: 1rem;
    box-shadow: 0 25px 10px -12px rgb(0 0 0 / 0.25);
    width: 100%;
}

.sandbox-what-is-text-content {
    text-align: justify;
}

@media (min-width: 1024px) {
    .sandbox-what-is-container {
        flex-direction: row;
        gap: 5rem;
    }
    .sandbox-code-image-wrapper {
        flex: 1;
        order: 2; }
    .sandbox-what-is-text-content {
        flex: 1;
        order: 3; }
    .sandbox-what-is-title {
        order: 1; }
}

.sandbox-why-love-section {
    background-color: #F8F6FE;
}

.sandbox-features-grid, .sandbox-capabilities-grid, .sandbox-audience-grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    box-shadow: var(--sds-size-depth-0) var(--sds-size-depth-025) var(--sds-size-depth-100) var(--sds-size-depth-0) var(--sds-color-black-200), var(--sds-size-depth-0) var(--sds-size-depth-025) var(--sds-size-depth-100) var(--sds-size-depth-0) var(--sds-color-black-100);
}

.sandbox-feature-card {
    background-color: #FFF;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #EAE6F4;
    transition: box-shadow 0.3s ease;
}

.sandbox-feature-card:hover {
    box-shadow: 0 10px 20px -5px rgb(74 46 99 / 0.1);
}

.sandbox-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background: #FCFBFF;
    border: 0.674px solid rgba(136, 136, 136, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sandbox-feature-card .sandbox-icon-wrapper {
    background-color: #FCFBFF; 
}

.sandbox-icon-wrapper svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #4A2E63;
}

.sandbox-why-love-card-title {
    margin-top: 1.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: #4E276B;
}

.sandbox-why-love-card-description {
    margin-top: 0.5rem;
    color: #514F6E;
}

.sandbox-what-can-do-section {
    background: url(/assets/images/sandboxpro/BG.svg);
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
}

.sandbox-what-can-do-section .sandbox-what-can-do-title {
    color: white;
}

.sandbox-capability-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.sandbox-capability-card .sandbox-icon-wrapper {
    background-color: #F5F0FD;
    flex-shrink: 0;
    border: none;
}

.sandbox-capability-card .sandbox-icon-wrapper svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--color-purple);
}

.sandbox-capability-card-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: #061C3D;
}

.sandbox-capability-card-description {
    margin-top: 0.5rem;
    color: #514F6E;
}

.sandbox-action-section {
    background-color: #ffffff;
}
.sandbox-action-card-container {
    margin-top: 4rem;
    background-color: #F9F8FE;
    border-radius: 1rem;
    border: 1px solid #EAE6F4;
    box-shadow: var(--sds-size-depth-0) var(--sds-size-depth-100) var(--sds-size-depth-100) var(--sds-size-depth-negative-025) var(--sds-color-black-200), var(--sds-size-depth-0) var(--sds-size-depth-100) var(--sds-size-depth-100) var(--sds-size-depth-negative-025) var(--sds-color-black-100);
}

.sandbox-action-card-grid {
    display: grid;
    grid-template-columns: 1fr;
}

.sandbox-action-item {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #EAE6F4;
}

.sandbox-action-item h3, .sandbox-action-section-para{
    text-align: left;
}

.sandbox-action-item:first-child {
    border-top: none;
}

.sandbox-action-item-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.sandbox-action-title-purple { color: #6a3093; }
.sandbox-action-title-red { color: #c0392b; }
.sandbox-action-title-orange { color: #f39c12; }
.sandbox-action-title-blue { color: #2980b9; }

.sandbox-action-item-description {
    margin-top: 0.5rem;
    color: #514F6E;
}

.sandbox-designed-for-section {
    background: #F8F6FE;
}
.sandbox-audience-card {
    padding: 1.5rem;
    border-radius: 1.5rem;
    border-width: 1px;
}

.sandbox-audience-card-purple { background-color: #D0C6F0; border-color: #D0C6F0; }
.sandbox-audience-card-blue { background-color: #B7CCFA; border-color: #B7CCFA; }
.sandbox-audience-card-green { background-color: #9ED9B3; border-color: #9ED9B3; }

.sandbox-audience-card-title {
    font-weight: 600;
    font-size: 1.25rem;
}
.sandbox-audience-card-purple .sandbox-audience-card-title { color: #4A2E63; }
.sandbox-audience-card-blue .sandbox-audience-card-title { color: #1e40af; }
.sandbox-audience-card-green .sandbox-audience-card-title { color: #065f46; }


.sandbox-audience-image-wrapper {
    margin-top: 1rem;
}

.sandbox-audience-image-wrapper img {
    border-radius: 1rem;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.sandbox-audience-grid .sandbox-audience-image-wrapper-1 img{
    position:relative;
    top:20px;
}

.sandbox-audience-grid .sandbox-audience-image-wrapper-2 img{
    position:relative;
    top:20px;
}

.sandbox-cta-container {
    background: linear-gradient(105deg, var(--color-purple-light), var(--color-blue-light));
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
}

.sandbox-cta-headline {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(87deg, #611F69 18.3%, #F45346 80.97%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sandbox-cta-subheadline {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    color: #514F6E;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.sandbox-cta-button-group {
    margin-top: 2.5rem;
}

.sandbox-footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #ffffff;
}

.sandbox-footer-container {
    text-align: center;
    color: #514F6E;
}

@media (max-width: 639px) {
    .sandbox-animation-container {
        margin: 0 auto;
        width: 280px;
        height: 280px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (min-width: 640px) and (max-width: 767px) {
    .sandbox-animation-container {
        margin: 0 auto;
        width: 300px;
        height: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (min-width: 640px) {
    .sandbox-hero-section, .sandbox-cta-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .sandbox-what-is-section,
    .sandbox-why-love-section,
    .sandbox-what-can-do-section,
    .sandbox-action-section,
    .sandbox-designed-for-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    .sandbox-hero-container, .sandbox-cta-container {
        padding: 3rem;
    }
    .sandbox-hero-headline, .sandbox-cta-headline {
        font-size: 3rem;
    }
    .sandbox-button-primary {
        width: auto;
    }
    .sandbox-hero-cta-group {
        flex-direction: row;
        justify-content: center;
    }
    .sandbox-js-logo {
        width: 20rem;
        height: 20rem;
    }
    .sandbox-what-is-title,
    .sandbox-why-love-title,
    .sandbox-what-can-do-title,
    .sandbox-action-title-main,
    .sandbox-designed-for-title-main {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .sandbox-hero-container, .sandbox-cta-container {
        padding: 4rem;
    }
    .sandbox-hero-headline, .sandbox-cta-headline {
        font-size: 3.75rem;
    }
    .sandbox-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
     .sandbox-capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sandbox-action-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sandbox-action-item {
        border-top: none;
        border-left: 1px solid #EAE6F4;
    }
    .sandbox-action-item:nth-child(2n+1) {
        border-left: none;
    }
    .sandbox-action-item:nth-child(1), .sandbox-action-item:nth-child(2) {
        border-bottom: 1px solid #EAE6F4;
    }
    .sandbox-audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sandbox-hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sandbox-hero-text-content {
        text-align: left;
    }
    .sandbox-hero-subheadline {
        margin-left: 0;
        margin-right: 0;
    }
    .sandbox-hero-cta-group {
        justify-content: flex-start;
    }
    .sandbox-hero-features {
        justify-content: flex-start;
    }
    .sandbox-hero-image-content {
        justify-content: center;
    }
    .sandbox-what-is-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 5rem;
    }
    .sandbox-what-is-text {
        text-align: left;
    }
    .sandbox-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .sandbox-audience-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .sandbox-action-card-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .sandbox-action-item:nth-child(n) {
        border: none;
    }
    .sandbox-action-item:not(:last-child) {
        border-right: 1px solid #EAE6F4;
    }
}
