* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* 
Background-Curson-Animation-style */

body {
  font-family: "Inter", "Helvetica Neue", sans-serif;
  /* overflow: hidden; */
  background-color: #050505;
  color: white;
  height: 100%;
}

.gradient-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.gradient-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.sphere-1 {
  width: 45vw;
  height: 45vw;
  background: linear-gradient(
    40deg,
    rgba(236, 104, 32, 0.8),
    rgba(255, 102, 0, 0.4)
  );
  top: -10%;
  left: -10%;
  animation: float-1 15s ease-in-out infinite alternate;
}

.sphere-2 {
  width: 45vw;
  height: 45vw;
  background: linear-gradient(
    240deg,
    rgba(72, 0, 255, 0.8),
    rgba(0, 183, 255, 0.4)
  );
  bottom: -20%;
  right: -10%;
  animation: float-2 18s ease-in-out infinite alternate;
}

.sphere-3 {
  width: 30vw;
  height: 30vw;
  background: linear-gradient(
    120deg,
    rgba(133, 89, 255, 0.5),
    rgba(98, 216, 249, 0.3)
  );
  top: 60%;
  left: 20%;
  animation: float-3 20s ease-in-out infinite alternate;
}

.noise-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  z-index: 5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

@keyframes float-1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(10%, 10%) scale(1.1);
  }
}

@keyframes float-2 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-10%, -5%) scale(1.15);
  }
}

@keyframes float-3 {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  100% {
    transform: translate(-5%, 10%) scale(1.05);
    opacity: 0.6;
  }
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 40px 40px;
  background-image: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  z-index: 2;
}

.glow {
  position: absolute;
  width: 40vw;
  height: 40vh;
  background: radial-gradient(circle, rgba(72, 0, 255, 0.15), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  animation: pulse 8s infinite alternate;
  filter: blur(30px);
}

@keyframes pulse {
  0% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(0.9);
  }
  100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: white;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}

/* Conteny-style */

/* <--------------Navbar-----------------> */

/* h1 {
  position: relative;
  z-index: 10;
} */

.nav-logo {
  height: 45px; /* Adjust size */
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .nav-logo {
    height: 38px;
  }
}

.custom-nav {
  /* background: transparent !important; */
  background: #32285a !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.custom-nav .nav-link,
.custom-nav .navbar-brand {
  color: white !important;
}

.custom-nav .nav-link {
  background: linear-gradient(90deg, #4ef1ff, #d347ff);
  -webkit-background-clip: text;
  color: white !important;
  font-weight: 600;
  transition: 0.3s;
}

.custom-nav .nav-link:hover {
  color: #ec6820 !important;

  /* color: white !important;
  background: linear-gradient(90deg, #4ef1ff, #d347ff);
  padding: 6px 14px;
  border-radius: 8px; */
}

/* DROPDOWN MENU – MATCH NAVBAR BACKGROUND */
.navbar .dropdown-menu {
  background: rgba(16, 16, 17, 0.39) !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  padding: 8px 0;
}

/* DROPDOWN ITEMS TEXT – SAME AS NAVBAR GRADIENT */
.navbar .dropdown-menu .dropdown-item {
  background: linear-gradient(90deg, #4ef1ff, #d347ff);
  -webkit-background-clip: text;
  color: white !important;
  font-weight: 600;
  padding: 10px 20px;
  transition: 0.3s ease;
}

/* DROPDOWN ITEM HOVER EFFECT */
.navbar .dropdown-menu .dropdown-item:hover {
  background: linear-gradient(90deg, #4ef1ff, #d347ff);
  color: white !important;
  border-radius: 8px;
  padding-left: 26px;
}

/* Dropdown opens on hover (desktop only) */
@media (min-width: 992px) {
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block !important;
    opacity: 1;
    visibility: visible;
  }
}

/* AUTO OPEN DROPDOWN ON MOBILE */
@media (max-width: 991px) {
  .navbar-nav .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    transform: none !important;
    background-color: transparent !important;
    border: none;
  }

  /* Remove bootstrap hide animation gap */
  .dropdown-toggle::after {
    display: none;
  }
}

/* hamburger menu  */
/* Remove Bootstrap default icon */
.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Custom hamburger lines */
.custom-toggler {
  border: none;
  background: transparent;
  padding: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  z-index: 9999;
}

.custom-toggler div {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 5px;
  transition: 0.35s ease;
}

/* When active → CROSS */
.custom-toggler.active .bar1 {
  transform: rotate(45deg) translate(6px, 6px);
}

.custom-toggler.active .bar2 {
  opacity: 0;
}

.custom-toggler.active .bar3 {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Enquiry Button in Navbar */
.enquiry-btn {
  background: linear-gradient(90deg, #734eff, #ec6820);

  color: white !important;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
  display: inline-block;
  text-decoration: none;
  transition: 0.3s ease;
  /* margin-left: 10px; */
  cursor: pointer;
}

.enquiry-btn:hover {
  background: linear-gradient(90deg, #734eff, #ff4747);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(78, 241, 255, 0.5);
}

/* enquiry button response  */
/* FULL SCREEN POPUP OVERLAY */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.7);
  display: none; /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 2000;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-30px);
    opacity: 0;
  }
}

/* When closing */
.popup-overlay.closing {
  animation: fadeOut 0.3s ease forwards;
}

.popup-content.closing {
  animation: slideUp 0.3s ease forwards;
}

/* POPUP BOX */
.popup-content {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 420px;
  padding: 10px 20px 10px 20px;
  border-radius: 18px;
  position: relative;
  box-shadow: 0 0 20px rgba(78, 241, 255, 0.4);
  animation: slideDown 0.35s ease;
}

@media (max-width: 768px) {
  .popup-content {
    margin: 1rem;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* CLOSE BUTTON */
.close-popup {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
}

.close-popup:hover {
  color: #4ef1ff;
}

/* FORM LABEL */
.popup-form label {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-top: 12px;
}

/* INPUTS */
.popup-form input,
.popup-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
}

/* BUTTON */
.popup-submit-btn {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(90deg, #4ef1ff, #d347ff);
  font-weight: 700;
  color: #000;
  transition: 0.3s;
}

.popup-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(78, 241, 255, 0.5);
}

/* Floating text box */
.floating-text {
  position: fixed;
  right: 96px; /* Distance from right side */
  bottom: 23px; /* Align with button */
  background: #ffffff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  color: #000;
  font-weight: 500;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.15);
  z-index: 998;
  max-width: 160px;
  line-height: 1.2;
}

/* Floating Enquiry Button */
.floating-btn {
  position: fixed;
  right: 20px;
  bottom: 25px;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  z-index: 999;
}

.floating-btn:hover {
  background: #075e54;
  transform: translateY(-3px);
}

/* CONTACT SECTION */
.contact-section {
  position: relative;
  padding: 70px 0;
  z-index: 10;
}

.contact-header-text h2 {
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(90deg, #4ef1ff, #d347ff);
  -webkit-background-clip: text;
  color: transparent;
}

.contact-header-text p {
  max-width: 650px;
  margin: 10px auto 40px;
  color: #cccccc;
  font-size: 16px;
  line-height: 1.5;
}

/* GLASS CARD */
.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border-radius: 22px;
  padding: 50px;
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.35);
  position: relative;
}

/* INPUT FIELD */
.input-box {
  position: relative;
  width: 100%;
}

/* Top label */
.top-label {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #e0e0e0;
}

/* Input style (keep your existing one) */
.input-box input,
.input-box textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding: 12px 4px;
  color: #ffffff;
  font-size: 16px;
  transition: 0.3s;
}

.input-box input::placeholder,
.input-box textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
}

.input-box textarea {
  resize: none;
}

.input-box input:focus,
.input-box textarea:focus {
  outline: none;
  border-bottom-color: #4ef1ff;
  box-shadow: 0 0 10px rgba(78, 241, 255, 0.4);
}

/* Floating Label */
/* .input-box label {
  position: absolute;
  left: 4px;
  top: 12px;
  font-size: 16px;
  color: #bbbbbb;
  pointer-events: none;
  transition: 0.3s ease;
}

.input-box input:focus + label,
.input-box input:not(:placeholder-shown) + label,
.input-box textarea:focus + label,
.input-box textarea:not(:placeholder-shown) + label {
  top: -10px;
  font-size: 12px;
  color: #4ef1ff;
} */

/* Submit Button */
.btn-contact-submit {
  padding: 12px 40px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(90deg, #4ef1ff, #d347ff);
  color: #000;
  font-weight: 700;
  letter-spacing: 0.8px;
  transition: 0.3s ease-in-out;
}

.btn-contact-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(78, 241, 255, 0.4);
}

/* Required star */
.popup-form label::after {
  content: " *";
  color: red;
  font-weight: bold;
}

/* =================== FOOTER =================== */

.site-footer {
  padding: 75px 0 12px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 10;
}

.footer-logo {
  width: 180px;
  filter: drop-shadow(0 3px 10px rgba(255, 255, 255, 0.15));
}

.footer-desc {
  color: #ccc;
  line-height: 1.6;
  font-size: 0.95rem;
  max-width: 350px;
}

/* footer-social  */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 18px; /* spacing between icons */
}

.footer-socials a svg {
  width: 26px;
  height: 26px;
  fill: #dcdcdc;
  transition: 0.3s;
  opacity: 0.85;
}

.footer-socials a:hover svg {
  transform: translateY(-4px);
  opacity: 1;
  filter: drop-shadow(0 0 6px #4ef1ff);
}

different colors per icon */ .icon-twitter:hover {
  fill: #1da1f2;
}
.icon-facebook:hover {
  fill: #1877f2;
}
.icon-instagram:hover {
  fill: #e1306c;
}
.icon-linkedin:hover {
  fill: #0a66c2;
}
.icon-youtube:hover {
  fill: #ff0000;
}

@media (max-width: 768px) {
  .footer-socials {
    justify-content: center;
  }
}

/* Headings */
.footer-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

/* Address block */
.footer-location {
  color: #ddd;
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.footer-location span {
  font-weight: 700;
  color: #4ef1ff;
}

/* Quick Access links */

/* .quick-access {
  padding-left: 1rem;
} */

/* === SOFT NEON QUICK ACCESS BUTTON GRID === */
.quick-access-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.quick-access-buttons a {
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18); /* soft border */
  border-radius: 10px;
  color: #cfcfcf; /* softer white */
  font-size: 0.92rem;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05); /* soft card */
  transition: 0.3s ease;
  display: inline-block;
}

/* HOVER EFFECT: subtle neon, not eye-poking */
.quick-access-buttons a:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(78, 241, 255, 0.5);
  color: #4ef1ff;
  box-shadow: 0 0 8px rgba(78, 241, 255, 0.25); /* softer glow */
  transform: translateY(-2px);
}

/* Mobile center alignment */
@media (max-width: 768px) {
  .quick-access-buttons {
    justify-content: center;
  }

  .footer-contact {
  text-align: center;
}
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #4ef1ff;
  margin-left: 5px;
}

/* Bottom text */
.footer-bottom p {
  color: #aaa;
  font-size: 0.85rem;
  margin: 0;
}

.promo {
  color: #aaa;
  font-size: 0.65rem;
  margin: 0;
  display: flex;
  justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-logo {
    margin: 0 auto;
    display: block;
  }
  .footer-desc {
    text-align: center;
    margin: 0 auto;
  }
  .footer-heading {
    text-align: center;
  }
  .footer-links li {
    text-align: center;
  }
  .footer-location {
    text-align: center;
  }
}
