
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Poppins", sans-serif;
      background-color: #f7f7f7;
      color: #111;
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }
header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  text-align: center;
  padding: 60px 20px 40px;
  background: url('/images/iPhone\ 16\ Pro\ Max\ -\ 1.png');
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
  height: 350px;
}

/* Logo and text in a column */
.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

header img {
  width: 120px;
  object-fit: contain;
  margin-bottom: 10px;
}

header h1 {
  font-size: 16px;
  letter-spacing: 1px;
  color: #03C4A1;
}

header p {
  font-size: 0.95rem;
  color: #555;
}
.menu-icon {
  position: absolute;
  top: 25px;
  left: 25px; /* Moved to left */
  font-size: 28px;
  cursor: pointer;
  color: #111;
  z-index: 2000;
  transition: color 0.3s ease;
}

.menu-icon:hover {
  color: #03C4A1;
}

/* ---------- SIDE MENU ---------- */
#sideMenu {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  left: 0; /* changed from right to left for consistency */
  background-color: #111;
  overflow-x: hidden;
  transition: 0.4s;
  padding-top: 70px;
  z-index: 1500;
}

#sideMenu ul {
  list-style-type: none;
  padding: 0;
}

#sideMenu ul li {
  padding: 15px 30px;
  text-align: left;
}

#sideMenu ul li a {
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  display: block;
  transition: 0.2s;
}

#sideMenu ul li a:hover {
  color: #03C4A1;
  transform: translateX(5px);
}

#sideMenu hr {
  border: none;
  border-top: 1px solid #444;
  margin: 15px 0;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 35px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.close-btn:hover {
  color: #03C4A1;
}

  /* Fullscreen overlay */
  #splash-screen {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: #111; /* cinematic black */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.8s ease;
  }

  .logo-container {
    text-align: center;
    color: white;
  }

  /* Logo animation */
  .logo {
    width: 150px;
    opacity: 0;
    transform: scale(0.8);
    animation: logoFadeIn 1s forwards;
  }

  @keyframes logoFadeIn {
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  /* Tagline animation */
  .tagline {
    margin-top: 15px;
    opacity: 0;
    transform: translateY(20px);
    animation: taglineFadeIn 1s forwards;
    animation-delay: 1s;
  }

  @keyframes taglineFadeIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Loader bar container */
  .loader {
    width: 120px;
    height: 4px;
    background: #2c2c2c;
    margin: 20px auto 0 auto;
    overflow: hidden;
  }

  /* Animated loader bar */
  .loader-bar {
    width: 0;
    height: 100%;
    background: #03C4A1;
    animation: loadBar 1.5s forwards;
    animation-delay: 1.5s;
  }

  @keyframes loadBar {
    to { width: 100%; }
  }

    section {
      padding: 20px 20px;
      max-width: 900px;
      margin: auto;
    }

    .problem-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .card {
      background: #fff;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.05);
      transition: transform 0.2s ease;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card h3 {
      margin-bottom: 10px;
      font-size: 1.2rem;
      color: #111;
    }

    .card p {
      font-size: 0.95rem;
      color: #444;
    }

    .card .read-more {
  margin-top: 15px;
  padding: 12px 25px;
    border: 2px solid #111;
    border-radius: 30px;
  color: #111;

  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.card .read-more:hover {
  background-color: #111; /* slightly darker green */
  transform: translateY(-2px);
  color: white;
}


    /* ---------- CONTACT ---------- */
    .contact {
      text-align: center;
    }

    .contact h2 {
      margin-bottom: 20px;
    }

     .contact-buttons .whatsapp{
        display: inline-block;
      margin: 10px;
      padding: 12px 25px;
      border-radius: 30px;
      background: #03C4A1;
      color: #fff;
      font-weight: 500;
      transition: background 0.3s ease;

     }

          .contact-buttons .call{
        display: inline-block;
      margin: 10px;
      padding: 12px 25px;
      border-radius: 30px;
      background: #0b41f3;
      color: #fff;
      font-weight: 500;
      transition: background 0.3s ease;

     }

     .contact-buttons .email{
        display: inline-block;
      margin: 10px;
      padding: 12px 25px;
      border-radius: 30px;
      background: #f30b0b;
      color: #fff;
      font-weight: 500;
      transition: background 0.3s ease;

     }

    .contact-buttons a {
      display: inline-block;
      margin: 10px;
      padding: 12px 25px;
      border-radius: 30px;
      background: #111;
      color: #fff;
      font-weight: 500;
      transition: background 0.3s ease;
    }

    .contact-buttons a:hover {
      background: #444;
    }

    #request-cta {
    position: fixed;
    right: 25px;
    bottom: -80px; /* hidden initially */
    background-color: #03C4A1;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(3, 196, 161, 0.3);
    transition: all 0.4s ease;
    z-index: 9999;
  }

  #request-cta.visible {
    bottom: 25px; /* slides up when visible */
  }

  #request-cta:hover {
    background-color: #029e87;
    transform: translateY(-2px);
  }

      /* ---------- SHOWCASE ---------- */
  #showcase {
    background: #f8f8f8;
    padding: 60px 20px;
  }

  .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
  }

  .video-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
  }

  .video-card:hover {
    transform: translateY(-5px);
  }

  .video-card iframe {
    width: 100%;
    height: 200px;
    display: block;
  }

  .video-card p {
    padding: 15px;
    font-size: 0.95rem;
    color: #333;
    text-align: center;
  }

  .btn-outline {
    padding: 12px 25px;
    border: 2px solid #111;
    border-radius: 30px;
    font-weight: 500;
    color: #111;
    transition: all 0.3s ease;
  }

  .btn-outline:hover {
    background: #111;
    color: #fff;
  }

  /* ---------- REQUEST A BUILD ---------- */
  #request {
    padding: 70px 20px;
    text-align: center;
    background: #fff;
  }

  .request-box h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .request-box p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .btn-request {
    display: inline-block;
    padding: 12px 30px;
    background: #25D366;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    transition: background 0.3s ease;
  }

  .btn-request:hover {
    background: #1ea955;
  }

  /* ---------- PURPOSE ---------- */
  #purpose {
    background: #111;
    color: #fff;
    padding: 60px 30px;
    text-align: center;
  }

  .purpose-text {
    font-size: 16px;
    max-width: 800px;
    margin: auto;
    line-height: 1.7;
  }


    footer {
      background: #111;
      color: #fff;
      text-align: center;
      padding: 25px 10px;
      font-size: 0.9rem;
      margin-top: 50px;
    }

    footer span {
      color: #888;
    }