/* ===================
   Font Imports
=================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Lato:wght@400;700&display=swap');

/* ===================
   CSS Variables
=================== */
:root {
  --primary-turquoise: #1EC9C5;
  --primary-green: #20916E;
  --mint-bg: #D9FFF6;
  --deep-slate: #11383E;
  --white: #fff;
  --accent-gold: #FFD166;

  --text-main: #153438;
  --text-muted: #479E98;

  --font-heading: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Lato', Arial, Helvetica, sans-serif;
}

/* ===================
   Global Styles
=================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  min-width: 100vw;
  height: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;  /* Prevents horizontal scroll! */
  background: linear-gradient(120deg, var(--primary-turquoise) 0%, var(--primary-green) 100%);
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--deep-slate);
}

h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 12px;
}

h2 {
  font-size: 2.1rem;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

p, ul, li {
  font-size: 1rem;
  line-height: 1.6;
}

a {
  color: var(--primary-turquoise);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--primary-green);
}

/* ===================
   Navbar
=================== */
.navbar {
  width: 100%;
  padding: 28px 5vw 18px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;   /* <-- make navbar transparent */
  box-shadow: none;          /* <-- remove shadow */
  top: 0;
  z-index: 99;
}

.logo {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: bold;
  color: var(--primary-green);
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 34px;
}

.nav-links li a {
  font-size: 1.07rem;
  font-family: var(--font-heading);
  color: var(--deep-slate);
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
}

.nav-links li a::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background: var(--primary-turquoise);
  transition: width 0.2s;
  margin-top: 2px;
}

.nav-links li a:hover::after, .nav-links li a.active::after {
  width: 100%;
}

/* ===================
   Hero Section
=================== */
.hero {
  /* Remove background here, keep other styles */
  background: transparent;
  color: var(--white);
  padding: 70px 0 50px 0;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 18px 0 rgba(30, 201, 197, 0.11);
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 90vw;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-text {
  max-width: 530px;
  min-width: 310px;
}

.hero-text h1 {
  color: var(--white);
}

.hero-tagline {
  font-size: 1.2rem;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.hero-subtext {
  font-size: 1.1rem;
  margin-bottom: 22px;
  color: var(--white);
  font-weight: 400;
}

.cta-btn {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--deep-slate);
  font-weight: bold;
  padding: 13px 34px;
  border-radius: 24px;
  font-size: 1.13rem;
  box-shadow: 0 3px 20px 0 rgba(32, 145, 110, 0.13);
  transition: background 0.2s, color 0.2s, box-shadow 0.3s;
  margin-top: 10px;
}

.cta-btn:hover {
  background: var(--white);
  color: var(--primary-green);
  box-shadow: 0 8px 28px 0 rgba(30, 201, 197, 0.13);
}

.hero-animation {
  min-width: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===================
   How It Works
=================== */
.how-section {
  background: var(--mint-bg);
  padding: 70px 0 40px 0;
  text-align: center;
}

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

.how-col {
  background: var(--white);
  border-radius: 20px;
  padding: 30px 28px;
  box-shadow: 0 4px 32px 0 rgba(32, 145, 110, 0.08);
  min-width: 330px;
  max-width: 380px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.how-col:hover {
  box-shadow: 0 12px 42px 0 rgba(30, 201, 197, 0.18);
  transform: translateY(-7px) scale(1.03);
}

.how-col h3 {
  color: var(--primary-green);
  margin-top: 18px;
  margin-bottom: 16px;
}

.how-col ul {
  margin-top: 10px;
  list-style: none;
  padding-left: 0;
}

.how-col ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 18px;
}

.how-col ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary-turquoise);
  font-size: 1.01rem;
}

/* ===================
   USP Section
=================== */
.usp-section {
  background: linear-gradient(120deg, var(--primary-green) 0%, var(--primary-turquoise) 100%);
  color: var(--white);
  padding: 64px 0;
}

.usp-content {
  display: flex;
  gap: 44px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.usp-text {
  max-width: 520px;
}

.usp-section h2 {
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.usp-section ul {
  margin-top: 14px;
  list-style: disc inside;
  color: var(--white);
  opacity: 0.92;
}

.usp-animation {
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===================
   Timeline Section
=================== */
.timeline-section {
  background: var(--white);
  padding: 70px 0 40px 0;
  text-align: center;
}

.timeline-container {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.timeline-step {
  background: var(--mint-bg);
  border-radius: 18px;
  padding: 25px 18px 15px 18px;
  min-width: 145px;
  max-width: 165px;
  box-shadow: 0 4px 18px 0 rgba(30, 201, 197, 0.11);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.18s, transform 0.18s;
}

.timeline-step:hover {
  box-shadow: 0 12px 32px 0 rgba(32, 145, 110, 0.18);
  transform: translateY(-5px) scale(1.04);
}

.timeline-step p {
  margin-top: 10px;
  color: var(--primary-green);
  font-weight: bold;
  font-size: 1rem;
}

/* ===================
   Why Choose Us Section
=================== */
.why-section {
  background: var(--mint-bg);
  padding: 64px 0 34px 0;
  text-align: center;
}

.why-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 28px;
}

.why-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 18px 0 rgba(30, 201, 197, 0.10);
  padding: 30px 22px 24px 22px;
  min-width: 190px;
  max-width: 260px;
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.18s, transform 0.16s;
}

.why-card:hover {
  box-shadow: 0 10px 30px 0 rgba(32, 145, 110, 0.17);
  transform: translateY(-5px) scale(1.03);
}

.why-icon {
  font-size: 2.3rem;
  margin-bottom: 12px;
  color: var(--primary-turquoise);
}

/* ===================
   Testimonials Section
=================== */
.testimonials-section {
  background: var(--primary-green);
  color: var(--white);
  padding: 64px 0 40px 0;
  text-align: center;
}

.testimonials-section h2 {
  color: var(--accent-gold);
  margin-bottom: 18px;
}

.testimonial {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.18rem;
  line-height: 1.8;
  font-style: italic;
  padding: 18px 0 0 0;
}

.testimonial-author {
  margin-top: 18px;
  display: block;
  color: var(--accent-gold);
  font-weight: bold;
  font-style: normal;
  font-size: 1rem;
}

/* ===================
   Contact Section
=================== */
.contact-section {
  background: var(--white);
  padding: 68px 0 46px 0;
  text-align: center;
}

.contact-section h2 {
  color: var(--primary-green);
  margin-bottom: 16px;
}

.contact-form {
  margin: 0 auto 22px auto;
  max-width: 410px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  border: 1.4px solid var(--primary-turquoise);
  border-radius: 8px;
  padding: 12px 13px;
  font-size: 1rem;
  resize: vertical;
  transition: border 0.18s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 2px 12px 0 rgba(30, 201, 197, 0.08);
}

.contact-form button {
  background: var(--primary-green);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 13px 0;
  font-size: 1.08rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.16s, color 0.2s, box-shadow 0.2s;
  margin-top: 6px;
}

.contact-form button:hover {
  background: var(--primary-turquoise);
  color: var(--deep-slate);
  box-shadow: 0 8px 22px 0 rgba(30, 201, 197, 0.16);
}

.contact-details {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.contact-details strong {
  color: var(--primary-green);
}

/* ===================
   Footer
=================== */
.footer {
  background: var(--deep-slate);
  color: var(--white);
  text-align: center;
  padding: 16px 0;
  font-size: 1.01rem;
  letter-spacing: 0.2px;
}

.contact-subheading {
  font-family: var(--font-body);
  font-size: 1.17rem;
  color: var(--deep-slate);
  font-weight: 400;
  margin: 0 auto 30px auto;
  max-width: 750px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  opacity: 0.96;
}

.contact-details a {
  color: var(--primary-green);
  text-decoration: underline dotted;
  transition: color 0.18s;
}
.contact-details a:hover {
  color: var(--primary-turquoise);
}

/* ===================
   Responsive Styles
=================== */
@media (max-width: 1050px) {
  .hero-content, .how-columns, .usp-content, .timeline-container, .why-cards {
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }
  .hero-content, .usp-content {
    flex-wrap: wrap;
  }
  .how-col, .usp-text, .usp-animation, .why-card, .timeline-step {
    max-width: 90vw;
  }
}

@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
    padding: 18px 2vw;
  }
  .logo {
    font-size: 1.6rem;
  }
  h1 {
    font-size: 1.35rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  .hero, .how-section, .usp-section, .timeline-section, .why-section,
  .testimonials-section, .contact-section {
    padding: 42px 0 24px 0;
  }
}

/* Animations (for fade-in or scroll-in effects if needed) */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInMoveUp 0.7s ease-out forwards;
}

@keyframes fadeInMoveUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 120;
  transition: opacity 0.16s;
}
.hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background: var(--primary-green, #20916E);
  border-radius: 2px;
  transition: all 0.28s cubic-bezier(.4,0,.2,1);
}

/* Hamburger to X when active */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.nav-menu {
  position: relative;
}

@media (max-width: 900px) {
  .navbar {
    padding: 14px 4vw 10px 4vw;
  }
  .hamburger {
    display: flex;
    margin-left: auto;
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    width: 100vw;
    min-height: 44vh;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(16px) saturate(170%);
    box-shadow: 0 10px 38px rgba(32, 145, 110, 0.14);
    z-index: 110;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    border: 1.3px solid rgba(32, 145, 110, 0.10);
    transition: opacity 0.18s;
    animation: slideDown 0.24s;
    padding-top: 6px;
    padding-bottom: 12px;
    overflow: hidden;
  }
  .nav-menu.active {
    display: block;
    animation: slideDown 0.24s;
  }
  @keyframes slideDown {
    from { transform: translateY(-45px) scale(0.97); opacity: 0.85;}
    to { transform: translateY(0) scale(1); opacity: 1;}
  }
  .nav-links {
    flex-direction: column;
    gap: 14px;
    width: 100%;
    align-items: center;
    padding: 24px 0 8px 0;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  .nav-links li a {
    font-size: 1.10rem;
    color: var(--primary-green);
    font-family: var(--font-heading);
    font-weight: 700;
    display: inline-block;
    background: none;
    border-radius: 0;
    box-shadow: none;
    transition: color 0.16s;
    padding: 11px 0 5px 0;
    text-decoration: none;
    position: relative;
  }
  /* Underline effect (centered) */
  .nav-links li a::after {
    content: "";
    display: block;
    margin: 0 auto;
    width: 0%;
    height: 3px;
    background: var(--primary-turquoise);
    border-radius: 2px;
    transition: width 0.23s cubic-bezier(.4,0,.2,1);
    margin-top: 4px;
  }
  .nav-links li a:hover::after,
  .nav-links li a.active::after {
    width: 65%;
  }
  .nav-links li a:hover,
  .nav-links li a.active {
    color: var(--primary-turquoise);
    background: none !important;
    box-shadow: none !important;
  }
}

/* For super small screens */
@media (max-width: 480px) {
  .navbar { padding: 11px 2vw 8px 2vw; }
  .nav-menu {
    top: 44px;
    min-height: 33vh;
    border-radius: 0 0 13px 13px;
    padding-top: 6px;
    padding-bottom: 7px;
  }
  .nav-links {
    gap: 10px;
    padding: 14px 0 4px 0;
  }
  .nav-links li a {
    font-size: 0.98rem;
    padding: 9px 0 4px 0;
  }
  .nav-links li a::after {
    height: 2.5px;
    margin-top: 3px;
  }
}

@media (max-width: 700px) {
  .hero {
    padding: 24px 0 24px 0;
    min-height: unset;
  }
  .hero-content {
    flex-direction: column;
    align-items: center;
    gap: 22px;
    width: 95vw;
    max-width: 100vw;
  }
  .hero-text {
    max-width: 95vw;
    min-width: unset;
    text-align: center;
    padding: 0 2vw;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .hero-animation {
    width: 100%;
    min-width: unset;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hero-animation dotlottie-player {
    width: 100% !important;
    max-width: 320px;
    height: auto !important;
    margin: 0 auto;
    display: block;
  }
  .hero-text p {
    word-break: break-word;
    overflow-wrap: break-word;
  }
}

.navbar {
  box-shadow: none !important;
  border-bottom: none !important;
  background: transparent !important;
}

/* Remove any top border/shadow from hero or first section */
.hero,
.hero-section,
.main-content,
.page-content {
  border-top: none !important;
  box-shadow: none !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* === Staffing Carousel Panel === */
.staffing-carousel-section {
  width: 100vw;
  margin-left: calc(50% - 50vw); /* Full-bleed edge-to-edge */
  margin-right: calc(50% - 50vw);
  background: var(--mint-bg);    /* Or use #f6fefd or a pale white/blue */
  padding: 64px 0 56px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 18px 0 rgba(30, 201, 197, 0.06);
}

.staffing-carousel-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.staffing-swiper {
  width: 100%;
  max-width: 820px;
  height: 340px;
  background: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.staffing-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.staffing-swiper img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 6px 28px 0 rgba(30, 201, 197, 0.13);
  transition: box-shadow 0.17s, transform 0.17s;
}

.staffing-swiper img:hover {
  box-shadow: 0 18px 36px 0 rgba(30, 201, 197, 0.19);
  transform: scale(1.013);
}

.staffing-swiper .swiper-button-next,
.staffing-swiper .swiper-button-prev {
  color: var(--primary-turquoise);
  width: 38px;
  height: 38px;
  top: 50%;
  background: rgba(255,255,255,0.76);
  border-radius: 50%;
  box-shadow: 0 2px 14px 0 rgba(30, 201, 197, 0.11);
  transition: background 0.14s;
}
.staffing-swiper .swiper-button-next:hover,
.staffing-swiper .swiper-button-prev:hover {
  background: var(--primary-turquoise);
  color: var(--white);
}

.staffing-swiper .swiper-pagination-bullets {
  bottom: 17px !important;
}
.staffing-swiper .swiper-pagination-bullet {
  background: #baf4ee;
  opacity: 1;
  width: 10px;
  height: 10px;
  margin: 0 5px !important;
  border-radius: 50%;
  transition: background 0.18s, transform 0.14s;
}
.staffing-swiper .swiper-pagination-bullet-active {
  background: var(--primary-green);
  transform: scale(1.22);
  box-shadow: 0 2px 10px #1EC9C533;
}
@media (max-width: 700px) {
  .staffing-swiper, .staffing-carousel-container {
    max-width: 98vw;
    height: 180px;
  }
  .staffing-swiper img {
    height: 140px;
    border-radius: 8px;
  }
}

.staffing-swiper .swiper-button-prev,
.staffing-swiper .swiper-button-next {
  display: none !important;
}

