/* ========================
   GLOBAL
======================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #0f172a;
  line-height: 1.6;
}

/* ========================
   COMMON CONTAINERS
======================== */

.footer-container {
  max-width: 1100px;
  margin: auto;
}

/* ========================
   NAVBAR
======================== */
.navbar {
  position: fixed;
  top: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1000;
}

.nav-container {
  width: 70%;
  max-width: 800px;
  height: 65px;
  padding: 8px 18px;

  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border-radius: 50px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  transition: all 0.35s ease;
}

.navbar.scrolled .nav-container {
  background: rgba(255,255,255,0.85);
  padding: 6px 16px;
  height: 55px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* LOGO CONTAINER */
.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

/* LOGO IMAGE */
.logo img {
  height: 38px;   /* key control */
  width: auto;
  object-fit: contain;

  /* subtle premium feel */
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));

  transition: 0.3s ease;
}

/* HOVER (very subtle, not flashy) */
.logo img:hover {
  transform: scale(1.05);
}
/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 6px;
  list-style: none; /* IMPORTANT: removes dots */
  position: relative;
}

.nav-links a {
  text-decoration: none;
}

/* NAV ITEM */
.nav-item {
  position: relative;
  z-index: 1;

  padding: 6px 12px;
  letter-spacing: 0.3px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: #333;

  transition:
    background 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.3s ease,
    transform 0.2s ease;
}

/* ACTIVE TEXT (IMPORTANT FIX) */
.nav-item.active {
  color: white;
}

/* HOVER */
.nav-item:hover:not(.active) {
  background: rgba(255,255,255,0.6);
}

/* NAV PILL */
.nav-pill {
  position: absolute;
  height: 32px;
  border-radius: 999px;
  background: #2563eb;

  top: 50%;
  transform: translateY(-50%);

  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
}

/* MOBILE MENU */
.mobile-menu ul {
  padding: 20px;
}

.mobile-menu li {
  margin-bottom: 6px;
}

.mobile-menu .nav-item {
  display: block;
  padding: 10px 16px;
  font-size: 16px;
  color: #0f172a;
}

.mobile-menu .nav-item.active {
  background: #2563eb;
  color: white;
  border-radius: 12px;
}

.mobile-menu .nav-item:hover {
  background: #e2e8f0;
}
.mobile-menu::-webkit-scrollbar {
  width: 4px;
}

.mobile-menu::-webkit-scrollbar-thumb {
  background: #cbd5f5;
  border-radius: 10px;
}
/* ========================
   FOOTER
======================== */
.footer {
  background: linear-gradient(180deg, #020617, #020617);
  color: #cbd5f5;
  padding: 65px 20px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.3fr;
  gap: 60px;
}

/* COLUMN */
.footer-col {
  display: flex;
  flex-direction: column;
}

/* LOGO */
.footer-logo {
  color: #38bdf8;
  font-size: 26px;
  margin-bottom: 18px;
}

/* DESCRIPTION */
.footer-desc {
  font-size: 15.5px;
  line-height: 1.9;
  color: #94a3b8;
}

/* TITLE */
.footer-title {
  color: #3b82f6;
  font-size: 14px;
  letter-spacing: 2px;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

/* LINKS (NO DOTS ISSUE FIXED) */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cbd5f5;
  text-decoration: none;
  transition: 0.25s ease;
}

.footer-links a:hover {
  color: #3b82f6;
  transform: translateX(3px);
}

/* CONTACT */
.footer-contact-group {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.footer-contact-item svg {
  width: 20px;
  height: 20px;

  stroke: #60a5fa;
  stroke-width: 2.2;

  margin-top: 4px;

  /* ✅ CONTROLLED GLOW */
  filter:
    drop-shadow(0 0 4px rgba(96,165,250,0.6))
    drop-shadow(0 0 8px rgba(59,130,246,0.4));

  transition: 0.25s ease;
}

/* hover = premium feel */
.footer-contact-item:hover svg {
  transform: scale(1.1);

  filter:
    drop-shadow(0 0 6px rgba(96,165,250,0.8))
    drop-shadow(0 0 12px rgba(59,130,246,0.6));
}
.footer-contact-item span {
  font-size: 15px;
  line-height: 1.7;
  color: #cbd5f5;
}

/* META */
.footer-meta-box {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: #f2f3f5;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 45px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 14px;
  color: #eef1f4;
}
.footer-logo img {
  height: 42px;
  object-fit: contain;
  margin-bottom: 14px;

  /* subtle glow */
  filter: drop-shadow(0 0 8px rgba(56,189,248,0.35));
}
/* ========================
   CURSOR
======================== */
/* ========================
   PREMIUM CURSOR GLOW
======================== */

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;

  width: 160px;
  height: 160px;

  border-radius: 50%;
  pointer-events: none;

  z-index: 999999;

  transform: translate(-50%, -50%);

  /* 🔥 MAIN GLOW */
  background: radial-gradient(
    circle,
    rgba(59,130,246,0.25) 0%,
    rgba(59,130,246,0.15) 30%,
    rgba(59,130,246,0.08) 50%,
    transparent 70%
  );

  filter: blur(20px);
}

/* INNER CORE (bright center) */
.cursor-glow::after {
  content: "";
  position: absolute;

  width: 14px;
  height: 14px;

  background: #3b82f6;

  border-radius: 50%;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  /* 🔥 SHARP GLOW */
  box-shadow:
    0 0 10px rgba(59,130,246,0.9),
    0 0 20px rgba(59,130,246,0.7),
    0 0 35px rgba(59,130,246,0.5);
}

/* OPTIONAL: OUTER RING (very subtle premium touch) */
.cursor-glow::before {
  content: "";
  position: absolute;

  width: 100%;
  height: 100%;

  border-radius: 50%;

  border: 1px solid rgba(59,130,246,0.15);

  opacity: 0.6;
}
.touch-glow {
  position: fixed;
  width: 80px;
  height: 80px;

  border-radius: 50%;
  pointer-events: none;

  transform: translate(-50%, -50%);

  background: radial-gradient(
    circle,
    rgba(59,130,246,0.4),
    transparent 70%
  );

  animation: fadeOut 0.4s ease forwards;
  z-index: 999999;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
  }
}
/* ================= RESPONSIVE (GLOBAL) ================= */

@media (max-width: 992px) {

  /* NAVBAR */
  .nav-container {
    width: 90%;
    max-width: 1000px;
  }

  /* FOOTER */
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  /* NAVBAR */
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .nav-container {
    width: 92%;
    height: 60px;
    transition: height 0.3s ease, padding 0.3s ease;
    backdrop-filter: none;
  }

  .navbar.scrolled .nav-container {
    height: 48px;
  }

  /* MOBILE MENU */
  .mobile-menu {
    display: block;
    position: fixed;

    top: -120%;
    left: 50%;
    transform: translateX(-50%);

    width: 92%;
    padding: 18px;
    border-radius: 16px;

    background: #ffffff;
    backdrop-filter: none;

    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);

    z-index: 9999;

    transition: all 0.35s ease;
  }

  .mobile-menu.active {
    top: 65px;
  }

  .mobile-menu a {
    text-decoration: none;
    color: #0f172a;

    display: block;
    padding: 10px 12px;

    border-radius: 10px;

    transition: all 0.25s ease;
  }

  .mobile-menu a:hover {
    background: #f1f5f9;
    color: #2563eb;
  }

  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  /* COMMON UI */
  .nav-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .prev { left: 10px; }
  .next { right: 10px; }

  .dots {
    bottom: 12px;
  }

  .dot {
    width: 6px;
    height: 6px;
  }

  .dot.active {
    width: 14px;
  }

  .cursor-glow {
    display: none;
  }

  /* CTA */
  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .cta-content h2 {
    font-size: 26px;
  }
  /* FOOTER */
  .footer-container {
    display: flex;
    flex-direction: column;
    gap: 30px;

    text-align: left;
  }

  .footer-container > div {
    width: 100%;
  }

  .footer-desc {
    max-width: 100%;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .footer-contact {
    margin-bottom: 8px;
  }

  .footer-bottom {
    text-align: center;
    margin-top: 30px;
  }
}

@media (max-width: 480px) {

  /* (No additional global rules found here in your file) */

}