 <style>
    @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

    * {
      box-sizing: border-box;
    }
    body {
      margin: 0;
      font-family: 'Roboto', sans-serif;
      background: #f5f7fa;
      color: #333;
      scroll-behavior: smooth;
    }
    a {
      color: inherit;
      text-decoration: none;
    }
    ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    /* Header with dark grey gradient */
    header {
      position: fixed;
      width: 100%;
      top: 0;
      left: 0;
      background: linear-gradient(90deg, #212121, #616161);
      box-shadow: 0 2px 5px rgba(0,0,0,0.4);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 2rem;
	box-sizing: border-box;
      height: 70px;
      z-index: 1000;
      color: #fff;
    }
@import url('https://fonts.googleapis.com/css2?family=Blinker:wght@700&display=swap'); /* Blinker font */
@import url('https://fonts.googleapis.com/css2?family=Century+Gothic&display=swap');     /* Century Gothic fallback */

.logo-text {
  display: inline-block;
  line-height: 1;
}

.orchid {
  font-family: 'Blinker', sans-serif;
  font-size: 1.8rem; /* Large uppercase text */
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff; /* White text for dark header */
}

.solutions {
  font-family: 'Century Gothic', sans-serif;
  font-size: 1.4rem; /* Slightly smaller than ORCHID */
  font-weight: normal;
  letter-spacing: 1px;
  color: #fff; /* Same color as ORCHID */
}
    nav ul {
      display: flex;
      gap: 2rem;
    }
    nav ul li a {
      font-weight: 500;
      color: #fff;
      padding: 8px 0;
      transition: color 0.3s ease;
    }
    nav ul li a:hover {
      color: #FFEB3B; /* Yellow highlight on hover */
    }

    /* Hero section with orange-yellow gradient */
.hero {
  height: 60vh; /* Compact hero section */
  background: linear-gradient(135deg, #FFA726 0%, #FFEB3B 100%);
  color: #333;
  display: flex;
  flex-direction: row; /* Align content left/right */
  justify-content: space-between;
  align-items: center;
  padding: 0 4rem;
  position: relative; /* For positioning background logo */
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%; /* Right half of hero */
  background: url('orcid_logo.png') no-repeat center right;
  background-size: contain;
  opacity: 0.10; /* Faded effect */
  filter: hue-rotate(40deg) saturate(1.2); /* Add yellowish tint */
  pointer-events: none; /* Allow clicks on text/buttons */
}
    .hero h1 {
      font-size: 3.0rem;
      margin: 0 0 1rem 0;
      line-height: 1.1;
    }
    .hero p {
      font-size: 1.25rem;
      max-width: 600px;
      margin-bottom: 2rem;
      font-weight: 300;
    }
.btn-primary {
  background-color: #1a73e8; /* Google Blue */
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(26,115,232,0.4);
  text-transform: uppercase;
}
    .btn-primary:hover {
      background-color: #155ab6;
    }

    /* Sections styling (services, about, contact) remains unchanged */
    section {
      max-width: 1200px;
      margin: 4rem auto;
      padding: 0 2rem;
    }
    h2.section-title {
      text-align: center;
      font-weight: 700;
      font-size: 2.5rem;
      color: #202124;
      margin-bottom: 2rem;
      position: relative;
    }
    h2.section-title::after {
      content: "";
      display: block;
      width: 60px;
      height: 4px;
      background: #1a73e8;
      margin: 0.5rem auto 0;
      border-radius: 2px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 2rem;
    }
    .service-card {
      background: white;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      padding: 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      transition: transform 0.3s ease;
      cursor: default;
    }
    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }
    .service-icon {
      width: 60px;
      height: 60px;
      margin-bottom: 1rem;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      color: white;
      font-size: 2rem;
    }
    .icon-blue { background: #4285F4; }
    .icon-red { background: #EA4335; }
    .icon-yellow { background: #FBBC05; color: #444; }
    .icon-green { background: #34A853; }

    #about p {
      max-width: 700px;
      margin: 0 auto;
      font-size: 1.1rem;
      line-height: 1.6;
      color: #555;
    }

    #contact form {
      max-width: 500px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    #contact input, #contact textarea {
      padding: 0.75rem 1rem;
      border-radius: 6px;
      border: 1px solid #ccc;
      font-size: 1rem;
      font-family: inherit;
    }
    #contact button {
      background-color: #1a73e8;
      color: white;
      font-weight: 700;
      padding: 1rem 1.5rem;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }
    #contact button:hover {
      background-color: #155ab6;
    }

    footer {
      text-align: center;
      padding: 2rem 1rem;
      background: #202124;
      color: white;
      font-size: 0.9rem;
    }
  </style>