html, body {
  margin: 0;
  padding: 0;
  height: auto; /* ✅ Let page grow vertically */
  width: 100vw;
  overflow-x: hidden; /* ✅ Still no side scrolling */
  font-family: 'Segoe UI', 'Arial', sans-serif;
  background: #070F23;
  color: white;
}


.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: url('background.png') no-repeat center center;
  background-size: 100vw 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  z-index: 0;
  overflow: hidden;
}



.brand-sign {
  position: absolute;
  top: 18%;
  right: 10%;
  color: #00d8ff;
  font-size: 2.9vw;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow:
    0 0 12px #00eaffaa,
    0 0 40px #0ff6,
    0 0 4px #fff6;
  line-height: 1.08;
  text-align: right;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

.services {
  position: absolute;
  top: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 38px;
  z-index: 10;
}
.service-btn {
  padding: 14px 32px;
  font-size: 1.15em;
  background: rgba(0,255,255,0.10);
  border: 1.7px solid #00ffffbb;
  border-radius: 15px;
  color: #00ffff;
  text-shadow: 0 0 8px #00eaff, 0 0 2px #fff;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 0 10px #00cfff40, 0 0 25px #00335530 inset;
  margin: 0;
  transition: box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  outline: none;
  user-select: none;
}
.service-btn:hover {
  background: rgba(0,255,255,0.21);
  box-shadow: 0 0 24px #00f0ff99;
}

.cta-button {
  position: absolute;
  top: 36%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,255,255,0.12);
  border: 1.7px solid #00ffffcc;
  border-radius: 15px;
  color: #00ffff;
  text-shadow: 0 0 8px #00eaff, 0 0 2px #fff;
  font-size: 1.45em;
  font-weight: 700;
  padding: 22px 44px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  box-shadow: 0 0 18px #00d8ff55, 0 0 44px #00446644 inset;
  cursor: pointer;
  transition: box-shadow 0.25s, background 0.2s, transform 0.15s;
  z-index: 10;
}
.cta-button:hover {
  background: rgba(0,255,255,0.24);
  box-shadow: 0 0 38px #00eaffb0, 0 0 32px #0ff4;
  transform: scale(1.06);
}

.recent-work-section {
  position: absolute;
  bottom: 3vw;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 8;
}

.recent-heading {
  font-size: 1.45em;
  margin-bottom: 22px;
  color: #00eaff;
  text-shadow: 0 0 10px #00eaff, 0 0 20px #0ff7, 0 0 4px #fff7;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.mockups {
  display: flex;
  gap: 48px;
  justify-content: center;
}
.mockup {
  border-radius: 16px;
  box-shadow: 0 0 34px #00eaff33, 0 0 22px #00335044 inset;
  transition: transform 0.21s, box-shadow 0.2s;
  width: 430px;
  height: 265px;
  object-fit: cover;
  cursor: pointer;
  border: 1.4px solid #00eaff90;
  background: rgba(20,30,50,0.10);
  position: relative;
  z-index: 8;
}
.mockup:hover {
  transform: scale(1.07);
  box-shadow: 0 0 55px #00eaff88;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(8,24,36,0.96);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.show {
  display: flex;
}
.lightbox img {
  max-width: 94vw;
  max-height: 88vh;
  border-radius: 14px;
  box-shadow: 0 0 50px #00f8ffcc, 0 0 25px #0ff9;
}

.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(8,24,36,0.98);
  z-index: 9500;
}
.modal-content {
  background: #0e182a;
  margin: 7% auto;
  padding: 36px 32px;
  width: 410px;
  border-radius: 18px;
  box-shadow: 0 0 28px #00faff2a;
  color: #00ffff;
  border: 2px solid #00faff66;
  position: relative;
  z-index: 2;
}
.modal-content input,
.modal-content textarea {
  width: 100%;
  margin-bottom: 18px;
  padding: 12px;
  background: rgba(12, 26, 42, 0.80);
  color: #fff;
  border: 1.3px solid #00eaff44;
  border-radius: 6px;
  font-size: 1em;
  resize: none;
}
.modal-content button {
  width: 100%;
  padding: 12px;
  background: #00faff;
  color: #09202f;
  font-weight: bold;
  border: none;
  border-radius: 7px;
  font-size: 1.05em;
  box-shadow: 0 0 16px #00eaff88;
  cursor: pointer;
  transition: background 0.2s;
}
.modal-content button:hover {
  background: #0ff;
  color: #000;
}
.close {
  position: absolute;
  top: 18px; right: 22px;
  font-size: 2.2em;
  color: #00ffff;
  cursor: pointer;
  text-shadow: 0 0 16px #00faff;
  z-index: 3;
}

.rain-canvas {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  z-index: 4;
  pointer-events: none;
}

.footer {
  text-align: center;
  padding: 30px 20px;
  color: #ccc;
  font-size: 0.9em;
}

.trust-bar span {
  margin: 0 10px;
  display: inline-block;
}

.footer-links a {
  color: #7ddfff;
  margin: 0 8px;
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}

.footer-contact {
  margin-top: 5px;
  color: #7ddfff;
}

/* Modal popup style */
.footer-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.8);
}

.footer-modal-content {
  background-color: #111827;
  margin: 12% auto;
  padding: 20px;
  border: 1px solid #7ddfff;
  width: 80%;
  max-width: 600px;
  color: white;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
}

.footer-close {
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.footer-close:hover {
  color: #ff4f4f;
}
body.modal-open {
  overflow: hidden;
  padding-right: 17px; /* Prevents layout from shifting when scrollbar disappears */
}
