/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f4f6f8;
  color: #0a1f44;
  overflow-x: hidden;
  padding-top: 80px; /* Prevent content from being hidden under navbar */
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #003f63;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}
.navbar .logo img {
  height: 50px;
}
.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.navbar .nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}
.navbar .nav-links a:hover {
  color: #00b1f2;
}

/* Hero Section */
.about-hero {
  background-size: cover;
  background-position: center;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}
.about-hero h1 {
  font-size: 3rem;
  font-weight: 700;
}
.about-hero p {
  font-size: 1.5rem;
  font-weight: 400;
}

/* About Section */
.about-section {
  display: flex;
  padding: 80px 40px;
  background-color: white;
  border-radius: 8px;
  margin-top: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.about-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 700px;
}
.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 40px;
  animation: fadeInRight 1s ease-in-out;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

/* Optional animation */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    padding: 20px 0 0 0;
  }
}
/* Industry Section */
.industries {
  padding: 80px 40px;
  background-color: #f4f6f8;
}
.industries h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}
.industry-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
  padding: 30px;
  transition: transform 0.3s ease;
}
.industry-category:hover {
  transform: translateY(-10px);
}
.industry-category img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}
.industry-category h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 600;
}
.industry-category p {
  text-align: center;
  font-size: 1rem;
  color: #555;
}

/* Scroll-to-top Button */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #003f63;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  display: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.scroll-to-top:hover {
  background-color: #00b1f2;
}
/* =================== Highlights Section =================== */
.about-highlights {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
  background-color: #f0f7ff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
}

.highlight-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 123, 255, 0.1);
  flex: 1 1 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 20px rgba(0, 123, 255, 0.2);
}

.highlight-card h3 {
  font-size: 28px;
  color: #007bff;
  margin-bottom: 10px;
}

.highlight-card p {
  font-size: 16px;
  color: #333;
}

.counter {
  font-weight: bold;
}

/* =================== Team Section =================== */
.about-team {
  padding: 100px 20px;
  background: linear-gradient(135deg, #e9f3ff, #d4e6ff);
  text-align: center;
}

.about-team h2 {
  font-size: 42px;
  color: #003366;
  margin-bottom: 50px;
  font-weight: 700;
  position: relative;
}

.about-team h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background-color: #007bff;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.team-members {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.member-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  max-width: 280px;
  box-shadow: 0 10px 20px rgba(0, 123, 255, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.member-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 18px 30px rgba(0, 123, 255, 0.25);
}

.member-image {
  overflow: hidden;
  position: relative;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.member-card:hover .member-image img {
  transform: scale(1.1);
}

.member-info {
  padding: 20px;
}

.member-info h4 {
  font-size: 22px;
  color: #007bff;
  margin: 12px 0 6px;
}

.member-info p {
  font-size: 16px;
  color: #666;
}

/* Scroll-to-Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #007bff;
  color: #fff;
  border: none;
  padding: 12px 14px;
  border-radius: 50%;
  display: none;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
  transition: background 0.3s ease;
  z-index: 999;
}

.scroll-to-top:hover {
  background: #0056b3;
}


/* =================== Scroll to Top Button =================== */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 16px;
  font-size: 20px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  z-index: 1000;
  box-shadow: 0 6px 12px rgba(0, 123, 255, 0.3);
  transition: background 0.3s, transform 0.3s;
}

.scroll-to-top:hover {
  background: #0056b3;
  transform: scale(1.1);
}

/* =================== Responsive =================== */
@media (max-width: 768px) {
  .highlight-card h3 {
    font-size: 24px;
  }

  .about-team h2 {
    font-size: 28px;
  }

  .member-card {
    max-width: 90%;
  }

  .about-highlights {
    padding: 40px 10px;
  }
}
