
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: #f2f6f9;
      color: #333;
      line-height: 1.6;
    }
    #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, 50,1),rgba(30, 37, 46,0.9),rgba(11, 166, 222, 0.7)) ;
  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: #080808;
      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: #555;
    }
    @media (max-width:470px) {
        #toggleTheme{
            bottom: 17%;
        }
    }
/*Header*/
/* Header Container */
header {
  background: linear-gradient(135deg, #ffffff, #f3f7fa);
  padding: 4rem 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #e0e0e0;
  padding-top: 150px;
}

/* Header Content Centering */
.header-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInDown 1.2s ease-in-out;
}

/* Logo Container */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* Logo Image */
.logo img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.logo img:hover {
  transform: scale(1.1) rotate(1deg);
}

/* Logo Text */
.logo h1 {
  font-size: 2.8rem;
  margin: 0;
  font-weight: 700;
  background: linear-gradient(to right, #007cf0, #00dfd8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeIn 1.4s ease forwards;
}

/* Quote Styling */
.quote {
  font-size: 1.3rem;
  font-style: italic;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  border-left: 4px solid #00dfd8;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(3px);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .logo {
    flex-direction: column;
  }

  .logo h1 {
    font-size: 2rem;
  }

  .quote {
    font-size: 1.1rem;
    padding: 0.8rem 1.2rem;
  }
}
/*Hero-Section*/
/* Hero Section */
.hero {
  position: relative;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f9fcff, #ffffff);
  text-align: center;
  overflow: hidden;
  box-shadow: inset 0 -1px 0 #e0e0e0;
}

/* Hero Heading */
.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(to right, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  animation: slideInFade 1.2s ease-out forwards;
  opacity: 0;
}

/* Hero Paragraph */
.hero p {
  font-size: 1.5rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  font-style: italic;
  background: rgba(255, 255, 255, 0.65);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(4px);
  animation: fadeInUp 1.4s ease-out forwards;
  opacity: 0;
}

/* Animations */
@keyframes slideInFade {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
    padding: 0.8rem 1rem;
  }
}
/*About*/
/* About Section Container */
#about.section {
  padding: 6rem 2rem;
  background: #ffffff;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  transition: background 0.3s ease;
}

/* Section Heading */
#about h2 {
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(to right, #007cf0, #00dfd8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  animation: fadeInDown 1s ease-out;
}

/* About Paragraph */
#about p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #444;
  max-width: 800px;
  margin: 0 auto;
  background: rgba(250, 250, 250, 0.85);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(2px);
  animation: fadeInUp 1.2s ease-out;
}


/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  #about h2 {
    font-size: 2rem;
  }

  #about p {
    font-size: 1rem;
    padding: 1rem 1.2rem;
  }

  #toggleTheme {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }
}
/*Services*/
/* Services Section */
#services.section {
  padding: 6rem 2rem;
  background: #fafcff;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

#services h2 {
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(to right, #007cf0, #00dfd8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4rem;
}

/* Service Row */
.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 5rem;
  flex-wrap: wrap;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease;
  padding: 2rem;
}

.service-row:hover {
  transform: translateY(-5px);
}

/* Reverse Row */
.service-row.reverse {
  flex-direction: row-reverse;
}

/* Text Column */
.service-text {
  flex: 1 1 500px;
  text-align: left;
}

.service-text h3 {
  font-size: 2rem;
  color: #007cf0;
  margin-bottom: 1rem;
  animation: fadeInLeft 1s ease-out;
}

.service-text p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #444;
  animation: fadeInLeft 1.2s ease-out;
}

/* Image Column */
.service-image {
  flex: 1 1 500px;
  text-align: center;
  animation: fadeInRight 1s ease-out;
}

.service-image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.service-image img:hover {
  transform: scale(1.03);
}

/* Animations */
@keyframes fadeInLeft {
  0% { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(40px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* Responsive Layout */
@media (max-width: 992px) {
  .service-row,
  .service-row.reverse {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
  }

  .service-text,
  .service-image {
    flex: 1 1 100%;
  }

  .service-text {
    text-align: center;
  }
}

/* FAQ Section Container */
#faq {
  background: linear-gradient(145deg, #f9fbfe, #ffffff);
  padding: 6rem 2rem;
  color: #333;
  font-family: 'Segoe UI', sans-serif;
}

/* Section Title */
#faq h2 {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  color: #007cf0;
  margin-bottom: 3rem;
  position: relative;
  animation: fadeInDown 0.8s ease-out;
}

/* FAQ Container */
.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Individual FAQ Item */
.faq-item {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  box-shadow: 0 12px 30px rgba(0, 124, 240, 0.1);
}

/* FAQ Question */
.faq-question {
  padding: 1.5rem 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #007cf0;
  position: relative;
  background: linear-gradient(to right, #f0f7ff, #ffffff);
  transition: background 0.3s ease;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 2rem;
  font-size: 1.5rem;
  color: #00aaff;
  transition: transform 0.3s ease;
}

/* FAQ Answer */
.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  background: #fefefe;
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
  transition: max-height 0.5s ease, padding 0.5s ease;
  border-left: 5px solid rgb(21, 230, 181);
}

/* When Active - Toggle FAQ */
.faq-item.active .faq-answer {
  padding: 1.2rem 2rem 2rem;
  max-height: 500px;
}

.faq-item.active .faq-question::after {
  content: "–";
  transform: rotate(180deg);
}

/* Animation */
@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 600px) {
  #faq h2 {
    font-size: 2rem;
  }

  .faq-question {
    font-size: 1.05rem;
    padding: 1.2rem 1.5rem;
  }

  .faq-answer {
    font-size: 0.95rem;
    padding: 0 1.5rem;
  }
}
/* Testimonials Section */
#testimonials {
  background: linear-gradient(to bottom right, #f9fbff, #ffffff);
  padding: 6rem 2rem;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

/* Section Heading */
#testimonials h2 {
  font-size: 2.6rem;
  color: #007cf0;
  margin-bottom: 3rem;
  font-weight: 700;
  animation: fadeInUp 0.8s ease-out;
}

/* Stats Area */
.stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.stat-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem 2.5rem;
  box-shadow: 0 8px 25px rgba(0, 124, 240, 0.05);
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.8rem;
  color: #00b894;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: #666;
}

/* Testimonial Cards */
.testimonial-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: linear-gradient(135deg, #f0f7ff, #ffffff);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
  font-size: 1.1rem;
  color: #444;
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-card h4 {
  font-size: 1rem;
  color: #007cf0;
  font-weight: 600;
}

/* Animation */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .stats {
    gap: 2rem;
  }

  .stat-box {
    padding: 1.5rem 2rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }
}

/*Contact*/
/* Contact Section */
#contact.section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f9fcff, #ffffff);
  text-align: center;
}

#contact h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  background: linear-gradient(to right, #007cf0, #00dfd8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInDown 1s ease-out;
}

/* Contact Form Container */
#contactForm {
  background: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: fadeInUp 1.4s ease-out;
}

/* Input + Textarea Styles */
#contactForm input,
#contactForm textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 1.05rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

#contactForm input:focus,
#contactForm textarea:focus {
  outline: none;
  border-color: #00baff;
  box-shadow: 0 0 0 4px rgba(0, 186, 255, 0.15);
}

/* Submit Button */
#contactForm button[type="submit"] {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to right, #007cf0, #00dfd8);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 124, 240, 0.3);
}

#contactForm button[type="submit"]:hover {
  background: linear-gradient(to right, #00dfd8, #007cf0);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 124, 240, 0.35);
}

/* Animations */
@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  #contact h2 {
    font-size: 2rem;
  }

  #contactForm {
    padding: 2rem 1.2rem;
  }

  #contactForm button {
    font-size: 1rem;
  }
}
/*Footer*/
/* Footer Base */
.footer {
  background: linear-gradient(to right, #f8fbff, #ffffff);
  padding: 5rem 2rem 2rem;
  color: #333;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.05);
  font-family: 'Segoe UI', sans-serif;
}

/* Footer Container */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #ddd;
}

/* Section Headings */
.footer h3,
.footer h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #007cf0;
  font-weight: 700;
}

/* About Text */
.footer-about p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

/* Links */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #555;
  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%;
}

/* Contact Info */
.footer-contact p {
  font-size: 0.95rem;
  color: #444;
  margin: 0.5rem 0;
}

/* Social Icons */
.footer-social .social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #007cf0;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 124, 240, 0.3);
  text-decoration: none;
}

.footer-social a:hover {
  background: #00dfd8;
  transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  font-size: 0.95rem;
  color: #777;
}

/* Responsive Tweaks */
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social .social-icons {
    justify-content: center;
  }
}
/*Whatsapp button*/
/* WhatsApp Floating Button */
.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);
}

