html, body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family:  sans-serif;
}

body {
  color: #02043d;
}

/* NAVBAR */

header {
  position: fixed;
  width: 100%;
  background: #eff4f7;
  z-index: 1000;
}

.navbar {
  max-width: 1100px;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.logo {
  width: 80px;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 18px;
  align-items: center;
}

.navbar ul li a {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  color: #0b2d5c;
  text-decoration: none;
  background: transparent;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.navbar ul li a:hover {
  background-color: #18345f;
  color: #ffffff;
}

.hamburger {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  color: #0b3a6f;
  cursor: pointer;
}

/* HERO */
.hero {
  position: relative;
  height: 624px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(1, 4, 9, 0.839);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: 0 20px;
}

.hero-title {
  color: #fff;
  font-size: 72px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.hero-buttons a {
  text-decoration: none !important;
}

.btn {
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.25s ease;
  padding: 12px 32px;
}

.btn-light {
  background: #fff;
  color: #0b3a6f;
}

.btn-light:hover {
  background: #0b2d5c;
  color: white;
}

.btn-primary {
  background: #e5e5e5;
  color: #0b2d5c;
}

.btn-primary:hover {
  background: #0b2d5c;
  color: white;
}

/* FEATURE STRIP */
.hero-features {
  background: #0b3a6f;
  padding: 18px 0;
}

.hero-features-inner {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 21px;
}

.hero-feature img {
  width: 50px;
}

.divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.4);
}

/* STATS */
.stats-section {
  padding: 60px 20px;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: #0b3c6d;
}

.stat-label {
  margin-top: 14px;
  font-size: 20px;
  font-weight: 600;
  color: #0b3c6d;
}

/* ABOUT SECTION */

.about-section {
  background: #0b3a6f;
  padding: 90px 20px;
  color: #ffffff;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-left {
  position: relative;
}

.about-pill {
  background: #dedcdc;
  color: #0b3a6f;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 28px;
  text-align: center;
  display: inline-block;
  margin-bottom: 50px;
  margin-left: 180px;
}

.about-text {
  display: none;
}

.about-text.active {
  display: block;
}

.about-text p {
  margin-bottom: 14px;
  line-height: 1.6;
  font-size: 20px;
}

.about-progress {
  margin-top: 28px;
  height: 3px;
  background: rgba(255,255,255,0.3);
  position: relative;
  grid-column: 1 / -1;
  width: 80%;
  margin-left: 100px;
}

.progress-bar {
  position: absolute;
  height: 100%;
  width: 60.0%;
  background: #ffffff;
  transition: transform 0.5s ease;
}

.about-right {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: 16px;
  display: none;
  height: 286px;
  object-fit: cover;
}

.about-img.active {
  display: block;
}

.who-we-are {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  margin-top: 20px;
  justify-content: flex-end;
}

.who-we-are span {
  color: #ffffff;
  font-size: 20px;
}

.who-we-are button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #0b3a6f;
  cursor: pointer;
  font-size: 18px;
}

/* SOLUTIONS SECTION */

.solutions-section {
  background: #f5f5f5;
  padding: 80px 20px;
  margin-bottom: 0px;
}

.solutions-container {
  max-width: 1200px;
  margin: auto;
}

.solutions-title {
  text-align: center;
  font-size: 40px;
  color: #0b3a6e;
  margin-bottom: 16px;
  font-weight: 700;
}

.solutions-desc {
  text-align: center;
  max-width: 1100px;
  margin: 20px auto;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.solutions-tabs {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 40px 0 50px;
  flex-wrap: wrap;
}

.solution-tab {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  padding: 12px 0;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  color: #666;
  white-space: nowrap;
  font-weight: 500;
}

.solution-tab:hover {
  color: #0b3a6e;
}

.solution-tab.active {
  border-color: #0b3a6e;
  font-weight: 600;
  color: #0b3a6e;
}

.solutions-content {
  position: relative;
  min-height: 500px;
}

.solution-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  visibility: hidden;
}

.solution-panel.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.solution-image {
  position: relative;
  width: 75%;
  height: 460px;
  overflow: hidden;
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 0 150px;
}

.solution-card {
  position: absolute;
  left: 40px;
  max-width: 480px;
  background: white;
  padding: 36px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  z-index: 3;
}

.solution-card h3 {
  font-size: 23px;
  color: #0b3a6e;
  margin-bottom: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.solution-card h4 {
  font-size: 20px;
  color: #0b3a6e;
  margin-bottom: 15px;
  font-weight: 700;
}

.solution-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* PROCESS SECTION */

.process-section {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
  padding-bottom: 0px;
}

.process-section .section-title {
  font-size: 40px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 30px;
  color: #15426f;
  margin-top: -30px;
}

.process-box {
  background: #0b3a6f;
  color: #fff;
  border-radius: 12px;
  padding: 60px 20px;
  max-width: 1400px;
  margin: 0 auto;
 
}

.process-box h3 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 50px;
}

.process-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.process-card {
  width: 340px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: default;
}

.process-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.process-card h4 {
  color: #02043d;
  font-size: 18px;
  font-weight: 600;
  margin: 20px 20px 15px;
}

.process-card p {
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
  padding: 0 20px 26px;
}

.process-card:hover {
  background-color: #f2f2f2;
  transform: translateY(-4px);
}

/* CANDIDATES SECTION */

.candidates-section {
  
  background: #eeeff5;
  text-align: center;
  height: 600px;
  margin-top: 0px !important;
  padding-top: 0px !important;
}

.candidates-section h3 {
  font-size: 30px;
  font-weight: 600;
  color: #0b3a6f;
  margin-bottom: 20px;
  padding-top: 60px;
}

.candidate-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.candidate-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: default;
  margin-top: 40px;
  width: 340px;
  
}

.candidate-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.candidate-card h4 {
  margin: 25px 20px 10px;
  font-weight: 600;
  font-size: 20px;
  color: #02043d;
}

.candidate-card p {
  font-size: 14px;
  line-height: 1.5;
  color: #383737;
  padding: 0 20px 26px;
}

.candidate-card:hover {
  background-color: #f2f2f2;
  transform: translateY(-4px);
}

/* HELPING BAR */

.helping-wrapper {
  width: 100%;
  background-color: #0b3a6f;
  padding: 34px 20px;
  text-align: center;
}

.helping-wrapper h1 {
  margin: 0;
  color: #ffffff;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.5;
}

/* INDUSTRIES SECTION */

.industries-section {
  background: #ffffff;
  padding: 60px 20px;
}

.industries-wrapper {
  max-width: 1320px;
  margin: auto;
  background: #eeeeee;
  border-radius: 22px;
  padding: 44px;
  display: flex;
  gap: 28px;
  overflow: hidden;
}

.industries-info {
  width: 340px;
  background: #ffffff;
  padding: 40px 20px;
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(0,0,0,.1);
  flex-shrink: 0;
  line-height: 1.5;
  transition: background 0.3s ease, color 0.3s ease;
}

.industries-info h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #0b3a6f;
}

.industries-info p {
  color: #333;
}

.industries-info:hover {
  background: #0b3a6f;
  color: white;
}

.industries-info:hover h3,
.industries-info:hover p {
  color: white;
}

.industries-slider-container {
  flex: 1;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 30px;
}

.industries-viewport {
  overflow: hidden;
}

.industries-slider {
  display: flex;
  gap: 22px;
  transition: transform .55s ease;
  will-change: transform;
}

.industries-slider.no-transition {
  transition: none !important;
}

.industry-card {
  flex: 0 0 340px;
  height: 160px;
  border-radius: 18px;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.industry-card h4 {
  margin: 0;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  max-width: 220px;
}

.industry-card span {
  position: absolute;
  bottom: 18px;
  right: 22px;
  font-size: 22px;
  font-weight: 800;
  opacity: 0.9;
}

.industry-card.dark,
.industry-card.light {
  background: #ffffff;
  color: #0b3a6f;
}

.industry-card:hover {
  background: #0b3a6f;
  color: white;
  transform: translateY(-4px);
}

.industry-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 3px solid #0b3a6f;
  background: #ffffff;
  color: #0b3a6f;
  font-size: 20px;
  padding-bottom:2px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease;
}

.industry-arrow:hover {
  background: #0b3a6f;
  color: #ffffff;
}

/* HELP SECTION */

.help-section {
  background: #0b3a6f;
  padding: 80px 20px;
  color: #ffffff;
}

.help-container {
  max-width: 1210px;
  margin: 0 auto;
}

.help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "title title"
    "left  right";
  gap: 34px 44px;
  align-items: start;
}

.help-title1 {
  grid-area: title;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.help-left {
  grid-area: left;
}

.help-title2 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 30px;
}

.help-photo {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,0.18);
}

.help-photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.help-right {
  grid-area: right;
  display: flex;
  justify-content: flex-end;
}

.help-form {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  color: #111827;
  padding: 26px;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.18);
}

.help-form label {
  display: block;
  margin-bottom: 14px;
}

.help-form label span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

.help-form input,
.help-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  font-size: 13px;
  outline: none;
  font-family: 'Inter', sans-serif;
}

.help-form textarea {
  height: 70px;
  resize: vertical;
}

.attachment-box {
  height: 80px;
  border: 2px dashed #e2e6ea;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  background: #fff;
  transition: border-color .25s ease, background .25s ease;
}

.attachment-box:hover {
  border-color: #0b3a6f;
  background: #f7faff;
}

.attachment-icon {
  font-size: 22px;
  color: #0b3a6f;
}

.attachment-text {
  font-size: 12px;
  color: #666;
  text-align: center;
  padding: 0 10px;
}

.help-submit {
  width: 100%;
  height: 40px;
  border: none;
  border-radius: 6px;
  background: #0b3a6f;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  transition: filter 0.3s ease;
}

.help-submit:hover {
  filter: brightness(0.95);
}

/* FOOTER */

.footer {
  background: #e5e7f0;
  color: #010420;
  padding-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  width: 150px;
  margin-bottom:-20px;
  margin-top: -50px;
}

.footer-col h4,
.footer-col h5 {
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 600;
  color: #050435;
  margin-left: -20px;
}

.footer-col p,
.footer-col a {
  font-size: 14px;
  opacity: 0.85;
  color: #050435;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  line-height: 1.6;
  width: 450px;
  margin-left: -20px;

}
.footer-col.contact h5{ margin-left: -200px ;}


.footer-col a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-col.contact p {
  line-height: 1.8;
  margin-bottom: 10px;
  margin-left: -200px;
}

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
  font-size: 13px;
  opacity: 0.7;
}

/* MOVE TO TOP BUTTON */

.to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #0b3a6f;
  background: #ffffff;
  color: #0b3a6f;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease, color 0.25s ease;
  z-index: 2000;
}

.to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.to-top:hover {
  background: #0b3a6f;
  color: #ffffff;
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */

/* TABLET (1024px and below) */
@media (max-width: 1024px) {
  
  .navbar {
    max-width: 900px;
  }

  .hero-title {
    font-size: 56px;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-pill {
    margin-bottom: 25px;
  }

  .solutions-tabs {
    gap: 30px;
  }

  .solution-card {
    left: 20px;
    max-width: 400px;
  }

  .candidate-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-wrapper {
    flex-direction: column;
  }

  .industries-info {
    width: 100%;
  }

  .help-grid {
    gap: 30px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col:first-child {
    grid-column: 1 / -1;
  }
}

/* ================================================================
   COMPLETE MOBILE RESPONSIVENESS FIXES - FINAL VERSION
   Replace your previous mobile fixes with this complete version
   ================================================================ */


/* TABLET VIEW (768px - 1024px) */
@media (max-width: 1024px) {
  
  .hero {
    width: 100%;
    height: 70vh;
  }

  .hero-title {
    width: 100%;
    font-size: 48px;
    margin-left: 0;
    padding: 0 20px;
  }

  .hero-buttons {
    width: 100%;
    margin-left: 0;
    justify-content: center;
  }

  .stat-card {
    width: 100%;
    max-width: 350px;
  }

  .about-container {
    grid-template-columns: 1fr;
    height: auto;
  }

  .about-progress {
    width: 100%;
    margin-left: 0;
  }

  .solution-card {
    margin-left: 20px;
    max-width: 400px;
  }

  .industries-wrapper {
    padding: 30px;
  }

  .candidate-cards {
    grid-template-columns: repeat(2, 1fr);
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
}

/* MOBILE VIEW (max-width: 768px) - COMPLETE FIX */
@media (max-width: 768px) {

  /* ===== GLOBAL CONTAINER FIXES ===== */
  body {
    overflow-x: hidden !important;
    width: 100vw;
    max-width: 100vw;
  }

  section {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .container,
  .stats-inner,
  .about-container,
  .solutions-container,
  .process-box,
  .candidate-cards,
  .industries-wrapper,
  .help-container,
  .footer-container {
    width: 100% !important;
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
  }

  /* ===== NAVBAR FIXES ===== */
  .navbar {
    width: 100%;
    max-width: 100vw;
    padding: 10px 16px;
    height: 60px !important;
  }

  .logo {
    width: 60px !important;
    height: auto;
    margin-left: 0 !important;
  }

  .navbar ul {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
  }

  .navbar ul li {
    width: 100%;
  }

  .navbar ul li a {
    margin: 0 !important;
    padding: 12px 16px !important;
    font-size: 16px !important;
    width: 100%;
    box-sizing: border-box;
  }

  /* ===== HERO SECTION COMPLETE FIX ===== */
  .hero {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 10vh!important;
    min-height: 600px;
    margin: 0 !important;
    padding: 0 !important;
  }

  .hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-overlay {
    width: 100%;
    height: 100%;
  }

  .hero-content {
    width: 100% !important;
    max-width: 100vw !important;
    padding: 0 20px !important;
    box-sizing: border-box;
  }

  .hero-title {
    width: 100% !important;
    font-size: 32px !important;
    line-height: 1.3;
    margin: 0 0 30px 0 !important;
    padding: 0 !important;
    text-align: center;
  }

  .hero-buttons {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    align-items: center !important;
    justify-content: center !important;
    height: 90PX;
  }


  .hero-buttons .btn {
    width: 85% !important;
    max-width: 150px !important;
    height: 108px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  .btn-light,
  .btn-primary {
    padding: 12px 24px !important;
  }

  /* ===== HERO FEATURES FIXES ===== */
  .hero-features {
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 20px 16px !important;
  }

  .hero-features-inner {
    width: 100% !important;
    flex-direction: column;
    gap: 20px;
    padding: 0 !important;
  }

  .hero-feature {
    width: 100%;
    font-size: 16px;
    margin: 0 !important;
    justify-content: center;
  }

  .hero-feature img {
    width: 40px;
  }

  .divider {
    display: none;
  }

  /* ===== STATS SECTION FIXES ===== */
  .stats-section {
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 40px 16px !important;
  }

  .stats-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px;
    width: 100% !important;
    padding: 0 !important;
  }

  .stat-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .stat-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .stat-label {
    margin: 20px 0 !important;
    width: 100%;
    text-align: center;
  }

  /* ===== ABOUT SECTION FIXES ===== */
  .about-section {
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 60px 16px !important;
  }

  .about-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px;
    height: auto !important;
    width: 100% !important;
  }

  .about-pill {
    position: relative !important;
    width: auto !important;
    max-width: 200px !important;
    margin: 0 auto 20px !important;
    font-size: 20px !important;
    margin-bottom: 30px !important;
    margin-left: 100px !important;
    
  }

  .about-left {
    width: 100% !important;
    order: 1;
  }

  .about-text {
    width: 100% !important;
  }

  .about-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    margin-top: 25px;
  }

  .about-right {
    width: 100% !important;
    order: 2;
  }

  .about-img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 250px !important;
  }

  .who-we-are {
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
    margin: 20px 0 !important;
    justify-content: center;
    left: auto !important;
    width:200px !important ;  
    margin-left:150px !important;
  }

  .who-we-are span,
  .who-we-are button {
    margin:  10px !important;
    gap: 10px !important;
    margin-left: 0px !important;
  }

  .about-progress {
    width: 90% !important;
    margin: 30px 0 0 0 !important;
    order: 3;
  }

  /* ===== SOLUTIONS SECTION FIXES ===== */
  .solutions-section {
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 60px 0 !important;
    height: auto !important;
    margin: 0 !important;
  }

  .solutions-container {
    height: auto !important;
    margin: 0 !important;
    padding: 0 16px !important;
  }

  .solutions-title {
    font-size: 28px;
    padding: 0 !important;
    margin-bottom: 20px;
  }

  .solutions-desc {
    font-size: 15px;
    padding: 0 !important;
    margin: 16px 0 !important;
  }

  .solutions-tabs {
    flex-direction: column;
    gap: 0;
    margin-bottom: 30px;
    width: 100%;
  }

  .solution-tab {
    width: 100% !important;
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    border-left: 4px solid transparent;
  }

  .solution-tab.active {
    background: #f0f7ff;
    border-left-color: #0b3a6e;
  }

  .solutions-content {
    min-height: auto;
    width: 100%;
  }

  .solution-panel {
    position: relative !important;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    width: 100%;
  }

  .solution-panel.active {
    max-height: 1500px;
    margin-top: 20px;
  }

  .solution-card {
    position: relative !important;
    left: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 20px 0 !important;
    padding: 24px !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .solution-card h3 {
    width: 100% !important;
    font-size: 20px !important;
    margin: 0 0 15px 0 !important;
  }

  .solution-card h4 {
    font-size: 18px !important;
    width: 100% !important;
  }

  .solution-card p {
    font-size: 14px;
  }

  .solution-image {
    width: 100% !important;
    height: 300px;
    margin: 0 !important;
  }

  .solution-image img {
    width: 100% !important;
    height: 100%;
    border-radius: 16px !important;
  }

  /* ===== PROCESS SECTION COMPLETE FIX ===== */
  .process-section {
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 60px 0 !important;
    height: auto !important;
    margin: 0 !important;
  }

  .section-title {
    font-size: 28px !important;
    margin: 0 0 30px 0 !important;
    padding: 0 16px !important;
    margin-top: -40px  !important;
  }

  .process-box {
    width: 100% !important;
    max-width: 100vw !important;
    height: auto !important;
    padding: 40px 16px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  .process-box h3 {
    font-size: 24px !important;
    margin-bottom: 30px !important;
    margin-top: 10px !important;
    padding: 0 !important;
  }

  .process-cards {
   display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    width: 120% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 16px !important;
    
  }

  .process-card {
    width: 95% !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    margin-left: 10px !important;   
    height: 350px !important;
   padding-right: 20px !important; 
   padding-left: 10px !important; 
   
  }

  .process-card img {
     width: 120% !important;
    height: 210px;
    margin-left: -10px !important;
    
  
  }

  .process-card-content {
    width: 100%;
    padding: 20px !important;
  }

  
  .process-card h4 {
    width: 100%;
    margin: 0 0 10px 0 !important;
    margin-top: 20px !important;
  }

  .process-card p {
    width: 100%;
    padding: 0 !important;
    
  }

  /* ===== CANDIDATES SECTION COMPLETE FIX ===== */
  .candidates-section {
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 60px 0 !important;
    height: auto !important;
    margin: 0 !important;
    margin-top: -40px !important;
  }

  .candidates-section h3 {
    font-size: 24px !important;
    margin: 0 0 30px 0 !important;
    padding: 0 16px !important;
  }

  .candidate-cards {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 16px !important;
  }

  .candidate-card {
     width: 90% !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    margin-left: 22px !important;   
    height: 340px !important;
   padding-right: 20px !important; 
   padding-left: 10px !important;
  }


  .candidate-card img {
    width: 120% !important;
    height: 200px;
    margin-left: -10px !important;
  }

  .candidate-card-content {
    width: 100%;
    padding: 20px !important;
  }

  .candidate-card h4 {
    margin: 0 0 10px 0 !important;
    margin-top: 15px !important;
  }

  .candidate-card p {
    padding: 0 !important;
  }

  /* ===== HELPING SECTION FIX ===== */
  .helping-wrapper {
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 40px 20px !important;
  }

  .helping-wrapper h1 {
    font-size: 24px;
    line-height: 1.4;
  }

  /* ===== INDUSTRIES SECTION FIXES ===== */
  .industries-section {
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 60px 0 !important;
  }

  .industries-wrapper {
    flex-direction: column;
    padding: 20px 16px !important;
    gap: 30px;
    width: 100% !important;
  }

  .industries-info {
    width: 80% !important;
    padding: 24px;
    margin: 0 !important;
    margin-left: 40px !important;
  }

  .industries-slider-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: auto;
    gap: 10px;
    margin: 0;
    padding: 0;
    width: 350px;
    margin-left:18px !important;
    width: 80% !important;
   
  }

  .industries-viewport {
    width: 100% !important;
    overflow: hidden;
  }

  .industries-slider {
    gap: 16px;
    
  }

  .industry-card {
    flex: 0 0 280px;
    height: 150px;
    padding: 10px;
    margin-left:0px !important;
    margin-right: 8px !important
  }

  .industry-card h4 {
    font-size: 16px;
  }

  .industry-arrow {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    margin: 0 !important;
    padding-top: 2px !important;
    font-weight:600 !important ;
    margin-left: auto !important;
    width: 50px !important;
    
    
   }

  /* ===== HELP SECTION FIXES ===== */
  .help-section {
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 60px 0 !important;
  }

  .help-container {
    padding: 0 16px !important;
  }

  .help-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px;
    width: 100% !important;
  }

  .help-title1 {
    font-size: 28px !important;
    padding: 0 !important;
    margin-left: 85px !important;
  }

  .help-left {
    width: 100% !important;
  }

  .help-title2 {
    font-size: 20px !important;
    margin: 0 0 20px 0 !important;
    text-align: center;
  }

  .help-photo {
    width: 100% !important;
    margin: 20px 0 !important;
    margin-right: 10px !important;
    margin-left: -5px !important;
  }

  .help-photo img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .help-right {
    width: 100% !important;
    justify-content: center;
  }

  .help-form {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 24px !important;
    box-sizing: border-box !important;
    
    margin-right: 5px !important
  }

  .form-row {
    flex-direction: column;
    gap: 16px;
  }

  .help-form input,
  .help-form textarea {
    width: 100% !important;
  }

  .attachment-icon {
    margin: 0 !important;
  }

  .attachment-text {
    margin: 0 !important;
  }

  /* ===== FOOTER FIXES ===== */
  .footer {
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 40px 0 !important;
  }

  .footer-container {
    grid-template-columns: 1fr !important;
    gap: 30px;
    padding: 0 16px !important;
  }

  .footer-logo {
    width: 120px;
    height: auto;
    margin: 0 auto 20px !important;
    margin-bottom: -30px !important;
  }

  .footer-col {
    text-align: center;
    width: 80% !important;
    margin-left: 30px !important;
    margin-top: -30px !important;
  }

  .footer-col h4,
  .footer-col h5 {
    margin: 0 0 15px 0 !important;
  }

  .footer-col p,
  .footer-col a {
    width: 100% !important;
    margin: 10px auto !important;
    line-height: 1.6;
    max-width: 300px;
  }

  .footer-col.contact p {
    margin: 10px auto !important;
    max-width: 300px;
  }

  .footer-bottom {
    padding: 20px 16px !important;
  }

  /* ===== TO TOP BUTTON FIX ===== */
  .to-top {
    right: 20px;
    bottom: 20px;
    width: 44px;
    height: 44px;
  }
}

/* SMALL MOBILE (max-width: 480px) */
@media (max-width: 480px) {
  
  .hero-title {
    font-size: 26px !important;
  }

  .hero-buttons .btn {
    width: 90% !important;
    max-width: 260px !important;
  }

  .solutions-title {
    font-size: 24px;
  }

  .section-title {
    font-size: 24px !important;
  }

  .process-box h3,
  .candidates-section h3 {
    font-size: 20px !important;
  }

  .helping-wrapper h1 {
    font-size: 20px;
  }

  .help-title1 {
    font-size: 24px !important;
  }

  .help-title2 {
    font-size: 20px !important;
  }

  .industry-card {
    flex: 0 0 240px;
    height: 140px;
  }

  .industry-card h4 {
    font-size: 14px;
  }
}

/* LANDSCAPE MODE FIX */
@media (max-height: 600px) and (orientation: landscape) {
  .hero {
    height: 100vh;
  }

  .hero-title {
    font-size: 28px !important;
  }
}

/* PREVENT ANY OVERFLOW */
@media (max-width: 768px) {
  *:not(html):not(body) {
    max-width: 100vw !important;
  }

  img {
    max-width: 100%;
    height: auto;
  }
}
/* ===========================
   NAVBAR + LOGO (ALL SIZES)
   Put this at the END of style.css
   =========================== */

/* always prevent horizontal overflow from navbar */
header, .navbar { width: 100%; }
.navbar { max-width: 1200px; margin: 0 auto; padding: 10px 16px; }
.logo { width: 80px; height: auto; max-width: 100%; margin-left: 0; }

/* make sure links never push outside */
.navbar ul { display: flex; align-items: center; gap: 18px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.navbar ul li a { margin: 0; padding: 10px 14px; }

/* ---------- 1536px effective (1920 @ 125% scaling) ---------- */
@media (max-width: 1536px) {
  .navbar { max-width: 1180px; padding: 10px 18px; }
  .logo { width: 78px; }
  .navbar ul { gap: 14px; }
  .navbar ul li a { font-size: 16px; padding: 10px 12px; }
}

/* ---------- 1440px ---------- */
@media (max-width: 1440px) {
  .navbar { max-width: 1120px; }
  .logo { width: 76px; }
  .navbar ul { gap: 12px; }
  .navbar ul li a { font-size: 16px; padding: 10px 12px; }
}

/* ---------- 1366px (most common small Dell/HP) ---------- */
@media (max-width: 1366px) {
  .navbar { max-width: 1040px; padding: 10px 16px; }
  .logo { width: 72px; }
  .navbar ul { gap: 10px; }
  .navbar ul li a { font-size: 15px; padding: 9px 10px; }
}

/* ---------- 1280px ---------- */
@media (max-width: 1280px) {
  .navbar { max-width: 980px; padding: 10px 14px; }
  .logo { width: 68px; }
  .navbar ul { gap: 8px; }
  .navbar ul li a { font-size: 14px; padding: 9px 10px; }
}

/* ---------- 1024px (tablet / small laptop) ---------- */
@media (max-width: 1024px) {
  .navbar { max-width: 920px; padding: 10px 12px; }
  .logo { width: 64px; }
  .navbar ul { gap: 8px; }
  .navbar ul li a { font-size: 14px; padding: 8px 10px; }
}

/* ---------- 900px ---------- */
@media (max-width: 900px) {
  .navbar { padding: 10px 12px; }
  .logo { width: 60px; }
  .navbar ul li a { font-size: 13px; padding: 8px 9px; }
}

/* ---------- 768px and below (mobile hamburger layout) ---------- */
@media (max-width: 768px) {
  header { position: sticky; top: 0; z-index: 1000; }
  .navbar { max-width: 100%; padding: 12px 14px; height: auto; }

  .logo { width: 58px; margin: 0; }

  /* hamburger button visible */
  .hamburger { display: block; font-size: 26px; background: none; border: none; cursor: pointer; }

  /* dropdown menu */
  .navbar ul {
    display: none;
    position: absolute;
    top: 64px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    max-width: 380px;
    background: #ffffff;
    padding: 14px;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    gap: 12px;
    flex-wrap: nowrap;
  }

  .navbar ul.show { display: grid; grid-template-columns: repeat(2, 1fr); }

  .navbar ul li a {
    width: 100%;
    text-align: center;
    padding: 12px 10px;
    font-size: 14px;
    border-radius: 10px;
    margin: 0;
  }
}

/* ---------- 480px and below ---------- */
@media (max-width: 480px) {
  .logo { width: 54px; }
  .navbar ul.show { grid-template-columns: 1fr; }
}
