body {
  font-family: 'poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 2rem;
}

/* Apply same style to both links and dropdown toggle */
.nav-links a,
.dropdown-toggle {
  font-size: 1.6rem;
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* Hover effect */
.nav-links a:hover,
.dropdown-toggle:hover {
  color: var(--color-primary);
}

/* Dropdown container */
.dropdown {
  position: relative;
}

/* Flex for arrow */
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Arrow animation */
.arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.dropdown.active .arrow {
  transform: rotate(180deg);
}

/* Submenu hidden */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 300px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.15);
  border-radius: 6px;
  overflow: hidden;
  z-index: 999;
}
.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
}
.dropdown-menu a:hover {
  background: #f0f0f0;
}


.hero-carousel {
  position: relative;
  height: 100vh; /* Full screen */
  background-image: url("../images/coperate.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll; /* default */
  background-attachment: fixed; /* fallback for desktop */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  color: white;
  overflow: hidden;
}

/* Overlay for readability */
.hero-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 2rem;
  text-align: center;
  top: 10%;
  transform: translateY(-50%);
}


.hero-content h1 {
  font-size: 5rem;
  padding-left: 2rem;
  letter-spacing: -2px;
  color: aliceblue;
  font-family: 'poppins', sans-serif;
  text-align: left;

  

}

.clean {
 color: var(--color-accent);
  font-size: 7rem;
}

/* hero-text */
.hero-p {
  font-size: 2rem;
  color: #ddd;
  text-align: left;
  padding-left: 2rem;
  margin-top: 1rem;
  max-width: 700px;
}


.core-values {
  padding: 5rem 2rem;
  text-align: center;
  background: var(); /* soft brand secondary */
}

.core-values h2 {
  /* font-size: 2.8rem; */
  margin-bottom: 3rem;
  color: #222E50;
}

.core-values p {
  margin-bottom: 1.5rem;
  color: #444;
  text-align: left;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  padding: 2rem;
  border-radius: 1rem;
  background: #1565c0; /* default (will be overridden by nth-child) */
  color: #fff; /* Make all text white by default */
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, background 0.3s ease;
  text-align: center;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.15);
}

.value-card .icon {
  font-size: 3rem;
  color: #0073C7;
  margin-bottom: 1rem;
}
.value-card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff; /* strong white for titles */
}


.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 4fr));
  gap: 2rem;
  padding: 3rem;
}

.value-card {
  padding: 2rem;
  border-radius: 1rem;
  color: #fff; /* default text white */
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.value-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.85); /* softer white for paragraphs */
  text-align: left;
}

.value-card i {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #fff; /* icons adapt (stay white) */
}

/* Different backgrounds */
.value-card:nth-child(1) { background: #00796b; }   /* Teal */
.value-card:nth-child(2) { background: #1565c0; }   /* Blue */
.value-card:nth-child(3) { background: #f57c00; }   /* Orange */
.value-card:nth-child(4) { background: #6a1b9a; }   /* Purple */
.value-card:nth-child(5) { background: #2e7d32; }   /* Green */
.value-card:nth-child(6) { background: #c2185b; }   /* Pink */
.value-card:nth-child(7) { background: #fbc02d; }   /* Yellow */
.value-card:nth-child(8) { background: #8e24aa; }   /* Deep Purple */


/* Hover effect */
.value-card:hover {
  transform: translateY(-5px);
}

.value-button {
  text-align: center;   /* centers inline elements like button */
  margin-top: 1.5rem;   /* keep your spacing */
}


.value-button {
  display: flex;
  justify-content: center;  /* horizontal centering */
  align-items: center;
  margin-top: 1.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.learn-more-btn {
  background: #0073C7;
  color: white;
  border: none;
 
  font-weight: 600;
  padding: 2rem 3rem;
}

.closing {
  text-align: left;
  margin-top: 3rem;
  font-size: 1.4rem;
  color: #0073C7;
}


/*  */




/* Interested section  */

.interest {
  text-align: center;
  background: white;
}

    .interest-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: auto;
      text-align: center;
    }

    .interest h2 {
      display: inline-block; /* shrinks to text width */
  margin: 10rem auto 1rem;
  color: #0073C7;
  border-bottom: 5px solid var(--color-accent);
    }

    .interest-card {
      position: relative;
      overflow: hidden;
      height: 400px;
      display: flex;
      align-items: flex-end;
      color: #fff;
      margin: 3rem 0;

    }

    .interest-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.4); /* dark overlay */
    }

    .interest-content {
      position: relative;
      padding: 1.5rem;
      z-index: 1;
      text-align: left;
    }

    .interest-card h3 {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
    }

    .btn {
      display: inline-block;
      padding: 1rem 1rem;
      text-decoration: none;
      color: #fff;
      font-weight: bold;
      font-size: 1.4rem;
      transition: all 0.3s ease;
      border: 5px solid var(--color-accent);
      text-align: left;
      background: var(--color-primary);
     
    }

    .btn:hover {
      background: var(--color-primary-dark);
      color: var(--color-light);
      text-decoration: none;
    }

    /* Background images */
    .interest1 {
      background: url("../images/career1.jpeg") center/cover no-repeat;
    }

    .interest2 {
      background: url("../images/product3.jpg") center/cover no-repeat;
    }




/* Responsiveness */

/* Desktop: show on hover */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* Mobile: show on click */
@media (max-width: 1180px) {
  .dropdown.active .dropdown-menu {
    display: block;
    position: static; /* makes it stack nicely */
    box-shadow: none;
    background: #f9f9f9;
    /* margin-top: 5px; */
  }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background: white;
    position: absolute;
    top: 70px; /* adjust based on your header height */
    left: 0;
    width: 100%;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
    z-index: 1000;
  }

    .dropdown-toggle i {
  display: block;
}

.hero-carousel {
  height: 70vh;
  background-attachment: scroll;
}


}


@media (max-width: 900px) {
     .Quote {
    display: none;
  }
}
/* toggle arrow */

@media (max-width: 768px) {
  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }
  .hero-content h1 {
  letter-spacing: -1.5px;
  font-size: 3.5rem;
} 
.clean {
  font-size: 3.5rem;
}
 .hero-p {
    font-size: 1.4rem;
    padding-left: 2rem;
    text-align: left;
    max-width: 100%;
    margin: 1rem auto;
  }

   .Quote {
    display: none;
  }

}

