*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background-color: #f5f5f5;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.logo-text h1 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #f97316;
  text-transform: uppercase;
}

.logo-text p {
  font-size: 0.8rem;
  color: #6b7280;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.nav a {
  color: #111827;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-color: #f97316;
}

.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  color: #111827;
  background-image: linear-gradient(
      135deg,
      rgba(249, 115, 22, 0.15),
      rgba(249, 115, 22, 0.03)
    ),
    url("https://images.pexels.com/photos/585419/pexels-photo-585419.jpeg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.3), transparent 55%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.85));
}

.hero-content {
  position: relative;
  padding: 5rem 0 4rem;
  max-width: 640px;
}

.hero h2 {
  font-size: clamp(2.2rem, 3vw + 1rem, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.02rem;
  color: #4b5563;
  max-width: 34rem;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.18s ease-out;
}

.btn-primary {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.6);
}

.btn-secondary:hover {
  background: rgba(15, 23, 42, 1);
}

.btn-outline {
  background: transparent;
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.7);
}

.btn-outline:hover {
  border-color: #f97316;
  color: #f97316;
}

.btn-sm {
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
}

.hero-stats {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-stats div {
  min-width: 110px;
}

.stat-number {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #f97316;
}

.stat-label {
  font-size: 0.85rem;
  color: #374151; /* darker for better visibility */
  font-weight: 600;
}

.section {
  padding: 4rem 0;
  background: #ffffff;
}

.section-alt {
  background: #f9fafb;
  background-image: radial-gradient(circle at top left, rgba(249, 115, 22, 0.06), transparent 55%);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h3 {
  font-size: 1.6rem;
  color: #111827;
  margin-bottom: 0.4rem;
}

.section-header p {
  color: #6b7280;
  max-width: 36rem;
  margin: 0 auto;
  font-size: 0.95rem;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.two-col h3,
.two-col h4 {
  color: #111827;
}

.two-col p {
  color: #4b5563;
  margin-bottom: 0.6rem;
}

.list-check {
  list-style: none;
  margin-top: 0.75rem;
  color: #4b5563;
  font-size: 0.95rem;
}

.list-check li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.35rem;
}

.list-check li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.65rem;
  color: #f97316;
}

.about-highlight {
  padding: 1.5rem 1.5rem 1.75rem;
  border-radius: 1rem;
  background: radial-gradient(circle at top, rgba(249, 115, 22, 0.12), transparent 60%),
    #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 24px 40px rgba(15, 23, 42, 0.08);
}

.about-highlight h4 {
  margin-bottom: 0.8rem;
}

.list-icon {
  list-style: none;
  color: #374151;
  font-size: 0.9rem;
}

.list-icon li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 0.45rem;
}

.list-icon span {
  color: #22c55e;
  font-size: 0.9rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.leadership-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 820px;
  margin: 0 auto;
}

.card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.4rem 1.4rem 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
}

.project-card h4 {
  color: #111827;
  margin-bottom: 0.3rem;
}

.project-meta {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 0.3rem;
}

.project-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  margin-right: 0.4rem;
}

.project-badge.in-progress {
  background: rgba(234, 179, 8, 0.15);
  color: #facc15;
}

.project-type {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #4b5563;
}

.project-desc {
  font-size: 0.88rem;
  color: #374151;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.client-card {
  padding: 1.3rem 1.3rem 1.4rem;
  border-radius: 1rem;
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.12), transparent 55%),
    #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.client-card h4 {
  color: #111827;
  margin-bottom: 0.4rem;
}

.client-card p {
  color: #4b5563;
  font-size: 0.9rem;
}

.contact-details p {
  color: #111827;
  font-size: 0.95rem;
}

.contact-details p + p {
  margin-top: 0.15rem;
}

.contact-form {
  padding: 1.4rem 1.4rem 1.5rem;
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.06);
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.9rem;
  gap: 0.25rem;
}

.form-row label {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #6b7280;
}

.form-row input,
.form-row textarea,
.form-row select {
  padding: 0.55rem 0.7rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: #ffffff;
  color: #111827;
  font-size: 0.9rem;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: 2px solid #f97316;
  outline-offset: 1px;
  border-color: transparent;
}

.form-row.triple {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.9rem;
}

.form-row.double {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.9rem;
}

.project-images {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
}

.project-image-block {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 0.7rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.project-image-block img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.project-image-label {
  text-align: center;
  padding: 0.25rem 0.4rem 0.4rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9ca3af;
}

.section-subheader {
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
}

.section-subheader h4 {
  color: #111827;
  margin-bottom: 0.25rem;
}

.section-subheader p {
  color: #6b7280;
  font-size: 0.9rem;
}

.clients-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  align-items: center;
}

.client-logo-card {
  border-radius: 0.9rem;
  background: #ffffff;
  border: 1px dashed rgba(148, 163, 184, 0.8);
  padding: 0.7rem 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.client-logo-card img {
  max-height: 52px;
  object-fit: contain;
}

.client-logo-name {
  font-size: 0.8rem;
  color: #111827;
  text-align: center;
}


.muted {
  color: #6b7280;
  font-size: 0.85rem;
}

.small {
  font-size: 0.78rem;
}

.footer {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  background: #ffffff;
  padding: 1.2rem 0 1.4rem;
}

.footer-inner {
  text-align: center;
}

.footer p {
  color: #6b7280;
  font-size: 0.85rem;
}

.hidden {
  display: none;
}

@media (max-width: 800px) {
  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-content {
    padding-top: 3.5rem;
  }

  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.certification-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.4rem 1.4rem 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
}

.certification-card h4 {
  color: #111827;
  margin-bottom: 0.3rem;
}

.certification-card p {
  color: #4b5563;
  font-size: 0.88rem;
  margin-bottom: 0.9rem;
}

.certification-image {
  max-width: 300px;
  width: 100%;
  aspect-ratio: 210 / 297; /* A4 ratio */
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.5);
  margin: 0 auto; /* Center the image */
}

.certification-image img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Show full image without cropping */
}

.certification-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.certification-pdf-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
  border: 2px dashed rgba(148, 163, 184, 0.5);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: all 0.2s ease;
}

.certification-pdf-placeholder:hover {
  background: #f3f4f6;
  border-color: #f97316;
}

.certification-pdf-placeholder span {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.certification-pdf-placeholder p {
  color: #111827;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}

.work-done-link {
  text-align: center;
  margin-bottom: 2rem;
}

.work-done-link .btn {
  margin-bottom: 0.5rem;
}

@media (max-width: 800px) {
  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-content {
    padding-top: 3.5rem;
  }

  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 500px) {
  .top-bar-inner {
    padding: 0.6rem 0;
  }

  .logo {
    height: 46px;
  }

  .hero h2 {
    font-size: 2rem;
  }
}

