      :root {
        --font-family-base: "Inter", sans-serif, Tahoma, Geneva, Verdana;
        --line-height-base: 1.5;
      }

      * {
        margin: 0;
        padding: 0;
        font-family: var(--font-family-base);
        font-size: large;
        line-height: var(--line-height-base);
        scroll-behavior: smooth;
      }

      /* Body */
      body {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        background: radial-gradient(
          circle,
          rgba(247, 247, 247, 1) 0%,
          rgba(154, 226, 237, 0.13) 100%
        );
      }

      a {
        color: inherit;
        text-decoration: none;
      }

      .logo {
        width: 75px;
      }

      .logo-sm {
        width: 50px;
      }

      main {
        padding: 0 4rem;
        display: flex;
        flex-direction: column;
        gap: 12rem;
      }

      /* Header */

      .navbar {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        margin: 2rem 4rem;
        padding: 1rem;
      }

      .brand {
        display: flex;
        align-items: center;
        gap: 1rem;
      }

      .brand h2 {
        font-size: 2rem;
      }

      /* Main Nav */

      .nav-lg {
        display: flex;
        gap: 2rem;
      }

      .nav-list {
        list-style: none;
        display: flex;
      }

      .nav-item {
        margin: 1rem;
        font-weight: bold;
        position: relative;
      }

      .nav-item > a {
        font-size: 1.25rem;
      }

      .nav-item::after {
        content: "";
        width: 100%;
        height: 4px;
        position: absolute;
        bottom: -5px;
        left: 0;
        background-color: #131313;
        transition: transform 0.3s ease-in-out;
        transform: scaleX(0);
      }

      .nav-item:hover::after {
        transform: scaleX(1);
      }

      .nav-cta-btn {
        justify-self: end;
        display: flex;
        align-items: center;
        gap: 1rem;
      }

      .connect-btn {
        background-color: #131313;
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 1rem;
        cursor: pointer;
      }

      /* hidden nav */

      #hamburger-icon {
        display: none;
      }

      #hidden-nav {
        display: none;
        margin: 2rem 4rem;
        padding: 1rem;
      }

      #hidden-nav-list {
        display: flex;
        flex-direction: column;
        list-style: none;
        gap: 1rem;
      }

      .hidden-nav-item {
        position: relative;
      }

      .hidden-nav-item a {
        font-weight: bold;
        font-size: 1.5rem;
      }

      .hidden-nav-item::after {
        content: "";
        width: 100%;
        height: 4px;
        position: absolute;
        bottom: -5px;
        left: 0;
        background-color: #131313;
        transition: transform 0.3s ease-in-out;
        transform: scaleY(0);
      }

      .hidden-nav-item:hover::after {
        transform: scaleY(1);
      }

      @media (max-width: 1200px) {
        .nav-lg {
          display: none;
        }

        .nav-cta-btn {
          justify-self: center;
        }

        #hamburger-icon {
          justify-self: end;
          width: 40px;
          height: 30px;
          padding: 1rem;
          display: flex;
          flex-direction: column;
          flex-wrap: nowrap;
          justify-content: space-between;
          align-items: center;
          cursor: pointer;
        }

        .hamburger-line {
          width: inherit;
          height: 4px;
          background-color: #131313;
          border-radius: 5px;
          transition: transform 0.3s ease-in-out, opacity 0.2s ease-in-out;
        }

        .collapsed #hamburger-upper-line {
          transform: rotate(45deg) translate(10px, 10px);
        }

        .collapsed #hamburger-middle-line {
          opacity: 0;
        }

        .collapsed #hamburger-lower-line {
          transform: rotate(-45deg) translate(8px, -8px);
        }
      }

      @media (max-width: 842px) {
        .navbar {
          grid-template-columns: 1fr 1fr;
        }

        .nav-cta-btn {
          display: none;
        }
      }

      /* Main */

      /* Hero Section */

      .hero-div {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        text-align: center;
      }

      #main-headline {
        font-size: 3rem;
        padding: 2rem;
      }

      #subheadline {
        font-size: 2rem;
        max-width: 700px;
      }

      #typewriter {
        border-right: 2px solid black;
        white-space: nowrap;
        overflow: hidden;
        font-size: 2rem;
      }

      @keyframes appear {
        from {
          opacity: 0;
          transform: translateY(200px);
        }
        to {
          opacity: 1;
          transform: translateY(0px);
        }
      }

      #hero-image {
        max-width: 50vw;
      }

      /* Lead Capture Form */

      .lead-capture-section {
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .lead-capture-card {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        border: 1px solid black;
        border-radius: 1rem;
        padding: 2rem;
        gap: 2rem;

        animation: appear linear;
        animation-timeline: view();
        animation-range: entry 0% cover 40%;

        box-shadow: rgba(22, 31, 39, 0.42) 0px 60px 123px -25px,
          rgba(19, 26, 32, 0.08) 0px 35px 75px -35px;
        border-radius: 10px;
        border: 1px solid;
        border-color: rgb(213, 220, 226) rgb(213, 220, 226) rgb(184, 194, 204);
      }

      .lead-capture-heading {
        display: flex;
        flex-direction: column;
        gap: 2rem;
      }

      .lead-capture-heading > h3 {
        font-size: 2rem;
        text-align: center;
      }

      #rocket {
        max-width: 350px;
      }

      form {
        display: flex;
        flex-direction: column;
        gap: 2rem;
      }

      form > p {
        color: #555;
        font-size: 0.8rem;
      }

      #form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 2fr;
        gap: 1rem;
      }

      #form-grid textarea {
        grid-column: 1 / span 2;
      }

      #form-grid input,
      #form-grid textarea {
        border: none;
        padding: 1rem;
        border-radius: 0.4rem;
      }

      #form-grid input::placeholder,
      #form-grid textarea::placeholder {
        color: #555;
      }

      .input-dev {
        height: fit-content;
      }

      .validation-text {
        display: none;
        max-width: 250px;
        margin-top: 0.4rem;
        color: #ff0000;
        font-size: medium;
      }

      form > input[type="submit"] {
        background-color: #131313;
        color: white;
        border: none;
        padding: 1rem;
        border-radius: 0.4rem;
      }

      @media (max-width: 800px) {
        #form-grid {
          grid-template-columns: 1fr;
          grid-template-rows: 1fr 1fr 1fr 1fr 3fr;
        }

        #form-grid input {
          width: 90%;
        }

        #form-grid textarea {
          grid-column: 1 / span 1;
          width: 90%;
        }
      }

      /* Our expertise */

      .expertise-section h2 {
        font-size: 2rem;
      }

      .expertise-heading {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 5rem;
      }

      .expertise-heading > p {
        background-color: white;
        padding: 0.5rem 1rem;
        width: fit-content;
        border-radius: 0.3rem;
      }

      @keyframes appear-left {
        from {
          opacity: 0;
          transform: translateX(-200px);
        }
        to {
          opacity: 1;
          transform: translateX(0px);
        }
      }

      @keyframes appear-right {
        from {
          opacity: 0;
          transform: translateX(200px);
        }
        to {
          opacity: 1;
          transform: translateX(0px);
        }
      }

      .expertise-content {
        padding: 2rem;
        width: 500px;
        background-color: white;

        box-shadow: rgba(22, 31, 39, 0.42) 0px 60px 123px -25px,
          rgba(19, 26, 32, 0.08) 0px 35px 75px -35px;
        border-radius: 1rem;
        border: 1px solid;
        border-color: rgb(213, 220, 226) rgb(213, 220, 226) rgb(184, 194, 204);
      }

      .expertise-content > h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
      }

      .expertise-div-1 {
        display: flex;
        flex-wrap: wrap-reverse;
        justify-content: center;
        align-items: center;
      }

      .expertise-div-1 > .expertise-content {
        animation: appear-left linear;
        animation-timeline: view();
        animation-range: entry 0% cover 40%;
      }

      .expertise-div-1 .expertise-img {
        max-width: 400px;

        animation: appear-right linear;
        animation-timeline: view();
        animation-range: entry 0% cover 40%;
      }

      .expertise-div-2 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
      }

      .expertise-div-2 > .expertise-content {
        animation: appear-right linear;
        animation-timeline: view();
        animation-range: entry 0% cover 40%;
      }

      .expertise-div-2 .expertise-img {
        max-width: 400px;

        animation: appear-left linear;
        animation-timeline: view();
        animation-range: entry 0% cover 40%;
      }

      /* testimonials */

      .testimonials-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
      }

      .testimonials-heading {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
      }

      .testimonials-heading > p {
        background-color: white;
        padding: 0.5rem 1rem;
        width: fit-content;
        border-radius: 0.3rem;
      }

      .testimonials-heading > h2 {
        font-size: 2rem;
      }

      .testimonials-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 2rem;
      }

      .testimonials-text {
        max-width: 350px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .testimonials-text img {
        max-width: 350px;
      }

      .testimonial-slider {
        width: 80%;
        max-width: 400px;
        overflow: hidden;
        position: relative;
      }

      .slider-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
      }

      .slide {
        min-width: 100%;
        background: white;
        padding: 2rem;
        box-sizing: border-box;
        border-radius: 1rem;
        border: 1px solid;
        border-color: rgb(213, 220, 226) rgb(213, 220, 226) rgb(184, 194, 204);
      }

      .testimonial {
        text-align: center;
      }

      .testimonial p {
        font-size: 1.1rem;
        color: #333;
        margin-bottom: 20px;
      }

      .testimonial h4 {
        font-size: 1.25rem;
        margin: 0;
        color: #555;
      }

      .dots {
        text-align: center;
        margin-top: 15px;
      }

      .dot {
        height: 12px;
        width: 12px;
        margin: 0 5px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        cursor: pointer;
        transition: background-color 0.3s ease;
      }

      .dot.active {
        background-color: #333;
      }

      /* FAQ Section */

      .faq-heading {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
      }

      .faq-heading > p {
        background-color: white;
        padding: 0.5rem 1rem;
        width: fit-content;
        border-radius: 0.3rem;
      }

      .faq-heading > h2 {
        font-size: 2rem;
      }

      .faq-heading > img {
        max-width: 400px;
        animation: appear linear;
        animation-timeline: view();
        animation-range: entry 0% cover 40%;
      }

      .accordion {
        max-width: 600px;
        margin: 2rem auto;
        border-radius: 8px;
        overflow: hidden;
        font-family: Arial, sans-serif;

        animation: appear linear;
        animation-timeline: view();
        animation-range: entry 0% cover 40%;

        box-shadow: rgba(22, 31, 39, 0.42) 0px 60px 123px -25px,
          rgba(19, 26, 32, 0.08) 0px 35px 75px -35px;
        border-radius: 1rem;
        border: 1px solid;
        border-color: rgb(213, 220, 226) rgb(213, 220, 226) rgb(184, 194, 204);
      }

      .accordion-item {
        border-bottom: 1px solid #ccc;
      }

      .accordion-header {
        background-color: white;
        color: #333;
        padding: 1rem;
        width: 100%;
        text-align: left;
        font-size: 1rem;
        font-weight: medium;
        cursor: pointer;
        border: none;
        outline: none;
        transition: background 0.3s;
      }

      .accordion-header:hover {
        background-color: rgba(154, 226, 237, 0.13);
      }

      .accordion-header.open {
        background-color: rgba(154, 226, 237, 0.13);
      }

      .accordion-body {
        max-height: 0;
        overflow: hidden;
        padding: 0 1rem;
        background: #fff;
        color: #444;
        transition: max-height 0.3s ease, padding 0.3s ease;
      }

      .accordion-body.open {
        padding: 1rem;
        max-height: 200px;
      }

      /* Contact-Us */

      .contact-us {
        display: flex;
        justify-content: space-between;
        align-items: start;
        flex-wrap: wrap;
        gap: 2rem;
        margin-bottom: 4rem;
      }

      .contact-us-heading > h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
      }

      .contact-us-heading > p {
        font-size: 1.5rem;
      }

      .get-in-touch {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
      }

      .get-in-touch > h3 {
        font-size: 1.25rem;
      }

      .social-icons-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1rem;
      }

      .social-icons-grid div {
        padding: 0.5rem;
        background-color: white;
        border: 1px solid;
        border-color: rgb(213, 220, 226) rgb(213, 220, 226) rgb(184, 194, 204);
        border-radius: 0.5rem;
        text-align: center;
      }

      .social-icons-grid div:hover {
        cursor: pointer;
      }

      /* Footer */

      footer {
        padding: 4rem 4rem 0 4rem;
        background-color: #131313;
        color: rgb(235, 235, 235);
      }

      .footer-section {
        display: flex;
        justify-content: space-between;
        align-items: start;
        flex-wrap: wrap;
        gap: 4rem;
        padding: 0 0 2rem 0;
      }

      .footer-bottom {
        padding: 2rem 0;
        border-top: 1px solid rgba(213, 220, 226, 0.089);
      }

      .footer-site-map {
        display: flex;
        justify-content: space-between;
        align-items: start;
        flex-wrap: wrap;
        gap: 4rem;
      }

      .footer-site-links {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }

      .footer-site-links h4 {
        font-size: 1.25rem;
      }