/* ============================================
   SKYLIGHT INTERNATIONAL - Manpower Agency
   Custom CSS with Sky Blue & Black Theme
   ============================================ */

:root {
  --sky-blue: #00b4d8;
  --sky-light: #90e0ef;
  --sky-dark: #0077b6;
  --sky-accent: #caf0f8;
  --black: #0d0d0d;
  --dark-bg: #111827;
  --dark-card: #1f2937;
  --white: #ffffff;
  --gray: #6b7280;
  --light-gray: #f3f4f6;
  --gradient-main: linear-gradient(135deg, #0077b6 0%, #00b4d8 50%, #90e0ef 100%);
  --gradient-dark: linear-gradient(135deg, #0d0d0d 0%, #1f2937 100%);
  --shadow-blue: 0 10px 40px rgba(0, 180, 216, 0.3);
  --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* ---- RESET & BASE ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: #1e293b;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: var(--sky-blue); border-radius: 3px; }

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.preloader-ring {
  width: 70px;
  height: 70px;
  border: 4px solid rgba(0, 180, 216, 0.2);
  border-top-color: var(--sky-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.preloader-text {
  color: var(--sky-blue);
  font-size: 1.1rem;
  letter-spacing: 3px;
  animation: pulse-text 1.5s ease-in-out infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse-text {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  background: rgba(13, 13, 13, 0.95) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 180, 216, 0.2);
  padding: 12px 0;
  transition: all 0.4s ease;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.99) !important;
  box-shadow: 0 4px 30px rgba(0, 180, 216, 0.15);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-main);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  box-shadow: var(--shadow-blue);
  animation: brand-pulse 3s ease-in-out infinite;
}

@keyframes brand-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,180,216,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(0,180,216,0); }
}

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 1px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.brand-tagline { font-size: 0.6rem; color: var(--sky-light); letter-spacing: 2px; text-transform: uppercase; }

.nav-link {
  color: rgba(255,255,255,0.8) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px !important;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.5px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--sky-blue);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after { width: 70%; }
.nav-link:hover, .nav-link.active { color: var(--sky-blue) !important; }

.nav-cta {
  background: var(--gradient-main) !important;
  color: white !important;
  border-radius: 25px;
  padding: 8px 22px !important;
  font-weight: 600;
  box-shadow: var(--shadow-blue);
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 180, 216, 0.45) !important;
}
.nav-cta::after { display: none !important; }

/* ============================================
   SERVICES DROPDOWN
   ============================================ */
.nav-dropdown-wrap { position: relative; }

.nav-arrow {
  font-size: 0.6rem;
  margin-left: 3px;
  transition: transform 0.25s ease;
  display: inline-block;
}
.nav-dropdown-wrap:hover .nav-arrow,
.nav-dropdown-wrap.open .nav-arrow { transform: rotate(180deg); }

.nav-dropdown {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 210px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 2000;
}

@media (min-width: 992px) {
  .nav-dropdown-wrap:hover .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

.nav-dropdown-wrap.open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  font-size: 0.875rem;
  color: #374151;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown li a i { color: var(--sky-blue); width: 14px; text-align: center; }

.nav-dropdown li a:hover {
  background: #f0f9ff;
  color: var(--sky-dark);
}

/* Mobile */
@media (max-width: 991.98px) {
  .nav-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border-radius: 8px;
    margin-top: 4px;
    display: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-dropdown-wrap.open .nav-dropdown { display: block; }
}

.navbar-toggler {
  border: 1px solid rgba(0,180,216,0.4) !important;
  padding: 6px 10px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280%2C180%2C216%2C1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ============================================
   HERO SLIDER — LEAN
   Transition : simple opacity crossfade
   Text       : word-mask reveal (CSS only, no JS anim lib)
   Removed    : cursor RAF, parallax, particles, curtain,
                backdrop-filter, continuous float loops,
                scanlines, ghost numbers, will-change
   ============================================ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: #000;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ---- SLIDES: opacity crossfade only ---- */
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.65s ease;
  pointer-events: none;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

/* ---- BACKGROUND: no scale, no will-change ---- */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* ---- OVERLAYS ---- */
.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(0,0,0,0.88) 0%, rgba(0,15,40,0.72) 50%, rgba(0,80,140,0.18) 100%),
    linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 55%);
}

/* Static grid — no animation */
.slide-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,180,216,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,180,216,0.04) 1px, transparent 1px);
  background-size: 55px 55px;
}

/* ---- CONTENT ---- */
.slide-content {
  position: relative;
  z-index: 5;
  max-width: 680px;
  padding: 0 15px;
}

/* ---- BADGE ---- */
.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(0,180,216,0.1);
  border: 1px solid rgba(0,180,216,0.4);
  color: var(--sky-light);
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 26px;
  opacity: 0;
  transform: translateX(-20px);
}

.slide.active .slide-badge {
  animation: badge-in 0.5s ease 0.2s forwards;
}

@keyframes badge-in {
  to { opacity: 1; transform: translateX(0); }
}

/* Simple static dot — no continuous box-shadow animation */
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky-blue);
  flex-shrink: 0;
}

/* ---- TITLE: word-mask reveal (the only special effect) ---- */
.slide-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 22px;
  color: #ffffff;
}

/* overflow:hidden container clips the word as it rises */
.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  margin-right: 0.22em;
  line-height: 1.15;
}

/* word starts below the container and rises into view */
.word-inner {
  display: inline-block;
  transform: translateY(105%);
  opacity: 0;
}

.slide.active .word-inner {
  animation: word-rise 0.6s cubic-bezier(0.22,1,0.36,1) forwards;
}

@keyframes word-rise {
  to { transform: translateY(0); opacity: 1; }
}

.slide-title .highlight {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- DESCRIPTION ---- */
.slide-desc-wrap {
  overflow: hidden;
  margin-bottom: 34px;
}

.slide-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  transform: translateY(100%);
  opacity: 0;
}

.slide.active .slide-desc {
  animation: word-rise 0.6s cubic-bezier(0.22,1,0.36,1) 0.65s forwards;
}

/* ---- ACTIONS ---- */
.slide-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(14px);
}

.slide.active .slide-actions {
  animation: actions-up 0.5s ease 0.88s forwards;
}

@keyframes actions-up {
  to { opacity: 1; transform: translateY(0); }
}

/* ---- BUTTONS ---- */
.btn-primary-custom {
  background: var(--gradient-main);
  color: white;
  border: none;
  padding: 13px 32px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-blue);
  cursor: pointer;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,180,216,0.45);
  color: white;
}

.btn-outline-custom {
  background: transparent;
  color: var(--sky-dark);
  border: 1.5px solid var(--sky-blue);
  padding: 13px 32px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-outline-custom:hover {
  background: var(--sky-blue);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,180,216,0.3);
}

/* On dark backgrounds (hero slider) keep readable */
.hero-section .btn-outline-custom {
  color: white;
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.07);
}
.hero-section .btn-outline-custom:hover {
  background: var(--sky-blue);
  border-color: var(--sky-blue);
  color: white;
}

/* ---- PROGRESS BAR ---- */
.slider-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.07);
  z-index: 10;
}

.slider-progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #0077b6, #00b4d8, #90e0ef);
  transition: width linear;
}

/* ---- SIDE NAVIGATION ---- */
.slider-side-nav {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.slide-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.slide-cur {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--sky-blue);
  line-height: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.slide-sep {
  display: block;
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, rgba(0,180,216,0.6), rgba(0,180,216,0.1));
}

.slide-tot {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.28);
}

.slider-vert-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}

.vert-dot {
  width: 3px;
  height: 20px;
  border-radius: 3px;
  background: rgba(255,255,255,0.18);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.vert-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-main);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.vert-dot.active        { height: 44px; }
.vert-dot.active::before{ transform: scaleY(1); }
.vert-dot:hover         { background: rgba(0,180,216,0.35); }

/* ---- ARROW BUTTONS ---- */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(0,180,216,0.35);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  font-size: 0.85rem;
  outline: none;
}

.slider-arrow:hover {
  background: var(--sky-blue);
  border-color: var(--sky-blue);
  box-shadow: 0 0 18px rgba(0,180,216,0.4);
}

.slider-arrow-prev { left: 20px; }
.slider-arrow-next { right: 20px; }

@media (min-width: 768px) {
  .slider-arrow-next { right: 90px; }
}

/* ---- STAT CARDS (appear once, no loop) ---- */
.hero-stats {
  position: absolute;
  right: 112px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.hero-stat-card {
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(0,180,216,0.2);
  border-radius: 16px;
  padding: 16px 20px;
  text-align: center;
  min-width: 118px;
  opacity: 0;
  transform: translateX(18px);
  transition: border-color 0.25s ease;
}

.hero-stats.visible .hero-stat-card:nth-child(1) { animation: stat-in 0.5s ease 1.0s forwards; }
.hero-stats.visible .hero-stat-card:nth-child(2) { animation: stat-in 0.5s ease 1.2s forwards; }
.hero-stats.visible .hero-stat-card:nth-child(3) { animation: stat-in 0.5s ease 1.4s forwards; }

@keyframes stat-in {
  to { opacity: 1; transform: translateX(0); }
}

.hero-stat-card:hover { border-color: rgba(0,180,216,0.45); }

.hero-stat-icon {
  font-size: 1rem;
  color: var(--sky-blue);
  margin-bottom: 5px;
  display: block;
}

.hero-stat-num {
  font-size: 1.7rem;
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ============================================
   MARQUEE TICKER
   ============================================ */
.ticker-section {
  background: var(--gradient-main);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  animation: ticker 30s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 30px;
  font-weight: 600;
  font-size: 0.9rem;
  color: white;
  letter-spacing: 0.5px;
}

.ticker-dot {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SECTION COMMONS
   ============================================ */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,180,216,0.1);
  border: 1px solid rgba(0,180,216,0.3);
  color: var(--sky-blue);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #1e293b;
}

.section-title .accent {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  color: #64748b;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.divider-line {
  width: 60px;
  height: 3px;
  background: var(--gradient-main);
  margin: 20px auto;
  border-radius: 2px;
  position: relative;
}

.divider-line::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--sky-blue);
  border-radius: 50%;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section { background: #ffffff; }

.about-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 450px;
}

.about-img-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--gradient-main);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow-blue);
  animation: float-card 4s ease-in-out infinite;
}

.about-img-badge .num {
  font-size: 2rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.about-img-badge .label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
}

.about-img-deco {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100px;
  height: 100px;
  border: 3px solid rgba(0,180,216,0.4);
  border-radius: 20px;
  animation: rotate-slow 12s linear infinite;
}

@keyframes rotate-slow { to { transform: rotate(360deg); } }

.about-feature {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.about-feature-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: rgba(0,180,216,0.1);
  border: 1px solid rgba(0,180,216,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky-blue);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.about-feature:hover .about-feature-icon {
  background: var(--sky-blue);
  color: white;
  transform: scale(1.1);
}

.about-feature-text h5 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: #1e293b; }
.about-feature-text p { font-size: 0.875rem; color: #64748b; margin: 0; }

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section { background: #f8fafc; }

.service-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0,180,216,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0,180,216,0.3);
  box-shadow: 0 16px 40px rgba(0,180,216,0.15);
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }

.service-icon {
  width: 72px;
  height: 72px;
  background: rgba(0,180,216,0.1);
  border: 2px solid rgba(0,180,216,0.25);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--sky-blue);
  margin: 0 auto 22px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon {
  background: var(--gradient-main);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-blue);
  transform: rotate(5deg) scale(1.1);
}

.service-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  color: #1e293b;
}

.service-card p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.service-tag {
  display: inline-block;
  background: rgba(0,180,216,0.1);
  color: var(--sky-blue);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

/* ============================================
   STATS COUNTER
   ============================================ */
.stats-section {
  background: var(--gradient-dark);
  border-top: 1px solid rgba(0,180,216,0.15);
  border-bottom: 1px solid rgba(0,180,216,0.15);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,180,216,0.08) 0%, transparent 70%);
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(0,180,216,0.2);
}

.stat-item:last-child::after { display: none; }

.stat-icon {
  font-size: 2rem;
  color: var(--sky-blue);
  margin-bottom: 12px;
  animation: stat-bounce 2s ease-in-out infinite;
}

.stat-item:nth-child(2) .stat-icon { animation-delay: 0.3s; }
.stat-item:nth-child(3) .stat-icon { animation-delay: 0.6s; }
.stat-item:nth-child(4) .stat-icon { animation-delay: 0.9s; }

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

.stat-num {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   INDUSTRIES / SECTORS
   ============================================ */
.industries-section { background: #ffffff; }

.industry-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.industry-card:hover {
  border-color: rgba(0,180,216,0.35);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,180,216,0.15);
}

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

.industry-icon {
  font-size: 2.2rem;
  color: var(--sky-blue);
  margin-bottom: 14px;
  display: block;
  transition: transform 0.3s ease;
}

.industry-card:hover .industry-icon { transform: scale(1.2) rotate(-5deg); }

.industry-card h5 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; color: #1e293b; }
.industry-card p { font-size: 0.8rem; color: #64748b; margin: 0; }

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section { background: #f8fafc; }

.process-step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.process-connector {
  position: absolute;
  top: 55px;
  right: -30%;
  width: 60%;
  height: 2px;
  background: linear-gradient(to right, rgba(0,180,216,0.6), rgba(0,180,216,0.1));
  z-index: 0;
}

.process-connector::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(0,180,216,0.6);
  border-top: 2px solid rgba(0,180,216,0.6);
  transform: rotate(45deg);
}

.process-num {
  width: 70px;
  height: 70px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: white;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-blue);
  transition: all 0.3s ease;
}

.process-step:hover .process-num {
  transform: scale(1.15);
  box-shadow: 0 0 0 8px rgba(0,180,216,0.15);
}

.process-step h5 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: #1e293b; }
.process-step p { font-size: 0.85rem; color: #64748b; }

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section { background: #ffffff; }

.team-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  text-align: center;
}

.team-card:hover {
  border-color: rgba(0,180,216,0.3);
  transform: translateY(-8px);
  box-shadow: var(--shadow-blue);
}

.team-img-wrap {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img-wrap img { transform: scale(1.08); }

.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover .team-overlay { opacity: 1; }

.team-social { display: flex; gap: 10px; }

.team-social a {
  width: 36px;
  height: 36px;
  background: rgba(0,180,216,0.15);
  border: 1px solid rgba(0,180,216,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky-light);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.team-social a:hover { background: var(--sky-blue); border-color: var(--sky-blue); color: white; }

.team-info { padding: 22px; }
.team-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; color: #1e293b; }
.team-role { font-size: 0.8rem; color: var(--sky-blue); font-weight: 600; letter-spacing: 1px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,180,216,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
  min-width: 100%;
  padding: 10px;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 40px;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 5rem;
  color: rgba(0,180,216,0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 16px; }

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  border: 2px solid rgba(0,180,216,0.4);
}

.testimonial-name { font-weight: 700; font-size: 1rem; color: #1e293b; }
.testimonial-position { font-size: 0.8rem; color: var(--sky-blue); }

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.t-nav-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0,180,216,0.35);
  background: #ffffff;
  border-radius: 50%;
  color: var(--sky-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.t-nav-btn:hover { background: var(--sky-blue); border-color: var(--sky-blue); }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section { background: #ffffff; }

.why-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.why-check {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--gradient-main);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  box-shadow: var(--shadow-blue);
  transition: transform 0.3s ease;
}

.why-item:hover .why-check { transform: rotate(10deg) scale(1.1); }

.why-text h5 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: #1e293b; }
.why-text p { font-size: 0.875rem; color: #64748b; margin: 0; line-height: 1.6; }

.why-visual {
  background: #f0f9ff;
  border: 1px solid rgba(0,180,216,0.2);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.why-visual::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg 60deg,
    rgba(0,180,216,0.05) 60deg 120deg,
    transparent 120deg 180deg,
    rgba(0,180,216,0.05) 180deg 240deg,
    transparent 240deg 300deg,
    rgba(0,180,216,0.05) 300deg 360deg
  );
  animation: rotate-slow 20s linear infinite;
}

.why-visual-icon {
  font-size: 5rem;
  color: rgba(0,180,216,0.15);
  position: relative;
  z-index: 1;
  animation: pulse-icon 3s ease-in-out infinite;
}

@keyframes pulse-icon {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); color: rgba(0,180,216,0.3); }
}

.why-metric {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-metric-label { color: var(--gray); font-size: 0.9rem; }

/* ============================================
   JOBS / OPENINGS
   ============================================ */
.jobs-section { background: #f8fafc; }

.job-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  margin-bottom: 16px;
  cursor: pointer;
}

.job-card:hover {
  border-color: rgba(0,180,216,0.35);
  transform: translateX(6px);
  box-shadow: -4px 0 20px rgba(0,180,216,0.15);
}

.job-logo {
  width: 54px;
  height: 54px;
  min-width: 54px;
  background: rgba(0,180,216,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--sky-blue);
  border: 1px solid rgba(0,180,216,0.25);
}

.job-title { font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: #1e293b; }
.job-meta { display: flex; gap: 12px; flex-wrap: wrap; }
.job-tag {
  font-size: 0.75rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 4px;
}

.job-badge {
  background: rgba(0,180,216,0.12);
  color: var(--sky-blue);
  padding: 4px 12px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.job-salary {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--sky-blue);
  text-align: right;
  white-space: nowrap;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-section {
  background: var(--gradient-main);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: dot-move 15s linear infinite;
}

@keyframes dot-move { to { background-position: 60px 60px; } }

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 36px;
  position: relative;
}

.btn-white {
  background: white;
  color: var(--sky-dark);
  border: none;
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  margin: 6px;
  position: relative;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  color: var(--sky-dark);
}

.btn-white-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.7);
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin: 6px;
  position: relative;
}

.btn-white-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  color: white;
  transform: translateY(-3px);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section { background: #ffffff; }

.contact-info-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 36px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: center;
}

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(0,180,216,0.1);
  border: 1px solid rgba(0,180,216,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky-blue);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  background: var(--sky-blue);
  color: white;
}

.contact-label { font-size: 0.75rem; color: #94a3b8; letter-spacing: 1px; text-transform: uppercase; }
.contact-value { font-size: 0.95rem; font-weight: 600; color: #1e293b; }

.contact-form-wrap {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 36px;
}

.form-control-custom {
  background: #f8fafc !important;
  border: 1px solid rgba(0,0,0,0.12) !important;
  color: #1e293b !important;
  border-radius: 12px !important;
  padding: 14px 18px !important;
  font-size: 0.9rem !important;
  transition: all 0.3s ease !important;
}

.form-control-custom:focus {
  border-color: rgba(0,180,216,0.6) !important;
  box-shadow: 0 0 0 3px rgba(0,180,216,0.12) !important;
  background: #ffffff !important;
  outline: none !important;
}

.form-control-custom::placeholder { color: #94a3b8 !important; }

.form-label-custom {
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(0,180,216,0.15);
  padding: 70px 0 0;
}

.footer-logo { margin-bottom: 20px; }
.footer-desc { font-size: 0.875rem; color: var(--gray); line-height: 1.7; margin-bottom: 24px; }

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--sky-blue);
  border-color: var(--sky-blue);
  color: white;
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sky-blue);
  margin-bottom: 20px;
}

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

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '';
  width: 5px;
  height: 5px;
  background: rgba(0,180,216,0.4);
  border-radius: 50%;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.footer-links a:hover {
  color: var(--sky-blue);
  transform: translateX(4px);
}

.footer-links a:hover::before { background: var(--sky-blue); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 50px;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy { font-size: 0.82rem; color: var(--gray); }
.footer-copy span { color: var(--sky-blue); }

.footer-links-inline { display: flex; gap: 20px; }
.footer-links-inline a {
  font-size: 0.82rem;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links-inline a:hover { color: var(--sky-blue); }

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--gradient-main);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-blue);
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}

.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-4px); box-shadow: 0 15px 35px rgba(0,180,216,0.5); }

/* ============================================
   ANIMATIONS - SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.reveal-left {
  transform: translateX(-40px);
}

.reveal.reveal-right {
  transform: translateX(40px);
}

.reveal.active {
  opacity: 1;
  transform: translate(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================
   PARTICLES
   ============================================ */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: rgba(0,180,216,0.5);
  border-radius: 50%;
  animation: particle-float linear infinite;
}

@keyframes particle-float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1199.98px) {
  .hero-stats      { display: none !important; }
  .slider-side-nav { right: 16px; }
}

@media (max-width: 991.98px) {
  .process-connector { display: none; }
  .stat-item::after  { display: none; }
}

@media (max-width: 767.98px) {
  .slide-content    { text-align: center; }
  .slide-actions    { justify-content: center; }
  .slider-side-nav  { display: none; }

  .hero-section     { height: 88vh; min-height: 580px; }
  .footer-bottom    { flex-direction: column; text-align: center; }
  .job-detail-card  { flex-wrap: wrap; }
  .job-actions      { flex-direction: row; align-items: center; width: 100%; }
  .slider-arrow-wrap { bottom: 24px; }
}

@media (max-width: 575.98px) {
  .section-pad { padding: 60px 0; }
  .testimonial-card { padding: 28px 20px; }
}

/* ============================================
   GLOWING ELEMENTS
   ============================================ */
.glow-blue {
  box-shadow: 0 0 20px rgba(0,180,216,0.4), 0 0 40px rgba(0,180,216,0.2);
}

.text-sky { color: var(--sky-blue) !important; }
.text-sky-light { color: var(--sky-light) !important; }
.bg-sky { background: var(--sky-blue) !important; }
.border-sky { border-color: rgba(0,180,216,0.4) !important; }

/* Animated underline utility */
.underline-anim {
  position: relative;
  display: inline-block;
}

.underline-anim::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.underline-anim:hover::after { transform: scaleX(1); transform-origin: left; }

/* ============================================
   INNER PAGE HERO (all pages except home)
   ============================================ */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 60%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid rgba(0,180,216,0.15);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(0,180,216,0.08) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300b4d8' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: var(--gradient-main);
  border-radius: 2px;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,180,216,0.1);
  border: 1px solid rgba(0,180,216,0.3);
  color: var(--sky-blue);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.15;
  position: relative;
  z-index: 1;
  color: #0f172a;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 24px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* Breadcrumb */
.breadcrumb-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--gray);
  margin-top: 8px;
}

.breadcrumb-wrap a {
  color: var(--gray);
  text-decoration: none;
  transition: color .3s ease;
}

.breadcrumb-wrap a:hover { color: var(--sky-blue); }
.breadcrumb-wrap .sep { color: rgba(0,180,216,.4); }
.breadcrumb-wrap .current { color: var(--sky-blue); }

/* ============================================
   SERVICE DETAIL CARD (services page)
   ============================================ */
.service-detail-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  border-radius: 24px;
  padding: 40px 36px;
  height: 100%;
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
}

.service-detail-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transition: transform .4s ease;
}

.service-detail-card:hover {
  border-color: rgba(0,180,216,.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
}

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

.service-detail-icon {
  width: 64px;
  height: 64px;
  background: rgba(0,180,216,.1);
  border: 2px solid rgba(0,180,216,.25);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--sky-blue);
  margin-bottom: 24px;
  transition: all .4s ease;
}

.service-detail-card:hover .service-detail-icon {
  background: var(--gradient-main);
  color: white;
  border-color: transparent;
  transform: rotate(5deg) scale(1.1);
}

.service-detail-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1e293b;
}

.service-detail-card .sdesc {
  font-size: .875rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.service-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  color: #475569;
  margin-bottom: 10px;
}

.service-points li i {
  color: var(--sky-blue);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ============================================
   INDUSTRY DETAIL (industries page)
   ============================================ */
.industry-detail-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all .35s ease;
  height: 100%;
  position: relative;
}

.industry-detail-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-main);
  transform: scaleX(0);
  border-radius: 0 0 20px 20px;
  transition: transform .35s ease;
}

.industry-detail-card:hover {
  border-color: rgba(0,180,216,.3);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,180,216,.15);
}

.industry-detail-card:hover::after { transform: scaleX(1); }

.industry-detail-icon {
  font-size: 2.2rem;
  color: var(--sky-blue);
  margin-bottom: 16px;
  transition: transform .3s ease;
}

.industry-detail-card:hover .industry-detail-icon { transform: scale(1.2) rotate(-5deg); }

.industry-detail-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: #1e293b; }
.industry-detail-card p  { font-size: .85rem; color: #64748b; margin: 0 0 16px; line-height: 1.6; }

.industry-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,180,216,.1);
  color: var(--sky-blue);
  padding: 4px 12px;
  border-radius: 10px;
  font-size: .75rem;
  font-weight: 700;
}

/* ============================================
   JOB DETAIL CARD (jobs page)
   ============================================ */
.job-detail-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all .3s ease;
  margin-bottom: 20px;
}

.job-detail-card:hover {
  border-color: rgba(0,180,216,.35);
  transform: translateX(6px);
  box-shadow: -5px 0 25px rgba(0,180,216,.12);
}

.job-detail-logo {
  width: 58px;
  height: 58px;
  min-width: 58px;
  background: rgba(0,180,216,.1);
  border: 1px solid rgba(0,180,216,.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--sky-blue);
  transition: all .3s ease;
}

.job-detail-card:hover .job-detail-logo {
  background: var(--sky-blue);
  color: white;
}

.job-detail-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; color: #1e293b; }

.job-meta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; }

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .8rem;
  color: #64748b;
}

.job-meta-item i { color: var(--sky-blue); font-size: .75rem; }

.job-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; flex-direction: column; }

.btn-apply {
  background: var(--gradient-main);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all .3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-apply:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
  color: white;
}

.btn-save {
  background: transparent;
  border: 1px solid rgba(0,180,216,.3);
  color: var(--sky-blue);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: .78rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all .3s ease;
}

.btn-save:hover { background: rgba(0,180,216,.1); border-color: var(--sky-blue); }

/* Filter bar */
.filter-bar {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-radius: 18px;
  padding: 24px 28px;
  margin-bottom: 36px;
}

.filter-bar .form-select,
.filter-bar .form-control {
  background: #f8fafc !important;
  border: 1px solid rgba(0,0,0,0.12) !important;
  color: #1e293b !important;
  border-radius: 10px !important;
  padding: 10px 14px !important;
  font-size: .875rem !important;
}

.filter-bar .form-select:focus,
.filter-bar .form-control:focus {
  border-color: rgba(0,180,216,.5) !important;
  box-shadow: 0 0 0 3px rgba(0,180,216,.1) !important;
  outline: none !important;
}

.filter-bar .form-select option { background: #ffffff; color: #1e293b; }

/* ============================================
   ABOUT PAGE — STORY SECTION
   ============================================ */
.value-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: all .35s ease;
  height: 100%;
}

.value-card:hover {
  border-color: rgba(0,180,216,.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
}

.value-card-icon {
  width: 68px;
  height: 68px;
  background: rgba(0,180,216,.1);
  border: 2px solid rgba(0,180,216,.25);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--sky-blue);
  margin: 0 auto 20px;
  transition: all .35s ease;
}

.value-card:hover .value-card-icon {
  background: var(--gradient-main);
  color: white;
  border-color: transparent;
}

.value-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: #1e293b; }
.value-card p  { font-size: .875rem; color: #64748b; line-height: 1.7; margin: 0; }

/* ============================================
   FAQ ACCORDION (contact page)
   ============================================ */
.faq-item {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .3s ease;
}

.faq-item.open { border-color: rgba(0,180,216,.3); }

.faq-q {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: .95rem;
  color: #1e293b;
  user-select: none;
  transition: color .3s ease;
}

.faq-item.open .faq-q { color: var(--sky-blue); }

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: rgba(0,180,216,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky-blue);
  font-size: .75rem;
  transition: transform .3s ease, background .3s ease;
}

.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--sky-blue); color: white; }

.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: .875rem;
  color: #64748b;
  line-height: 1.7;
  border-top: 1px solid rgba(0,0,0,0.07);
  padding-top: 16px;
}

.faq-a.open { display: block; }

/* ============================================
   CONTACT PAGE MAP PLACEHOLDER
   ============================================ */
.map-placeholder {
  background: #f0f9ff;
  border: 1px solid rgba(0,180,216,.2);
  border-radius: 20px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray);
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,180,216,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,180,216,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-pin {
  font-size: 2.5rem;
  color: var(--sky-blue);
  animation: pin-bounce 2s ease-in-out infinite;
}

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

/* ============================================
   PARTNER LOGOS ROW
   ============================================ */
.partners-section { background: #f8fafc; padding: 50px 0; border-top: 1px solid #e2e8f0; }

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  color: #94a3b8;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all .3s ease;
  height: 60px;
}

.partner-logo:hover {
  border-color: rgba(0,180,216,.4);
  color: var(--sky-blue);
  background: rgba(0,180,216,.04);
}

/* ============================================
   MISC UTILITIES (multi-page additions)
   ============================================ */
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 600;
  background: rgba(0,180,216,.1);
  color: var(--sky-blue);
  border: 1px solid rgba(0,180,216,.2);
}

.tag-pill.green  { background:rgba(16,185,129,.1); color:#059669; border-color:rgba(16,185,129,.3); }
.tag-pill.orange { background:rgba(245,158,11,.1);  color:#d97706; border-color:rgba(245,158,11,.3); }
.tag-pill.purple { background:rgba(139,92,246,.1);  color:#7c3aed; border-color:rgba(139,92,246,.3); }

.posted-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: #10b981;
  border-radius: 50%;
  animation: blink-dot 2s ease-in-out infinite;
}

@keyframes blink-dot {
  0%,100% { opacity:1; }
  50%      { opacity:.3; }
}

/* Alert styles for forms */
.alert-success-custom {
  background: rgba(0,180,216,.12);
  border: 1px solid rgba(0,180,216,.4);
  border-radius: 12px;
  color: var(--sky-light);
  padding: 16px 20px;
  margin-bottom: 20px;
}

.alert-error-custom {
  background: rgba(220,38,38,.1);
  border: 1px solid rgba(220,38,38,.3);
  border-radius: 12px;
  color: #fca5a5;
  padding: 16px 20px;
  margin-bottom: 20px;
}
