/* ==========================
   GLOBAL RESET
========================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #e0e0e0;
  background-color: #0b0c10;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ==========================
   WRAPPER
========================== */
.wrap {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ==========================
   HEADER
========================== */
.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: rgba(11, 12, 16, 0); /* fully transparent */
  backdrop-filter: blur(10px); /* keep the blur effect */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* subtle border for separation */
}


.site-header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img.logo-img {
  width: 50px;
  height: 50px;
  margin-right: 0.5rem;
}

.brand-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #b6ff00;
}

.brand-sub {
  font-size: 0.85rem;
  color: #64e3ff;
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav a {
  font-weight: 500;
  color: #e0e0e0;
  transition: all 0.3s ease;
}

.nav a:hover {
  color: #b6ff00;
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #b6ff00;
  cursor: pointer;
}

/* ==========================
   HERO SECTION (FIXED LOGIC)
========================== */
/* ==========================
   HERO SECTION (FIXED LOGIC)
========================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px; /* add space for header (adjust if your header height changes) */
}


.hero-video,
.hero-overlay,
.hero-canvas {
  top: 80px; /* start below header */
  left: 0;
  width: 100%;
  height: calc(100vh - 80px); /* fill the remaining viewport height */
  object-fit: cover;
  position: absolute;
  z-index: 0; /* video z-index, overlay z-index: 1, canvas: 2 */
}

.hero-overlay {
  z-index: 1;
}

.hero-canvas {
  z-index: 2;
}


.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-copy {
  flex: 1 1 60%;
  min-width: 300px;
  text-align: left;
}

.hero-side {
  flex: 1 1 30%;
  min-width: 250px;
  margin-left: 2rem;
}

.kicker {
  font-size: 0.9rem;
  color: #64e3ff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-title .accent {
  color: #b6ff00;
}

.hero-lead {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #ccc;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.btn.robot {
  padding: 0.8rem 1.5rem;
  border: 2px solid #b6ff00;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  background: transparent;
  color: #b6ff00;
}

.btn.robot.primary {
  background: #b6ff00;
  color: #0b0c10;
}

.btn.robot.outline:hover {
  background: #b6ff00;
  color: #0b0c10;
}

/* ==========================
   HERO RESPONSIVE
========================== */
@media screen and (max-width: 1024px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-side {
    margin-left: 0;
    margin-top: 2rem;
  }

  .hero-copy h1 {
    font-size: 2rem;
  }

  .hero-copy p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 600px) {
  .hero-title {
    font-size: 1.7rem;
  }

  .hero-lead {
    font-size: 0.95rem;
  }
}

/* ==========================
   IMPACT
========================== */
.impact {
  background: rgba(15, 17, 22, 0.8);
  border: 1px solid #64e3ff;
  padding: 1rem;
  border-radius: 12px;
}

.impact-head {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  margin-bottom: 1rem;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.impact-item .v {
  font-size: 1.2rem;
  font-weight: 700;
  color: #b6ff00;
}

.impact-item .l {
  font-size: 0.8rem;
  color: #64e3ff;
}

/* ==========================
   CONTACT MODAL (HERO POPUP)
========================== */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.contact-modal.active {
  display: flex;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 12, 16, 0.75);
  backdrop-filter: blur(8px);
}

.contact-modal-card {
  position: relative;
  z-index: 2;
  background: rgba(15, 17, 22, 0.95);
  border: 1px solid rgba(100, 227, 255, 0.4);
  border-radius: 16px;
  padding: 2.5rem;
  width: 90%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  animation: modalIn 0.35s ease;
}

@keyframes modalIn {
  from {
    transform: translateY(30px) scale(0.95);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.contact-modal-card h3 {
  color: #b6ff00;
  margin-bottom: 0.5rem;
}

.contact-modal-card .muted {
  font-size: 0.9rem;
  margin-bottom: 2rem;
  color: #bfc7d5;
}

.close-modal {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: #64e3ff;
  font-size: 1.8rem;
  cursor: pointer;
}

/* ICON GRID */
.contact-icons {
  display: grid;
  gap: 1rem;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  background: rgba(11, 12, 16, 0.8);
  border: 1px solid rgba(100, 227, 255, 0.35);
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-icon span {
  font-size: 0.95rem;
}

.contact-icon:hover {
  transform: translateY(-4px);
  border-color: #b6ff00;
  box-shadow: 0 10px 30px rgba(182, 255, 0, 0.25);
}

.contact-icon.whatsapp {
  border-color: rgba(37, 211, 102, 0.6);
}

/* ==========================
   SERVICES MODAL
========================== */
.services-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.services-modal.active {
  display: flex;
}

.services-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 12, 16, 0.75);
  backdrop-filter: blur(8px);
}

.services-modal-card {
  position: relative;
  z-index: 2;
  background: rgba(15, 17, 22, 0.97);
  border: 1px solid rgba(100, 227, 255, 0.4);
  border-radius: 16px;
  padding: 2.5rem;
  width: 95%;
  max-width: 900px;
  max-height: 85vh;
  overflow-y: auto;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  animation: modalIn 0.35s ease;
}

.services-modal-card h3 {
  color: #b6ff00;
  margin-bottom: 0.5rem;
}

.services-modal-card .muted {
  font-size: 0.95rem;
  margin-bottom: 2rem;
  color: #bfc7d5;
}

/* SERVICE GRID */
.services-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-icon-card {
  background: rgba(11, 12, 16, 0.85);
  border: 1px solid rgba(100, 227, 255, 0.35);
  border-radius: 14px;
  padding: 1.8rem 1.2rem;
  transition: all 0.35s ease;
}

.service-icon-card h4 {
  color: #b6ff00;
  margin: 0.6rem 0 0.4rem;
}

.service-icon-card p {
  font-size: 0.9rem;
  color: #d0d6e0;
  line-height: 1.6;
}

.service-icon-card:hover {
  transform: translateY(-8px);
  border-color: #b6ff00;
  box-shadow: 0 15px 40px rgba(182, 255, 0, 0.25);
}

/* ==========================
   SECTIONS
========================== */
.section {
  padding: 6rem 0;
}

.section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #b6ff00;
  text-align: center;
}

.section p.muted {
  text-align: center;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto 2rem auto;
}

.section-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

/* ==========================
   ABOUT
========================== */
/* ==========================
   ABOUT – LIGHT / CORPORATE
========================== */
.about-light {
  background: #ffffff;
}

.about-light h2 {
  color: #0b0c10;
}

.dark-text {
  color: #333;
}

.about-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.about-images img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}


/* ==========================
   SERVICES
========================== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card.service-card {
  background: rgba(15, 17, 22, 0.8);
  border: 1px solid #64e3ff;
  padding: 1.5rem;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 15px #b6ff00;
}

.card.service-card .icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #b6ff00;
}

/* ==========================
   SERVICES – PROFESSIONAL CARDS
========================== */
.services-pro {
  background: #0b0c10;
}

.services-grid-pro {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.service-card-pro {
  padding: 0;
  overflow: hidden;
  text-align: left;
}

.service-card-pro img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-card-pro h3 {
  padding: 1rem 1rem 0.5rem;
  color: #b6ff00;
}

.service-card-pro p {
  padding: 0 1rem 1.5rem;
  color: #ccc;
  font-size: 0.95rem;
}

/* ==========================
   PROJECTS
========================== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.project.card {
  background: rgba(15, 17, 22, 0.8);
  border: 1px solid #64e3ff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 15px #b6ff00;
}

.project-meta {
  padding: 0.5rem;
  background: rgba(11, 12, 16, 0.85);
  color: #e0e0e0;
}

.project-meta .muted {
  display: block;
  color: #64e3ff;
  font-size: 0.85rem;
  margin-top: 0.2rem;
}

/* ==========================
   MEDIA QUERIES
========================== */
@media screen and (max-width: 1024px) {
  .section-inner {
    flex-direction: column;
  }

  .nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-lead {
    font-size: 1rem;
  }
}
/* ==========================
   CONTACT SECTION
========================== */
.contact {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(11, 12, 16, 0.9)
  );
  border-top: 1px solid rgba(100, 227, 255, 0.2);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.contact-card {
  background: rgba(15, 17, 22, 0.85);
  border: 1px solid rgba(100, 227, 255, 0.35);
  border-radius: 14px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

/* subtle accent line */
.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #64e3ff, #b6ff00);
  opacity: 0.8;
}

.contact-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: #b6ff00;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-card p {
  font-size: 0.95rem;
  color: #d0d0d0;
  line-height: 1.6;
}

.contact-card strong {
  color: #ffffff;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(182, 255, 0, 0.25);
  border-color: #b6ff00;
}
/* ==========================
   FOOTER
========================== */
.site-footer {
  background: radial-gradient(
    circle at top,
    rgba(100, 227, 255, 0.08),
    rgba(11, 12, 16, 1)
  );
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 0;
  margin-top: 4rem;
}

.site-footer .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
}

.site-footer p {
  font-size: 0.9rem;
  color: #cfcfcf;
}

.site-footer .muted {
  max-width: 800px;
  font-size: 0.85rem;
  color: #9aa5b1;
  line-height: 1.6;
}

/* subtle footer glow line */
.site-footer::before {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  margin: 0 auto 1.5rem auto;
  background: linear-gradient(90deg, #64e3ff, #b6ff00);
  border-radius: 4px;
}
