/* FONTS */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;900&family=Space+Grotesk:wght@400;500;600;700;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Space Grotesk", "Inter", sans-serif;
  background: #fafafa;
  overflow-x: hidden; /* FIX SCROLL */
}

/* HIDE SCROLLBAR */
::-webkit-scrollbar {
  display: none;
}

/* NAVBAR */
/* NAVBAR */
/* NAVBAR */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #f5f5f5;
  border-bottom: 1px solid #e5e5e5;
  z-index: 999;
  transition: 0.3s;
}

.nav.scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
}

/* CONTAINER */
.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #111;
}

/* LEFT */
.logo-left {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.kd {
  font-size: 20px;
  font-weight: 800;
}

.since {
  font-size: 10px;
  letter-spacing: 2px;
  color: #777;
  margin-top: 3px;
  text-transform: uppercase;
}

/* DIVIDER */
.divider {
  width: 1px;
  height: 28px;
  background: #ccc;
}

/* RIGHT */
.logo-right {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-right span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111;
  position: relative;
}

/* UNDERLINE HOVER */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #111;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover::after {
  width: 100%;
}

/* BUTTON */
.nav-btn {
  background: #111;
  color: #fff !important;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* MOBILE */
.menu-btn {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px 0;
  transform: translateY(-120%);
  transition: 0.3s;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu a {
  text-decoration: none;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .menu-btn {
    display: block;
  }
}


/* HERO */

.hero-exact {
  position: relative;
  min-height: 100vh;
  background: #fafafa;
  display: flex;
  align-items: center;
  padding-top: 50px;
  overflow: hidden;
}

/* BACKGROUND BLOBS */
.hero-bg .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.blob1 {
  width: 70vw;
  height: 70vw;
  top: -20%;
  right: -10%;
  background: rgba(200,200,200,0.4);
}

.blob2 {
  width: 60vw;
  height: 60vw;
  bottom: -20%;
  left: -10%;
  background: rgba(180,180,180,0.3);
}

/* WRAP */
.hero-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.hero-left {
  padding-top: 40px;
}

/* BADGE */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 25px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {opacity:1}
  50% {opacity:0.4}
  100% {opacity:1}
}

/* HEADING */
.hero-left h1 {
  font-size: 84px;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: #111;
}

.hero-left .gradient {
  background: linear-gradient(to right, #111, #777);
  -webkit-background-clip: text;
  color: transparent;
}

/* TEXT */
.hero-left p {
  margin-top: 25px;
  font-size: 23px;
  color: #666;
  max-width: 450px;
  line-height: 1.6;
}

/* BUTTONS */
.hero-buttons {
  margin-top: 35px;
  display: flex;
  gap: 15px;
}

/* DARK BUTTON */
.btn-dark {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #111;
  color: #fff;
  padding: 14px 28px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.3s;
}

.btn-dark:hover {
  background: #333;
}

/* LIGHT BUTTON */
.btn-light {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #111;
  color: #111;
  padding: 14px 28px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.3s;
}

.btn-light:hover {
  background: #f3f3f3;
}

/* RIGHT IMAGE */
.hero-right {
  position: relative;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

/* CARD */
.hero-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* CARD TEXT */
.hero-card p {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #777;
}

.hero-card h3 {
  font-size: 22px;
  font-weight: 900;
  color: #111;
}

/* AVATARS */
.avatars {
  display: flex;
}

.avatars img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -12px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-wrap {
    grid-template-columns: 1fr;
  }

  .hero-left h1 {
    font-size: 42px;
  }

  .hero-right {
    height: 400px;
  }
}
/* ABOUT SECTION */
/* =========================
   ABOUT SECTION (FIXED)
========================= */

.about {
  padding: 100px 20px;
  background: #fafafa;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto; /* 🔥 CENTER FIX */
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.about-left {
  width: 100%;
}

.about-left h2 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.about-desc {
  color: #666;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.6;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.icon {
  width: 50px;
  height: 50px;
  background: #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RIGHT IMAGE */
.about-right {
  position: relative;
}

.about-right img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-left h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .features {
    grid-template-columns: 1fr;
  }
}
/* SERVICES */
.services {
  background: #0d0d0d;
  color: white;
  padding: 120px 60px;
}

.services-container {
  max-width: 1200px;
  margin: auto;
}

/* TOP */
.services-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
}

.tag {
  font-size: 12px;
  letter-spacing: 3px;
  color: #777;
  margin-bottom: 10px;
}

.services-top h2 {
  font-size: 48px;
  font-weight: 900;
}

.services-top h2 span {
  color: #555;
}

.services-desc {
  max-width: 400px;
  color: #aaa;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.service-card {
  position: relative;
  background: #1a1a1a;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #222;
  transition: 0.4s;
  overflow: hidden;
}

.service-card:hover {
  background: white;
  color: black;
  transform: translateY(-8px);
}

/* NUMBER */
.number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 60px;
  color: #222;
  font-weight: 900;
  transition: 0.4s;
}

.service-card:hover .number {
  color: #ddd;
}

/* ICON */
.service-card .icon {
  margin-bottom: 20px;
}

.service-card svg {
  width: 40px;
  height: 40px;
  stroke: #aaa;
  transition: 0.4s;
}

.service-card:hover svg {
  stroke: black;
}

/* TEXT */
.service-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.service-card p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
}

.service-card:hover p {
  color: #555;
}

/* CTA */
.service-cta {
  background: linear-gradient(135deg, #1a1a1a, #111);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid #222;
}

.service-cta h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.service-cta p {
  color: #aaa;
  margin-bottom: 20px;
}

.service-cta a {
  background: white;
  color: black;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 80px 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-top h2 {
    font-size: 32px;
  }
}
/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonials {
  padding: 120px 0;
  background: #fafafa;
  position: relative;
  overflow: hidden;
}

/* TOP BORDER */
.testimonials .top-line {
  height: 1px;
  background: linear-gradient(to right, transparent, #ddd, transparent);
  margin-bottom: 60px;
}

/* CONTAINER (SCOPED ✅) */
.testimonial-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* HEADING */
.testimonial-heading {
  text-align: center;
  margin-bottom: 80px;
}

.testimonial-heading h2 {
  font-size: 12px;
  letter-spacing: 3px;
  color: #777;
  margin-bottom: 10px;
}

.testimonial-heading h3 {
  font-size: 48px;
  font-weight: 900;
}

/* =========================
   SLIDER
========================= */

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

/* TRACK */
.track {
  display: flex;
  gap: 30px;
  width: max-content;
  align-items: stretch;
}

/* =========================
   CARD
========================= */

.testimonial-card {
  width: 340px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #eee;
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* QUOTE ICON */
.testimonial-card .quote {
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 0.08;
}

/* STARS */
.testimonial-card .stars {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.testimonial-card .stars svg {
  width: 16px;
  height: 16px;
  fill: black;
}

/* TEXT */
.testimonial-card p {
  color: #555;
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* USER */
.testimonial-card .user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card .avatar {
  width: 40px;
  height: 40px;
  background: black;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   FADE EFFECT
========================= */

.fade-left,
.fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 10;
  pointer-events: none;
}

.fade-left {
  left: 0;
  background: linear-gradient(to right, #fafafa, transparent);
}

.fade-right {
  right: 0;
  background: linear-gradient(to left, #fafafa, transparent);
}

/* =========================
   BUTTON
========================= */

.testimonial-btn {
  text-align: center;
  margin-top: 60px;
}

.testimonial-btn a {
  border: 2px solid black;
  padding: 14px 36px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  transition: 0.3s;
}

.testimonial-btn a:hover {
  background: black;
  color: white;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .testimonial-card {
    width: 300px;
  }
}

@media (max-width: 768px) {
  .testimonial-container {
    padding: 0 20px;
  }

  .testimonial-heading h3 {
    font-size: 32px;
  }

  .testimonial-card {
    width: 260px;
  }

  .fade-left,
  .fade-right {
    width: 60px;
  }
}
/* ===== ABOUT SECTION ===== */
.about {
  padding: 100px 20px;
  background: #fafafa;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.about-tag {
  font-size: 12px;
  letter-spacing: 3px;
  color: #888;
  margin-bottom: 10px;
}

.about-left h2 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.about-desc {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.icon {
  width: 50px;
  height: 50px;
  background: #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon svg {
  width: 22px;
  height: 22px;
}

/* RIGHT IMAGE */
.about-right {
  position: relative;
}

.about-right img {
  width: 100%;
  height:550px;
  border-radius: 30px;
  display: block;
  filter: grayscale(100%);
  transition: 0.5s;
}

.about-right:hover img {
  filter: grayscale(0%);
}

/* BADGE */
.year-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: black;
  color: white;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(12deg);
}

.year-badge span {
  font-size: 12px;
}

.year-badge strong {
  font-size: 22px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-left h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .features {
    grid-template-columns: 1fr;
  }
}
/* ===== LOCATION SECTION ===== */
.loc-section {
  padding: 100px 20px;
  background: #fafafa;
}

.loc-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADING */
.loc-heading {
  text-align: center;
  margin-bottom: 60px;
}

.loc-heading p {
  font-size: 12px;
  letter-spacing: 3px;
  color: #888;
  margin-bottom: 10px;
}

.loc-heading h2 {
  font-size: 42px;
  font-weight: 900;
}

/* GRID */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.loc-card {
  background: #f3f3f3;
  padding: 30px;
  border-radius: 20px;
  transition: all 0.4s ease;
  cursor: pointer;
}

/* HOVER EFFECT (MAIN FIX 🔥) */
.loc-card:hover {
  background: #111;
  transform: translateY(-6px);
}

/* ICON TOP */
.loc-icon {
  width: 50px;
  height: 50px;
  background: #e5e5e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.loc-icon svg {
  width: 20px;
}

/* TEXT */
.loc-card h3 {
  margin-bottom: 15px;
  transition: 0.3s;
}

/* INFO ROW */
.loc-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #555;
  font-size: 14px;
  transition: 0.3s;
}

.loc-info svg {
  width: 16px;
}

/* LINK */
.loc-card a {
  display: inline-block;
  margin-top: 15px;
  text-decoration: none;
  font-weight: bold;
  color: black;
  transition: 0.3s;
}

/* HOVER TEXT COLOR CHANGE */
.loc-card:hover h3,
.loc-card:hover .loc-info,
.loc-card:hover a {
  color: white;
}

.loc-card:hover .loc-icon {
  background: #222;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .loc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .loc-grid {
    grid-template-columns: 1fr;
  }

  .loc-heading h2 {
    font-size: 30px;
  }
}
/* ===== FOOTER ===== */
.footer {
  background: #050505;
  color: #ccc;
  padding: 80px 20px 30px;
}

/* CONTAINER */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

/* LEFT */
.footer-left h2 {
  font-size: 32px;
  color: white;
}

.footer-left span {
  font-size: 12px;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 20px;
}

.footer-left p {
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 400px;
}

/* ===== ICON FIX (IMPORTANT 🔥) ===== */
i[data-lucide] {
  display: inline-flex;
}

i[data-lucide] svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

/* SOCIAL ICONS */
.socials {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.socials a {
  width: 45px;
  height: 45px;
  background: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

/* ICON COLOR */
.socials a svg {
  stroke: white;
}

/* HOVER */
.socials a:hover {
  background: white;
  transform: translateY(-3px);
}

.socials a:hover svg {
  stroke: black;
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
  color: white;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: white;
}

/* CONTACT */
.footer-contact p {
  margin-bottom: 10px;
  color: #aaa;
}

/* ===== BOTTOM FIX ===== */
.footer-bottom {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid #111;

  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* TEXT */
.footer-bottom p {
  font-size: 14px;
  color: #777;
}

/* LINKS */
.footer-bottom-links {
  display: flex;
  gap: 30px;
}

.footer-bottom-links a {
  color: #777;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-bottom-links a:hover {
  color: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
/* SOCIAL ICONS (FONT AWESOME) */
.socials {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.socials a {
  width: 45px;
  height: 45px;
  background: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
}

/* HOVER */
.socials a:hover {
  background: white;
  color: black;
  transform: translateY(-3px);
}
/* REMOVE UNDERLINE */
.socials a {
  text-decoration: none;
}
/* APPLE NAV EFFECT */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(245,245,245,0.7);
  backdrop-filter: blur(0px);
  transition: all 0.4s ease;
  z-index: 999;
}

/* ON SCROLL */
.nav.scrolled {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* NORMAL PADDING */
.nav-container {
  padding: 20px 20px;
  transition: 0.3s;
}

.nav.scrolled .nav-container {
  padding: 12px 20px;
}
/* APPLE NAV EFFECT */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(245,245,245,0.7);
  backdrop-filter: blur(0px);
  transition: all 0.4s ease;
  z-index: 999;
}

/* ON SCROLL */
.nav.scrolled {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* NORMAL PADDING */
.nav-container {
  padding: 20px 20px;
  transition: 0.3s;
}

.nav.scrolled .nav-container {
  padding: 12px 20px;
}
.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);

  background: white;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;

  z-index: 10000; /* 🔥 FIX */

  transform: translateY(-120%);
  transition: 0.3s ease;
}
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(245,245,245,0.7);
  backdrop-filter: blur(0px);
  transition: all 0.4s ease;
  z-index: 11000; /* 🔥 ABOVE MENU */
}
/* MOBILE MENU LINKS FIX */
.mobile-menu a {
  text-decoration: none;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  color: #111; /* 🔥 CHANGE FROM BLUE TO BLACK */
  transition: 0.3s;
}

/* HOVER EFFECT (optional but premium) */
.mobile-menu a:hover {
  color: #555;
}
/* MENU BUTTON */
.menu-btn {
  width: 28px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 12000;
}

.menu-btn span {
  height: 3px;
  width: 100%;
  background: #111;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ANIMATION TO X */
.menu-btn.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
/* HIDE MENU BUTTON ON DESKTOP */
.menu-btn {
  display: none;
}

/* SHOW ONLY ON MOBILE */
@media (max-width: 768px) {
  .menu-btn {
    display: flex;
  }
}
@media (max-width: 1024px) {
  .menu-btn {
    display: flex;
  }

  .nav-links {
    display: none;
  }
}
/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;

  width: 55px;
  height: 55px;

  background: #25D366;
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  font-size: 26px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 9999;

  text-decoration: none;
  transition: 0.3s ease;
}

/* HOVER EFFECT */
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}