* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background-color: #0f172a;
  color: #e5e7eb;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ================= HEADER ================= */
header {
  background-color: #020617;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 37px;
  width: auto;
  object-fit: contain;
  margin-top: 5px; /* moves logo DOWN */
  filter: drop-shadow(0 0 6px rgba(56,189,248,0.4));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 12px rgba(56,189,248,0.7));
}

/* NAV */
nav {
  display: flex;
  align-items: center;
}

nav a {
  color: #e5e7eb;
  margin-left: 24px;
  font-size: 0.95rem;
  text-decoration: none;
}

nav a:hover {
  color: #38bdf8;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: #38bdf8;
  border-radius: 2px;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  z-index: 1;
}

.slides img {
  position: absolute;
  width: 100%;
  height: 520px;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.slides img.active { opacity: 1; }

.hero-text {
  position: relative;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}

.hero-text h2 { font-size: 2.6rem; color: #38bdf8; }

.hero-text p {
  max-width: 700px;
  margin: 20px auto 30px;
  color: #cbd5f5;
}
.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 28px; /* 🔥 controls spacing */
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 240px;        /* 🔥 FIXED WIDTH */
  height: 52px;        /* 🔥 FIXED HEIGHT */
letter-spacing: 0.5px;
  background: #2bb3ff;
  color: #000;
  font-weight: 600;
  font-size: 16px;
  border-radius: 10px;
  text-decoration: none;

  overflow: hidden;
}

.hero-btn:hover {
  background: #1aa3ee;
}

.btn-inner {
  position: relative;
  width: 100%;
  text-align: center;
}

.btn-text {
  display: inline-block;
  
  transition: opacity 0.35s ease, transform 0.35s ease;
}
/* ================= SERVICES ================= */
.services { padding: 70px 0; }

.services h3 {
  text-align: center;
  font-size: 2.1rem;
  color: #38bdf8;
  margin-bottom: 45px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: #1e293b;
  padding: 26px;
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(56,189,248,0.3);
}

.card h4 { color: #38bdf8; }

/* ================= IMAGES ================= */
.card-images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.image-box {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= ABOUT ================= */
.about {
  padding: 70px 0;
  background: #020617;
}

.about-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.about-content img { max-width: 220px; }

.about-text { max-width: 500px; }

/* ===== ABOUT TEXT READABILITY ENHANCEMENT ===== */
.about-text h3 {
  margin-bottom: 26px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #d1d5db;
  margin-bottom: 26px;
  padding-left: 16px;
  border-left: 3px solid rgba(56, 189, 248, 0.35);
}

/* First paragraph = intro highlight */
.about-text p:first-of-type {
  font-size: 17px;
  font-weight: 500;
  color: #e5e7eb;
  border-left-color: #38bdf8;
}

/* Mobile polish */
@media (max-width: 768px) {
  .about-text p {
    font-size: 15.5px;
    padding-left: 12px;
  }
}

/* ================= CONTACT ================= */
.contact {
  padding: 80px 0;
  background: #020617;
}

.contact h3,
.contact h5,
.contact p {
  text-align: center;
}

/* GRID */
.contact-grid {
  display: flex;
  gap: 30px;
  margin-top: 35px;
  align-items: stretch; /* forces same height */
}

/* MAP + FORM SAME HEIGHT */
.contact-map,
.contact-form {
  flex: 1.15;
  background: #020617;
  border-radius: 14px;
}

/* MAP */
.contact-map {
  display: flex;
  flex-direction: column;
}

.contact-map p {
  margin-bottom: 12px;
  color: #cbd5f5;
  font-size: 0.95rem;
}

.contact-map iframe {
  flex: 1; /* THIS is the key */
  width: 100%;
  border: none;
  border-radius: 14px;
}

/* FORM */
.contact-form {
  padding: 25px;
  border: 1px solid #1e293b;
   flex:0.85;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 12px;
  border-radius: 10px;
  border: 1px solid #1e293b;
  background: #0f172a;
  color: #e5e7eb;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* MOBILE STACK */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }

  .contact-map iframe {
    min-height: 260px;
  }
}
/* ================= FOOTER ================= */
footer {
  background: #020617;
  padding: 22px 0;
  text-align: center;
  color: #94a3b8;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  nav {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: #020617;
    flex-direction: column;
    display: none;
  }

  nav.show { display: flex; }

  nav a {
    margin: 12px 0;
    font-size: 1.05rem;
  }
}
/* EXTREME LIGHT BLUE (ICE BLUE) */
#contact a, 
#contact a:visited, 
#about a, 
#about a:visited {
    color: #bae6fd !important; 
    text-decoration: none !important;
    font-weight: 600;
}

#contact a:hover, 
#about a:hover {
    color: #38bdf8 !important; /* Your signature blue on hover */
    text-decoration: underline !important;
}
/* ================= IMAGE SLIDER ================= */
.image-slider {
  position: relative;
  overflow: hidden;
}

.image-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease;
}

/* KEEP IMAGE SIZE EXACTLY AS BEFORE */
.image-box {
  min-width: calc(25% - 15px);
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ARROWS */
.img-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(2,6,23,0.7);
  border: none;
  color: #38bdf8;
  font-size: 24px;
  padding: 10px 14px;
  cursor: pointer;
  z-index: 5;
  border-radius: 50%;
}

.img-arrow.left { left: 10px; }
.img-arrow.right { right: 10px; }

/* MOBILE — STILL SMALL */
@media (max-width: 768px) {
  .image-box {
    min-width: 80%;
  }
}







/* IMAGE POP OUT STRONGER 3D EFFECT */
.image-slider {
  perspective: 1200px; /* gives 3D depth */
  /*overflow: visible;*/
}

.image-box {
  transition: transform 0.45s ease, box-shadow 0.45s ease, z-index 0.3s;
  cursor: pointer;
  position: relative;
}

.image-box.active-pop {
  transform: scale(1.2) translateY(-6px) translateZ(60px);
  z-index: 20;
  box-shadow: 0 18px 45px rgba(56,189,248,0.45);
}

/* Lightbox overlay */
.image-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15,23,42,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popped image */
.image-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(56,189,248,0.5);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.image-overlay img.show {
  transform: scale(1);
}


/* Lightbox arrows */
.image-overlay .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: #38bdf8;
  background: rgba(2,6,23,0.7);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  user-select: none;
  z-index: 10000;
  transition: background 0.3s ease;
}

.image-overlay .arrow:hover {
  background: rgba(2,6,23,0.9);
}

.image-overlay .arrow.left { left: 20px; }
.image-overlay .arrow.right { right: 20px; }


/* VIDEO LIGHTBOX */
.image-overlay video {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(56,189,248,0.5);
  background: black;
}

/* ================= SERVICE POPUP ================= */
.service-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.service-popup {
  background: #020617;
  max-width: 520px;
  width: 90%;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(56,189,248,0.45);
  animation: popIn 0.35s ease;
}

.service-popup h3 {
  color: #38bdf8;
  margin-bottom: 14px;
}

.service-popup p {
  line-height: 1.7;
  color: #d1d5db;
  margin-bottom: 12px;
}

@keyframes popIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* BUTTON TEXT SWITCH ANIMATION */
#videoBtn {
  position: relative;
  overflow: hidden;
}

#videoBtn .btn-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  opacity: 1;
  transition: opacity 0.6s ease, transform 0.6s ease;
  white-space: nowrap;
}

#videoBtn .btn-text.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

