body {
  background-color: #000013;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.about-us-text {
  margin: 120px auto 60px;
  color: #ffffff;
  max-width: 900px;
  padding: 0 20px;
}

.about-us-text h2 {
  margin-top: 40px;
  color: #a6bafd;
  border-left: 4px solid #00bfff;
  padding-left: 10px;
}

.about-us-text p {
  margin: 15px 0;
}

.about-us-text ul {
  margin: 15px 0 30px 20px;
  padding-left: 20px;
}

.about-us-text ul li {
  margin-bottom: 8px;
}

.service-links li {
  margin: 10px 0;
}

.service-links a {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
}

.service-links a:hover {
  text-decoration: underline;
  color: #ffffff;
}


/* ============================= */
/* 📱 Responsive Design Fixes    */
/* ============================= */

/* Tablets and small laptops */
@media (max-width: 1024px) {
  .about-us-text {
    margin: 80px auto 40px;
    padding: 0 15px;
    max-width: 700px;
  }

  .about-us-text h2 {
    font-size: 1.6rem;
  }

  .about-us-text p {
    font-size: 1rem;
  }
}

/* Mobile (landscape & portrait) */
@media (max-width: 768px) {
  .about-us-text {
    margin: 60px auto 30px;
    padding: 0 15px;
    max-width: 95%;
  }

  .about-us-text h2 {
    font-size: 1.4rem;
  }

  .about-us-text p,
  .about-us-text ul li {
    font-size: 0.95rem;
  }

  .service-links a {
    font-size: 1rem;
  }
}

/* Extra small screens (phones under 480px) */
@media (max-width: 480px) {
  .about-us-text {
    margin: 40px auto 20px;
    padding: 0 12px;
  }

  .about-us-text h2 {
    font-size: 1.2rem;
    padding-left: 8px;
  }

  .about-us-text p,
  .about-us-text ul li {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .service-links li {
    margin: 8px 0;
  }

  .service-links a {
    font-size: 0.95rem;
  }
}






/* ---------- Inside Gigershub Section ---------- */
.workspace-section {
  background: #fafafa;
  padding: 60px 20px;
  color: #222;
  font-family: "Segoe UI", Roboto, sans-serif;
}

.workspace-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.workspace-container h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #1e40af; /* subtle blue tone */
}

.workspace-container .intro-text,
.workspace-container .closing-text {
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.7;
  color: #444;
}

.workspace-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.workspace-gallery figure {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workspace-gallery figure:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.workspace-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.workspace-gallery figcaption {
  padding: 15px;
  font-size: 0.95rem;
  color: #555;
  background: #fff;
}
/* --------------------------------------------- */










/* ---------- Team Section ---------- */
.team-section {
  background: #f9fafb;
  padding: 60px 20px;
  text-align: center;
  color: #222;
  font-family: "Segoe UI", Roboto, sans-serif;
}

.team-container {
  max-width: 1100px;
  margin: 0 auto;
}

.team-section h2 {
  font-size: 2rem;
  color: #1e40af;
  margin-bottom: 15px;
}

.team-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.7;
  color: #444;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.08);
  padding: 25px 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.team-card h3 {
  font-size: 1.2rem;
  margin: 8px 0 3px;
  color: #111;
}

.team-card .role {
  font-weight: 600;
  color: #2563eb;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.team-card .bio {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}
/* ----------------------------------- */
