@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  /* === COLORS === */
  --color-bg: #0F1117;
  --color-text: #FFFFFF;
  --color-muted: #A0A0A0;
  --color-accent: #00FFF5;
  --color-accent-light: #1BFF8C;
  --color-glass: rgba(15, 17, 23, 0.8);
  --color-border: #333;
  --color-shadow: rgba(0, 0, 0, 0.4);

  /* === FONT FAMILIES === */
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;

  /* === BORDER RADIUS === */
  --radius-lg: 20px;
  --radius-full: 999px;

  /* === SPACING === */
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;

  /* === TRANSITION === */
  --transition-fast: 0.3s ease;
  --transition-med: 0.4s ease;
}
a:-webkit-any-link {
  text-decoration: none;
}

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

   body {
    background: #0F1117;
    color: #FFFFFF;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    opacity: 0;
    transform: scale(0.98);
    animation: fadeInScale 0.8s ease forwards;
  }

/* =============================================== NAVIGATION =============================================== */
  .navbar {
    /* background: rgba(15, 17, 23, .3);
    backdrop-filter: blur(10px); */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(15, 17, 23, 1));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--color-border);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    padding: 1rem 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: max-height 0.4s ease, padding 0.4s ease;
    overflow: hidden;
    flex-wrap: wrap;
  }

  .nav-left {
    font-weight: 700;
    font-size: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    color: #00FFF5;
  }

  .nav-left-a {
    text-decoration: none;
    color: #00FFF5;
  }

  .nav-center a {
    margin: 0 1rem;
    text-decoration: none;
    color: #A0A0A0;
    font-weight: 500;
    font-size: 0.95rem;
    font-family: "Winky Rough", sans-serif;
    transition: color 0.3s ease;
    background-color: transparent;
    letter-spacing: .6px;
  }
  .nav-center a:hover {
    color: #1BFF8C;
  }
  .nav-center a.active {
    color: #1BFF8C;
  }

  .btn-nav {
    background: linear-gradient(to bottom, rgba(136, 131, 131, 0.8), rgb(27, 255, 140));
    color: #0F1117;
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1em;
    transition: background 0.3s ease;
  }
  .btn-nav:hover {
    background: #00FFF5;
    color: #0F1117;
  }

  .nav-toggle {
    display: none;
    cursor: pointer;
  }
  .menu-svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
  }




/* =============================== ELEMENT FADE / ZOOM ANIMATIONS =============================== */
  .navbar, .hero, .screenshot, .hero-buttons, .nav-center a, .nav-right {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
  }
  .navbar {
    animation-delay: 0.2s;
  }
  .hero {
    animation-delay: 0.4s;
  }
  .hero-buttons {
    animation-delay: 0.6s;
  }
  .screenshot {
    animation-delay: 0.8s;
  }
  .nav-center a:nth-child(1) { animation-delay: 0.3s; }
  .nav-center a:nth-child(2) { animation-delay: 0.35s; }
  .nav-center a:nth-child(3) { animation-delay: 0.4s; }
  .nav-center a:nth-child(4) { animation-delay: 0.45s; }
  .nav-center a:nth-child(5) { animation-delay: 0.5s; }
  .nav-center a:nth-child(6) { animation-delay: 0.55s; }
  .nav-right {
    animation-delay: 0.6s;
  }

/* =============================== KEYFRAMES =============================== */
  @keyframes fadeInScale {
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }


/* ============================================== END OF NAVIGATION CONTAINER =============================================== */


/* ============================================== LANDING CATCHY CONTAINER =============================================== */



.hero-container {
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 100px 20px; */
}

.hero-box {
  text-align: center;
  border-radius: 20px;
  padding: 60px 30px;
  width: 100%;
}

.hero-box h1 {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: .8;
  /* font-family: 'Space Grotesk', sans-serif; */
  font-family: "Winky Rough", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
}

.hero-box p {
  color: #ddd;
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.6;
  font-family: 'Space Grotesk', sans-serif;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 14px;
  font-weight: 500;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}

.btn.magenta {
  background-color: #00FFF5;
  color: #000;
}

.btn.Outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.btn:hover {
  transform: scale(1.05);
  border: none;
}






/* ============================================== END OF LANDING PAGE SECTION(HOME) CONTAINER ============================================= */


/* =============================================== TOOLS I USE =============================================== */


.tech-section {
      max-width: 1200px;
      margin: 50px auto;
      padding: 30px 20px;
      border-radius: 12px;
      background-color: #12151b;
      text-align: center;
      overflow: hidden;
    }

    .tech-section h2 {
      font-size: 20px;
      margin-bottom: 30px;
      color: #fff;
      font-family: "Winky Rough", sans-serif;
    }

    .scroll-container {
      overflow: hidden;
      position: relative;
    }

    .scroll-track {
      display: flex;
      width: fit-content;
      animation: scroll-left 20s linear infinite;
    }

    .scroll-track img {
      width: 60px;
      height: 60px;
      margin: 0 25px;
      object-fit: contain;
      filter: brightness(1.1);
    }

    @keyframes scroll-left {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }


/* =============================================== END OF TOOLS I USE =============================================== */










/* =============================================== ABOUT PAGE SECTION(ABOUT) CONTAINER =============================================== */


    
      /* =============================================== LANDING PAGE SECTION(HOME) CONTAINER =============================================== */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
  position: relative;
}

/* =============================================== HERO =============================================== */
  .hero {
    max-width: 600px;
  }
  .hero h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: #FFFFFF;
  }
  .hero h1 {
    font-size: 4.5rem;
    line-height: 1;
    font-weight: 700;
    margin-bottom: .5rem;
    color: #00FFF5;
    font-family: 'Space Grotesk', sans-serif;
  }
  .hero h1 span {
    font-size: 4.5rem;
    line-height: 1;
    color: #fff;
  }
  .hero .subtext {
    font-size: 1rem;
    color: #A0A0A0;
    margin-bottom: 1rem;
    max-width: 500px;
    font-weight: 400;
  }

  /* HERO BUTTONS */
  .buttons {
    display: flex;
    gap: 1rem;
    /* font-size: 5em; */
  }
  .btn-dark {
    background: #00FFF5;
    color: #0F1117;
    padding: 1.1rem 5rem;
    border-radius: 22px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    font-family: 'Inter', sans-serif;
    transition: background 0.3s ease;
  }
  .btn-dark:hover {
    background: transparent;
    color: #1BFF8C;
    border: 1px solid #1BFF8C;
  }

  .btn-light {
    background: transparent;
    color: #00FFF5;
    padding: 1.1rem 5rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #00FFF5;
    font-family: 'Inter', sans-serif;
    transition: background 0.3s ease;
  }
  .btn-light:hover {
    background: #1BFF8C;
    color: #000;
    cursor: pointer;
  }

/* =============================================== HERO IMAGE =============================================== */
  .screenshot {
    position: absolute;
    right: 0;
    top: 0;
    width: 35em;
  }
  .screenshot img {
    width: 100%;
    border-radius: 0 0 50% 50%;
    animation: bounce 2s infinite ease-in-out;
  }
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-30px);
    }
  }



  







 .about-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
    flex-wrap: wrap;
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-bg);
  }

  .about-text {
    flex: 1 1 50%;
    min-width: 300px;
  }

  .about-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-family: "Winky Rough", sans-serif;
    /* font-optical-sizing: auto;
    font-weight: 500; */
    color: #00FFF5;
  }

  .about-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: var(--color-muted);
  }

  .about-text p span {
    color: #00FFF5;
  }

  .blog-btn {
    background-color: var(--color-text);
    color: var(--color-bg);
    border: none;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-lg);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-fast);
  }

  .blog-btn:hover {
    background-color: var(--color-accent-light);
    color: var(--color-bg);
  }

 .about-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
    flex-wrap: wrap;
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-bg);
  }

  .about-text {
    flex: 1 1 50%;
    min-width: 300px;
  }

  .about-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-family: "Winky Rough", sans-serif;
    /* font-optical-sizing: auto;
    font-weight: 500; */
    color: #00FFF5;
  }

  .about-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: var(--color-muted);
  }

  .about-text p span {
    color: #00FFF5;
  }

  .blog-btn {
    background-color: var(--color-text);
    color: var(--color-bg);
    border: none;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-lg);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-fast);
  }

  .blog-btn:hover {
    background-color: var(--color-accent-light);
    color: var(--color-bg);
  }

  .about-images {
    flex: 1 1 47%;
    display: flex;
    /* gap: 1.5rem; */
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .photo-card {
    background: var(--color-text);
    border-radius: var(--radius-lg);
    padding: var(--space-sm);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    text-align: center;
    width: 250px;
    height: 250px;
    transform: rotate(-10deg);
    transition: transform var(--transition-fast);
  }

  .photo-card:nth-child(2) {
    transform: rotate(10deg);
    height: 400px;
  }

  .photo-card:hover {
    transform: scale(1.05);
  }

  .photo-card img {
    width: 100%;
    height: 91%;
    border-radius: 12px;
    display: block;
    margin-bottom: var(--space-sm);
  }

  .photo-card p {
    font-size: 0.9rem;
    color: var(--color-bg);
  }


  /* =============================================== END OF AGE SECTION(ABOUT) CONTAINER =============================================== */








  /* =============================================== HOW I WILL SERVE YOU =============================================== */

   .wrapper {
      max-width: 1200px;
      margin: 0 auto;
      padding: 3rem 1rem;
      font-family: 'Space Grotesk', sans-serif;
    }

    .section-title {
      text-align: left;
      margin-bottom: 2rem;
    }

    .section-title h2 {
      font-size: 4rem;
      font-weight: 700;
      font-family: "Winky Rough", sans-serif;
    }

    .section-title p {
      font-size: 1.3rem;
      color: #e5e1e1;
      margin-top: 0.5rem;
      max-width: 600px;
      text-align: left;
    }

    .action-buttons {
      text-align: left;
      margin-top: 1.5rem;
    }

    .action-buttons a {
      display: inline-block;
      padding: 1rem 6rem;
      margin: 0.5rem;
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .btn-pink {
      background: #00FFF5;
      color: #000;
    }

    .btn-pink:hover {
      background: transparent;
      border: 2px solid #00FFF5;
      color: #fff;
    }

    .btn-outline {
      border: 2px solid #bebebeea;
      color: #00FFF5;
      background: transparent;
    }

    .btn-outline:hover {
      background: #ddd;
      color: #000;
    }

    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .card {
      background: #202122;
      border-radius: 20px;
      box-shadow: 0 4px 6px rgb(81, 78, 78);
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card video {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 20px;
    }

    .card-body {
      padding: 1.2rem;
    }

    .card-body h3 {
      font-size: 1.2rem;
      margin-bottom: 0.7rem;
      font-weight: 700;
    }

    .card-body p {
      font-size: 0.95rem;
      color: var(--color-muted);
      line-height: 1.5;
    }




/* ====================================== TAB VERSION ======================================== */
    @media (max-width: 1024px) {
      .nav-toggle {
          display: block;
      }

      .nav-center,
      .nav-right {
        width: 100%;
        flex-direction: column;
        align-items: flex-end;
        transition: all 0.3s ease;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        pointer-events: none;
      }

      .navbar.expanded {
          padding-bottom: 1rem;
      }

      .navbar.expanded .nav-center,
      .navbar.expanded .nav-right {
          max-height: 50em;
          opacity: 1;
          pointer-events: auto;
      }

      .navbar.expanded .menu-svg {
          transform: rotate(90deg);
      }

      .navbar.expanded .menu-svg path {
          d: path("M6 18 18 6M6 6l12 12"); /* Animated to X */
      }

      .nav-center a {
          margin: 0.5rem 0;
          display: block;
          margin-bottom: 20px;
          line-height: 1.6;
          letter-spacing: -1.2px;
      }

      .nav-center a.top {
          margin-top: 25px;
      }
      .nav-right a {
          font-size: 2rem;
          font-weight: 700;
          display: flex;
          justify-content: center;
          align-items: center;
          background-color: rgb(49, 65, 245);
          padding: .6em 9em;
          color: #fff;
          border-radius: 999px;
      }



      
/* ============================================== LANDING CATCHY CONTAINER =============================================== */



.hero-box h1 {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1;
}

.hero-box p {
  font-size: 1.5rem;
}

.btn {
  padding: 20px 32px;
  font-size: 1.3rem;
}



/* ============================================== END OF LANDING PAGE SECTION(HOME) CONTAINER ============================================= */


 /* ==================================== HERO SIDE IMAGE ======================================== */

   .btn-dark {
    padding: 1rem 8rem;
  }

  .btn-light {
    padding: 1rem 8rem;
  }
  .screenshot {
      display: none;
    }
      



/* ============================================= END OF LANDING PAGE SECTION(HOME) CONTAINER ============================================= */





/* =============================================== ABOUT PAGE SECTION(ABOUT) CONTAINER =============================================== */

      .about-section {
        flex-direction: column;
        padding: var(--space-md);
      }

      .about-images {
        justify-content: center;
      }

      

  /* ===============================================FOOTER SECTION ========================================= */



      .profile-header {
        margin-top: 60px;
        margin-left: 2em;
      }

      .profile-pic {
        width: 100px;
        height: 100px;
        border-radius: 50%;
      }

      .profile-header h1 {
        font-size: 2.5rem;
        font-weight: 600;
        margin: 20px 0;
      }

      .profile-header span {
        font-weight: 800;
        font-size: 4rem;
      }

      .buttons {
        margin-left: 2em;
        margin: 25px 0;
      }

      .btn {
        padding: 15px 95px;
      }

      footer p {
        font-size: 14px;
        color: #ccc;
        /* text-align: left; */
        margin-left: 3em;
      }

        /* =============================================== CONTACT FORM ========================================= */

        .contact-wrapper {
          flex-direction: column;
        }
        #contactHome {
          display: none;
        }

    }


    /* ====================================== MOBIL version ======================================== */
        @media (max-width: 728px) {

          .nav-right a {
            font-size: .8rem;
            font-weight: 500;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: rgb(49, 65, 245);
            padding: 1em 9em;
            border-radius: 999px;
          }


    /* ============================================== LANDING CATCHY CONTAINER =============================================== */


        .hero-box h1 {
          font-size: 1.7em;
          font-weight: 600;
          margin-bottom: 20px;
          line-height: 1.5;
        }

        .hero-box p {
          font-size: 1rem;
        }

        .btn {
          padding: 20px 32px;
          font-size: 1.3rem;
        }



    /* ============================================== END OF LANDING PAGE CONTAINER ============================================= */


    /* ============================================== ABOUT PAGE CONTAINER ============================================= */

     .photo-card:nth-child(2) {
        margin-top: 1rem;
      }

      /* ============================================== END OF ABOUT PAGE CONTAINER ============================================= */



          /* ============================ HERO Description ============================ */

        .hero h2 {
          font-weight: 400;
          font-style: normal;
        }

        .hero h3 {
          font-weight: 900;
          font-style: normal;
        }

        .hero h1 {
          font-size: 3.5rem;
          line-height: 1;
          font-weight: 600;
          margin-bottom: .5rem;
          text-align: left;
        }

        .hero .subtext {
          font-size: 1rem;
          margin-bottom: 1rem;
          /* max-width: 500px; */
          font-weight: 400;
        }

        .buttons {
          display: flex;
          gap: 1rem;
        }

        .btn-dark {
          padding: 1rem 2rem;
          border-radius: 22px;
          font-weight: 600;
          text-decoration: none;
          border: none;
        }
        .btn-light {
        background: transparent;
        color: #00FFF5;
        padding: 1.1rem 5rem;
        border-radius: 999px;
        font-weight: 600;
        text-decoration: none;
        border: 1px solid #00FFF5;
        font-family: 'Inter', sans-serif;
        transition: background 0.3s ease;
        margin-top: 1em;
      }


/* =============================================== END OF LANDING PAGE SECTION(HOME) CONTAINER =============================================== */


  /* =============================================== HOW I WILL SERVE YOU =============== */


      .section-title h2 {
        font-size: 2rem;
      }

      .section-title p {
        font-size: 1rem;
        color: #e5e1e1;
        margin-top: 0.5rem;
        max-width: 100%;
        text-align: left;
      }

      .card img {
        height: 150px;
      }

      .action-buttons {
      text-align: left;
      margin-top: 1.5rem;
      }

      .action-buttons a {
        display: inline-block;
        padding: 1rem 6rem;
        margin: 0.5rem;
        border-radius: 999px;
        font-weight: 600;
        font-size: 0.8rem;
        text-decoration: none;
        transition: all 0.3s ease;
      }

      .btn-pink {
        background: #00FFF5;
        color: #000;
      }

      .btn-pink:hover {
        background: transparent;
        border: 2px solid #00FFF5;
        color: #00FFF5;
      }

      .btn-outline {
        border: 2px solid #bebebeea;
        color: #00FFF5;
        background: transparent;
      }

      .btn-outline:hover {
        background: #ddd;
        color: #000;
      }






  /* ===============================================FOOTER SECTION ========================================= */



      .profile-header {
        margin-top: 60px;
        margin-left: .6em;
      }

      .profile-pic {
        width: 100px;
        height: 100px;
        border-radius: 50%;
      }

      .profile-header h1 {
        font-size: 2.5rem;
        font-weight: 500;
        margin: 20px 0;
      }

      .profile-header span {
        font-weight: 700;
        font-size: 4rem;
      }

      .buttons {
        margin-left: .6em;
      }

      .btn {
        padding: 15px 75px;
      }

      footer {
        margin-bottom: .5em;
      }

      footer p {
        font-size: 14px;
        color: #ccc;
        /* text-align: left; */
        margin-left: .6em;
        margin-top: 1.5em;
      }

      .buttons .active {
        display: none;
      }

      /* =============================================== CONTACT FORM ========================================= */

        .contact-wrapper {
          flex-direction: column;
        }

        .btn {
          width: 100%;
          justify-content: center;
          padding: 15px 65px;
          font-weight: 400;
          font-size: 1.05em;
      }

      .submit-btn {
        font-size: 1.4em;
        font-weight: 600;
        width: 100%;
      }


    }


/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

    .back-top-btn.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(-10px);
}

.back-top-btn {
  position: fixed;
  bottom: 20px;
  right: 30px;
  background-color: #fff;
  color: green;
  font-size: 22px;
  padding: 13px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
}

.back-top-btn:is(:hover, :focus) {
  background-color: green;
  color: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-10px);
}
ion-icon {
  pointer-events: none;
  --ionicon-stroke-width: 25px;
  display: block;
}

a:-webkit-any-link {
  text-decoration: none;
}


/* =============================================== END OF TOOLS I USE =============================================== */










/* =============================================== ABOUT PAGE SECTION(ABOUT) CONTAINER =============================================== */


    
      /* =============================================== LANDING PAGE SECTION(HOME) CONTAINER =============================================== */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
  position: relative;
}

/* =============================================== HERO =============================================== */
  .hero {
    max-width: 600px;
  }
  .hero h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: #FFFFFF;
  }
  .hero h1 {
    font-size: 4.5rem;
    line-height: 1;
    font-weight: 700;
    margin-bottom: .5rem;
    color: #00FFF5;
    font-family: 'Space Grotesk', sans-serif;
  }
  .hero h1 span {
    font-size: 4.5rem;
    line-height: 1;
    color: #fff;
  }
  .hero .subtext {
    font-size: 1rem;
    color: #A0A0A0;
    margin-bottom: 1rem;
    max-width: 500px;
    font-weight: 400;
  }

  /* HERO BUTTONS */
  .buttons {
    display: flex;
    gap: 1rem;
    /* font-size: 5em; */
  }
  .btn-dark {
    background: #00FFF5;
    color: #0F1117;
    padding: 1.1rem 5rem;
    border-radius: 22px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    font-family: 'Inter', sans-serif;
    transition: background 0.3s ease;
  }
  .btn-dark:hover {
    background: transparent;
    color: #1BFF8C;
    border: 1px solid #1BFF8C;
  }

  .btn-light {
    background: transparent;
    color: #00FFF5;
    padding: 1.1rem 5rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #00FFF5;
    font-family: 'Inter', sans-serif;
    transition: background 0.3s ease;
  }
  .btn-light:hover {
    background: #1BFF8C;
    color: #000;
    cursor: pointer;
  }

/* =============================================== HERO IMAGE =============================================== */
  .screenshot {
    position: absolute;
    right: 0;
    top: 0;
    width: 35em;
  }
  .screenshot img {
    width: 100%;
    border-radius: 0 0 50% 50%;
    animation: bounce 2s infinite ease-in-out;
  }
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-30px);
    }
  }



  







 .about-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
    flex-wrap: wrap;
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-bg);
  }

  .about-text {
    flex: 1 1 50%;
    min-width: 300px;
  }

  .about-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-family: "Winky Rough", sans-serif;
    /* font-optical-sizing: auto;
    font-weight: 500; */
    color: #00FFF5;
  }

  .about-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: var(--color-muted);
  }

  .about-text p span {
    color: #00FFF5;
  }

  .blog-btn {
    background-color: var(--color-text);
    color: var(--color-bg);
    border: none;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-lg);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-fast);
  }

  .blog-btn:hover {
    background-color: var(--color-accent-light);
    color: var(--color-bg);
  }

  .about-images {
    flex: 1 1 47%;
    display: flex;
    /* gap: 1.5rem; */
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .photo-card {
    background: var(--color-text);
    border-radius: var(--radius-lg);
    padding: var(--space-sm);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    text-align: center;
    width: 255px;
    height: 255px;
    transform: rotate(-10deg);
    transition: transform var(--transition-fast);
  }

  .photo-card:nth-child(2) {
    transform: rotate(10deg);
    height: 380px;
  }

  .photo-card:hover {
    transform: scale(1.05);
  }

  .photo-card img {
    width: 100%;
    height: 91%;
    border-radius: 12px;
    display: block;
    margin-bottom: var(--space-sm);
  }

  .photo-card p {
    font-size: 0.9rem;
    color: var(--color-bg);
  }


  /* =============================================== END OF AGE SECTION(ABOUT) CONTAINER =============================================== */








  /* =============================================== HOW I WILL SERVE YOU =============================================== */

   .wrapper {
      max-width: 1200px;
      margin: 0 auto;
      padding: 3rem 1rem;
      font-family: 'Space Grotesk', sans-serif;
    }

    .section-title {
      text-align: left;
      margin-bottom: 2rem;
    }

    .section-title h2 {
      font-size: 4rem;
      font-weight: 700;
      font-family: "Winky Rough", sans-serif;
    }

    .section-title p {
      font-size: 1.3rem;
      color: #e5e1e1;
      margin-top: 0.5rem;
      max-width: 600px;
      text-align: left;
    }

    .action-buttons {
      text-align: left;
      margin-top: 1.5rem;
    }

    .action-buttons a {
      display: inline-block;
      padding: 1rem 6rem;
      margin: 0.5rem;
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .btn-pink {
      background: #00FFF5;
      color: #000;
    }

    .btn-pink:hover {
      background: transparent;
      border: 2px solid #00FFF5;
      color: #fff;
    }

    .btn-outline {
      border: 2px solid #bebebeea;
      color: #00FFF5;
      background: transparent;
    }

    .btn-outline:hover {
      background: #ddd;
      color: #000;
    }

    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .card {
      background: #202122;
      border-radius: 20px;
      box-shadow: 0 4px 6px rgb(81, 78, 78);
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card video {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 20px;
    }

    .card-body {
      padding: 1.2rem;
    }

    .card-body h3 {
      font-size: 1.2rem;
      margin-bottom: 0.7rem;
      font-weight: 700;
    }

    .card-body p {
      font-size: 0.95rem;
      color: var(--color-muted);
      line-height: 1.5;
    }











  /* ===============================================FOOTER SECTION ========================================= */



/* Layout for contact section and form side-by-side */
.contact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  flex-wrap: wrap;
  margin-left: .5em;
  margin-left: .5em;
}

.contact-section, .contact2 {
  flex: 1;
  min-width: 350px;
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 255, 245, 0.1);
  backdrop-filter: blur(10px);
}

.profile-header h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 20px 0;
  color: #fff;
  font-family: "Winky Rough", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
}
.profile-header span {
  font-weight: 800;
  font-size: 3.2rem;
  color: #00FFF5;
}
.profile-header img {
  width: 60px;
  height: 60px;
  border-radius: 90%;
}

.buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 2rem 0;
}

.btn {
  padding: 14px 80px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  border: 2px solid #00FFF5;
  color: #fff;
  background: transparent;
}

.btn:hover {
  background: #00FFF5;
  color: #000;
  cursor: pointer;
}
.active {
  background-color: #00FFF5;
  color: #000;
}


/* ============= Grid 2 ============== */

.contact2 h2 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-family: "Winky Rough", sans-serif;
}

.contact-form label {
  font-size: 0.9rem;
  font-weight: 400;
  color: #fff;
}

.textArea, .big-input {
  background: transparent;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 15px 10px;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
  outline: none;
}

.big-input {
  height: 150px;
  resize: vertical;
  
}

.submit-btn {
  background: linear-gradient(to bottom, rgba(228, 228, 228), rgb(27, 255, 140));
  color: #333;
  padding: 12px 80px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: 600;
  width: 100%;
  font-family: "Winky Rough", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 18px;

}

.submit-btn:hover {
  background: linear-gradient(to bottom, rgb(228, 228, 228, 0.8), rgb(27, 255, 140));
  color: #000;
}

footer {
  text-align: center;
  margin-top: 2rem;
  color: #aaa;
}
footer p {
  margin-top: 1.5em;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 1rem;
  font-size: 1.8rem;
}

.socials a {
  color: #fff;
  transition: color 0.3s;
}
.socials a:hover {
  color: #00FFF5;
}






/* ====================================== TAB VERSION ======================================== */
    @media (max-width: 1024px) {
      .nav-toggle {
          display: block;
      }

      .nav-center,
      .nav-right {
          width: 100%;
          flex-direction: column;
          align-items: flex-end;
          transition: all 0.3s ease;
          overflow: hidden;
          max-height: 0;
          opacity: 0;
          pointer-events: none;
      }

      .navbar.expanded {
          padding-bottom: 1rem;
      }

      .navbar.expanded .nav-center,
      .navbar.expanded .nav-right {
          max-height: 50em;
          opacity: 1;
          pointer-events: auto;
      }

      .navbar.expanded .menu-svg {
          transform: rotate(90deg);
      }

      .navbar.expanded .menu-svg path {
          d: path("M6 18 18 6M6 6l12 12"); /* Animated to X */
      }

      .nav-center a {
          margin: 0.5rem 0;
          display: block;
          margin-bottom: 20px;
          line-height: 1.6;
          letter-spacing: -1.2px;
      }

      .nav-center a.top {
          margin-top: 25px;
      }
      .nav-right a {
          font-size: 2rem;
          font-weight: 700;
          display: flex;
          justify-content: center;
          align-items: center;
          background-color: rgb(49, 65, 245);
          padding: .6em 9em;
          color: #fff;
          border-radius: 999px;
      }



      
/* ============================================== LANDING CATCHY CONTAINER =============================================== */



.hero-box h1 {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1;
}

.hero-box p {
  font-size: 1.5rem;
}

.btn {
  padding: 20px 32px;
  font-size: 1.3rem;
}



/* ============================================== END OF LANDING PAGE SECTION(HOME) CONTAINER ============================================= */


 /* ==================================== HERO SIDE IMAGE ======================================== */

   .btn-dark {
    padding: 1rem 8rem;
  }

  .btn-light {
    padding: 1rem 8rem;
  }
  .screenshot {
      display: none;
    }
      



/* ============================================= END OF LANDING PAGE SECTION(HOME) CONTAINER ============================================= */












/* =============================================== ABOUT PAGE SECTION(ABOUT) CONTAINER =============================================== */

      .about-section {
        flex-direction: column;
        padding: var(--space-md);
      }

      .about-images {
        justify-content: center;
      }

      

  /* ===============================================FOOTER SECTION ========================================= */



      .profile-header {
        margin-top: 60px;
        margin-left: 2em;
      }

      .profile-pic {
        width: 100px;
        height: 100px;
        border-radius: 50%;
      }

      .profile-header h1 {
        font-size: 2.5rem;
        font-weight: 600;
        margin: 20px 0;
      }

      .profile-header span {
        font-weight: 800;
        font-size: 4rem;
      }

      .buttons {
        margin-left: 2em;
        margin: 25px 0;
      }

      .btn {
        padding: 15px 95px;
      }

      footer p {
        font-size: 14px;
        color: #ccc;
        /* text-align: left; */
        margin-left: 3em;
      }

        /* =============================================== CONTACT FORM ========================================= */

        .contact-wrapper {
          flex-direction: column;
        }
        #contactHome {
          display: none;
        }

    }


    /* ====================================== MOBIL version ======================================== */
        @media (max-width: 728px) {

          .nav-right a {
            font-size: .8rem;
            font-weight: 500;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: rgb(49, 65, 245);
            padding: 1em 9em;
            border-radius: 999px;
          }


    /* ============================================== LANDING CATCHY CONTAINER =============================================== */


        .hero-box h1 {
          font-size: 1.7em;
          font-weight: 600;
          margin-bottom: 20px;
          line-height: 1.5;
        }

        .hero-box p {
          font-size: 1rem;
        }

        .btn {
          padding: 20px 32px;
          font-size: 1.3rem;
        }



    /* ============================================== END OF LANDING PAGE CONTAINER ============================================= */


          /* ============================ HERO Description ============================ */

        .hero h2 {
          font-weight: 400;
          font-style: normal;
        }

        .hero h3 {
          font-weight: 900;
          font-style: normal;
        }

        .hero h1 {
          font-size: 3.5rem;
          line-height: 1;
          font-weight: 600;
          margin-bottom: .5rem;
          text-align: left;
        }

        .hero .subtext {
          font-size: 1rem;
          margin-bottom: 1rem;
          /* max-width: 500px; */
          font-weight: 400;
        }

        .buttons {
          display: flex;
          gap: 1rem;
        }

        .btn-dark {
          padding: 1rem 2rem;
          border-radius: 22px;
          font-weight: 600;
          text-decoration: none;
          border: none;
        }
        .btn-light {
        background: transparent;
        color: #00FFF5;
        padding: 1.1rem 5rem;
        border-radius: 999px;
        font-weight: 600;
        text-decoration: none;
        border: 1px solid #00FFF5;
        font-family: 'Inter', sans-serif;
        transition: background 0.3s ease;
        margin-top: 1em;
      }


/* =============================================== END OF LANDING PAGE SECTION(HOME) CONTAINER =============================================== */


  /* =============================================== HOW I WILL SERVE YOU =============== */


      .section-title h2 {
        font-size: 2rem;
      }

      .section-title p {
        font-size: 1rem;
        color: #e5e1e1;
        margin-top: 0.5rem;
        max-width: 100%;
        text-align: left;
      }

      .card img {
        height: 150px;
      }

      .action-buttons {
      text-align: left;
      margin-top: 1.5rem;
      }

      .action-buttons a {
        display: inline-block;
        padding: 1rem 6rem;
        margin: 0.5rem;
        border-radius: 999px;
        font-weight: 600;
        font-size: 0.8rem;
        text-decoration: none;
        transition: all 0.3s ease;
      }

      .btn-pink {
        background: #00FFF5;
        color: #000;
      }

      .btn-pink:hover {
        background: transparent;
        border: 2px solid #00FFF5;
        color: #00FFF5;
      }

      .btn-outline {
        border: 2px solid #bebebeea;
        color: #00FFF5;
        background: transparent;
      }

      .btn-outline:hover {
        background: #ddd;
        color: #000;
      }






  /* ===============================================FOOTER SECTION ========================================= */



      .profile-header {
        margin-top: 60px;
        margin-left: .6em;
      }

      .profile-pic {
        width: 100px;
        height: 100px;
        border-radius: 50%;
      }

      .profile-header h1 {
        font-size: 2.5rem;
        font-weight: 500;
        margin: 20px 0;
      }

      .profile-header span {
        font-weight: 700;
        font-size: 4rem;
      }

      .buttons {
        margin-left: .6em;
      }

      .btn {
        padding: 15px 75px;
      }

      footer {
        margin-bottom: .5em;
      }

      footer p {
        font-size: 14px;
        color: #ccc;
        /* text-align: left; */
        margin-left: .6em;
        margin-top: 1.5em;
      }

      .buttons .active {
        display: none;
      }

      /* =============================================== CONTACT FORM ========================================= */

        .contact-wrapper {
          flex-direction: column;
        }

        .btn {
          width: 100%;
          justify-content: center;
          padding: 15px 65px;
          font-weight: 400;
          font-size: 1.05em;
      }

      .submit-btn {
        font-size: 1.4em;
        font-weight: 600;
        width: 100%;
      }


    }


    
/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

    .back-top-btn.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(-10px);
}

.back-top-btn {
  position: fixed;
  bottom: 20px;
  right: 30px;
  background-color: #fff;
  color: green;
  font-size: 22px;
  padding: 13px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
}

.back-top-btn:is(:hover, :focus) {
  background-color: green;
  color: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-10px);
}
ion-icon {
  pointer-events: none;
  --ionicon-stroke-width: 25px;
  display: block;
}

a:-webkit-any-link {
  text-decoration: none;
}