
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: #f8f9fa;
      color: #333;
      line-height: 1.6;
      overflow-x: hidden;
    }

    #tsparticles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}


nav {
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  width: 100%;
  box-shadow: 0 2px 8px black;
  box-sizing: border-box;
  background:linear-gradient(90deg,rgba(27, 37, 46,0.7),rgba(30, 37, 46,0.9),rgba(27, 37, 50,1)) ;
  position: fixed;
  top: 0;
  z-index: 1000;
  margin-top: 0%;
}

nav.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  margin: 0;
}

.navlogo {
  height: auto;
  width: 120px;
  object-fit: cover;
}
.newLogo {
  transform: scale(0.9);
  opacity: 0.8;
  transition: all 0.3s ease;
}
.newNav{
      transform: scaleY(0.7);
  opacity: 1;
  transition: all 0.3s ease;
  position: fixed;
  top:-4%;
  font-size: 30px;
  font-weight: lighter;
}

/* Menu button - visible on mobile */
#menu-toggle {
  background: none;
  color: wheat;
  border: none;
  font-size: 20px;
  cursor: pointer;
  margin-left: 200px;
  padding-right: 15px;
  display: block;
}

/* Nav links container (mobile default) */
nav .nav-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 60px;
  right: 5px;
  background: rgba(8, 8, 8, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  border-radius: 10px;
}

/* Individual nav links */
nav .nav-links a {
  padding: 0 1rem;
  text-decoration: none;
  
  color: #f5f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

/* Hover effect */
nav a:hover {
  border-top: 2px solid rgb(37, 124, 239);
  border-bottom: 2px solid rgb(197, 238, 13);
  animation: hover 1s forwards;
}

@keyframes hover {
  0% {
    padding: 0 1rem;
  }
  100% {
    padding: 0.3rem 1rem;
  }
}

/* Desktop layout adjustments */
@media (min-width: 768px) {
  #menu-toggle {
    display: none;
  }

  nav .nav-links {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: none;
    backdrop-filter: none;
    box-shadow: none;
    padding: 0;
  }

  nav .nav-links a {
    margin: 0 1rem;
  }
}
    #toggleTheme {
      position: fixed;
      bottom: 15%;
      right: 20px;
      width: 60px;
      height:60px;
      border-radius: 50%;
      border: none;
      background-color: #f7f0f0;
      color: white;
      font-size: 24px;
      cursor: pointer;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
    }
    .hidden {
      display: none;
    }
    #toggleTheme:hover {
      background-color: #c1b8b8;
    }
        @media (max-width:470px) {
        #toggleTheme{
            bottom: 17%;
        }
    }
header {
  position: relative;
  background: linear-gradient(135deg, #0a0f2c, #111111);
  padding: 150px 20px 80px;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,255,255,0.05), transparent 70%);
  animation: rotateBG 20s linear infinite;
  z-index: 0;
}

@keyframes rotateBG {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.header-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
  animation: fadeInUp 1.5s ease-out;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  animation: pulse 3s infinite;
}

.logo img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #00f7ff;
  box-shadow: 0 0 30px rgba(0, 247, 255, 0.4);
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05) rotate(1deg);
}

.logo h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #00f7ff;
  text-shadow: 0 0 10px rgba(0, 247, 255, 0.6);
  margin: 0;
}

.quote {
  font-size: 1.2rem;
  margin-top: 20px;
  color: #e0e0e0;
  font-style: italic;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.2);
}

/* Animations */
@keyframes fadeInUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.01);
  }
  100% {
    transform: scale(1);
  }
}

.hero {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(to bottom, rgba(13,13,30,0.9), rgba(5,5,15,0.95)),
              url('https://images.unsplash.com/photo-1531297484001-80022131f5a1?auto=format&fit=crop&w=1920&q=80') no-repeat center center / cover;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: -1;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #00f5ff;
  text-shadow: 0 0 10px rgba(0,255,255,0.4);
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
}

.hero p {
  font-size: 1.5rem;
  max-width: 700px;
  color: #e0e0e0;
  animation: fadeInUp 1.5s ease-out forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
}
#about {
  position: relative;
  padding: 5rem 2rem;
  background: radial-gradient(circle at top left, #0f0f3f, #000012);
  color: #f5f5f5;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  z-index: 1;
}

#about::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,255,255,0.05), transparent 70%);
  animation: rotateGlow 20s linear infinite;
  z-index: -1;
}

@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#about h2 {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
  color: #00f5ff;
  text-shadow: 0 0 10px rgba(0,255,255,0.3);
  animation: fadeSlideDown 1s ease-out;
}

#about p {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.25rem;
  line-height: 1.8;
  text-align: center;
  color: #ddd;
  animation: fadeSlideUp 1.5s ease-out;
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Optional Glowing Edge */
#about::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00f5ff, transparent);
  animation: glowLine 4s ease-in-out infinite;
}

@keyframes glowLine {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  #about {
    padding: 3rem 1.5rem;
  }
  #about h2 {
    font-size: 2rem;
  }
  #about p {
    font-size: 1.1rem;
  }
}


    .section {
      padding: 60px 20px;
      max-width: 1000px;
      margin: auto;
    }

    .section h2 {
      text-align: center;
      margin-bottom: 30px;
    }

#services {
  padding: 5rem 2rem;
  background: #0a0a1a;
  color: #f1f1f1;
}

#services h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
  color: #00ffff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-text {
  flex: 1;
  padding: 2rem;
}

.service-text h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #00f5ff;
}

.service-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ccc;
}

.service-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.service-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 10px #00f5ff);
  transition: transform 0.3s ease;
}

.service-image img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .service-row,
  .service-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .service-image,
  .service-text {
    padding: 1rem;
  }

  .service-text h3 {
    font-size: 1.5rem;
  }

  .service-text p {
    font-size: 1rem;
  }
}

#faq {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #0e0e2d, #1c1c3b);
  color: #f0f0f0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#faq::before,
#faq::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,255,255,0.15), transparent 70%);
  filter: blur(80px);
  z-index: 0;
}

#faq::before {
  top: -100px;
  left: -100px;
}

#faq::after {
  bottom: -100px;
  right: -100px;
}

#faq h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  color: #00f5ff;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
  position: relative;
  z-index: 2;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 255, 0.2);
  padding: 1.5rem 2rem;
  transition: all 0.4s ease;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
  cursor: pointer;
  position: relative;
}

.faq-item:hover {
  border-color: #00ffff;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
}

.faq-question {
  font-size: 1.3rem;
  font-weight: bold;
  color: #00f5ff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  font-size: 1rem;
  color: #d4d4d4;
  padding-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding-top: 1rem;
}
@media (max-width: 768px) {
  #faq h2 {
    font-size: 2rem;
  }

  .faq-question {
    font-size: 1.1rem;
  }

  .faq-answer {
    font-size: 0.95rem;
  }

  .faq-item {
    padding: 1.2rem 1.5rem;
  }
}
#testimonials {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #0a0a23, #1e1e3f);
  color: #f0f0f0;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#testimonials h2 {
  font-size: 3rem;
  margin-bottom: 3rem;
  color: #00f0ff;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
  z-index: 2;
  position: relative;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}

.stat-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  padding: 2rem 3rem;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #00f0ff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.stat-label {
  margin-top: 0.5rem;
  font-size: 1.1rem;
  color: #ccc;
}

.testimonial-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.07);
  padding: 2rem;
  border-radius: 20px;
  max-width: 300px;
  border: 1px solid rgba(0, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.08);
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card:hover {
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.2);
  transform: scale(1.02);
}

.testimonial-card p {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.testimonial-card h4 {
  font-size: 1rem;
  color: #00e0ff;
  font-weight: bold;
  text-align: right;
}
@media (max-width: 768px) {
  .stats {
    flex-direction: column;
    gap: 2rem;
  }

  .testimonial-container {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    width: 90%;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

 #contact {
  background: linear-gradient(135deg, #0f0f2d, #1a1a3d);
  padding: 6rem 2rem;
  color: #f1f1f1;
  position: relative;
  overflow: hidden;
}

#contact h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  color: #00f5ff;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

#contactForm {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  padding: 3rem 2rem;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: fadeInUp 0.8s ease-out both;
}

#contactForm input,
#contactForm textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  padding: 1rem;
  color: #ffffff;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

#contactForm input:focus,
#contactForm textarea:focus {
  border-color: #00f5ff;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

#contactForm button {
  background: #00f5ff;
  color: #0a0a1a;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

#contactForm button:hover {
  background: #0ff;
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.4);
}

/* Animate on load */
@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Background glow elements (optional) */
#contact::before,
#contact::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.3) 0%, transparent 70%);
  z-index: 0;
  filter: blur(80px);
}

#contact::before {
  top: -100px;
  left: -100px;
}

#contact::after {
  bottom: -100px;
  right: -100px;
}

/* Responsive */
@media (max-width: 768px) {
  #contact h2 {
    font-size: 2.2rem;
  }

  #contactForm {
    padding: 2rem;
  }

  #contactForm button {
    width: 100%;
  }
}


.footer {
  background: linear-gradient(to right, #0a0a1f, #0d0d2a);
  color: #ffffff;
  padding: 4rem 2rem 0rem; /* changed bottom padding from 2rem to 0rem */
  font-family: 'Segoe UI', sans-serif;
  position: relative;
  z-index: 1;
  margin-bottom: 0; /* ensure there's no margin-bottom */
  
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer h3, .footer h4 {
  color: #00f5ff;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.footer p, .footer a {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
  transition: color 0.3s ease;
}
.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.footer-links a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #007cf0;
  transition: width 0.3s ease;
  position: absolute;
  bottom: -3px;
  left: 0;
}

.footer-links a:hover {
  color: #007cf0;
}

.footer-links a:hover::after {
  width: 100%;
}
.footer a:hover {
  color: #00f5ff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  color: #ccc;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}


.social-icons a:hover {
  color: #00f5ff;
  background: rgba(0, 255, 255, 0.1);
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem; /* reduce if needed */
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #888;
}
.footer::before,
.footer::after {
  pointer-events: none; /* optional, avoids weird hover behavior */
  overflow: hidden;
  max-width: 100vw;
  max-height: 100vh;
}


/* Glowing elements (optional) */
.footer::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0; /* top-left */
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.3), transparent 60%);
  filter: blur(60px);
  z-index: 0;
}

.footer::after {
  content: '';
  position: absolute;
  inset: auto 0 0 auto; /* bottom-right */
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.25), transparent 60%);
  filter: blur(60px);
  z-index: 0;
}



 .whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.2s ease-in-out;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}
