* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff; 
}

h1, h2, h3 {
  font-weight: 700;
}

h1 {
  font-size: 40px;
}

p {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff; 
}

.button {
  font-size: 16px;
  font-weight: 600;
  background-color: #000; 
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("/images/Hexagon\ 7.svg") center/cover no-repeat;

  padding: 25px 30px;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo img {
  height: 25px;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1100;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
  display: block;
}

/* hamburger and stack menu in mobile */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    position: static; 
    margin-left: auto; 
    align-items: center;
  }

  .nav-links-wrapper {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 20px;
    position: absolute;
    top: 80px; 
    right: 0;
    left: 0;
    z-index: 999;
    transition: all 0.3s ease;
  }

  .nav-links-wrapper.active {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 20px;
    position: absolute;
    top: 80px;
    right: 0;
    left: 0;
    z-index: 999;
  }

  .nav-links {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .sign-in-btn {
    margin-top: 20px;
  }

  .navbar {
    padding: 15px 20px;
  }
}

@media (min-width: 769px) {
  .nav-links-wrapper {
    display: flex !important;
    flex-direction: row;
    justify-content: flex-end;
    position: static;
    background: none;
    padding: 0;
  }
}

.nav-links-wrapper {
  display: none;
  align-items: center;
  gap: 30px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: red;
}

.sign-in-btn {
  padding: 10px 25px;
  background-color: white;
  color: black;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.sign-in-btn:hover {
  background-color: #007bff;
  color: white;
}

.solution-dropdown {
  position: relative;
  z-index: 1000; 
}

#solutionDropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%; 
  transform: translateX(-50%);
  background: white;
  width: 600px;
  max-width: 90vw;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  border: 1px solid #e5e5e5; 
}

#solutionDropdown.active {
  display: block;
  position: static;
  transform: none;
  background: white;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  box-shadow: none;
  margin-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.solution-dropdown:hover #solutionDropdown {
  display: block;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-item {
  cursor: pointer;
  pointer-events: auto;
  display: block;
  text-decoration: none;
  background: transparent;
  border-radius: 8px;
  padding: 8px;
  transition: background 0.3s ease;
  color: inherit;
}

.feature-item:hover {
  background: #ecf5ff;
}

.feature-item h4,
.feature-item p {
  color: inherit;
}

.feature-item img {
  width: 32px;
  height: 32px;
}

.feature-item h4 {
  font-size: 14px;
  color: #3f3f3f;
  margin: 8px 0 4px;
}

.feature-item p {
  font-size: 12px;
  color: #555;
  margin: 0;
}

.feature-icon {
  width: 40px;
  height: 40px;
  fill: #0160c6; 
}

.hero, .banner, .main-content {
  position: relative;
  z-index: 1;
}

/* Mobile layout */
@media (max-width: 768px) {
  #solutionDropdown {
    display: none; 
    position: static;
    transform: none;
    background: white;
    width: 100%;
    padding: 15px;
    margin-top: 10px;
    border-radius: 0;      
    box-shadow: none;        
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
  }

  #solutionDropdown.active {
    display: block;
    position: static;
    transform: none;
    background: white;
    width: 100%;
    padding: 10px 15px;
    border-radius: 0;
    box-shadow: none; 
  }
}

@media (max-width: 1100px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Desktop hover behavior */
@media (min-width: 769px) {
  .solution-dropdown:hover #solutionDropdown {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    width: 780px;
    max-width: 90vw;
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 9999;
  }
}
 
.metrics-section {
  background-color: #ffffff;
  color: #202020;
  padding: 120px 20px;
  margin-top: 80px;
}

.metrics-flex-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1600px;
  margin: 0 auto;
  flex-wrap: nowrap;
  padding: 0 40px;
}

.metrics-image {
  flex: 1;
}

.metrics-image img {
  max-height: 400px;
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.metrics-content {
  flex: 1;
  text-align: center;
}

.metrics-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #4f4f4f;
}

.metrics-heading {
  margin-bottom: 20px;
}

.metrics-description {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #686868;
  text-align: left;
}

.metrics-features h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #4a4a4a;
}

.metrics-features ul {
  list-style: none;
  padding-left: 0;
}

.metrics-features li {
  background: rgba(57, 114, 212, 0.07);
  padding: 12px 16px;
  margin-bottom: 10px;
  border-left: 4px solid #0160c6;
  font-size: 16px;
  border-radius: 6px;
}

/* ✅ Responsive Design */
@media (max-width: 992px) {
  .metrics-flex-container {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }

  .metrics-content {
    text-align: center;
  }

  .metrics-description {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .metrics-section {
    padding: 60px 15px;
    margin-top: 40px;
  }

  .metrics-content h2 {
    font-size: 26px;
  }

  .metrics-description {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .metrics-flex-container {
    gap: 20px;
  }

  .metrics-content h2 {
    font-size: 22px;
  }

  .metrics-description {
    font-size: 15px;
    line-height: 1.5;
  }
}
/* Fun fact */
.fun-facts-section {
  padding: 100px 20px;
  background-color: #f7f9ff;
  text-align: center;
}

.fun-facts-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.fun-facts-section-header h2 {
  font-size: 36px;
  color: #4f4f4f;
  font-weight: 700;
}

.fun-facts-section-subtitle {
  font-size: 14px;
  color: #0060e6;
  margin-bottom: 10px;
  font-weight: 600;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.fun-fact-box {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  width: 270px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.fun-fact-box:hover {
  transform: translateY(-5px);
}

.counter {
  font-size: 36px;
  font-weight: bold;
  color: #ff0000;
  margin-bottom: 10px;
}

.fun-fact-box p {
  font-size: 16px;
  font-weight: bold;
  color: #838383;
}

/* ✅ Responsive Design */
@media (max-width: 992px) {
  .fun-facts-section-header h2 {
    font-size: 30px;
  }
  .fun-fact-box {
    width: 220px;
    padding: 25px;
  }
  .counter {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .fun-facts-section-header h2 {
    font-size: 26px;
  }
  .fun-fact-box {
    width: 80%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .fun-facts-section {
    padding: 60px 15px;
  }
  .fun-facts-section-header h2 {
    font-size: 22px;
  }
  .fun-fact-box {
    width: 100%;
    padding: 20px;
  }
  .counter {
    font-size: 28px;
  }
}
 
.card-section {
  background-color: #ffffff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.card-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.card-section-header h2 {
  font-size: 36px;
  color: #4f4f4f;
  font-weight: 700;
}

.card-section-header p {
  font-size: 14px;
  color: #0060e6;
  margin-bottom: 10px;
  font-weight: 600;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
  max-width: 1320px; 
  margin: 0 auto;
}

.card {
  background-color: #004e9c;
  border-radius: 16px;
  padding: 50px 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  align-items: stretch;
}

.card:hover {
  transform: translateY(-8px);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

.card h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 16px;
  text-align: center;
}

.card p {
  font-size: 15px;
  color: #e4ecf2;
  line-height: 1.6;
  text-align: center;
  flex-grow: 1;
}

/* ✅ Responsive adjustments */
@media (max-width: 1024px) {
  .card-section-header h2 {
    font-size: 30px;
  }
  .card-grid {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .card-section {
    padding: 40px 15px;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .card {
    padding: 40px 25px;
  }
  .card h3 {
    font-size: 18px;
  }
  .card p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .card-section-header h2 {
    font-size: 24px;
  }
  .card {
    padding: 30px 20px;
  }
  .card h3 {
    font-size: 16px;
  }
  .card p {
    font-size: 13px;
  }
}
 
/* Our Values section */
.values-section {
  padding: 100px 10px; 
  background-color: #f7f9ff;
  text-align: center;
}

.values-container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  font-size: 40px; 
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 50px;
}

.section-subtitle {
  font-size: 14px;
  color: #0060e6;
  margin-bottom: 10px;
  font-weight: 600;
}

.values-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1320px; 
  margin: 0 auto;
}

.value-card {
  flex: 1 1 250px; 
  max-width: 320px;
  background-color: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 40px 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.value-card.fade-up {
  opacity: 1;
  transform: translateY(0);
}

.value-card.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delay effect */
.value-card:nth-child(1) {
  transition-delay: 0.1s;
}
.value-card:nth-child(2) {
  transition-delay: 0.2s;
}
.value-card:nth-child(3) {
  transition-delay: 0.3s;
}
.value-card:nth-child(4) {
  transition-delay: 0.4s;
}

@media screen and (max-width: 900px) {
  .value-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.value-card:hover {
  transform: translateY(-10px);
}

.icon-box {
  background-color: #0b4dae;
  border-radius: 8px;
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.value-card h3 {
  font-size: 20px;
  color: #111827;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 16px;
  color: #4B5563;
  line-height: 1.6;
}

/* Base styles remain the same above */

/* Responsive adjustments */
@media screen and (max-width: 1024px) {
  .section-title {
    font-size: 32px;
  }

  .values-section {
    padding: 80px 15px;
  }

  .value-card {
    padding: 30px 20px;
  }
}

@media screen and (max-width: 768px) {
  .values-cards {
    flex-direction: column;
    align-items: center;
  }

  .value-card {
    max-width: 90%;
    padding: 25px 20px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 13px;
  }
}

@media screen and (max-width: 480px) {
  .values-section {
    padding: 60px 10px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 12px;
  }

  .icon-box {
    width: 45px;
    height: 45px;
  }

  .icon-box img {
    width: 28px;
    height: 28px;
  }

  .value-card h3 {
    font-size: 18px;
  }

  .value-card p {
    font-size: 14px;
  }
}

/* Leadership section */
.meet-team-section {
  position: relative;
  padding: 120px 0 200px;
  background: linear-gradient(to bottom, #ffffff 50%, #1b355f 50%);
  z-index: 1;
  overflow: hidden;
  animation: fadeIn 1s ease-in-out;
}

.team-members {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  position: relative;
  z-index: 2;
  animation: fadeIn 1.2s ease-in-out;
}

.team-member {
  text-align: center;
  max-width: 200px;
  color: #fff;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.meet-team-section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background-color: #1b355f; /* Blue bottom */
  z-index: -1;
}

.team-social {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.team-social a img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.3s;
}

.team-social a:hover img {
  transform: scale(1.2);
}

.team-container {
  width: 90%;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.team-heading {
  margin-bottom: 80px;
}

.team-heading .section-subtitle {
  font-size: 14px;
  color: #0060e6;
  margin-bottom: 10px;
  font-weight: 600;
}

.team-heading h2 {
  font-size: 40px;
  color: #111;
  margin-bottom: 20px;
}

.team-member img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 6px solid #fff;
  object-fit: cover;
  margin-bottom: 15px;
  position: relative;
  z-index: 3;
}

.team-member h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff; 
  margin: 10px 0 5px;
}

.team-member p {
  font-size: 14px;
  color: #ddd;
  margin-bottom: 10px;
  min-height: 40px; 
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.meet-team-section {
  background: #ffffff; 
  padding: 80px 0 100px; 
  position: relative;
}

/* RESPONSIVE FIX */
@media (max-width: 1024px) {
  .team-members {
    gap: 30px;
  }

  .team-member img {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 900px) {
  .team-members {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .team-member {
    max-width: 100%;
  }

  .team-member img {
    width: 150px;
    height: 150px;
  }

  .team-member h3 {
    font-size: 16px;
  }

  .team-member p {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .team-members {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .team-member img {
    width: 130px;
    height: 130px;
  }

  .team-heading h2 {
    font-size: 26px;
    color: #ffffff;
    font-weight: 600;
  }

  .team-heading .section-subtitle {
    font-size: 13px;
    color: #ffffff;
    font-weight: 100;
  }
}

@media (max-width: 768px) {
  .meet-team-section {
    background-color: #1b355f; /* Full blue background */
    color: #fff;
  }

  .meet-team-section::after {
    display: none; /* Remove the split effect */
  }

  .meet-team-red-line {
    display: none; /* Hide red line in mobile */
  }

  .team-heading h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 20px;
  }

  .team-heading .section-subtitle {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
  }
}

.site-footer {
    background-color: #0c213b;
    color: rgb(209, 224, 251);
    padding: 50px 20px 30px;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left {
    flex: 1.5;
    min-width: 220px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 20px;
}

.description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: transform 0.3s;
}

.social-icons a:hover img {
    transform: scale(1.2);
}

.footer-middle {
    flex: 1.5;
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
    margin-left: 100px;
}

.footer-middle h4,
.footer-right h4 {
    color: #e9f9ff;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-middle ul,
.footer-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-middle li,
.footer-right li {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-middle li a,
.footer-right li a,
.footer-links-bottom a {
    color: #d6e5ff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-middle li a:hover,
.footer-right li a:hover,
.footer-links-bottom a:hover {
    text-decoration: underline;
    color: #ffffff;
}

.footer-right {
    flex: 1;
    min-width: 200px;
    margin-left: 120px;
    text-align: start;
}

.company-details li {
    line-height: 1.8;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    font-size: 13px;
    text-align: center;
}

.footer-links-bottom a {
    margin-left: 20px;
    font-size: 13px;
}

.footer-copy {
    color: #d6e5ff;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
    margin-left: -10px;
}

.footer-copy:hover {
    text-decoration: underline;
    color: #ffffff;
}

.footer-links-bottom a:first-child {
    margin-left: 0;
}

/* Responsive Footer Improvements */
@media (max-width: 1024px) {
  .footer-middle {
    margin-left: 0;
    gap: 40px;
  }
  .footer-right {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-left,
  .footer-middle,
  .footer-right {
    margin-left: 0;
  }

  .footer-middle {
    flex-direction: column;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .footer-links-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }

  .footer-links-bottom a {
    margin: 0;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    width: 130px;
  }

  .description {
    font-size: 14px;
    line-height: 1.6;
  }

  .footer-middle h4,
  .footer-right h4 {
    font-size: 16px;
  }

  .footer-middle li,
  .footer-right li {
    font-size: 13px;
  }

  .footer-bottom {
    font-size: 14px;
  }
}