:root {
  --bg: #0e1a2f;
  --surface: #ffffff;
  --ink: #ffffff;
  --muted: #d2d9ea;
  --accent: #c98a12;
  --accent-deep: #9b6706;
  --line: #2a3d63;
  --shadow: 0 18px 40px rgba(2, 8, 20, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(72rem 36rem at -10% -10%, rgba(201, 138, 18, 0.22), transparent 60%),
    radial-gradient(55rem 30rem at 110% 0%, rgba(21, 47, 94, 0.38), transparent 55%),
    var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.hero {
  padding: 1.2rem 0 5rem;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
}

.brand {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.hero-content {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 2.2rem;
  align-items: center;
}

.hero-content h1 span{
    color: rgb(255, 255, 0);
}

#engineer{
    color: rgb(255, 255, 0);
}

.hero-copy {
  animation: slide-up 650ms ease both;
}

.tag {
  display: inline-block;
  margin: 0 0 0.9rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(210, 123, 26, 0.35);
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.9rem, 5vw, 3.15rem);
  max-width: 14ch;
}

.hero-copy p {
  color: var(--muted);
  max-width: 60ch;
}

.cta {
  display: inline-block;
  margin-top: 0.4rem;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  padding: 0.75rem 1.2rem;
  border-radius: 0.65rem;
  box-shadow: 0 10px 24px rgba(164, 93, 15, 0.32);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(164, 93, 15, 0.38);
}





.logo-card img {
  border-radius: 8px;
  max-height: 500px;
  object-fit: cover;
  
}



.section {
  padding: 2.8rem 0;
}

.section-head {
  margin-bottom: 1rem;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 700;
  margin: 0 0 0.35rem;
}

h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.grid {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(30, 44, 70, 0.08);
  transform: translateY(0);
  transition: transform 220ms ease, box-shadow 220ms ease;
  animation: rise 650ms ease both;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 25px rgba(30, 44, 70, 0.14);
}

.card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card h3 {
  font-size: 1rem;
  padding: 0.85rem 0.9rem 1rem;
  color: #16243f;
}

.about p {
  margin: 0;
  max-width: 70ch;
  color: var(--muted);
}

.service-grid {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(30, 44, 70, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
  animation: rise 700ms ease both;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 25px rgba(12, 23, 45, 0.18);
}

.service-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.4rem;
  color: #16243f;
}

.service-card p {
  margin: 0;
  color: #5a6479;
  font-size: 0.95rem;
}

.process-grid {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  padding: 1rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
  animation: rise 750ms ease both;
}

.process-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 25px rgba(12, 23, 45, 0.16);
}

.process-item span {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: rgba(210, 123, 26, 0.15);
  color: var(--accent-deep);
}

.process-item h3 {
  margin: 0.7rem 0 0.35rem;
  font-size: 1rem;
  color: #16243f;
}

.process-item p {
  margin: 0;
  color: #5a6479;
  font-size: 0.93rem;
}

.footer {
  margin-top: 1.2rem;
  background: #0b1426;
  color: #e6ebf7;
  text-align: center;
}

.footer-col a{
    text-decoration: none;

}
.footer-col i{
    font-size: 2rem;
    margin-top: 2vw;
}

.footer-inner {
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 1rem;
}

.footer h3 {
  font-family: "Space Grotesk", sans-serif;
  margin: 0;
}

.footer p {
  margin: 0.35rem 0 0;
  color: #b2bdd5;
}

.footer h4 {
  margin: 0 0 0.5rem;
  font-family: "Space Grotesk", sans-serif;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.footer-links a {
  color: #b2bdd5;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.call-btn {
  text-decoration: none;
  font-weight: 700;
  color: #101828;
  background: #d8a02b;
  border-radius: 0.6rem;
  padding: 0.72rem 1.05rem;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.call-btn:hover {
  transform: translateY(-2px);
  background: #e1ad3e;
  box-shadow: 0 10px 20px rgba(201, 138, 18, 0.28);
}

.footer-bottom {
  border-top: 1px solid rgba(178, 189, 213, 0.2);
}

.footer-bottom p {
  margin: 0;
  padding: 0.8rem 0 1rem;
  font-size: 0.88rem;
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card:nth-child(2),
.service-card:nth-child(2),
.process-item:nth-child(2) {
  animation-delay: 70ms;
}

.card:nth-child(3),
.service-card:nth-child(3),
.process-item:nth-child(3) {
  animation-delay: 120ms;
}

.card:nth-child(4),
.service-card:nth-child(4),
.process-item:nth-child(4) {
  animation-delay: 170ms;
}

@media (max-width: 860px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .logo-card {
    max-width: 520px;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    gap: 0.9rem;
    flex-wrap: wrap;
  }

  .card img {
    aspect-ratio: 3 / 2;
  }

  .process-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }
}






/* ===== FEATURES SECTION ===== */

.features {
  text-align: center;
  margin-top: 2rem;
}

.features-box {
  max-width: 600px;
  margin: auto;
}

.feature-item {
  background: rgb(226, 147, 0);
  border: 1px solid var(--line);
  padding: 12px 20px;
  margin: 10px auto;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  width: fit-content;
}

.feature-row {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}



/* WhatsApp Button */
.whatsapp-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #ff9900, #cc7a00);
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 153, 0, 0.3);
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
}

/* View Button */
.view-btn {
  display: block;
  margin: 15px auto;
  padding: 12px 22px;
  border: 2px solid #ff9900;
  color: #ffcc66;
  text-decoration: none;
  border-radius: 10px;
  width: fit-content;
}

.view-btn:hover {
  background: rgba(255, 153, 0, 0.1);
}




/* Floating WhatsApp Button */

.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 26px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Hover effect */
.floating-whatsapp:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

/* Icon alignment fix */
.floating-whatsapp i {
  font-size: 28px;
}