/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background: #ffffff;
  color: #6b7280;
  line-height: 1.6;
  font-size: 16px;
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.main-wrapper {
  flex: 1;
}
a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover,
a:focus {
  color: #1d4ed8;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  background: #0d1f44;
  color: white;
  padding: 1rem 0;
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Nav Layout */
.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 1px;
  cursor: default;
  user-select: none;
}

/* Nav Links */
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin-left: auto; /* Push nav links to the right of center */
  align-items: center;
}
nav ul li a {
  color: white;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.25rem 0.5rem;
}
nav ul li a:hover,
nav ul li a:focus {
  border-bottom: 2px solid #2563eb;
}

/* Hamburger - hidden by default */
#hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}
#hamburger .bar {
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-content {
    flex-wrap: wrap;
  }

  nav ul {
    display: none;
    flex-direction: column;
    background: #0d1f44 !important;
    position: absolute;
    top: 70px;
    right: 1rem;
    width: 200px;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  nav ul.active {
    display: flex;
  }

  #hamburger {
    display: flex;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0d1f44, #00c3ff);
  color: #fff;
  text-align: center;
  padding: 4rem 1rem;
}

.hero__title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero__subtitle {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.hero__intro p {
  font-size: 1rem;
  max-width: 700px;
  margin: auto;
}

/* Section Titles */
.section__title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.section__subtitle {
  text-align: center;
  margin-bottom: 2rem;
  color: #555;
}

/* About Us */
.about-us__content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.about-us__text {
  flex: 1 1 300px;
}

.about-us__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center; /* Center the cards nicely */
}

.stat {
  background-color: #fff;
  padding: 1.2rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  flex: 1 1 150px;       /* Allow cards to grow/shrink, minimum width */
  max-width: 200px;      /* Optional: prevents getting too wide on big screens */
}
@media (max-width: 400px) {
  .stat {
    flex: 1 1 100%;
    max-width: none;
  }
}


.stat__number {
  font-size: 1.8rem;
  font-weight: bold;
  color: #007bff;
}

.stat__label {
  font-size: 0.9rem;
  color: #555;
}

/* Mission & Vision */
.mission-vision__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.mission-vision__card {
  background-color: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.mission-vision__icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.mission-vision__title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

/* Values */
.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.value__card {
  background-color: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.value__icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.value__title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #333;
}

/* Team */
.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.team__card {
  background-color: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.team__photo {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}


.team__name {
  font-weight: bold;
  color: #333;
}

.team__title {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 0.5rem;
}

/* Expertise */
.expertise__categories {
  margin-top: 2rem;
}

.expertise__category {
  margin-bottom: 2rem;
}

.expertise__category-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #007bff;
}

.expertise__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.expertise__card {
  background-color: #fff;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.expertise__service-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #333;
}

.expertise__service-description {
  font-size: 0.95rem;
  color: #555;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    border: 1px solid #ddd;
  }

  nav ul.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

/* Utilities */
.btn-primary {
  background: #1f2937;
  color: white;
  padding: 0.85rem 2.5rem;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  display: block;          /* Make the button a block-level element */
  margin: 2rem auto;       /* Center horizontally */
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
  border: none;
  user-select: none;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 1rem;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #374151;
  color: #f9fafb;
  outline: none;
}


.site-footer {
  background: #ffffff;
  color: #6b7280;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 4rem 1rem 2rem;
  border-top: 1px solid #e5e7eb;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
}

.footer-section h3,
.footer-section h4 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111827;
  font-size: 1.25rem;
}

.footer-section p,
.footer-section li,
.footer-section a {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
}

.footer-section a:hover,
.footer-section a:focus {
  color: #2563eb;
  text-decoration: underline;
}

.footer-section ul {
  list-style: none;
  padding-left: 0;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  margin-top: -10px;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, filter 0.3s ease;
  text-decoration: none;
}

.social-icons a i {
  font-size: 24px;
}

/* Specific brand colors */
.social-icons a[aria-label="YouTube"] i {
  color: #FF0000;
}
.social-icons a[aria-label="Twitter"] i {
  color: #1DA1F2;
}
.social-icons a[aria-label="Instagram"] i {
  color: #E4405F;
}
.social-icons a[aria-label="LinkedIn"] i {
  color: #0077B5;
}

.social-icons a:hover {
  transform: scale(1.15);
  filter: brightness(1.2);
}

.social-content {
  text-align: center;
}


.footer-bottom {
  background: #ffffff;
  color: black;
  text-align: center;
  padding-top: 1rem;
  margin-top: 5rem;
  margin-bottom: -2rem;
  padding: 1.5rem 1rem;
  font-size: 0.9rem;
  width: 100vw;       /* ✅ Ensures full width */
  margin-top: auto;   /* ✅ Pushes it to the bottom if content is short */
}

/* Responsive stack */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .trust-logos,
  .social-icons {
    justify-content: center;
  }
}

.footer-section.footer-certifications {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-section.footer-certifications h4 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111827;
  font-size: 1.25rem;
}

.certificates {
  display: flex;
  gap: 3rem; /* Adjust the gap between certificates */
  align-items: center;
}

.certificates .trust-logo {
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 1px 1px rgb(0 0 0 / 0.05));
  transition: filter 0.3s ease;
}

.certificates .trust-logo:hover {
  filter: drop-shadow(0 1px 4px rgb(37 99 235 / 0.8));
}


