* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  color: #fff;
  background: #f5f5f5;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.header {
  background: #fff;
  color: #000;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  height: 75px;
  width: auto;
}

/* Navigation */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.nav-links li a.active,
.nav-links li a:hover {
  color: #2563eb;
}

/* Buttons */
.btn {
  background: #f97316;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}
.btn:hover {
  background: #ea580c;
}


/* ========================= */
/* Mobile Responsive Styles */
/* ========================= */
.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #2563eb;
}

.close-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #2563eb;
  margin: 10px 10px 20px auto;
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -260px; /* start hidden off-screen */
    width: 260px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    padding: 20px;
    transition: right 0.3s ease;
    z-index: 2000;
  }
  .nav.show {
    right: 0; /* slide in */
  }
  .nav-links {
    flex-direction: column;
    gap: 15px;
  }
  .nav-links li a {
    color: #333;
    font-size: 1.1rem;
  }
  .nav.show .close-btn {
    display: block;
  }
  .desktop-btn {
    display: none; /* hide desktop button */
  }
  .hamburger {
    display: block;
  }
}


/* Services Hero */
.services-hero {
  text-align: center;
  padding: 80px 20px 40px;
}

.services-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: black;
}

.services-hero p {
  max-width: 700px;
  margin: 20px auto 0;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

/* What We Do */
.what-we-do {
  text-align: center;
  padding: 60px 20px;
}

.what-we-do h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #222;
}

.what-we-do p {
  font-size: 1rem;
  color: #555;
  max-width: 650px;
  margin: 0 auto;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 60px 80px;
}

.service-card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card h3 {
  font-size: 1.3rem;
  color: #0056ff;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.what-we-do {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.section-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  text-align: left;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.service-card .icon {
  font-size: 2rem;
  color: #0066ff;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
  padding: 3rem 5%;
  text-align: center;
}

.why-choose h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #111;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background:blue;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 1.5rem;
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  color: white;
  margin-bottom: 0.5rem;
}

/* CTA Section */
.cta {
  background: #f3f6ff;
  padding: 3rem 5%;
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: black;
}

.cta p {
  color: #555;
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn {
  background: #2563eb;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

.btn.secondary {
  background: #e5e7eb;
  color: #111;
}
/* Footer Section */
.footer {
  background:black;
  color: #fff;
  padding: 60px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer h3,
.footer h4 {
  margin-bottom: 15px;
}

.footer p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-links ul,
.footer-services ul {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-services li {
  margin: 8px 0;
}

.social-icons a {
  margin-right: 10px;
  font-size: 1.2rem;
  color: #fff;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ffcc00;
}

/* Footer Bottom */
.footer-bottom {
  background: black;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #ffcc00;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

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

.social-icons a {
  display: inline-block;
  margin-right: 12px;
  font-size: 22px;
  color:white;  /* default color */
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #0077b5; /* LinkedIn blue */
}