/* Reset & Base Styles */
#background-dots {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1; /* behind everything */
  pointer-events: none;
  opacity: 0.85; /* very subtle */
}

body {
  margin: 0;
  padding: 0;
  background-color: white; /* or your base page color */
  overflow-x: hidden;
  padding-top: 75px;
}

a {
  text-decoration: none;
  color: inherit;
  
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #e0f9eb; /* optional light background */
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #009edc, #4dff6d); /* your brand gradient */
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #0080c7, #3be35b); /* hover effect */
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #009edc #e0f9eb; /* thumb color and track background */
}


/* Entire Header Wrapper */
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 30px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

/* Logo container - outside background */
.logo-container {
  z-index: 3;
  padding-right: 10px;
}

.logo {
  max-height: 60px;
  transform: scale(2.0);
  transform-origin: left center;
}

/* Background Gradient Nav only */
.header {
  flex-grow: 0.9;
  background: linear-gradient(135deg, #009edc, #4dff6d);
  padding: 10px 30px;
  border-radius: 0 0 0 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* HAMBURGER ICON */
.hamburger {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
  border: none;
}

/* Navigation styles */
.nav {
  display: flex;
  margin: 0;
  padding: 0;
  color: white;
}

.nav-item {
 margin-left: 20px;
  flex: none;
}

.nav-links {
  display: flex;
  z-index: 1000; /* Ensure it's on top */
  align-items: center;
  position: static;
  transform: none;
  opacity: 1;
  pointer-events: auto;
  background: none;
}


.nav-links ul {
  display: flex;
  flex-direction: row; /* Ensure horizontal on desktop */
  gap: 10px;
  align-items: center;
}


.nav-link {
  text-decoration: none;
  color: white !important;
  font-weight: 700;
  z-index: 1001;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #222;
}

.nav-links.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.logo {
  height: 60px; /* Increase this value if needed */
  transform: scale(1.5); /* Scales the logo visually */
  transform-origin: left center;
  z-index: 5;
}



/* Hero Section */
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.webdev-hero {
  position: relative;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.6); /* dark overlay */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: white;
  padding: 0 20px;
  max-width: 800px;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-subtext {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* SERVICES SECTION */
.services-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  color: #333;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #007bff;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-icon {
  font-size: 40px;
  color: #00b4d8;
  margin-bottom: 15px;
}

/* TECH STACK SECTION */
.tech-stack-section {
  padding: 60px 20px;
  background-color: #fff;
  color: #333;
}

.tech-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 20px;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  color: #333;
  width: 100px;
  transition: transform 0.3s ease;
}

.tech-item:hover {
  transform: scale(1.1);
}

.tech-item i {
  font-size: 40px;
  color: #00b4d8;
  margin-bottom: 10px;
}

.why-choose-us {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 40px;
}

.choose-card {
  background: white;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  height: 100%;
}

.choose-card:hover {
  transform: translateY(-8px);
}

.choose-card i {
  font-size: 2.5rem;
  color: #00b4d8;
  margin-bottom: 15px;
}

.choose-card h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.choose-card p {
  font-size: 0.95rem;
  color: #555;
}

.featured-projects {
  padding: 60px 20px;
}

.project-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.project-card h5 {
  font-weight: 600;
  margin-top: 15px;
}

.project-card p {
  font-size: 0.95rem;
  color: #666;
}

.testimonials-section {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #007bff;
}

.testimonial-slider {
  max-width: 800px;
  margin: auto;
  position: relative;
}

.testimonial-card {
  display: none;
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.testimonial-card.active {
  display: block;
}

.testimonial-text {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 15px;
}

.testimonial-author {
  font-weight: bold;
  color: #00b4d8;
}

.testimonial-nav {
  margin-top: 20px;
}

.testimonial-nav button {
  background: #00b4d8;
  border: none;
  color: white;
  margin: 0 6px;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.testimonial-nav button:hover {
  background: #0091bd;
}

.pricing-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.website-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.tab-btn {
  padding: 10px 20px;
  border: none;
  background: #e0e0e0;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
}

.tab-btn.active {
  background: #0d6efd;
  color: #fff;
}

.pricing-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.pricing-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 10px #00000010;
  padding: 20px;
  width: 280px;
  text-align: center;
  transition: 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.price {
  font-size: 1.8rem;
  color: #0d6efd;
  margin: 10px 0;
}

.pricing-card ul {
  text-align: left;
  margin-top: 10px;
  padding-left: 0;
  list-style: none;
}

.pricing-card ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.chat-info {
  font-size: 0.9rem;
  color: #444;
  font-style: italic;
  margin-top: 10px;
}

.extras-section {
  margin-top: 40px;
  text-align: center;
}

.extras-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
  list-style: none;
  padding: 0;
}


.faq-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #009edc;
  font-size: 2rem;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border: 1px solid #009edc;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(135deg, #009edc, #4dff6d);
  color: white;
  font-weight: bold;
  font-size: 1rem;
  text-align: left;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #0073a6;
}

.faq-answer {
  display: none;
  padding: 15px 20px;
  background-color: #f9f9f9;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
}

.final-cta {
  background: linear-gradient(135deg, #00b4d8, #00e676);
  color: white;
  text-align: center;
  padding: 60px 20px;
  border-radius: 12px;
  margin: 40px 20px;
}

.final-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.final-cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-btn {
  background: white;
  color: #00b4d8;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: background 0.3s;
}

.cta-btn i {
  margin-right: 8px;
}

.cta-btn:hover {
  background: #f1f1f1;
}

/* Floating WhatsApp Icon */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25D366;
  color: white;
  font-size: 24px;
  padding: 15px;
  border-radius: 50%;
  text-align: center;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background 0.3s;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
}


/* Footer */
.footer-modern {
  background: linear-gradient(to right, #007bff, #00d084); /* Gradient blue → green */
  color: white;
  padding-top: 60px;
  padding-bottom: 40px;
}

.footer-modern h5.footer-logo {
  font-weight: 700;
  font-size: 1.6rem;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.footer-modern h6 {
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
  text-align: center;
}

.footer-modern .footer-links {
  list-style: none;
  padding-left: 0;
  text-align: center;
}

.footer-modern .footer-links li {
  margin-bottom: 8px;
  display: inline-block;
  margin-right: 15px;
}

.footer-modern .footer-links a {
  color: #ffffff;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-modern .footer-links a:hover {
  color: #e0ffe8;
  text-decoration: underline;
}

.footer-modern i {
  margin-right: 8px;
  color: #ffffff;
}

.footer-modern a {
  text-decoration: none;
  color: #ffffff;
}

.footer-modern a:hover {
  color: #e0ffe8;
}

.footer-modern .text-center small {
  display: block;
  margin-top: 20px;
  color: #e6fdf4;
}

/* Animations */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
   .hamburger {
    display: block;
    border: none;
    font-size: 2rem;
    background: none;
    color: white;
    cursor: pointer;
    z-index: 1100;
    margin-left: auto;
    gap: 2px;
    }
   
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    width: auto; /* Only fit the nav content */
    background: linear-gradient(135deg, #007fae, #3bbf54);
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: scaleY(0); /* Hide initially */
    transform-origin: top;
    transition: transform 0.3s ease;
    z-index: 1002;
  }

    .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    color: white;
  }

  .nav-links ul {
    flex-direction: column;
    width: 100%;
    gap: 15px;
    padding: 20px 0;
  }

  .nav-item {
    text-align: center;
  }

  .header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}
  .webdev-hero {
    position: relative;
    z-index: 1;
    height: 50vh;
}

}
