
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #1a1a1a;
}

header {
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-menu {
  display: flex;
  align-items: left;
  gap: 20px;
}

.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}

/* ===== GENERIC CONTENT SECTION ===== */

.content-section {
  padding: 100px 60px;
  background: #ffffff;
}

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

.section-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* Badge / Label */
.section-badge {
  display: inline-block;
  background: #f1fdf6;
  color: #1a8f5c;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 18px;
}

/* Content */
.section-content h2 {
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 18px;
  max-width: 560px;
}

/* Stats */
.section-stats {
  display: flex;
  gap: 40px;
  margin-top: 35px;
}

.section-stats strong {
  display: block;
  font-size: 26px;
  color: #1a1a1a;
}

.section-stats span {
  font-size: 14px;
  color: #666;
}

/* Media */
.section-media img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .content-section {
    padding: 70px 24px;
  }

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

  .section-content h2 {
    font-size: 32px;
  }

  .section-stats {
    gap: 25px;
    flex-wrap: wrap;
  }

  .section-media {
    order: -1;
  }
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 24px;
  background: #fff;
  position: relative;
}




/* Site name */
.logo {
  font-size: 1.2rem;
  white-space: nowrap;
}

/* Push menu + button to the right */
.menu-toggle,
.nav-menu {
  margin-left: auto;
  color: #000;
}

/* Desktop menu */
.nav-menu {
  display: flex;
  gap: 20px;
}

/* Hide hamburger on desktop */
.menu-toggle {
  display: none;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

/* Hide menu button on desktop */
.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

/* ===== Tablet & Mobile ===== */
@media (max-width: 1024px) {

  .menu-toggle {
    display: block;
  }

  .nav-menu {
      min-width: 200px;
    position: absolute;
    top: 100%;
    right: 24px;

    display: flex;
    flex-direction: column;
    gap: 0;

    background: #fff;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);

    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: 0.25s ease;
    z-index: 999;
  }

  .nav-menu a {
    padding: 14px 20px;
  }
.nav-menu a {
    margin-left: 0;
  }
  .nav-menu.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}


.hero {
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.1;
}

.hero p {
  font-size: 18px;
  margin: 25px 0;
  color: #555;
}

.btn {
  display: inline-block;
  padding: 16px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary {
  background: #25D366!important;
  color: #fff!important;
}

.btn-secondary {
  display: flex;
  gap: 15px;
  border: 1px solid #ddd;
  color: #333;
}

.section {
  padding: 90px 60px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.card {
  padding: 30px;
  border-radius: 16px;
  background: #f9f9f9;
  text-align: center;
}

.card i {
  font-size: 32px;
  margin-bottom: 15px;
  color: #25D366;
}

.testimonial {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

footer {
  padding: 50px;
  text-align: center;
  background: #f5f5f5;
  font-size: 14px;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 25px;
  bottom: 25px;
  background: #25D366!important;
  color: #fff!important;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  z-index: 99;
}

/* ===== HERO ===== */
.hero-new {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  padding: 100px 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: #f1fdf6;
  color: #1a8f5c;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero-new h1 {
  font-size: 56px;
  line-height: 1.1;
}

.hero-new h1 span {
  color: #25D366;
}

.hero-new p {
  font-size: 18px;
  max-width: 520px;
  margin: 20px 0 30px;
  color: #555;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-outline {
  border: 2px solid #25D366;
  color: #25D366;
  background: transparent;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.hero-stats div {
  text-align: left;
}

.hero-stats strong {
  font-size: 20px;
  display: block;
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 60px;
  background: #fafafa;
}

.features h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-card {
  background: #fff;
  padding: 35px;
  text-align: center;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: transform .25s ease;
}

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

.feature-card i {
  font-size: 30px;
  color: #25D366;
  margin-bottom: 20px;
}

/* ===== FAQ ===== */
.faq {
  padding: 100px 60px;
  background: #ffffff;
}
.faq-question {
  color: #000;
}


.faq-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.faq-header h2 {
  font-size: 42px;
  line-height: 1.2;
}

.faq-header h2 span {
  color: #25D366;
}

.faq-header p {
  margin-top: 15px;
  color: #666;
  font-size: 17px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #eaeaea;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-question i {
  transition: transform .25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-answer p {
  padding-bottom: 25px;
  color: #555;
  line-height: 1.6;
}

/* active state */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0f172a; /* dark navy, more professional than pure black */
  color: #cbd5e1;
  padding: 80px 60px 0;
}

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

.footer-brand h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 15px;
}

.footer-brand p {
  line-height: 1.6;
  font-size: 15px;
}

.footer-links h4,
.footer-contact h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: #cbd5e1;
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 14px;
  transition: color .2s ease;
}

.footer-links a:hover {
  color: #25D366;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  padding: 12px 18px;
  background: #25D366!important;
  color: #ffffff!important;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.footer-bottom {
  margin-top: 60px;
  padding: 25px 0;
  text-align: center;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,.08);
}
/* ===== TESTIMONIALS ===== */
/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 90px 0;
  background: #ffffff;
  overflow: hidden;
}

.testimonials h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 50px;
}

.testimonial-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1100px; /* adjust if needed */
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;          /* ✅ allow swipe */

  /* THIS IS THE KEY */
  width: calc(100% - 96px); /* 48px left + 48px right arrows */
}

.testimonial-card {
  flex: 0 0 calc((100% - 40px) / 3);
  box-sizing: border-box;

  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  min-width: 200px;
}


.arrow {
  width: 48px;
  min-width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #f5f5f5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  margin: 10px;
}

.arrow-left {
  left: 10px;
}

.arrow-right {
  right: 10px;
}

.arrow i {
  font-size: 14px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .testimonial-track {
    padding: 0 24px;
  }

  .arrow {
    display: none; /* swipe only on mobile */
  }
.testimonials {
  padding: 20px;
}
  .testimonials h2 {
    font-size: 32px;
  }
}
.stars {
  color: #f5a623;
  font-size: 20px;
  margin-bottom: 12px;
}

.positions {
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
}

.section-subtitle {
  text-align: center;
  margin-top: 10px;
  color: #666;
}

.positions-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.position-card {
  background: #f9f9f9;
  border-radius: 20px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.position-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.position-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.position-content {
  padding: 30px;
}

.position-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.position-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.position-content ul li {
  font-size: 14px;
  padding-left: 22px;
  margin-bottom: 10px;
  position: relative;
}

.position-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #25D366;
}

.apply-btn {
  display: block;
  text-align: center;
  background: #25D366!important;
  color: #fff!important;
  padding: 14px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
}



@media (max-width: 1024px) {
  .positions-grid {
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 820px) {
  .positions-grid {
    gap: 10px;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
    .section {
      padding: 90px 30px;
    }
  .positions-grid {
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .position-card {
    margin: 10px;
  }
}

@media (max-width: 768px) {
  .testimonial-track {
    padding-left: 24px;
    padding-right: 24px;
  }

  .testimonials h2 {
    font-size: 32px;
  }
}


@media (max-width: 1024px) {
  .hero-new {
    grid-template-columns: 1fr;
    padding: 80px 40px;
  }

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

@media (max-width: 600px) {
  .hero-new {
    padding: 60px 24px;
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .features {
    padding: 70px 24px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}

.hero-poster {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

/* SHARED BG LAYER */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform, opacity;
  transform: scale(1);
  z-index: 1;
}

/* IMAGE 1 */
.bg-1 {
  background-image: url('/images/video-conferencing.jpg');
  animation: heroZoom1 36s ease-in-out infinite;
}

/* IMAGE 2 */
.bg-2 {
  background-image: url('/images/group-people-working.jpg');
  animation: heroZoom2 36s ease-in-out infinite;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2;
  pointer-events: none;
}

/* CONTENT */
.hero-poster-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}


@keyframes heroZoom1 {
  0%   { opacity: 1; transform: scale(1); }
  18%  { opacity: 1; transform: scale(1.12); } /* FAST zoom */
  40%  { opacity: 1; transform: scale(1.12); }
  50%  { opacity: 0; transform: scale(1.12); }
  100% { opacity: 0; transform: scale(1); }
}

@keyframes heroZoom2 {
  0%   { opacity: 0; transform: scale(1); }
  40%  { opacity: 0; transform: scale(1); }
  50%  { opacity: 1; transform: scale(1); }
  68%  { opacity: 1; transform: scale(1.12); } /* FAST zoom */
  100% { opacity: 1; transform: scale(1.12); }
}


/* content */
.hero-poster-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.hero-poster-content h1 {
  font-size: 64px;
  line-height: 1.1;
  max-width: 700px;
}

.hero-poster-content p {
  font-size: 20px;
  margin: 25px 0 40px;
  max-width: 520px;
  opacity: 0.95;
}

.hero-actions .btn-secondary {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
}


.footer-whatsapp-cta {
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-whatsapp-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;

  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.footer-whatsapp-text h4 {
  font-size: 32px;
  margin-bottom: 15px;
}

.footer-whatsapp-text p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: #25D366!important;
  color: #ffffff!important;
  padding: 14px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.footer-whatsapp-btn i {
  font-size: 18px;
}

.footer-whatsapp-image img {
  width: 100%;
  border-radius: 16px;
  display: block;
}


footer {
  padding: 50px;
  text-align: left;
  background: #f5f5f5;
  font-size: 14px;
}

/* mobile */
@media (max-width: 768px) {
  .hero-alt .container {
    grid-template-columns: 1fr;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-poster {
    height: 80vh;
  }

  .hero-poster-content {
    padding: 0 25px;
    text-align: center;
    align-items: center;
  }

  .hero-poster-content h1 {
    font-size: 40px;
  }

  .hero-poster-content p {
    font-size: 16px;
  }

  .hero-actions .btn {
    display: block;
    width: 100%;
    max-width: 320px;
    margin-bottom: 12px;
  }
}

@media (max-width: 468px) {

  .footer-whatsapp-cta {
    padding-left: 0px;
    padding-right: 0px;
  }

  .footer-whatsapp-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-whatsapp-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .footer-whatsapp-text {
    text-align: left;
  }

  .footer-whatsapp-text h4 {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .footer-whatsapp-text p {
    font-size: 15px;
    line-height: 1.5;
  }


}


@media (max-width: 768px) {
  .site-footer {
    overflow-x: hidden;
  }

  .footer-container {
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    padding: 16px;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    width: 100%!important;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
  
}

@media (max-width: 768px) {
    .faq {
      padding: 20px;
      background: #ffffff;
    }
}




    .content-section-soft {
  background: #f9fafb;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.features-box {
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.features-box h3 {
  margin-bottom: 18px;
  font-size: 22px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  padding-left: 26px;
  margin-bottom: 14px;
  position: relative;
  color: #555;
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1a8f5c;
  font-weight: bold;
}

.features-terms {
  margin-top: 50px;
  max-width: 720px;
}

.features-terms h4 {
  margin-bottom: 10px;
}

.features-terms p {
  color: #666;
  font-size: 15px;
}

.features-cta {
  margin-top: 40px;
}

/* MOBILE */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-box {
    padding: 28px;
  }
}