* {
  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;
  }
}

.about-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-title {
  font-size: 32px;
  font-weight: 700;
  color: #1e3a8a; /* Dark blue */
  margin-bottom: 10px;
}

.about-subtitle {
  font-size: 18px;
  color: #2563eb; /* Blue accent */
  font-weight: 500;
  margin-bottom: 40px;
}

.story h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.story p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

.values-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.values-container {
  max-width: 1100px;
  margin: 0 auto;
}

.values-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.values-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.value-card {
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px 20px;
  text-align: center;
  transition: 0.3s ease;
}

.value-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2563eb; /* Blue */
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.cta-section {
  background: #f9fbff;
  padding: 60px 20px;
  text-align: center;
}

.cta-container h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.cta-container p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.cta-buttons a {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
}

.btn-primary:hover {
  background: #1e4ecc;
}

.btn-secondary {
  background: #2563eb;
  color: #fff;
}

.btn-secondary:hover {
  background: #1e4ecc;
}


/* 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 */
}