* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  color: #222;
}
.menu-btn {
  display: none !important;
}
/* ================= SAME HEADER FOR ALL PAGES ================= */
.main-header {
  width: 100%;
  height: 120px;
  background: rgb(208, 206, 206);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  position: relative;
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.logo-container img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
}

.logo-container h2 {
  font-size: 28px;
  color: #222;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
}

#navMenu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 35px;
  margin-left: auto;
}

#navMenu a {
  color: #111;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
}

#navMenu a:hover {
  color: #1abc9c;
}

.menu-btn {
  display: none;
}

/* ================= HOME HERO SLIDER ================= */
.hero-slider {
  width: 100%;
  height: 60vh;
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: none;
  align-items: center;
  justify-content: center;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.slide.active {
  display: flex;
}

.content {
  width: 80%;
  text-align: center;
  color: white;
  z-index: 2;
}

.content h1 {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn {
  padding: 12px 25px;
  background: #1abc9c;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  display: inline-block;
  font-weight: bold;
}

.btn:hover {
  background: #159b80;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.4);
  border: none;
  padding: 12px;
  cursor: pointer;
  font-size: 22px;
  color: #333;
  z-index: 3;
}

.prev { left: 20px; }
.next { right: 20px; }

/* ================= HOME SERVICES ================= */
.services {
  padding: 70px 20px;
  background: #f8f9fa;
  text-align: center;
}

.services h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #0a3d62;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.card-link {
  text-decoration: none;
  color: inherit;
}

.card {
  background: #fff;
  padding: 35px 25px;
  width: 280px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover { transform: translateY(-10px); }

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: #1abc9c;
  transition: 0.3s;
}

.card:hover::before { width: 100%; }

.card h3 {
  font-size: 22px;
  color: #1abc9c;
  margin-bottom: 15px;
}

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

/* ================= INNER PAGE HERO ================= */
.hero {
  height: 60vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.staffing-hero { background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216'); }
.training-hero { background-image: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f'); }
.placement-hero { background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978'); }

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 20px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero-content p { font-size: 18px; }
/* COUNTER SECTION */

.counter-section {
  width: 88%;
  margin: 70px auto;
  background: #f7f7f7;
  padding: 70px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 30px;
}

.counter-box {
  position: relative;
}

.counter-box:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 15%;
  width: 1px;
  height: 70%;
  background: #9fd8aa;
}

.counter-box h2 {
  font-size: 46px;
  color: #222;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.counter-box p {
  font-size: 18px;
  color: #555;
}

/* Mobile Responsive */
@media screen and (max-width: 900px) {
  .counter-section {
    grid-template-columns: repeat(2, 1fr);
    padding: 50px 20px;
  }

  .counter-box:not(:last-child)::after {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .counter-section {
    grid-template-columns: 1fr;
  }

  .counter-box h2 {
    font-size: 38px;
  }
}
/* ================= ABOUT HOME SECTION ================= */

.about-home {
  padding: 80px 20px;
  background: #ffffff;
}

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

.about-text span {
  color: #1abc9c;
  font-size: 18px;
  font-weight: bold;
}

.about-text h2 {
  font-size: 38px;
  color: #0a3d62;
  margin: 15px 0 25px;
  line-height: 1.3;
}

.about-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-text ul {
  list-style: none;
  margin: 20px 0 30px;
}

.about-text ul li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #222;
  font-weight: 600;
}

.about-text ul li::before {
  content: "✓";
  color: #1abc9c;
  font-weight: bold;
  margin-right: 10px;
}

.about-btn {
  display: inline-block;
  background: #1abc9c;
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.about-btn:hover {
  background: #159b80;
}

.about-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 8px;
}

/* Mobile Responsive */
@media screen and (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-text h2 {
    font-size: 30px;
  }

  .about-image img {
    height: 280px;
  }
}
/* ================= MISSION & VISION ================= */

.mission-vision {
  padding: 80px 20px;
  background: #f4fff7;
  text-align: center;
}

.mission-vision h2 {
  font-size: 42px;
  color: #222;
  margin-bottom: 50px;
  letter-spacing: 2px;
}

.mv-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.mv-card {
  background: #fff;
  padding: 45px 40px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.mv-card:hover {
  transform: translateY(-8px);
}

.mv-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 30px;
}

.mv-card hr {
  border: none;
  height: 1px;
  background: #e2e2e2;
  margin-bottom: 25px;
}

.mv-card h3 {
  font-size: 26px;
  color: #222;
  margin-bottom: 18px;
}

.mv-card p {
  font-size: 17px;
  line-height: 1.8;
  color: #666;
}

/* Mobile */
@media screen and (max-width: 768px) {
  .mission-vision h2 {
    font-size: 32px;
  }

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

  .mv-card {
    padding: 35px 25px;
    text-align: center;
  }

  .mv-card img {
    width: 95px;
    height: 95px;
  }
}

/* ================= INNER PAGE CONTENT ================= */
.about-section {
  padding: 70px 20px;
  text-align: center;
}

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

.about-section h2 {
  font-size: 36px;
  color: #0a3d62;
  margin-bottom: 20px;
}

.about-section p {
  line-height: 1.8;
  font-size: 17px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 20px 50px 70px;
}

.service-card {
  background: white;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.service-card:hover { transform: translateY(-10px); }
.service-card h3 { color: #1abc9c; margin-bottom: 15px; }
.service-card p { line-height: 1.7; }

/* ================= HIGHLIGHT ================= */
.highlight {
  background: #0a3d62;
  color: white;
  padding: 70px 20px;
  text-align: center;
}

.highlight h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.highlight-boxes {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.box {
  background: white;
  color: #333;
  width: 280px;
  padding: 25px;
  border-radius: 12px;
}

.box h3 {
  color: #1abc9c;
  margin-bottom: 15px;
}

/* ================= TESTIMONIALS ================= */
.testimonials {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.section-title span {
  color: #1abc9c;
  font-weight: bold;
  letter-spacing: 2px;
}

.section-title h2 {
  font-size: 52px;
  color: #0a1f44;
  margin: 10px 0 60px;
}

.testimonial-top {
  display: flex;
  justify-content: center;
  gap: 120px;
  flex-wrap: wrap;
}

.student {
  text-align: center;
  transition: 0.3s;
}

.student.active { transform: scale(1.08); }
.student.active h3 { color: #18bfd0; }

.circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: bold;
  margin: auto;
  border: 8px solid #f2f2f2;
}

.pink { background: #ffd6f2; color: #c96ed8; }
.blue { background: #cfe9ff; color: #3478f6; }
.green { background: #d5f7e8; color: #58b68d; }

.student h3 {
  margin-top: 20px;
  font-size: 32px;
  color: #0a1f44;
}

.student p {
  color: gray;
  font-size: 20px;
}

.testimonial-boxes {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.testimonial-card {
  width: 320px;
  background: #f3f8f9;
  padding: 35px;
  line-height: 1.8;
  font-size: 18px;
  color: #666;
  transition: 0.3s;
}

.active-card {
  background: #18bfd0;
  color: white;
  transform: scale(1.05);
}

.dots { margin-top: 40px; }
.dot {
  width: 14px;
  height: 14px;
  background: #ddd;
  display: inline-block;
  margin: 5px;
}
.active-dot { background: #18bfd0 !important; }

/* ================= CONTACT ================= */
.contact {
  background: #e9ffe9;
  padding: 45px 20px;
  text-align: center;
}

.contact h2 {
  margin-bottom: 15px;
  color: #0a3d62;
}

.contact p {
  margin: 8px 0;
  font-size: 16px;
}

/* ================= FOOTER ================= */
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
}

/* ================= TABLET ================= */
@media screen and (max-width: 992px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ================= MOBILE ================= */
@media screen and (max-width: 900px) {
  .main-header {
    height: 85px;
    padding: 10px 15px;
  }

  .logo-container { gap: 10px; }

  .logo-container img {
    width: 55px;
    height: 55px;
  }

  .logo-container h2 {
    font-size: 18px;
  }

  .menu-btn {
    display: block;
    font-size: 28px;
    background: white;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 3px 9px;
    cursor: pointer;
    color: #111;
    margin-left: auto;
  }

  #navMenu {
    display: none;
    position: absolute;
    top: 78px;
    right: 15px;
    width: 180px;
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-radius: 10px;
    padding: 10px 0;
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-left: 0;
  }

  #navMenu.show { display: flex; }

  #navMenu a {
    margin: 0;
    padding: 10px;
    width: 100%;
    text-align: center;
    font-size: 13px;
  }

  #navMenu a:hover { background: #f3f3f3; }

  .hero-slider, .hero { height: 55vh; }
  .content { width: 90%; }
  .content h1 { font-size: 32px; }
  .content p { font-size: 15px; }

  .prev, .next {
    font-size: 16px;
    padding: 8px;
  }

  .services h2,
  .about-section h2,
  .highlight h2 { font-size: 28px; }

  .cards,
  .testimonial-top,
  .testimonial-boxes,
  .highlight-boxes {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .card,
  .testimonial-card,
  .box {
    width: 90%;
    max-width: 330px;
  }

  .hero-content h1 { font-size: 32px; }
  .hero-content p { font-size: 15px; }

  .services-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .section-title h2 { font-size: 34px; }
  .student h3 { font-size: 24px; }
  .student p { font-size: 16px; }

  .circle {
    width: 75px;
    height: 75px;
    font-size: 30px;
  }
}
@media screen and (max-width: 900px) {
  .main-header {
    height: auto;
    padding: 10px 15px;
  }

  .main-header .logo-container img {
    width: 55px;
    height: 55px;
  }

  .main-header .logo-container h2 {
    font-size: 18px;
  }

  .main-header .menu-btn {
    display: block;
    font-size: 28px;
    background: white;
    border: 1px solid #333;
    padding: 3px 9px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: auto;
  }

  .main-header #navMenu {
    display: none;
    position: absolute;
    top: 70px;
    right: 15px;
    width: 180px;
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 10px 0;
    flex-direction: column;
    z-index: 9999;
  }

  .main-header #navMenu.show {
    display: flex;
  }

  .main-header #navMenu a {
    width: 100%;
    text-align: center;
    padding: 8px;
  }
}
/* DESKTOP FIX */
@media screen and (min-width: 901px) {
  .menu-btn {
    display: none !important;
  }

  #navMenu {
    display: flex !important;
    position: static !important;
    flex-direction: row !important;
    background: transparent !important;
    box-shadow: none !important;
    width: auto !important;
    padding: 0 !important;
  }
}

/* MOBILE FIX */
@media screen and (max-width: 900px) {
  header {
    height: auto;
    padding: 10px 15px;
  }

  .logo-container img {
    width: 55px;
    height: 55px;
  }

  .logo-container h2 {
    font-size: 18px;
  }

  .menu-btn {
    display: block !important;
    font-size: 28px;
    background: white;
    border: 1px solid #333;
    padding: 3px 9px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: auto;
  }

  #navMenu {
    display: none !important;
    position: absolute !important;
    top: 70px;
    right: 15px;
    width: 180px !important;
    background: white !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2) !important;
    border-radius: 10px;
    padding: 10px 0 !important;
    flex-direction: column !important;
    z-index: 9999;
  }

  #navMenu.show {
    display: flex !important;
  }

  #navMenu a {
    margin: 8px 0 !important;
    padding: 8px !important;
    width: 100%;
    text-align: center;
  }
}