/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #050505;
  color: #fff;
  overflow-x: hidden;
}

img {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
  pointer-events: none;
  /* Disables click events on the element */
  -webkit-user-drag: none;
  /* Prevents dragging in WebKit browsers */
  user-drag: none;
}

video {
  -webkit-touch-callout: none; /* Disable long-press context menu on iOS */
  -webkit-user-select: none;
  user-select: none;
}




.main-content {
  position: relative;
  z-index: 0;
}


/* Gradient Background */
.gradient-background {
  position: fixed;
  /* was absolute */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  /* behind everything */
  overflow: hidden;
  pointer-events: none;
  /* allow clicks through background */
}


.gradient-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  transition: transform 0.5s ease;
  /* 🔥 Add this */
}

.gradient-sphere {
  transition: transform 0.5s ease, opacity 0.5s ease;
  pointer-events: auto;
  /* Allow hover */
}

.gradient-sphere:hover {
  transform: scale(1.1);
  opacity: 0.9;
}


.sphere-1 {
  width: 40vw;
  height: 40vw;
  background: linear-gradient(40deg, rgba(255, 0, 128, 0.5), 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(280deg, rgba(217, 255, 0, 0.56), 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; */
}

@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;
  }
}

.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);
  }
}

.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.01) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  z-index: 2;
}

.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");
}

.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;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 20px;
  /* ✅ Stick 20px below the top */
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 70px;
  margin: 0px 50px 0px 50px;
  border-radius: 50px;
  background-color: #ffffff45;
  backdrop-filter: blur(10px);
  transition: top 0.3s ease;
}

.navbar .logo {
  width: 70px;
  background-color: #000;
  border-radius: 50%;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 0px;
  position: relative;
  z-index: 10;

}

.navbar .nav-links li a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  padding: 7px 20px;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar .nav-links li a:hover {
  color: #000000;
  background-color: #a4a4a4;
  padding: 7px 20px;
  border-radius: 10px;
}

.nav-links li {
  position: relative;
  padding: 0 5px;
}

.nav-links li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  /* or #00ffff if you want cyan */
}

.navbar .nav-links li a.active {
  color: #000000;
  background-color: #00ffff;
  border-radius: 10px;
  padding: 7px 20px;
  font-weight: 600;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #00000092;
  border-radius: 10px;
  padding: 10px 0;
  display: none;
  flex-direction: column;
  min-width: 150px;
  z-index: 999;
  list-style: none;
  /* ✅ Fixes the square bullets */
  margin: 0;
}


.dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-menu li {
  padding: 8px 20px;

}

.dropdown-menu li a {
  color: white;
  text-decoration: none;
  display: block;
  transition: 0.3s;
}

.dropdown-menu li a:hover {
  background: #00ffff;
  color: black;
  border-radius: 5px;
}



/* Hero Section */
.hero {
  height: 88vh;

  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 15px;
}

.hero .overlay {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 300px;
}

.hero-card {
  background-color: #000000a4;
  border: 1px solid rgba(0, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
  border-radius: 20px;
  margin-left: 100px;
  padding: 50px;
  max-width: 600px;
  z-index: 10;
  animation: glow 3s ease-in-out infinite alternate;

}

.hero-image {
  flex: 1/2;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.hero-image img {
  max-width: 90%;
  max-height: 50vh;
  object-fit: contain;
  transform: scaleX(-1);
  filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.2));
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.4));
}

.hero-card h1 {
  font-size: 45px;
  color: #00ffff;
}

.hero-card h3 {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
  color: #ccc;
}

.text-container {
  display: flex;
  gap: 10px;
  margin-top: 30px;
  font-size: 25px;
  font-weight: 600;
}

.text.sec-text {
  color: #00ffff;
}

/* Services */
.services-grid {
  display: flex;
  padding: 100px 80px;
  background: #0a0a0a;
  gap: 40px;
  color: white;
}

.services-sidebar {
  min-width: 400px;
  background: #1a1a1a;
  padding: 40px;
  border-radius: 20px;
}

.services-sidebar h2 {
  font-size: 35px;
  margin-bottom: 35px;
  color: #00ffff;
  border-bottom: 2px solid #00ffff;
  padding-bottom: 10px;
}

.services-sidebar ul {
  list-style: none;
  padding: 0;
}

.services-sidebar li {
  margin: 15px 0;
  padding: 8px 12px;
  font-size: 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.services-sidebar li:hover,
.services-sidebar li.active {
  background: #00ffff;
  color: black;
  font-weight: bold;
}

.client-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  flex: 1;
}

.client-card {
  background: #111;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  transition: transform 0.3s;
}

.client-card:hover {
  transform: translateY(-10px);
  background: #111;
  box-shadow: 0 4px 20px #00ffff40;
}

.client-img {
  width: 60px;
  height: 60px;
  background: #333;
  border-radius: 50%;
  margin-bottom: 15px;
}

.client-card p {
  font-size: 14px;
  color: #ccc;
}

.client-card.see-more {
  background: #333;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s;
  display: flex !important;
}

.client-card.see-more:hover {
  transform: scale(1.05);
}

.client-card img {
  width: 70px;
  height: 70px;
  background: #555;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 22px;
  display: block;
  box-shadow: 0 2px 20px 0 #0007;
}



/* About */
.about {
  padding: 60px 40px;
  background: #0f0f0fa1;
  text-align: center;
}

.about h2 {
  font-size: 32px;
  margin-bottom: 20px;
  margin-top: 50px;
  color: #00ffff;
}

.about-image img {
  width: 400px;
  height: 400px;
  margin-top: 50px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);


}

.about p {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
  color: #ccc;
}

.about-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  /* Space between icons and image */
  margin-top: 50px;
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.social-icons a img {
  width: 40px;
  /* Adjust size as needed */
  height: max-content;
  transition: transform 0.2s;
}

.social-icons a img:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 6px #00ffff);
}


/* Contact */
.contact-section {
  text-align: center;
  padding: 100px 20px;
  background: #050505;
  color: #fff;
}

.contact-title {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #00ffff;
}

.contact-subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #aaa;
}

.contact-info p {
  margin: 8px 0;
  font-size: 1.1rem;
}

.contact-info a {
  color: #00ffff;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.pr-button {
  display: inline-block;
  padding: 15px 80px;
  margin: 30px auto 50px auto;
  background: #00ffff;
  color: #050505;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 4px 8px 20px rgba(0, 255, 255, 0.3);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.pr-button:hover {
  background: #00e6e6;
  transform: translateY(-4px);
  box-shadow: 14px 12px 20px rgba(0, 255, 255, 0.3);
}

.whatsapp-cta a {
  display: inline-flex;
  margin: 20px 0;
  padding: 12px 25px;
  color: #ffffff;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.whatsapp-cta a:hover {
  background: #fff;
  color: #050505;
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  margin: 0 10px;
  color: #fff;
  font-size: 1rem;
  transition: 0.3s;
}

.social-links a:hover {
  color: #00ffff;
}

.social-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-btn {
  border: 1px solid #00ffff;
  padding: 8px 18px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  color: #00ffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: #00ffff;
  color: #000;
}

.social-btn img {
  width: 30px;
  height: auto;
  margin-right: 8px;
}


/* Stats Section */
.stats-section {
  padding: 60px 20px;
  background: #0a0a0a;
  /* dark background */
  text-align: center;
  color: #fff;
}

.stats-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #00ffff;
  /* accent color */
  font-weight: 700;
  letter-spacing: 1px;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-box {
  background: #111;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.stat-box h3 {
  font-size: 2.5rem;
  color: #00ffff;
  margin-bottom: 10px;
  font-weight: bold;
}

.stat-box p {
  font-size: 1.1rem;
  color: #ddd;
}


/* Footer */
.site-footer {
  backdrop-filter: blur(88px);
  border-radius: 22px 22px 0 0;
  margin: 10px auto 0 auto;
  position: relative;
  padding-top: 56px;
  padding-bottom: 10px;
}

.footer-grid {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0 auto;
  gap: 0;
  justify-content: space-between;
  padding: 0 18px 0 18px;
  position: relative;
  align-items: stretch;
}

.footer-col {
  flex: 1 1 210px;
  min-width: 210px;
  margin: 0 8px 0 8px;
  padding: 36px 18px 38px 18px;
  color: #e3eaff;
  position: relative;
  z-index: 1;
}

.footer-divider {
  width: 2px;
  margin: 36px 0 38px 0;
  background: linear-gradient(180deg, #11e9ff37 0%, #009fff00 100%);
  border-radius: 2px;
  align-self: stretch;
  display: block;
}

.footer-col h2,
.footer-col h3 {
  color: #e5f9ff;
  font-size: 1.35em;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-shadow: 0 1px 4px #00ffff22;
}

.footer-col p,
.footer-col ul li {
  color: #b4daec;
  font-size: 1.06em;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
  position: relative;
  border: 1px solid #00eeee;
  border-radius: 6px;
  padding: 5px;
  transition: color 0.23s;
}

.footer-col ul li:hover {
  color: #00eeee;
  background-color: #00000088;
}

.footer-social {
  margin-top: 15px;
}

.footer-social a {
  display: inline-block;
  margin-right: 14px;
  transition: transform 0.22s, filter 0.22s;

}

.footer-social img {
  width: 27px;
  height: auto;
  filter: grayscale(1) brightness(1.11) drop-shadow(0px 1px 10px #00bfbf27);
  border-radius: 22%;
  background: #2a4048;
  padding: 3px;

  transition: filter 0.22s, background 0.22s, transform 0.22s;
}

.footer-social img:hover {
  filter: brightness(1.35) drop-shadow(0 0 11px #00ffc288);
  background: #112934;
  transform: scale(1.16) rotate(-8deg);
}

.footer-bottom {
  text-align: center;
  color: #8eb6be;
  padding: 20px 0 8px 0;
  font-size: 1em;
  letter-spacing: 1.7px;
}

.footer-logo-col {
  grid-column: 1 / -1;
  /* spans across full grid */
  text-align: center;
}

.footer-logo {
  width: 250px;
  height: 250px;
  object-fit: contain;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.58);
  box-shadow: 0 3px 12px #00fff740, 0 0px 0px #000;
  border: 1px solid #00fff7;
  padding: 8px;
  filter: drop-shadow(0 0 16px #00fff755);
  transition: transform 0.22s, box-shadow 0.22s;
}

.footer-logo:hover {
  box-shadow: 0 8px 36px #00ffee77;
}


@media (max-width: 1050px) {
  .footer-grid {
    flex-direction: column;
  }

  .footer-divider {
    display: none;
  }

  .footer-col {
    margin-bottom: 5px;
    padding: 22px 11px 24px 11px;
    border-radius: 11px;
  }

  #services-footer {
    display: none;
  }

  .footer-social img {
    filter: unset;
  }
}


/* Glow Animation */
@keyframes glow {
  from {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
  }

  to {
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.6);
  }
}

/* Modal styling */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999;
  padding-top: 40px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  background-color: #1a1a1a;
  margin: auto;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  color: #fff;
  text-align: center;
  position: relative;
  box-shadow: 0 0 20px #00ffff;
}

.close-btn {
  color: #00ffff;
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #ff3b3b;
}

.modal-title {
  font-size: 2em;
  margin-bottom: 10px;
  color: #00ffff;
  font-weight: 700;
}

.modal-description {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #ccc;
}




/* ------------------ Responsive Styles ------------------ */
@media (max-width: 1024px) {
  .hero-flex {
    gap: 100px;
  }

  .services-grid {
    flex-direction: column;
    padding: 50px 30px;
  }

  .services-sidebar {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 10px 20px;
    margin: 10px 20px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
  }

  .dropdown:hover .dropdown-menu {
    display: flex;
  }

  .hero {
    height: auto;
    padding: 40px 0;
  }

  .hero-flex {
    flex-direction: column;
    gap: 30px;
  }

  .hero-card {
    margin-left: 0;
    padding: 30px;
    text-align: center;
  }

  .hero-card h1 {
    font-size: 32px;
  }

  .hero-card h3 {
    font-size: 16px;
  }

  .text-container {
    font-size: 20px;
    justify-content: center;
  }

  .about-image img {
    width: 100%;
    height: auto;
    margin-top: 30px;
  }

  .about p {
    font-size: 14px;
    padding: 0 15px;
  }

  .services-sidebar h2 {
    font-size: 28px;
    text-align: center;
  }

  .services-sidebar ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .services-sidebar li {
    flex: 1 1 auto;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-logo {
    max-width: 100%;
  height: auto;
  }
}

@media (max-width: 480px) {
  .hero-card h1 {
    font-size: 28px;
  }

  .hero-card h3 {
    font-size: 14px;
  }

  .text-container {
    font-size: 18px;
    flex-direction: column;
    gap: 5px;
  }

  .services-sidebar {
    padding: 20px;
  }

  .services-sidebar h2 {
    font-size: 24px;
  }

  .client-card {
    padding: 15px;
  }

  .contact form {
    padding: 0 10px;
  }

  footer {
    font-size: 12px;
  }
}


/* Always hide mobile nav on desktop */
.mobile-nav {
  display: none;
}

@media screen and (max-width:2480px) {
  .menu-toggle {
    display: none;
  }
}

/* Show menu on mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 28px;
    background: none;
    border: none;
    color: #00ffff;
    z-index: 1001;
  }

  .navbar {
  padding: 10px 20px;
  margin: 0 10px;
  }

  .desktop-nav {
    display: none !important;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 1000;
    transition: left 0.3s ease;
  }

  .nav-links li:not(:last-child)::after {
    width: 120px;
    height: 1px;
    top: 35px;
    left: 20px;
  }

  .mobile-nav.show {
    left: -25px;
    top: -25px;
  }

  .mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    margin-bottom: 20px;
  }

  .mobile-nav .logo {
    width: 60px;
    border-radius: 50%;
    background: #000;
  }

  .mobile-nav .close-btn {
    font-size: 30px;
    color: #00ffff;
    cursor: pointer;
  }

  .mobile-nav .nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-left: 0;
    margin-top: 40px;
    align-items: flex-start;
  }

  .mobile-nav .nav-links li a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
  }

  .mobile-nav .dropdown-menu {
    display: none;
    padding-left: 15px;
  }

  .mobile-nav .dropdown:hover .dropdown-menu {
    display: block;
  }
}


.video-thumb {
  position: relative;
  display: inline-block;
}

.video-thumb video {
  width: 100%;
  border-radius: 8px;
}

.video-thumb .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  padding: 8px 12px;
}