
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Ubuntu', sans-serif;
    }

    body {
        background-color: #ffffff;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        padding-top: 80px;
        background-image: radial-gradient(circle, #e0e0e0 1px, transparent 1px);
        background-size: 20px 20px;
    }

    /* Navbar styling */
    .navbar {
        position: fixed;
        top: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 600px;
        padding: 10px 20px;
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(15px);
        border-radius: 50px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, visibility 0.5s ease-in-out;
        z-index: 1000;
    }

    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        font-family: 'Playwrite DK Loopet', cursive;
        color: #333;
        text-decoration: none;
        opacity: 0;
        transform: translateX(-20px);
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        transition-delay: 0.1s;
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: 25px;
    }

    .nav-links li a {
        position: relative;
        text-decoration: none;
        color: #333;
        font-size: 1.2rem;
        font-weight: 400;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links li:nth-child(1) a { transition-delay: 0.2s; }
    .nav-links li:nth-child(2) a { transition-delay: 0.3s; }
    .nav-links li:nth-child(3) a { transition-delay: 0.4s; }
    .nav-links li:nth-child(4) a { transition-delay: 0.5s; }

    .nav-links li a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        background-color: #333;
        bottom: -4px;
        left: 0;
        transition: width 0.3s ease;
    }

    .nav-links li a:hover::after {
        width: 100%;
    }

    .nav-links li a:hover {
        color: #333;
    }

    /* Hide icons by default on larger screens */
    .nav-links li a i {
        display: none;
    }

    .nav-links .btn {
        background-color: #333;
        color: #ffffff;
        padding: 8px 15px;
        border-radius: 20px;
        transition: background-color 0.3s ease;
    }

    .nav-links .btn:hover {
        background-color: #555;
        color: #ffffff;
    }

    .navbar.active,
    .navbar.active .logo,
    .navbar.active .nav-links li a {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) translateX(0);
    }

    /* Hero Section Styling */
    .hero {
        position: relative;
        text-align: center;
        margin-top: 0;
        width: 100%;
        max-width: 800px;
        height: 75vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hero-heading {
        font-size: 3.5rem;
        font-weight: 700;
        color: #333;
        line-height: 1.2;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        transition-delay: 0.2s;
    }

    .hero-subheading {
        font-size: 1.2rem;
        font-weight: 400;
        color: #333;
        margin: 20px 0;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        transition-delay: 0.4s;
    }

    .hero-buttons {
        display: flex;
        justify-content: center;
        margin-bottom: 0;
    }

    .hero-buttons .btn-primary {
        background-color: #ffffff;
        color: #333;
        padding: 12px 25px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 500;
        border: 2px solid #333;
        animation: colorChange 4s ease-in-out infinite;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        transition-delay: 0.6s;
    }

    @keyframes colorChange {
        0% {
            background-color: #ffffff;
            color: #333;
        }
        50% {
            background-color: #333;
            color: #ffffff;
        }
        100% {
            background-color: #ffffff;
            color: #333;
        }
    }

    .hero-buttons .btn-primary:hover {
        background-color: #555;
        color: #ffffff;
        animation-play-state: paused;
    }

    .icon {
        position: absolute;
        font-size: 40px;
        color: #333;
        opacity: 0.7;
        transition: transform 0.3s ease, opacity 0.3s ease;
        z-index: 0;
    }

    .icon:hover {
        opacity: 1;
        transform: scale(1.2);
    }

    .laptop { top: 10%; left: 5%; animation: float 6s ease-in-out infinite; }
    .code { top: 80%; left: 15%; animation: float 7s ease-in-out infinite 1s; }
    .design { top: 15%; right: 10%; animation: float 5s ease-in-out infinite 0.5s; }
    .database { top: 85%; right: 20%; animation: float 8s ease-in-out infinite 2s; }
    .cloud { top: 60%; left: 85%; animation: float 6s ease-in-out infinite 1.5s; }

    @keyframes float {
        0% { transform: translateY(0); }
        50% { transform: translateY(-20px); }
        100% { transform: translateY(0); }
    }

    .hero-heading,
    .hero-subheading,
    .hero-buttons,
    .animated-text {
        position: relative;
        z-index: 1;
    }

    .animated-text {
        position: absolute;
        font-size: 1.5rem;
        font-weight: 500;
        color: #333;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        transition-delay: 0.2s;
    }

    .text-icon {
        font-size: 1.5rem;
        color: #333;
        opacity: 0;
        transform: scale(0.8);
        transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        transition-delay: 0.3s;
    }

    .animated-text.in-view,
    .animated-text.in-view .text-icon {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    .in-view {
        opacity: 1 !important;
        transform: translateY(0) translateX(0) scale(1) !important;
    }

    /* Core Offerings Section Styling */
    .core-offerings {
        position: relative;
        text-align: center;
        width: 100%;
        max-width: 1000px;
        padding: 60px 20px;
    }

    .offerings-heading {
        font-size: 2.5rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 40px;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        transition-delay: 0.2s;
    }

    .offerings-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .offering-card {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        border: 2px solid transparent;
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .offering-card:nth-child(1) { transition-delay: 0.4s; }
    .offering-card:nth-child(2) { transition-delay: 0.5s; }
    .offering-card:nth-child(3) { transition-delay: 0.6s; }
    .offering-card:nth-child(4) { transition-delay: 0.7s; }
    .offering-card:nth-child(5) { transition-delay: 0.8s; }
    .offering-card:nth-child(6) { transition-delay: 0.9s; }

    .offering-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        border-color: #333;
    }

    .offering-icon {
        font-size: 2rem;
        color: #333;
        margin-bottom: 15px;
    }

    .offering-card h3 {
        font-size: 1.5rem;
        font-weight: 500;
        color: #333;
        margin-bottom: 10px;
    }

    .offering-card p {
        font-size: 1rem;
        font-weight: 400;
        color: #666;
    }

    .offerings-heading.in-view,
    .offering-card.in-view {
        opacity: 1;
        transform: translateY(0);
    }

    /* How We Build Section Styling */
    .how-we-build {
        position: relative;
        text-align: center;
        width: 100%;
        max-width: 800px;
        padding: 60px 20px;
    }

    .build-heading {
        font-size: 2.5rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 20px;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        transition-delay: 0.2s;
    }

    .build-heading i {
        margin-right: 10px;
    }

    .build-description {
        font-size: 1.1rem;
        font-weight: 400;
        color: #333;
        margin-bottom: 40px;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        transition-delay: 0.4s;
    }

    .expectations-list {
        position: relative;
        max-width: 600px;
        margin: 0 auto;
    }

    .expectations-subheading {
        font-size: 1.8rem;
        font-weight: 500;
        color: #333;
        margin-bottom: 30px;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        transition-delay: 0.6s;
    }

    .expectation-item {
        display: flex;
        align-items: center;
        margin-bottom: 40px;
        position: relative;
        opacity: 0;
        transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .expectation-item:nth-child(odd) {
        transform: translateX(-50px);
    }

    .expectation-item:nth-child(even) {
        transform: translateX(50px);
    }

    .expectation-item:nth-child(1) { transition-delay: 0.8s; }
    .expectation-item:nth-child(2) { transition-delay: 0.9s; }
    .expectation-item:nth-child(3) { transition-delay: 1.0s; }
    .expectation-item:nth-child(4) { transition-delay: 1.1s; }
    .expectation-item:nth-child(5) { transition-delay: 1.2s; }
    .expectation-item:nth-child(6) { transition-delay: 1.3s; }

    .expectation-item:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 70px;
        left: 35px;
        width: 2px;
        height: calc(100% - 30px);
        background: repeating-linear-gradient(
            to bottom,
            #333 0,
            #333 5px,
            transparent 5px,
            transparent 10px
        );
        z-index: 0;
    }

    .expectation-icon {
        width: 70px;
        height: 70px;
        background: rgba(255, 255, 255, 0.9);
        border: 2px solid #333;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        color: #333;
        margin-right: 20px;
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        z-index: 1;
    }

    .expectation-icon:hover {
        transform: scale(1.1);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        border-color: #555;
    }

    .expectation-content {
        text-align: left;
        flex: 1;
    }

    .expectation-content h4 {
        font-size: 1.3rem;
        font-weight: 500;
        color: #333;
        margin-bottom: 5px;
    }

    .expectation-content p {
        font-size: 1rem;
        font-weight: 400;
        color: #666;
    }

    .build-heading.in-view,
    .build-description.in-view,
    .expectations-subheading.in-view,
    .expectation-item.in-view {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }

    /* Getting Started Section Styling */
    .getting-started {
        position: relative;
        text-align: center;
        width: 100%;
        max-width: 800px;
        padding: 60px 20px;
    }

    .started-heading {
        font-size: 2.5rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 20px;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        transition-delay: 0.2s;
    }

    .started-heading i {
        margin-right: 10px;
    }

    .started-description {
        font-size: 1.1rem;
        font-weight: 400;
        color: #333;
        margin-bottom: 40px;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        transition-delay: 0.4s;
    }

    .steps-list {
        position: relative;
        max-width: 600px;
        margin: 0 auto;
    }

    .steps-subheading {
        font-size: 1.8rem;
        font-weight: 500;
        color: #333;
        margin-bottom: 30px;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        transition-delay: 0.6s;
    }

    .step-item {
        display: flex;
        align-items: center;
        margin-bottom: 40px;
        position: relative;
        opacity: 0;
        transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .step-item.left {
        flex-direction: row;
        justify-content: flex-start;
        transform: translateX(-50px);
    }

    .step-item.left .step-badge {
        order: 2;
        margin-left: 20px;
    }

    .step-item.left .step-content {
        order: 1;
        text-align: right;
    }

    .step-item.right {
        flex-direction: row-reverse;
        justify-content: flex-end;
        transform: translateX(50px);
    }

    .step-item.right .step-badge {
        order: 1;
        margin-right: 20px;
    }

    .step-item.right .step-content {
        order: 2;
        text-align: left;
    }

    .step-item:nth-child(1) { transition-delay: 0.8s; }
    .step-item:nth-child(2) { transition-delay: 0.9s; }
    .step-item:nth-child(3) { transition-delay: 1.0s; }
    .step-item:nth-child(4) { transition-delay: 1.1s; }
    .step-item:nth-child(5) { transition-delay: 1.2s; }

    .step-badge {
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.9);
        border: 2px solid #333;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: #333;
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        z-index: 1;
    }

    .step-badge:hover {
        transform: scale(1.1);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        border-color: #555;
    }

    .step-content {
        flex: 1;
    }

    .step-content h4 {
        font-size: 1.3rem;
        font-weight: 500;
        color: #333;
        margin-bottom: 5px;
    }

    .step-content p {
        font-size: 1rem;
        font-weight: 400;
        color: #666;
    }

    .started-heading.in-view,
    .started-description.in-view,
    .steps-subheading.in-view,
    .step-item.in-view {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }

    /* We’re Here to Serve Section Styling */
    .we-serve {
        position: relative;
        text-align: center;
        width: 100%;
        max-width: 1000px;
        padding: 60px 20px;
    }

    .serve-heading {
        font-size: 2.5rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 20px;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        transition-delay: 0.2s;
    }

    .serve-heading i {
        margin-right: 10px;
    }

    .serve-description {
        font-size: 1.1rem;
        font-weight: 400;
        color: #333;
        margin-bottom: 40px;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        transition-delay: 0.4s;
    }

    .offerings-list {
        position: relative;
        max-width: 1000px;
        margin: 0 auto;
    }

    .offerings-subheading {
        font-size: 1.8rem;
        font-weight: 500;
        color: #333;
        margin-bottom: 40px;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        transition-delay: 0.6s;
    }

    .offerings-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .offering-item {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        opacity: 0;
        transform: translateY(30px);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .offering-item:nth-child(1) { transition-delay: 0.8s; }
    .offering-item:nth-child(2) { transition-delay: 0.9s; }
    .offering-item:nth-child(3) { transition-delay: 1.0s; }
    .offering-item:nth-child(4) { transition-delay: 1.1s; }
    .offering-item:nth-child(5) { transition-delay: 1.2s; }
    .offering-item:nth-child(6) { transition-delay: 1.3s; }
    .offering-item:nth-child(7) { transition-delay: 1.4s; }
    .offering-item:nth-child(8) { transition-delay: 1.5s; }

    .offering-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    }

    .offering-icon {
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.9);
        border: 2px solid #333;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: #333;
        margin: 0 auto 15px;
        transition: transform 0.3s ease, border-color 0.3s ease;
    }

    .offering-item:hover .offering-icon {
        transform: scale(1.1);
        border-color: #555;
    }

    .offering-content {
        text-align: center;
    }

    .offering-content h4 {
        font-size: 1.3rem;
        font-weight: 500;
        color: #333;
        margin-bottom: 5px;
    }

    .offering-content p {
        font-size: 1rem;
        font-weight: 400;
        color: #666;
    }

    .more-text {
        margin-top: 40px;
        text-align: right;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        transition-delay: 1.6s;
    }

    .more-text span {
        font-size: 1.2rem;
        font-weight: 500;
        font-style: italic;
        color: #333;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), transparent);
        padding: 5px 10px;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .serve-cta {
        margin-top: 40px;
        display: flex;
        justify-content: center;
    }

    .cta-button {
        background-color: #ffffff;
        color: #333;
        padding: 12px 25px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 500;
        border: 2px solid #333;
        animation: colorChange 4s ease-in-out infinite;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        transition-delay: 1.8s;
    }

    @keyframes colorChange {
        0% {
            background-color: #ffffff;
            color: #333;
        }
        50% {
            background-color: #333;
            color: #ffffff;
        }
        100% {
            background-color: #ffffff;
            color: #333;
        }
    }

    .cta-button:hover {
        background-color: #555;
        color: #ffffff;
        animation-play-state: paused;
    }

    .serve-heading.in-view,
    .serve-description.in-view,
    .offerings-subheading.in-view,
    .offering-item.in-view,
    .more-text.in-view,
    .cta-button.in-view {
        opacity: 1;
        transform: translateY(0);
    }

    /* Build Cool Stuff Section Styling */
    .cool-stuff {
        position: relative;
        text-align: center;
        width: 100%;
        background-color: #333;
        max-width: 800px;
        border-radius: 30px;
        padding: 40px 20px;
    }

    .cool-heading {
        font-size: 2rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 20px;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        transition-delay: 0.2s;
    }

    .cool-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .cool-icon {
        font-size: 2.5rem;
        color: #fff;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
    }

    .smiley {
        animation: fadeInOut 4s ease-in-out infinite;
    }

    .fire {
        animation: fadeInOut 4s ease-in-out infinite 2s;
    }

    @keyframes fadeInOut {
        0% { opacity: 0; }
        25% { opacity: 1; }
        50% { opacity: 1; }
        75% { opacity: 0; }
        100% { opacity: 0; }
    }

    .cool-heading.in-view {
        opacity: 1;
        transform: translateY(0);
    }

    /* What’s Stopping You Section Styling */
    .stopping-you {
        position: relative;
        text-align: center;
        width: 100%;
        max-width: 800px;
        padding: 60px 20px;
    }

    .stopping-heading {
        font-size: 2.5rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 20px;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        transition-delay: 0.2s;
    }

    .stopping-you .more-text {
        margin-bottom: 40px;
        text-align: center;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        transition-delay: 0.4s;
    }

    .stopping-you .more-text span {
        font-size: 1.1rem;
        font-weight: 400;
        font-style: italic;
        color: #333;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), transparent);
        padding: 5px 10px;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .bubbles-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 800px;
        margin: 0 auto;
    }

    .bubble {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        border-radius: 50%;
        width: 200px;
        height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        opacity: 0;
        transform: translateY(30px);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .bubble:nth-child(1) { transition-delay: 0.6s; }
    .bubble:nth-child(2) { transition-delay: 0.7s; }
    .bubble:nth-child(3) { transition-delay: 0.8s; }
    .bubble:nth-child(4) { transition-delay: 0.9s; }
    .bubble:nth-child(5) { transition-delay: 1.0s; }
    .bubble:nth-child(6) { transition-delay: 1.1s; }

    .bubble:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    }

    .bubble-icon {
        font-size: 2rem;
        color: #333;
        margin-bottom: 10px;
    }

    .bubble p {
        font-size: 1rem;
        font-weight: 500;
        color: #333;
        text-align: center;
        padding: 0 15px;
    }

    /* What’s Stopping You Section Styling */
    .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 2000;
        justify-content: center;
        align-items: center;
    }

    .modal-content {
        background: #fff;
        border-radius: 15px;
        padding: 20px;
        max-width: 400px;
        width: 90%;
        position: relative;
        animation: fadeInModal 0.3s ease-in-out;
        z-index: 2001;
    }

    @keyframes fadeInModal {
        from { opacity: 0; transform: scale(0.9); }
        to { opacity: 1; transform: scale(1); }
    }

    .modal-content h3 {
        font-size: 1.5rem;
        font-weight: 500;
        color: #333;
        margin-bottom: 10px;
    }

    .modal-content p {
        font-size: 1rem;
        font-weight: 400;
        color: #666;
    }

    .close {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 1.5rem;
        color: #333;
        cursor: pointer;
    }

    .stopping-cta {
        margin-top: 40px;
        display: flex;
        justify-content: center;
    }

    .cta-button {
        background-color: #ffffff;
        color: #333;
        padding: 12px 25px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 500;
        border: 2px solid #333;
        animation: colorChange 4s ease-in-out infinite;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        transition-delay: 1.3s;
    }

    @keyframes colorChange {
        0% {
            background-color: #ffffff;
            color: #333;
        }
        50% {
            background-color: #333;
            color: #ffffff;
        }
        100% {
            background-color: #ffffff;
            color: #333;
        }
    }

    .cta-button:hover {
        background-color: #555;
        color: #ffffff;
        animation-play-state: paused;
    }

    .stopping-heading.in-view,
    .stopping-you .more-text.in-view,
    .bubble.in-view,
    .cta-button.in-view {
        opacity: 1;
        transform: translateY(0);
    }

    /* FAQ Section Styling */
    .faq {
        position: relative;
        text-align: center;
        width: 100%;
        max-width: 800px;
        padding: 60px 20px;
    }

    .faq-heading {
        font-size: 2.5rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 20px;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        transition-delay: 0.2s;
    }

    .faq-subheading {
        font-size: 1.3rem;
        font-weight: 400;
        color: #333;
        margin-bottom: 40px;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        transition-delay: 0.4s;
    }

    .faq-list {
        max-width: 700px;
        margin: 0 auto;
    }

    .faq-item {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        border-radius: 10px;
        margin-bottom: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-item:nth-child(1) { transition-delay: 0.6s; }
    .faq-item:nth-child(2) { transition-delay: 0.7s; }
    .faq-item:nth-child(3) { transition-delay: 0.8s; }
    .faq-item:nth-child(4) { transition-delay: 0.9s; }
    .faq-item:nth-child(5) { transition-delay: 1.0s; }
    .faq-item:nth-child(6) { transition-delay: 1.1s; }
    .faq-item:nth-child(7) { transition-delay: 1.2s; }
    .faq-item:nth-child(8) { transition-delay: 1.3s; }
    .faq-item:nth-child(9) { transition-delay: 1.4s; }
    .faq-item:nth-child(10) { transition-delay: 1.5s; }

    .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        font-size: 1.2rem;
        font-weight: 500;
        color: #333;
    }

    .faq-icon {
        font-size: 1rem;
        color: #333;
        transition: transform 0.3s ease;
    }

    .faq-item.active .faq-icon {
        transform: rotate(180deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 15px 20px;
    }

    .faq-answer p {
        font-size: 1rem;
        font-weight: 400;
        color: #666;
        text-align: left;
    }

    .faq-heading.in-view,
    .faq-subheading.in-view,
    .faq-item.in-view {
        opacity: 1;
        transform: translateY(0);
    }

    /* Since You Scrolled Section Styling */
    .scrolled-far {
        position: relative;
        text-align: center;
        width: 100%;
        padding: 40px 20px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .scrolled-heading {
        font-size: 2.5rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 15px;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        transition-delay: 0.2s;
        animation: pulseGlow 2s ease-in-out infinite;
    }

    .scrolled-heading i {
        margin-right: 10px;
    }

    @keyframes pulseGlow {
        0% { text-shadow: 0 0 5px rgba(0, 0, 0, 0.1); }
        50% { text-shadow: 0 0 15px rgba(0, 0, 0, 0.3); }
        100% { text-shadow: 0 0 5px rgba(0, 0, 0, 0.1); }
    }

    .scrolled-subtext {
        font-size: 1.2rem;
        font-weight: 400;
        color: #333;
        margin-bottom: 20px;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        transition-delay: 0.4s;
    }

    .scrolled-subtext br {
        display: block;
        margin-bottom: 10px;
    }

    .scrolled-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 20px;
    }

    .scrolled-icon {
        font-size: 2.5rem;
        color: #333;
        opacity: 0;
        transition: opacity 0.5s ease-in-out, transform 0.3s ease;
    }

    .bolt {
        animation: bounce 1.5s ease-in-out infinite;
    }

    .star {
        animation: bounce 1.5s ease-in-out infinite 0.75s;
    }

    @keyframes bounce {
        0% { transform: translateY(0); opacity: 1; }
        50% { transform: translateY(-10px); opacity: 1; }
        100% { transform: translateY(0); opacity: 1; }
    }

    .scrolled-icon:hover {
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        transform: scale(1.1);
    }

    .scrolled-cta {
        display: flex;
        justify-content: center;
    }

    .cta-button {
        background-color: #ffffff;
        color: #333;
        padding: 12px 25px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 500;
        border: 2px solid #333;
        animation: colorChange 4s ease-in-out infinite;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        transition-delay: 0.6s;
    }

    @keyframes colorChange {
        0% {
            background-color: #ffffff;
            color: #333;
        }
        50% {
            background-color: #333;
            color: #ffffff;
        }
        100% {
            background-color: #ffffff;
            color: #333;
        }
    }

    .cta-button:hover {
        background-color: #555;
        color: #ffffff;
        animation-play-state: paused;
    }

    .scrolled-heading.in-view,
    .scrolled-subtext.in-view,
    .cta-button.in-view {
        opacity: 1;
        transform: translateY(0);
    }

    /* Footer Styling */
    .footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #333;
        padding: 20px 40px;
        width: 100%;
        color: #fff;
        font-family: 'Ubuntu', sans-serif;
        border-radius: 15px;
    }

    .footer-socials {
        display: flex;
        gap: 15px;
    }

    .footer-socials a {
        color: #fff;
        font-size: 1.5rem;
        transition: color 0.3s ease, transform 0.3s ease;
    }

    .footer-socials a:hover {
        color: #ccc;
        transform: scale(1.1);
    }

    .footer-logo span {
        font-family: 'Playwrite DK Loopet', cursive;
        font-size: 1.8rem;
        color: #fff;
    }

    .footer-copyright p {
        font-size: 0.9rem;
        font-weight: 400;
        color: #fff;
    }

    /* Hamburger Menu Icon (Hidden on Desktop) */
    .hamburger {
        display: none;
        font-size: 1.8rem;
        color: #333;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger i {
        transition: all 0.3s ease;
    }

    /* Show hamburger and adjust navbar on mobile */
    @media (max-width: 768px) {
        .navbar {
            width: 90%;
            padding: 10px 15px;
            top: 10px;
        }

        .hamburger {
            display: block;
        }

        .nav-links {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 60px;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(15px);
            padding: 20px 0;
            border-radius: 0 0 15px 15px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            align-items: center;
        }

        .nav-links.active {
            display: flex;
        }

        .nav-links.active ~ .hamburger i {
            content: "\f00d";
            transform: rotate(90deg);
        }

        .nav-links li {
            margin: 10px 0;
            text-align: center;
        }

        .nav-links li a {
            font-size: 1.1rem;
            transform: none;
            opacity: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-links li a i {
            display: inline-block;
            margin-right: 8px;
            font-size: 1.1rem;
        }

        .logo {
            font-size: 1.5rem;
        }

        body {
            padding-top: 70px;
        }
    }

    /* Hero Section Adjustments */
    @media (max-width: 1024px) {
        .hero {
            height: 60vh;
            max-width: 90%;
        }

        .hero-heading {
            font-size: 2.5rem;
        }

        .hero-subheading {
            font-size: 1rem;
            margin: 15px 0;
        }

        .hero-buttons .btn-primary {
            padding: 10px 20px;
            font-size: 0.9rem;
        }

        .animated-text {
            font-size: 1.2rem;
        }

        .icon {
            font-size: 30px;
        }

        .laptop { top: 5%; left: 2%; }
        .code { top: 75%; left: 10%; }
        .design { top: 10%; right: 5%; }
        .database { top: 80%; right: 10%; }
        .cloud { top: 55%; left: 80%; }
    }

    @media (max-width: 480px) {
        .hero {
            height: 50vh;
        }

        .hero-heading {
            font-size: 1.8rem;
        }

        .hero-subheading {
            font-size: 0.9rem;
            margin: 10px 0;
        }

        .animated-text {
            font-size: 1rem;
        }

        .icon {
            font-size: 25px;
        }
    }

    /* Core Offerings Section */
    @media (max-width: 1024px) {
        .core-offerings {
            max-width: 90%;
            padding: 40px 15px;
        }

        .offerings-grid {
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .offering-card {
            padding: 20px;
        }

        .offering-card h3 {
            font-size: 1.3rem;
        }

        .offering-card p {
            display: none;
        }
    }

    @media (max-width: 480px) {
        .offerings-grid {
            grid-template-columns: 1fr;
        }
    }

    /* How We Build Section */
    @media (max-width: 768px) {
        .how-we-build {
            max-width: 90%;
            padding: 40px 15px;
        }

        .build-heading {
            font-size: 2rem;
        }

        .build-description {
            font-size: 1rem;
        }

        .expectations-subheading {
            font-size: 1.5rem;
        }

        .expectation-item {
            flex-direction: column;
            align-items: flex-start;
        }

        .expectation-icon {
            margin-right: 0;
            margin-bottom: 10px;
        }

        .expectation-content {
            text-align: left;
        }

        .expectation-item:not(:last-child)::after {
            left: 35px;
        }
    }

    /* Getting Started Section */
    @media (max-width: 768px) {
        .getting-started {
            max-width: 90%;
            padding: 40px 15px;
        }

        .started-heading {
            font-size: 2rem;
        }

        .started-description {
            font-size: 1rem;
        }

        .steps-subheading {
            font-size: 1.5rem;
        }

        .step-item.left, .step-item.right {
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
        }

        .step-badge {
            margin: 0 0 10px 0;
        }

        .step-content {
            text-align: left !important;
        }
    }

    /* We’re Here to Serve Section */
    @media (max-width: 1024px) {
        .we-serve {
            max-width: 90%;
            padding: 40px 15px;
        }

        .offerings-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 480px) {
        .offerings-grid {
            grid-template-columns: 1fr;
        }

        .offering-item {
            padding: 15px;
        }

        .offering-content h4 {
            font-size: 1.2rem;
        }

        .offering-content p {
            font-size: 0.9rem;
        }
    }

    /* Build Cool Stuff Section */
    @media (max-width: 768px) {
        .cool-stuff {
            max-width: 90%;
            padding: 30px 15px;
        }

        .cool-heading {
            font-size: 1.8rem;
        }

        .cool-icon {
            font-size: 2rem;
        }
    }

    /* What’s Stopping You Section */
    @media (max-width: 768px) {
        .stopping-you {
            max-width: 90%;
            padding: 40px 15px;
        }

        .stopping-heading {
            font-size: 2rem;
        }

        .bubbles-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .bubble {
            width: 150px;
            height: 150px;
        }

        .bubble p {
            font-size: 0.9rem;
        }
    }

    @media (max-width: 480px) {
        .bubbles-grid {
            grid-template-columns: 1fr;
        }

        .bubble {
            width: 200px;
            height: 200px;
            margin: 0 auto;
        }
    }

    /* FAQ Section */
    @media (max-width: 768px) {
        .faq {
            max-width: 90%;
            padding: 40px 15px;
        }

        .faq-heading {
            font-size: 2rem;
        }

        .faq-subheading {
            font-size: 1.1rem;
        }

        .faq-question {
            font-size: 1.1rem;
        }

        .faq-answer p {
            font-size: 0.9rem;
        }
    }

    /* Since You Scrolled Section */
    @media (max-width: 768px) {
        .scrolled-far {
            max-width: 90%;
            padding: 30px 15px;
        }

        .scrolled-heading {
            font-size: 2rem;
        }

        .scrolled-subtext {
            font-size: 1rem;
        }

        .scrolled-icon {
            font-size: 2rem;
        }
    }

    /* Footer */
    @media (max-width: 768px) {
        .footer {
            flex-direction: column;
            gap: 15px;
            padding: 15px 20px;
        }

        .footer-socials {
            order: 2;
        }

        .footer-logo {
            order: 1;
        }

        .footer-copyright {
            order: 3;
        }
    }

    /* Modal Adjustments */
    @media (max-width: 480px) {
        .modal-content {
            max-width: 90%;
            padding: 15px;
        }

        .modal-content h3 {
            font-size: 1.3rem;
        }

        .modal-content p {
            font-size: 0.9rem;
        }
    }
