
:root{
  --nav-bg:#061042;
  --accent:#ffbb00;
  --primary:#003366;
  --muted:#6b7280;
  --card-bg:#ffffff;
  --container:1200px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: "Segoe UI", Arial, sans-serif;
  background:#f4f7f9;
  color:#222;
  -webkit-font-smoothing:antialiased;
}

/* utility container */
.container{max-width:var(--container);margin:0 auto;padding:0 18px}


/* ---------- CAREER PATHS ---------- */
.career-paths{ text-align:center;padding:40px 18px;margin-top:12px}
.career-paths h2{color:var(--primary);font-size:2.1rem;margin-bottom:8px}
.career-grid{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;margin-top:18px}
.career-step{width:260px;padding:20px;border-radius:10px;color:#fff;box-shadow:0 8px 20px rgba(0,0,0,0.06);text-align:center}
.career-step.entry{background:#00aaff}
.career-step.mid{background:#0047bb}
.career-step.senior{background:#002b62}

.explore-btn {
  background: linear-gradient(to right, #fbd02b, #f7a700);
  color: #002b62;
  font-weight: 600;
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.explore-btn:hover {
  background: linear-gradient(to right, #ffe44d, #ffb533);
}


/*job category cards layout*/

.job-categories-section {

  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.job-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.job-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
}

.job-card:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.icon-container {
  background-color: #f1f5f9;
  border-radius: 15px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  min-width: 50px;
  height: 60px;
  width: 60px;
}

.icon-container i {
  font-size: 28px;
  color: #1f0664;
}

.icon-container.yellow {
  background-color: #fff8e1;
}

.icon-container img {
  width: 24px;
  height: 24px;
}

.card-content {
  flex: 1;
  margin-right: 12px;
}

.card-content h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  font-weight: 600;
}

.card-content p {
  margin: 0 0 8px;
  color: #555;
  font-size: 0.95rem;
}

.card-content a {
  color: #007bff;
  font-weight: 500;
  text-decoration: none;
}

.arrow {
  font-size: 1.2rem;
  color: #003366;
}

.view-all {
  text-align: center;
  margin-top: 30px;
}

.view-all button {
  background-color: #0052cc;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}

.view-all button:hover {
  background-color: #003f99;
}

/*Why choose us*/

.why-choose {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.why-choose h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-choose .subtitle {
  font-size: 16px;
  color: #4a4a4a;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /*3 column in 1row*/
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-box {
  background-color: #f8fbfd;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box i {
  font-size: 36px;
  color: #0077c8;
  background-color: #e6f2f9;
  padding: 20px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.feature-box h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 14px;
  color: #555;
}

/*trusted company name*/
.trusted-companies {
  text-align: center;
  padding: 50px 20px;
}

.trusted-companies h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.trusted-companies p {
  color: #6b7280;
  margin-bottom: 30px;
}

.company-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #f9fbfd;
}

.company-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.company-card {
  background-color: #f9fafb;
  padding: 20px 40px;
  min-width: 160px;
  height: 60px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  font-weight: 600;
  color: #595a5b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.company-card:hover {
  background: linear-gradient(135deg, #e0f2fe, #ede9fe);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

/*info column and footer*/

.footer {
  background: linear-gradient(135deg, #002244, #003366);
  color: #ffffff;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-follow-us,
.footer-contact {
  flex: 1;
  min-width: 220px;
}

.footer-follow-us h4,
.footer-contact h4 {
  margin-bottom: 12px;
  font-size: 18px;
  border-bottom: 2px solid #ffc107;
  display: inline-block;
  padding-bottom: 5px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: white;
  font-size: 22px;
  background-color: #ffffff22;
  padding: 8px;
  border-radius: 50%;
  transition: background-color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  background-color: #ffc107;
  color: #003366;
  transform: scale(1.1);
}

.footer-contact p {
  margin: 6px 0;
  font-size: 15px;
}

.footer-contact i {
  margin-right: 8px;
  color: #ffc107;
}

.footer-center a:hover {
  color: #ffc107;
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  font-size: 13px;
  color: #ffffffaa;
  border-top: 1px solid #ffffff33;
  margin-top: 20px;
}
.footer-center {
  display: flex;
  flex-wrap: wrap;
  max-width: 600px; 
  gap: 10px 30px;   /* row and column spacing */
  color: #fff;
}

.footer-center a {
  flex: 0 0 23%;    /* 4 columns (roughly) */
  color: #fff;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 16px;
}

/* ---------- MODAL (mobile login) ---------- */
.modal{display:none;position:fixed;inset:0;background:rgba(0,0,0,0.5);z-index:1500;align-items:center;justify-content:center}
.modal.open{display:flex}
.modal-box{background:#fff;border-radius:12px;padding:20px;width:92%;max-width:360px;position:relative;box-shadow:0 12px 30px rgba(0,0,0,0.25)}
.modal-close{position:absolute;top:10px;right:12px;background:transparent;border:0;font-size:22px;cursor:pointer}

/* small utility */
.sr-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}

/* ---------- RESPONSVIE RULES ---------- */
@media (max-width:1000px){
  .hero-inner{flex-direction:column;align-items:center}
  .hero-text{text-align:center}
  .form-container{order:3;width:95%;max-width:420px;margin-top:16px}
  .login-btn-mobile{display:inline-block}
}

@media (max-width:768px){
  .nav-links{display:none}
  .hamburger{display:block}
  .hero-text h1{font-size:2.2rem}
  .search-card{flex-direction:column;align-items:stretch}
  .search-button{width:100%}
  .career-grid{flex-direction:column;align-items:center}
}

@media (max-width:480px){
  .hero-text h1{font-size:1.6rem}
  .lead{font-size:0.95rem}
  .container{padding:0 12px}
}

/* ===== NAVBAR ===== */
#navbar {
  background: #001b60;
  color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 30px;
}
#company-name {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.nav-links a:hover {
  color: #ffc107;
}
.nav-login-btn {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
}
.nav-login-btn:hover {
  background: #fff;
  color: #001b60;
}
.register-button {
  background: #ffc107;
  color: #eceff4;
  font-weight: 700;
  border: 2px solid #fff;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;

}
.register-button:hover {
  background-color: #f8f7f5;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
}
.hamburger span {
  width: 22px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero-section {
  padding-top: 100px;
  text-align: center;
}
.hero-content h1 {
  color: #001b60;
  font-size: 4rem;
  margin-bottom: 10px;
}
.hero-content p {
  color: #444;
  font-size: 1.1rem;
}
.hero-section h1 {
   /* Size for the main heading */
    color: #003366;
    margin-bottom: 10px;
    font-size: 4rem;
  font-weight: bold;
}

.hero-section .subheading {
    font-size: 18px; /* Size for the subheading */
    color: #00509e; /* Lighter blue for contrast */
    font-weight: 400; /* Normal font weight */
    margin-top: 10px;
}

/* ===== SEARCH BAR ===== */
.search-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto; /* centers it vertically under heading */
  width: 100%;
}

.search-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 12px;
  gap: 12px;

  /* 👇 center box and limit its size */
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.input-group {
  position: relative;
  flex: 1;
  min-width: 220px;
}

.icon {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #777;
}

.search-input,
.experience-select {
  width: 100%;
  padding: 12px 12px 12px 38px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
}

.search-input:focus,
.experience-select:focus {
  border-color: #0056b3;
  box-shadow: 0 0 0 3px rgba(0, 85, 179, 0.1);
}

.search-button {
  background: #003580;
  color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.search-button:hover {
  background: #001f66;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .search-container {
    flex-direction: column;
    align-items: stretch;
    max-width: 95%;
  }

  .search-button {
    width: 100%;
  }
}


/* ===== LOGIN MODAL ===== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}
.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  position: relative;
  text-align: center;
}
.close-modal {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  border: none;
  font-size: 22px;
  cursor: pointer;
}
.modal.open {
  display: flex;
}
.login-form input {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.login-form .submit {
  background: #003580;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 5px;
  width: 100%;
  cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #001b60;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 20px;
  }
  .nav-links.active {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
  .search-container {
    width: 95%;
    flex-direction: column;
  }
}

/* Center the sign-up form-container2 */
.form-container2 {
    width: 400px; /* Set a fixed width for the box */
    margin: 0 auto; /* Center the box horizontally */
    padding: 20px; /* Add padding inside the box */
    border: 1px solid #ddd; /* Add a light border around the box */
    border-radius: 8px; /* Round the corners of the box */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Add a subtle shadow for depth */
    background-color: #f0f3f8; /* Set a white background */
    text-align: center; /* Center-align the text inside */
    position: absolute; /* Allow precise positioning */
    top: 50%; /* Move to the vertical center */
    left: 50%; /* Move to the horizontal center */
    transform: translate(-50%, -50%); /* Center using translation */
  }
  
  /* Style the heading */
  .form-container2 h1 {
    font-size: 24px; /* Increase the font size */
    margin-bottom: 20px; /* Add space below the heading */
    color: #333; /* Set the text color */
  }
  
  /* Style the input fields */
  .signup-form input[type="text"],
  .signup-form input[type="password"],
  .signup-form input[type="submit"] {
    width: 90%; /* Make the inputs fill most of the box */
    padding: 10px; /* Add padding for better appearance */
    margin-bottom: 15px; /* Add space between inputs */
    border: 1px solid #ccc; /* Add a light border */
    border-radius: 4px; /* Slightly round the corners */
    font-size: 14px; /* Set a readable font size */
    box-sizing: border-box; /* Include padding and border in width calculation */
  }
  
  /* Style the submit button */
  .signup-form input[type="submit"] {
    background-color: #007bff; /* Set button background color */
    color: #fff; /* Set button text color */
    font-weight: bold; /* Make the text bold */
    border: none; /* Remove the border */
    cursor: pointer; /* Add a pointer cursor on hover */
    transition: background-color 0.3s ease; /* Smooth hover effect */
  }
  
  /* Hover effect for the submit button */
  .signup-form input[type="submit"]:hover {
    background-color: #0056b3; /* Darker shade on hover */
  }
/* review button style*/
  .floating-review-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ff9800;
  color: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  text-decoration: none;
}

.floating-review-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #ff9f00;
  color: #fff;
  font-size: 18px;
  padding: 12px 22px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0px 6px 16px rgba(255, 159, 0, 0.45);
  z-index: 999;
  animation: floatUpDown 2.2s ease-in-out infinite, glowPulse 2.4s ease-in-out infinite;
}

/* Smooth up-down floating motion */
@keyframes floatUpDown {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* Soft glowing pulse */
@keyframes glowPulse {
  0% { box-shadow: 0 6px 16px rgba(255, 159, 0, 0.45); }
  50% { box-shadow: 0 6px 22px rgba(255, 159, 0, 0.75); }
  100% { box-shadow: 0 6px 16px rgba(255, 159, 0, 0.45); }
}

/* Hover effect */
.floating-review-btn:hover {
  transform: scale(1.07);
  transition: 0.2s ease-in-out;
}
/* Tooltip bubble */
.review-tooltip {
  position: fixed;
  background: #001b60;
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  max-width: 220px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  z-index: 2000;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
/* Wrapper around password + eye icon */
.password-wrapper {
  position: relative;
  width: 100%;
}

/* Input box */
.password-wrapper input {
  width: 100%;
  padding-right: 40px; /* space for eye icon */
  height: 48px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 16px;
  padding-left: 14px;
}

/* Eye icon */
.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  color: #444;
}

.toggle-password i {
  pointer-events: none;
}

/* Optional: hover color */
.toggle-password:hover {
  color: #222;
}

/* Add Forgot Password link in modal */
.forgot-password-link {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  text-align: right;
}

.forgot-password-link a {
  color: #0056d6;
  text-decoration: none;
}

.forgot-password-link a:hover {
  text-decoration: underline;
}
