* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: linear-gradient(135deg, #0b1f2a, #0f172a);
  color: white;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;        /* vertical centering */
  justify-content: space-between;

  padding: 8px 8%;            /* 🔥 reduced top & bottom */
  height: 70px;               /* 🔥 controls ribbon height */

  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}


.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: white;
}

.nav .cta {
  background: #4fd1c5;
  padding: 10px 18px;
  border-radius: 30px;
  color: #0f172a;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 8%;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 4rem;
}

.hero span {
  color: #4fd1c5;
}

.hero-buttons {
  margin-top: 30px;
}

.btn-primary, .btn-secondary {
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  margin-right: 15px;
}

.btn-primary {
  background: #4fd1c5;
  color: #0f172a;
}

.btn-secondary {
  border: 1px solid #4fd1c5;
  color: #4fd1c5;
}

/* SERVICES */
.services {
  padding: 120px 8%;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.service-card {
  padding: 30px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(79,209,197,0.15);
}

/* TRUST */
.trust {
  padding: 100px 8%;
  display: flex;
  justify-content: center;
}

.circle-highlight {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 3px solid #4fd1c5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* CONTACT */
.contact {
  padding: 100px 8%;
  text-align: center;
}

.contact-box {
  margin-top: 30px;
  font-size: 1.2rem;
}

footer {
  padding: 30px;
  text-align: center;
  color: #94a3b8;
}

.drop {
  position: absolute;
  top: -20px;
  width: 6px;
  height: 6px;
  background: #7dd3fc;
  border-radius: 50%;
  animation: fall linear infinite;
}

@keyframes fall {
  to {
    transform: translateY(110vh);
    opacity: 0;
  }
}

.logo img {
  height: 105px;          /* Adjust if needed */
  width: auto;
  object-fit: contain;
  cursor: pointer;
  aspect-ratio: auto;
  transform: translateY(3px); /* 🔥 moves logo down */
}

/* Mobile friendly */
@media (max-width: 768px) {
  .logo img {
    height: 82px;
  }
}

/* GALLERY */
.gallery {
  padding: 120px 8%;
  text-align: center;
}

.gallery h2 {
  font-size: 2.6rem;
  margin-bottom: 10px;
}

.gallery-sub {
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto 50px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,23,42,0.9),
    rgba(15,23,42,0.1)
  );
  display: flex;
  align-items: flex-end;
  padding: 20px;
  font-size: 1.1rem;
  opacity: 0;
  transition: 0.4s;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-heading {
  margin: 60px 0 25px;
  font-size: 1.6rem;
  color: #4fd1c5;
  text-align: center;
}

.hero-tagline {
  max-width: 520px;
  margin-top: 15px;
  font-size: 1.15rem;
  color: #cbd5e1;
}

.hero-trust {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.95rem;
  color: #7dd3fc;
}

.vision-mission {
  padding: 100px 8%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  text-align: left;
}

.vm-box {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(8px);
}

.vm-box h3 {
  color: #4fd1c5;
  margin-bottom: 15px;
}


.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.trust-card {
  background: rgba(255,255,255,0.05);
  padding: 35px;
  border-radius: 20px;
  text-align: center;
}

.map-section {
  padding: 120px 8%;
  text-align: center;
}

.map-container {
  margin-top: 40px;
  border-radius: 20px;
  overflow: hidden;
  height: 420px;
  box-shadow: 0 0 30px rgba(0,0,0,0.3);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.quote {
  padding: 120px 8%;
  text-align: center;
}

.quote-form {
  max-width: 520px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quote-form input,
.quote-form textarea {
  padding: 14px 18px;
  border-radius: 12px;
  border: none;
  outline: none;
  font-size: 1rem;
  background: rgba(255,255,255,0.08);
  color: white;
}

.quote-form textarea {
  min-height: 120px;
  resize: vertical;
}

.quote-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

@media (max-width: 600px) {
  .quote-buttons {
    flex-direction: column;
  }
}

.email-note {
  margin-top: 15px;
  font-size: 0.85rem;
  color: #94a3b8;
}

/* =========================
   MOBILE NAV – FINAL (HAMBURGER)
========================= */

@media (max-width: 768px) {
  .nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between; /* 🔥 key */
    height: 70px;
    padding: 0 16px;
  }

  .logo {
    flex: 0 0 auto;
  }

  .logo img {
    height: 60px;
    transform: none;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
    font-size: 2rem;
    line-height: 1;
  }

  /* Hide menu by default */
  .nav nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(10px);
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 22px 0;
    gap: 18px;
    z-index: 999;
  }

  .nav nav.active {
    display: flex;
  }

  .nav nav a {
    font-size: 1.1rem;
    margin: 0;
  }
}



/* =========================
   MOBILE HERO BUTTON FIX
========================= */

@media (max-width: 768px) {
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 140px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }
}

/* =========================
   HAMBURGER MENU
========================= */

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
}

/* Mobile menu */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    padding: 12px 5%;
  }

  .nav nav {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 18px;
  }

  .nav nav.active {
    display: flex;
  }

  .nav nav a {
    margin: 0;
    font-size: 1.1rem;
  }
}







