/* Basic reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #1f2933;
    background: #f5f7fa;
    line-height: 1.6;
  }
  
  /* Layout helpers */
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
  }
  
  /* Top navigation */
  .topbar {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 10;
  }
  
  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 2px;
    font-weight: 600;
  }
  
  .logo-text {
    font-size: 1rem;
  }
  
  .logo img {
    height: 48px; /* adjust between 36–48px depending on your header height */
    vertical-align: middle;
  }
  
  .nav a {
    margin-left: 16px;
    text-decoration: none;
    font-size: 0.95rem;
    color: #374151;
  }
  
  .nav a:hover {
    color: #111827;
  }
  
  .btn-nav {
    padding: 6px 12px;
    border-radius: 999px;
    /* border: 1px solid #2563eb; */
  }
  
  /* Hero */
  
  .hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  
    min-height: 100vh;             
    padding: 2rem 1rem;
    box-sizing: border-box;
    color: #1f2933;
  
    background:
      linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, #f5f7fa 100%),
      url("images/hero_3.jpeg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }




/* Hero – simple and flexible THE TOP PART OF TGHE IMAGE WILL SHOW ON DISKTOP */ 
/* .hero {
    padding: 80px 0 60px;
    color: #1f2933;
    text-align: center;
  
    background:
      linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, #f5f7fa 100%),
      url("images/hero_3.jpeg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  } */
  
  
  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
    gap: 32px;
    align-items: flex-start;
  }
  
  .hero h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: clamp(1rem, 3vw, 1.25rem);
    max-width: 600px;
  }
  
  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  
  .hero-note {
    font-size: 0.85rem;
    color: #6b7280;
  }
  
  .hero-actions {
    margin: 20px 0;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  /* Buttons */
  .btn-primary,
  .btn-secondary {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    text-align: center;
  }
  
  .btn-primary {
    background: #2563eb;
    color: #ffffff;
  }
  
  .btn-primary:hover {
    background: #1d4ed8;
  }
  
  .btn-secondary {
    background: #ffffff;
    color: #2563eb;
    border: 1px solid #2563eb;
  }
  
  .btn-secondary:hover {
    background: #eff6ff;
  }
  
  .full-width {
    width: 100%;
  }
  
  /* Hero card (form on the right) */
  .hero-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  }
  
  .hero-card h2 {
    margin-bottom: 8px;
  }
  
  .hero-card p {
    margin-bottom: 12px;
  }
  
  .hero-card form label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 10px;
  }
  
  .hero-card input,
  .hero-card textarea {
    width: 100%;
    margin-top: 4px;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 0.9rem;
  }
  
  .hero-card input:focus,
  .hero-card textarea:focus,
  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 1px #93c5fd;
  }
  
  .small-text {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 8px;
  }
  
  /* Sections */
  .section {
    padding: 48px 0;
  }
  
  .section-alt {
    background: #ffffff;
  }
  
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
  
  .section-intro {
    margin-bottom: 24px;
    color: #4b5563;
  }
  
  /* Cards & grids */
  .grid-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  
  .card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.8rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    max-width: 700px;
    width: 100%;
    text-align: center;
  }
  
  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  }
  
  .card h3 {
    margin-bottom: 8px;
    font-size: 1.05rem;
  }
  
  .card p {
    font-size: 0.95rem;
    color: #4b5563;
  }
  
  /* Process */
  .process-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  
  .process-list h3 {
    margin-bottom: 6px;
  }
  
  /* Bullet lists */
  .bullet-list {
    list-style: disc;
    margin-left: 18px;
    margin-top: 8px;
  }
  
  .bullet-list li {
    margin-bottom: 6px;
  }
  
  /* About */
  .about-highlight {
    background: #eff6ff;
    border-radius: 14px;
    padding: 18px;
  }
  
  /* Contact form */
  .contact-form label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 12px;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    margin-top: 4px;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 0.9rem;
  }
  
  /* Direct contact */
  .direct-contact {
    margin-top: 2rem;
  }
  
  .direct-contact p {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .direct-contact a {
    color: #1f2933;
    text-decoration: none;
  }
  
  .direct-contact a:hover {
    text-decoration: underline;
  }
  
  /* Icon styling */
  .direct-contact i {
    font-size: 1.2rem;
  }
  
  /* Brand colors */
  .email-icon {
    color: #d44638; /* Gmail red */
  }
  
  .whatsapp-icon {
    color: #25D366; /* WhatsApp green */
  }
  
  .wechat-icon {
    color: #7bb32e; /* WeChat green */
  }
  
  /* iMessage (Apple Messages) */
  .imessage-icon {
    color: #30D158; /* Apple-style blue */
  }
  
  /* Footer */
  .footer {
    background: #0f172a;
    color: #e5e7eb;
    padding: 16px 0;
    margin-top: 24px;
  }
  
  .footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  
  .footer .small-text {
    color: #9ca3af;
  }
  
  /* Responsive */
  @media (max-width: 800px) {
    /* Stack logo and nav vertically on small screens */
    .nav-container {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
  
    .nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
      gap: 8px;
      margin-top: 4px;
    }
  
    .nav a {
      margin-left: 0;
      font-size: 0.85rem;
      padding: 4px 0;
    }
  
    .btn-nav {
      padding: 4px 10px;
    }
  
    .hero-grid,
    .grid-2,
    .process-list {
      grid-template-columns: minmax(0, 1fr);
    }
  
    .hero {
      padding-top: 32px;
    }
  
    .hero h1 {
      font-size: 1.6rem;
      line-height: 1.3;
    }
  
    .section {
      padding: 32px 0;
    }
  
    .container {
      padding: 0 12px;
    }
  
    .footer-flex {
      flex-direction: column;
      text-align: center;
    }
  }
  
  @media (max-width: 480px) {
    .hero {
      padding: 3rem 1rem;
    }
  
    .hero h1 {
      font-size: 1.6rem;
    }
  
    .hero p {
      font-size: 1rem;
    }
  }
  