/* ===== PASSCODE OVERLAY STYLE ===== */
html.youmi-access-granted #passcode-overlay {
  display: none !important;
}

#passcode-overlay {
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  background:#f2f8ff;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  z-index:9999;
  font-family: 'Poppins', sans-serif;
}
#passcode-overlay h2 { margin-bottom:20px; font-size:24px; color:#333; }
#passcode-overlay input { padding:10px 15px; font-size:16px; border:1px solid #ccc; border-radius:6px; margin-bottom:12px; }
#passcode-overlay button { padding:10px 20px; font-size:16px; background:#007aff; color:white; border:none; border-radius:6px; cursor:pointer; }
#error-msg { color:red; font-size:14px; margin-top:10px; display:none; }
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #0066cc;
  --primary-dark: #004999;
  --secondary: #00bcd4;
  --accent: #ff6b6b;
  --success: #4caf50;
  --dark: #1a1f36;
  --light: #f5f7fa;
  --light-gray: #ecf0f3;
  --border: #e1e8ed;
  --text: #2d3748;
  --text-light: #718096;
  --gradient: linear-gradient(135deg, #0066cc 0%, #00bcd4 100%);
  --gradient-dark: linear-gradient(135deg, #004999 0%, #0097a7 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
  cursor: auto;
}

/* ==================== CUSTOM CURSOR STYLES ==================== */
a, button, [role="button"], input[type="button"], input[type="submit"], .nav-link, .cta-button {
  cursor: auto;
}

/* ==================== SWAB CURSOR TRAIL EFFECT ==================== */
.cursor-trail {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
}



/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  padding: 0 5vw;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  height: 70px;
}

.navbar-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
  justify-content: center;
}

.navbar-clock {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-left: auto;
  font-family: 'Courier New', monospace;
  flex-shrink: 0;
}

.navbar-clock:hover {
  opacity: 0.8;
}

.navbar-clock i {
  color: var(--primary);
  font-size: 14px;
}

.clock-display {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-family: 'Courier New', monospace;
}

.current-time {
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.5px;
}

.current-timezone {
  font-size: 11px;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-link {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
}

.cta-button {
  background: var(--gradient);
  color: white !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

/* Hamburger Menu */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle-label span {
  width: 25px;
  height: 3px;
  background: var(--text);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) {
  opacity: 0;
}

.nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
  justify-content: center;
  transition: all 0.3s ease;
}

/* ==================== HERO SECTION ==================== */
.hero {
  margin-top: 70px;
  min-height: 100vh;
  background: linear-gradient(135deg, #f5f7fa 0%, #ecf0f3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: var(--gradient);
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: var(--secondary);
  border-radius: 50%;
  opacity: 0.08;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(30px); }
}

.hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6vh 5vw;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(0, 102, 204, 0.1);
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 102, 204, 0.2);
}

.hero-content h1 {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.2;
  margin: 20px 0;
  background: var(--gradient-dark);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 24px;
  color: var(--text-light);
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 40px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 102, 204, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 2px solid rgba(0, 0, 0, 0.05);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 8px;
  font-weight: 500;
}

/* ==================== GENERAL SECTIONS ==================== */
.section {
  padding: 10vh 5vw;
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  font-weight: 300;
}

.section-header .section-subtitle {
  font-size: 18px;
  font-style: italic;
  color: var(--primary);
  font-weight: 500;
}

.gray-bg {
  background: var(--light);
}

/* ==================== ABOUT SECTION ==================== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 5vw;
}

.about-card {
  background: white;
  padding: 5vh 4vw;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.about-card:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 102, 204, 0.15);
}

.about-icon {
  font-size: 48px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.about-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark);
}

.about-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
}

/* ==================== PRODUCTS SECTION ==================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4vw;
}

.product-card {
  background: white;
  padding: 4vh 3vw;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-icon {
  font-size: 44px;
  background: linear-gradient(135deg, #0066cc, #00bcd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  display: inline-block;
}

.product-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark);
}

.product-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
  min-height: 60px;
}

.product-specs {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==================== CAPABILITY SECTION ==================== */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 5vw;
}

.capability-item {
  padding: 4vh 3vw;
  text-align: center;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.capability-item:hover {
  box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
  transform: translateY(-5px);
}

.capability-number {
  font-size: 56px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  display: block;
}

.capability-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark);
}

.capability-item p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.8;
}

/* ==================== CERTIFICATIONS SECTION ==================== */
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 3vw;
}

.cert-item {
  background: white;
  padding: 4vh 2.5vw;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.cert-item:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 102, 204, 0.2);
}

.cert-badge {
  display: inline-block;
  background: var(--gradient);
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.cert-item p {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
}

/* ==================== CLIENTS SECTION ==================== */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 3vw;
  justify-items: center;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2vh 0;
}

.client-logo img {
  max-width: 120px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ==================== CONTACT SECTION ==================== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: white;
  padding: 60px 50px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-details h3,
.message-form-container h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 30px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-icon {
  font-size: 32px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  width: 40px;
  display: flex;
  align-items: flex-start;
}

.contact-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.contact-content p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.contact-item a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.contact-secondary {
  font-size: 12px !important;
  color: var(--text-light) !important;
  font-weight: 400 !important;
  margin-top: 5px !important;
}

/* Message Form Styling */
.message-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid rgba(0, 102, 204, 0.15);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  padding: 14px 40px;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 102, 204, 0.4);
}

.submit-btn:active {
  transform: translateY(-1px);
}

/* ==================== FOOTER ==================== */
.footer {
  background: linear-gradient(135deg, var(--dark) 0%, #0d1b2a 100%);
  color: white;
  padding: 80px 40px 30px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--gradient);
  transform: translateY(-3px);
}

.shop-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.shop-link:hover {
  color: white;
  transform: translateX(5px);
}


.shop-logos {
  display: flex;
  gap: 18px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.shop-logo-img {
  height: 38px;
  width: auto;
  display: block;
  border-radius: 8px;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}

.shop-link:hover .shop-logo-img {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,102,204,0.13);
}

.tokopedia-logo {
  padding: 2px 4px;
  background: #fff;
}

.shopee-logo {
  padding: 2px 4px;
  background: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin: 0;
}

.footer-bottom p:first-child {
  text-align: left;
  flex: 1;
}

.footer-bottom p:last-child {
  text-align: right;
}

.credit-name {
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 48px;
  }

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

  .navbar {
    padding: 0 30px;
  }

  .nav-menu {
    gap: 25px;
  }

  .hero-stats {
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
    height: 60px;
  }

  .nav-menu {
    gap: 15px;
    flex-wrap: wrap;
  }

  .nav-link {
    font-size: 12px;
  }

  .hero {
    margin-top: 60px;
  }

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

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

  .section {
    padding: 60px 20px;
  }

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

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn {
    width: 100%;
  }

  .hero-stats {
    gap: 30px;
  }

  .stat-number {
    font-size: 32px;
  }

  .about-grid,
  .products-grid,
  .capabilities-grid,
  .certifications-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .logo span {
    display: none;
  }

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

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

  .section-header h2 {
    font-size: 24px;
  }

  .cta-button {
    display: none;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 12px;
  }

  .hero-stats {
    gap: 20px;
  }

  .about-card,
  .product-card,
  .capability-item,
  .contact-item {
    padding: 30px 20px;
  }

  .careers-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .career-benefits {
    grid-template-columns: 1fr;
  }

  .careers-info h3,
  .job-openings h3 {
    font-size: 24px;
  }

  .job-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .job-details {
    gap: 15px;
  }
}

/* ==================== WHATSAPP FLOATING BUTTON ==================== */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 999;
  animation: bounce 2s infinite;
}

.whatsapp-btn:hover {
  background: #1ea85a;
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
  animation: none;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
  .highlight-card {
    padding: 30px 20px;
  }

  .highlight-icon {
    font-size: 40px;
  }

  .highlight-card h3 {
    font-size: 18px;
  }

  .highlights-cta p {
    font-size: 16px;
  }

  .whatsapp-btn {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .whatsapp-btn {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

/* ==================== COMPANY PROFILE SECTION ==================== */
/* ==================== HIGHLIGHTS SECTION ==================== */
.highlights-section {
  background: white;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.highlight-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #ecf0f3 100%);
  padding: 40px 30px;
  border-radius: 16px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 35px rgba(0, 102, 204, 0.2);
  transform: translateY(-8px);
}

.highlight-icon {
  font-size: 48px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
}

.highlight-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.company-profile-section {
  background: white;
}

/* ==================== JOIN WITH US / CAREERS SECTION ==================== */
.join-section {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 188, 212, 0.05) 100%);
}

.careers-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}

.careers-info h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
}

.careers-info p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 30px;
}

.career-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.benefit-item {
  background: white;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.15);
}

.benefit-item i {
  font-size: 28px;
  color: var(--primary);
}

.benefit-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
}

.benefit-item p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.job-openings h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 25px;
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.job-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.job-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
  transform: translateX(5px);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.job-header h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.job-type {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.job-details {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.job-details p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.job-details i {
  color: var(--primary);
  font-size: 14px;
}

.job-description {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

.apply-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
}

.apply-btn:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.apply-btn:active {
  transform: translateX(2px);
}

.careers-cta {
  background: white;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  border-top: 3px solid var(--primary);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.careers-cta p {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 20px;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  background: var(--gradient);
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.cta-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
}

.cta-link i {
  font-size: 16px;
}


.profile-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.02) 0%, rgba(0, 188, 212, 0.02) 100%);
  padding: 60px 50px;
  border-radius: 16px;
  border: 1px solid rgba(0, 102, 204, 0.1);
}

.profile-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.profile-info h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin: 0;
}

.profile-info p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}

.profile-preview-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.08), rgba(0, 188, 212, 0.08));
  border-radius: 16px;
  border: 2px solid rgba(0, 102, 204, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.profile-preview-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.profile-preview-box:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
  transform: translateY(-5px);
}

.profile-preview-box:hover::before {
  opacity: 0.1;
}

.preview-thumbnail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.preview-thumbnail i {
  font-size: 80px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.profile-preview-box:hover .preview-thumbnail i {
  font-size: 100px;
  transform: scale(1.1);
}

.preview-thumbnail span {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  transition: all 0.3s ease;
}

.profile-preview-box:hover .preview-thumbnail span {
  color: var(--primary);
}

.view-btn {
  padding: 14px 32px;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.view-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
}

.view-btn:active {
  transform: translateY(-1px);
}

/* ==================== JOIN WITH US / CAREERS SECTION ==================== */
.join-section {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 188, 212, 0.05) 100%);
}

.careers-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}

.careers-info h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
}

.careers-info p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 30px;
}

.career-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.benefit-item {
  background: white;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.15);
}

.benefit-item i {
  font-size: 28px;
  color: var(--primary);
}

.benefit-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
}

.benefit-item p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.job-openings h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 25px;
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.job-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.job-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
  transform: translateX(5px);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.job-header h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.job-type {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.job-details {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.job-details p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.job-details i {
  color: var(--primary);
  font-size: 14px;
}

.job-description {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

.apply-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
}

.apply-btn:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.apply-btn:active {
  transform: translateX(2px);
}

.careers-cta {
  background: white;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  border-top: 3px solid var(--primary);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.careers-cta p {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 20px;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  background: var(--gradient);
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.cta-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
}

.cta-link i {
  font-size: 16px;
}

/* ==================== PROFILE MODAL ==================== */
.profile-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  animation: fadeInModal 0.3s ease-out;
  backdrop-filter: blur(5px);
}

.profile-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeInModal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.profile-modal-content {
  background: white;
  border-radius: 20px;
  width: 95%;
  max-width: 1200px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: slideUpModal 0.4s ease-out;
}

@keyframes slideUpModal {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.profile-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2001;
}

.profile-modal-close:hover {
  background: var(--gradient);
  color: white;
  transform: rotate(90deg);
}

.profile-modal-header {
  padding: 30px 40px;
  background: linear-gradient(135deg, #0066cc 0%, #00bcd4 100%);
  color: white;
  border-radius: 20px 20px 0 0;
  flex-shrink: 0;
}

.profile-modal-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.profile-modal-header p {
  font-size: 15px;
  opacity: 0.95;
}

.profile-modal-body {
  padding: 30px 40px;
  border-radius: 0 0 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #f9f9f9;
}

.slideshow-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  height: 100%;
}

.slides-viewer {
  width: 100%;
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  aspect-ratio: 4 / 3;
}

.slides-scaler {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.profile-iframe {
  display: block;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  animation: fadeInSlide 0.5s ease-out;
  width: 1620px;
  height: 1215px;
  object-fit: contain;
  transform: scale(0.75);
  transform-origin: top center;
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.slideshow-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 20px 0;
}

.slide-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.slide-nav-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
  background: var(--gradient-dark);
}

.slide-nav-btn:active {
  transform: translateY(-1px);
}

.slide-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.slide-counter {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  background: var(--light);
  padding: 10px 20px;
  border-radius: 50px;
  min-width: 100px;
  text-align: center;
}

#currentSlide {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 30px;
  }

  .profile-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .profile-preview-box {
    min-height: 250px;
  }

  .profile-modal-content {
    max-width: 95%;
    max-height: 85vh;
  }

  .profile-modal-header {
    padding: 25px 30px;
  }

  .profile-modal-header h2 {
    font-size: 24px;
  }

  .profile-modal-body {
    padding: 25px 30px;
  }

  .slides-viewer {
    min-height: 400px;
  }

  .slideshow-controls {
    gap: 20px;
  }

  .slide-nav-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .slide-counter {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .contact-wrapper {
    padding: 30px 20px;
    gap: 30px;
  }

  .contact-details h3,
  .message-form-container h3 {
    font-size: 20px;
  }

  .contact-item {
    gap: 15px;
  }

  .contact-icon {
    font-size: 28px;
  }

  .profile-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 25px;
  }

  .profile-info h3 {
    font-size: 24px;
  }

  .preview-thumbnail i {
    font-size: 60px;
  }

  .preview-thumbnail span {
    font-size: 16px;
  }

  .profile-modal-content {
    width: 98%;
    max-height: 85vh;
  }

  .profile-modal-header {
    padding: 20px 30px;
  }

  .profile-modal-header h2 {
    font-size: 22px;
  }

  .profile-modal-body {
    padding: 25px;
  }

  .profile-note {
    font-size: 13px;
    padding: 12px 15px;
  }
}

@media (max-width: 480px) {
  .profile-viewer-container {
    padding: 30px 20px;
  }

  .profile-preview-content h3 {
    font-size: 20px;
  }

  .profile-preview-content p {
    font-size: 14px;
  }

  .preview-features {
    gap: 15px;
  }

  .preview-feature {
    padding: 15px;
  }

  .preview-feature i {
    font-size: 24px;
  }

  .preview-feature span {
    font-size: 12px;
  }

  .preview-image {
    height: 200px;
  }

  .preview-image i {
    font-size: 60px;
  }

  .view-btn {
    padding: 14px 30px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }

  .profile-modal-content {
    width: 99%;
    max-height: 80vh;
  }

  .profile-modal-close {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }

  .profile-modal-header {
    padding: 15px 20px;
  }

  .profile-modal-header h2 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .profile-modal-header p {
    font-size: 13px;
  }

  .profile-modal-body {
    padding: 15px;
  }

  .slides-viewer {
    min-height: 300px;
  }

  .slideshow-controls {
    gap: 10px;
  }

  .slide-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .slide-counter {
    font-size: 12px;
    padding: 6px 12px;
    min-width: 80px;
  }

  .profile-note {
    font-size: 12px;
    padding: 10px 12px;
  }

  .slideshow-controls {
    gap: 15px;
  }

  .slide-nav-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .slide-counter {
    font-size: 14px;
    padding: 8px 16px;
    min-width: 90px;
  }
}

.submit-btn {
  cursor: auto !important;
}

/* thank-you message style */
.thank-you-message {
  font-size: 18px;
  text-align: center;
}

@keyframes sparkle {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2) translateY(-10px); }
  100% { opacity: 0; transform: scale(0.5) translateY(-20px); }
}

/* ==================== MEDIA QUERIES ==================== */

/* Tablet (768px – 1199px) */
@media (max-width: 1199px) {
  .navbar-container {
    padding: 0 3vw;
  }

  .section {
    padding: 8vh 4vw;
  }

  .hero-container {
    padding: 5vh 4vw;
  }

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

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

  .hero-stats {
    gap: 40px;
  }

  .section-header h2 {
    font-size: 36px;
  }

  .about-grid {
    gap: 4vw;
  }

  .products-grid {
    gap: 3vw;
  }

  .capabilities-grid {
    gap: 4vw;
  }

  .certifications-grid {
    gap: 2.5vw;
  }

  .clients-grid {
    gap: 2.5vw;
  }
}

/* Mobile (below 768px) */
@media (max-width: 768px) {
  .navbar {
    height: 60px;
    padding: 0 4vw;
  }

  .logo img {
    height: 50px;
  }

  .nav-toggle-label {
    display: flex;
    order: 2;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 20px;
    padding: 20px 4vw;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-toggle:checked ~ .nav-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .navbar-clock {
    display: none;
  }

  .hero {
    min-height: 90vh;
  }

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

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

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 30px;
  }

  .section {
    padding: 6vh 4vw;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 4vh;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 4vh;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
    gap: 4vh;
  }

  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3vw;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4vw;
  }

  .client-logo img {
    max-width: 100px;
    max-height: 50px;
  }

  .btn {
    padding: 14px 30px;
    font-size: 14px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 4vw;
  }

  img {
    max-width: 100%;
    height: auto;
  }
}
/* ===== PASSCODE OVERLAY STYLE ===== */
#passcode-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #f2f8ff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  font-family: 'Poppins', sans-serif;
}
#passcode-overlay h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
}
#passcode-overlay input {
  padding: 10px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 12px;
}
#passcode-overlay button {
  padding: 10px 20px;
  font-size: 16px;
  background: #007aff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
#error-msg {
  color: red;
  font-size: 14px;
  margin-top: 10px;
  display: none;
}

/* ===== FINAL MOBILE FIX: JOIN WITH US ===== */
@media (max-width: 768px) {
  #careers {
    overflow-x: hidden;
  }

  #careers .careers-content {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
  }

  #careers .career-benefits {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  #careers .benefit-item,
  #careers .job-card,
  #careers .careers-cta {
    padding: 18px;
  }

  #careers .careers-info h3,
  #careers .job-openings h3 {
    font-size: 24px;
  }

  #careers .job-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  #careers .job-header h4 {
    font-size: 16px;
  }

  #careers .job-details {
    gap: 10px;
  }

  #careers .job-details p {
    width: 100%;
    word-break: break-word;
  }

  #careers .job-card:hover,
  #careers .benefit-item:hover,
  #careers .apply-btn:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  #careers .section-header h2 {
    font-size: 24px;
  }

  #careers .section-subtitle,
  #careers .job-description,
  #careers .careers-cta p {
    font-size: 14px;
  }
}