/* ============================================================
   SAMTU CONSULT LIMITED — OFFICIAL BRAND STYLESHEET
   Primary: #00AFEF (R0 G174 B239) | Dark: #231F20 (R35 G31 B32)
   Font: Neue Frutiger World / Graphik / Plus Jakarta Sans
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap');

/* ─── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --primary: #00AEEF;
  --primary-dark: #0092C8;
  --primary-light: #E0F5FC;
  --navy: #231F20;
  --dark: #231F20;
  --gold: #FFB800;
  --gold-dark: #D4AF37;
  --light-bg: #F4F8FC;
  --text: #231F20;
  --text-muted: #5A6065;
  --border: #e8ecf0;
  --white: #ffffff;
  --bs-primary: #00AEEF;
  --bs-primary-rgb: 0, 174, 239;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 4px 15px rgba(35,31,32,0.06);
  --shadow-md: 0 10px 30px rgba(35,31,32,0.1);
  --shadow-lg: 0 20px 60px rgba(0,174,239,0.15);
  --font-family: 'Google Sans', 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
}

/* ─── RESET & BASE ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}
body {
  font-family: var(--font-family);
  color: var(--text);
  background: #ffffff;
  overflow-x: hidden;
  width: 100%;
  padding-top: 0;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6,.navbar-brand {
  font-family: var(--font-family);
  font-weight: 700;
  word-break: break-word;
  overflow-wrap: break-word;
}
img { max-width: 100%; height: auto; }
a { transition: var(--transition); }

.bg-navy { background-color: var(--navy) !important; }
.text-gold { color: var(--gold) !important; }
.text-blue { color: var(--primary) !important; }
.card-header.bg-navy {
  background: var(--navy) !important;
  color: #ffffff !important;
}
.card-header.bg-navy .text-blue {
  color: var(--primary) !important;
}
.card-header.bg-navy .text-gold {
  color: var(--gold) !important;
}

/* ─── CONTAINER & GRID SYSTEM ────────────────────────────────── */
.container,
.container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 576px) {
  .container { max-width: 540px; padding-left: 24px; padding-right: 24px; }
}
@media (min-width: 768px) {
  .container { max-width: 720px; padding-left: 24px; padding-right: 24px; }
}
@media (min-width: 992px) {
  .container { max-width: 960px; padding-left: 28px; padding-right: 28px; }
}
@media (min-width: 1200px) {
  .container { max-width: 1320px; padding-left: 32px; padding-right: 32px; }
}
@media (min-width: 1400px) {
  .container { max-width: 1340px; padding-left: 32px; padding-right: 32px; }
}

.container-fluid {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

.row {
  margin-left: -12px;
  margin-right: -12px;
}
.col, [class*="col-"] {
  padding-left: 12px;
  padding-right: 12px;
}

/* ─── PRELOADER (REMOVED FOR INSTANT LOAD) ─────────────────────── */
#preloader { display: none !important; }

/* ─── WHATSAPP FLOAT BUTTON ──────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  background: #25D366;
  color: #fff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  background: #128C7E;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(37,211,102,0.6);
}
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: whatsappPulse 2s infinite;
}
@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ─── SCROLL PROGRESS BAR ───────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: #00AEEF;
  z-index: 99998;
  width: 0%;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ─── TOP BAR ────────────────────────────────────────────────── */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.88);
  font-size: 0.82rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1039;
}
.top-bar a { color: rgba(255,255,255,0.88); text-decoration: none; transition: var(--transition); }
.top-bar a:hover { color: var(--primary); }
.top-bar .social-top a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  margin-left: 6px;
  font-size: 12px;
  transition: var(--transition);
}
.top-bar .social-top a:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

/* ─── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 42px;
  left: 0;
  right: 0;
  z-index: 1040;
  transition: none;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.navbar.scrolled {
  box-shadow: none;
  background: #ffffff;
  padding: 14px 0;
}
.navbar-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.navbar-brand img {
  height: 60px !important;
  max-height: 65px !important;
  width: auto !important;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.navbar-brand:hover img { transform: scale(1.04); }
.navbar-brand .brand-text { display: none !important; }
.navbar-brand .brand-name { display: block; color: var(--dark); font-size: 16px; font-weight: 800; letter-spacing: 0.5px; }
.navbar-brand .brand-sub { display: block; color: var(--primary); font-size: 9.5px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }

/* NAV ITEM ALIGNMENT — SINGLE LINE (NO TWO-LINE WRAPPING) */
.navbar-nav {
  gap: 4px;
  align-items: center;
}
.nav-link {
  color: var(--dark) !important;
  font-weight: 600;
  font-size: 14.5px;
  padding: 8px 16px !important;
  border-radius: 10px;
  white-space: nowrap !important;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: var(--transition);
}
.nav-link:hover {
  color: var(--primary) !important;
  background: rgba(0, 174, 239, 0.08);
}

/* ACTIVE NAV LINK (HOME) — MATCHES IMAGE #1 */
.nav-link.active {
  color: var(--primary) !important;
  background: var(--primary-light) !important;
  font-weight: 700;
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
}

.navbar-toggler { border: none; padding: 4px 8px; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  width: 24px;
  background-image: none !important;
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
}
.toggler-bar {
  display: block; height: 2px; background: var(--dark); border-radius: 2px;
  transition: var(--transition);
}

/* LOGIN BUTTON — OUTLINE ROUNDED PILL */
[data-guest-show] .btn-outline-primary,
.btn-outline-primary {
  border: 1.5px solid var(--primary) !important;
  color: var(--primary) !important;
  background: transparent !important;
  border-radius: 12px !important;
  padding: 8px 24px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  white-space: nowrap !important;
  transition: var(--transition);
}
[data-guest-show] .btn-outline-primary:hover,
.btn-outline-primary:hover {
  background: var(--primary) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(0, 174, 239, 0.3) !important;
}

/* GET STARTED BUTTON — SOLID CYAN PILL WITH ARROW */
.nav-cta {
  background: var(--primary) !important;
  color: #ffffff !important;
  border-radius: 25px !important;
  padding: 10px 24px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  box-shadow: 0 4px 15px rgba(0, 174, 239, 0.35) !important;
  border: none !important;
  transition: var(--transition);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--primary-dark) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 174, 239, 0.45) !important;
}

/* ─── MOBILE NAV REDESIGN ────────────────────────────────────── */
@media (max-width: 991.98px) {
  .navbar {
    top: 0 !important;
  }

  /* Slide-down panel with depth */
  .navbar-collapse {
    background: #ffffff;
    border-top: 2px solid #00AEEF;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 20px 50px rgba(35,31,32,0.15);
    padding: 20px 16px 24px;
    margin: 0 -12px;
    animation: slideDown 0.28s ease;
  }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Each nav link as a full-width pill row */
  .navbar-nav .nav-item { width: 100%; }
  .navbar-nav .nav-link {
    display: flex !important;
    align-items: center;
    width: 100%;
    padding: 12px 16px !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    font-weight: 600;
    color: #231F20 !important;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    white-space: normal !important;
    margin-bottom: 2px;
  }
  .navbar-nav .nav-link:last-child { border-bottom: none; }
  .navbar-nav .nav-link.active {
    background: rgba(0, 174, 239, 0.1) !important;
    color: #00AEEF !important;
    border-left: 3px solid #00AEEF;
  }
  .navbar-nav .nav-link:hover {
    background: rgba(0, 174, 239, 0.07) !important;
    color: #00AEEF !important;
    padding-left: 20px !important;
    transition: all 0.2s ease;
  }

  /* Auth area separator */
  #nav-auth-area {
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 16px;
    margin-top: 8px;
    flex-direction: column !important;
    gap: 8px !important;
    width: 100%;
  }
  #nav-auth-area .nav-item { width: 100%; }
  #nav-auth-area .btn,
  #nav-auth-area a.btn {
    width: 100%;
    display: block;
    text-align: center;
    padding: 12px 20px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
  }
  #nav-auth-area .btn-outline-primary { margin-bottom: 4px; }

  /* User dropdown in mobile */
  #nav-auth-area .dropdown { width: 100%; }
  #nav-auth-area .dropdown-toggle {
    width: 100%;
    justify-content: flex-start;
    background: rgba(0,174,239,0.07);
    border-radius: 12px;
    padding: 10px 16px !important;
  }
  #nav-auth-area .dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border: 1px solid rgba(0,0,0,0.06) !important;
    border-radius: 12px !important;
    margin-top: 8px;
    width: 100%;
  }

  /* Hamburger toggle styling */
  .navbar-toggler {
    background: rgba(0,174,239,0.08) !important;
    border-radius: 10px !important;
    padding: 8px 12px !important;
    border: none !important;
  }
  .navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(0,174,239,0.2) !important; }
}

/* ─── HERO SECTION ───────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  background: #231F20;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
  padding: 120px 0 80px;
  clip-path: none;
}

/* Animated gradient overlay */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #231F20;
  animation: heroBgPulse 8s ease-in-out infinite alternate;
}
@keyframes heroBgPulse {
  from { opacity: 0.6; }
  to   { opacity: 1; }
}

/* Particle canvas */
#hero-particles { position: absolute; inset: 0; z-index: 1; }

.hero-content { position: relative; z-index: 3; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 6px 16px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulseDot 1.5s ease infinite;
}
@keyframes pulseDot {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}
.hero-content h1 {
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 18px;
}
.hero-content h1 .highlight {
  color: var(--gold);
  position: relative;
  display: inline-block;
}
.hero-content h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineGrow 0.8s ease 1.2s forwards;
}
@keyframes underlineGrow { to { transform: scaleX(1); } }

/* Typing cursor */
.typing-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--gold);
  vertical-align: middle;
  margin-left: 2px;
  animation: blink 0.8s step-end infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

.hero-content p {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  opacity: 0.88;
  line-height: 1.75;
  margin-bottom: 30px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-primary {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(255,184,0,0.4);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-primary:hover {
  background: #fff;
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255,255,255,0.25);
}
.btn-hero-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  color: #fff;
  transform: translateY(-3px);
}
.hero-meta {
  display: flex; gap: 24px; margin-top: 40px;
}
.hero-meta-item {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 18px;
  border-radius: 12px;
}
.hero-meta-item .number { font-size: 1.5rem; font-weight: 800; color: var(--gold); font-family: 'Poppins', sans-serif; }
.hero-meta-item .label { font-size: 12px; opacity: 0.8; }

.hero-img-wrap {
  position: relative; z-index: 3;
}
.hero-img-wrap .main-img {
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}
.hero-float-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  display: flex; align-items: center; gap: 12px;
}
.hero-float-card.card-1 {
  bottom: 30px; left: 10px;
  animation: floatCard 4s ease-in-out infinite;
}
.hero-float-card.card-2 {
  top: 30px; right: 10px;
  animation: floatCard 4s ease-in-out 2s infinite;
}
.hero-float-card .icon {
  width: 44px; height: 44px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.hero-float-card .card-title { font-size: 14px; font-weight: 700; color: var(--navy); }
.hero-float-card .card-sub { font-size: 12px; color: var(--text-muted); }
@keyframes floatCard {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

/* Floating shapes (contained) */
.hero-shape {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.04);
  animation: heroShapeFloat 8s ease-in-out infinite;
  pointer-events: none;
}
.hero-shape:nth-child(1) { width: 220px; height: 220px; top: -50px; right: -20px; animation-delay: 0s; }
.hero-shape:nth-child(2) { width: 150px; height: 150px; bottom: 50px; left: -20px; animation-delay: 3s; }
.hero-shape:nth-child(3) { width: 80px; height: 80px; top: 40%; left: 30%; animation-delay: 1.5s; }
@keyframes heroShapeFloat {
  0%,100% { transform: scale(1) translate(0,0); }
  33% { transform: scale(1.1) translate(10px,-15px); }
  66% { transform: scale(0.95) translate(-10px,10px); }
}

/* ─── ANIMATIONS KEYFRAMES ───────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes rotateIn {
  from { opacity: 0; transform: rotate(-10deg) scale(0.9); }
  to   { opacity: 1; transform: rotate(0) scale(1); }
}

/* ─── AOS CUSTOM EASING ──────────────────────────────────────── */
/* [data-aos] will-change removed — AOS library fully disabled */

/* ─── SECTION STYLES ─────────────────────────────────────────── */
section { padding: 90px 0; }
.section-label, .section-subtitle {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  color: var(--primary) !important;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
  text-align: center;
}
.section-label::before, .section-label::after {
  content: '';
  width: 24px; height: 2px;
  background: var(--primary);
  border-radius: 1px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  text-align: center;
}
.section-title .text-primary { color: var(--primary) !important; }
.section-desc { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; max-width: 600px; }

/* ─── STATS BAR ──────────────────────────────────────────────── */
.stats-section {
  background: #231F20;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats-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.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stat-item { text-align: center; position: relative; padding: 20px 10px; }
.stat-item::after {
  content: '';
  position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(255,255,255,0.15);
}
.stat-item:last-child::after { display: none; }
.stat-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--gold);
  margin: 0 auto 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
}
.stat-item:hover .stat-icon-wrap { transform: translateY(-4px) scale(1.1); background: rgba(255,255,255,0.18); }
.stat-number {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 6px;
  display: block;
}
.stat-number .suffix { color: var(--gold); }
.stat-label { color: rgba(255,255,255,0.8); font-size: 0.95rem; font-weight: 500; }

/* ─── ABOUT SECTION ──────────────────────────────────────────── */
.about-img-wrap { position: relative; }
.about-img-wrap .main-img {
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  transition: var(--transition);
}
.about-img-wrap:hover .main-img { transform: scale(1.02); }
.about-img-badge {
  position: absolute;
  bottom: 30px; right: -20px;
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
  border-bottom: 4px solid var(--primary);
  animation: floatCard 5s ease-in-out infinite;
}
.about-img-badge .big-num { font-size: 2.5rem; font-weight: 900; color: var(--primary); font-family: 'Poppins', sans-serif; line-height: 1; }
.about-img-badge .small-txt { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.about-experience-tag {
  position: absolute; top: 30px; left: -20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 800; font-size: 13px;
  box-shadow: 0 8px 20px rgba(255,184,0,0.3);
  animation: floatCard 5s ease-in-out 2.5s infinite;
}
.about-check-list { list-style: none; padding: 0; margin: 24px 0; }
.about-check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}
.about-check-list li:last-child { border-bottom: none; }
.about-check-list .check-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  margin-top: 1px;
}

/* ─── SERVICES SECTION ───────────────────────────────────────── */
.services-section { background: var(--light-bg); }
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: #00AEEF;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card::after { display: none !important; }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 174, 239, 0.15);
  border-color: #00AEEF;
  background: #ffffff !important;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover h4 { color: #00AEEF; }
.service-card:hover .service-icon { background: var(--primary); color: #fff; transform: scale(1.08); }
.service-icon {
  width: 72px; height: 72px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
  transition: all 0.4s ease;
}
.service-card h4 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; transition: color 0.3s ease; }
.service-card p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.7; margin: 0; }
.service-card .read-more {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary); font-weight: 600; font-size: 13px;
  margin-top: 18px;
  transition: gap 0.3s ease;
}
.service-card:hover .read-more { gap: 10px; }
.service-num {
  position: absolute; top: 20px; right: 24px;
  font-size: 3rem; font-weight: 900;
  color: rgba(0,153,204,0.05);
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s ease;
}
.service-card:hover .service-num { color: rgba(0,153,204,0.08); }

/* ─── WHY CHOOSE US ──────────────────────────────────────────── */
.why-section {
  background: #231F20;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute; inset: 0;
  background: #231F20;
}
.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 28px 24px;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.why-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-6px);
}
.why-card .why-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--gold);
  margin-bottom: 18px;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--gold); color: var(--navy); transform: scale(1.1); }
.why-card h5 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,0.75); font-size: 0.88rem; line-height: 1.7; margin: 0; }

/* ─── HOW IT WORKS ───────────────────────────────────────────── */
.step-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  height: 100%;
}
.step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.step-number {
  font-size: 4rem; font-weight: 900;
  color: rgba(0,153,204,0.08);
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  position: absolute; top: 20px; right: 24px;
  pointer-events: none;
}
.step-icon {
  width: 60px; height: 60px;
  background: #231F20;
  color: #fff;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0,153,204,0.3);
  transition: var(--transition);
}
.step-card:hover .step-icon { transform: scale(1.1) rotate(-5deg); }
.step-connector {
  display: flex; align-items: center; justify-content: center;
  padding-top: 60px;
  color: var(--primary); font-size: 1.5rem;
  opacity: 0.4;
}

/* ─── JOB CARDS ──────────────────────────────────────────────── */
.jobs-section { background: var(--light-bg); }
.job-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.job-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px;
  background: #00AEEF;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}
.job-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(0,153,204,0.2); }
.job-card:hover::before { transform: scaleY(1); }
.job-type-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--primary-light);
  color: var(--primary);
  padding: 4px 12px; border-radius: 20px;
  font-size: 12px; font-weight: 600;
  margin-bottom: 14px;
}
.job-title { color: var(--navy); font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.job-meta { color: var(--text-muted); font-size: 0.88rem; display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; }
.job-meta i { color: var(--primary); margin-right: 4px; }
.job-deadline { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.job-deadline i { color: var(--gold); }

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testimonial-card {
  background: #fff;
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: relative;
  text-align: left;
  margin: 10px;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.quote-icon {
  position: absolute; top: 24px; right: 28px;
  font-size: 4rem;
  color: rgba(0,153,204,0.08);
  line-height: 1;
  pointer-events: none;
}
.stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 18px; }
.testimonial-text {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.client-info { display: flex; align-items: center; gap: 14px; }
.client-avatar {
  width: 54px; height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-light);
  box-shadow: 0 4px 12px rgba(0,153,204,0.2);
  flex-shrink: 0;
}
.client-avatar-fallback {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #231F20;
  color: #fff; font-size: 20px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.client-name { font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 2px; }
.client-role { font-size: 13px; color: var(--primary); font-weight: 500; }

/* Testimonial nav dots */
.testimonial-dots { display: flex; gap: 8px; justify-content: center; margin-top: 20px; }
.testimonial-dots .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,153,204,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.testimonial-dots .dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* ─── TEAM SECTION ───────────────────────────────────────────── */
.team-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.team-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.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: #00AEEF;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 20px;
}
.team-card:hover .team-overlay { opacity: 1; }
.team-social { display: flex; gap: 8px; }
.team-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.25);
  transition: var(--transition);
}
.team-social a:hover { background: var(--primary); border-color: var(--primary); }
.team-info { padding: 24px 20px; }
.team-info h5 { color: var(--navy); font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-info .role { color: var(--primary); font-size: 13px; font-weight: 500; }

/* ─── BLOG SECTION ───────────────────────────────────────────── */
.blog-section { background: var(--light-bg); }
.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(0,153,204,0.2); }
.blog-img-wrap { overflow: hidden; height: 220px; position: relative; }
.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.1); }
.blog-cat {
  position: absolute; top: 16px; left: 16px;
  background: var(--primary);
  color: #fff; font-size: 11px; font-weight: 600;
  padding: 4px 12px; border-radius: 20px;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.blog-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.blog-date { color: var(--primary); font-size: 12px; font-weight: 500; display: flex; align-items: center; gap: 5px; }
.blog-card h4 { color: var(--navy); font-size: 1.05rem; font-weight: 700; line-height: 1.5; margin-bottom: 10px; transition: color 0.3s ease; }
.blog-card:hover h4 { color: var(--primary); }
.blog-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; flex: 1; }
.blog-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary); font-weight: 600; font-size: 13px;
  margin-top: 16px; text-decoration: none;
  transition: gap 0.3s ease;
}
.blog-link:hover { gap: 10px; color: var(--navy); }

/* ─── FAQ SECTION ────────────────────────────────────────────── */
.faq-section { background: #fff; }
.accordion-item {
  border: 1px solid var(--border) !important;
  border-radius: 14px !important;
  margin-bottom: 12px !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}
.accordion-item:hover { box-shadow: var(--shadow-md); }
.accordion-button {
  font-weight: 600 !important;
  color: var(--navy) !important;
  font-size: 15px !important;
  padding: 20px 24px !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: none !important;
  transition: color 0.3s ease !important;
}
.accordion-button:not(.collapsed) {
  color: var(--primary) !important;
  background: var(--primary-light) !important;
}
.accordion-button::after { filter: invert(40%) sepia(100%) saturate(300%) hue-rotate(170deg); }
.accordion-body { padding: 0 24px 20px !important; color: var(--text-muted); line-height: 1.8; font-size: 14px; }

/* ─── CONTACT SECTION ────────────────────────────────────────── */
.contact-section { background: var(--light-bg); }
.contact-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-info-card {
  background: #231F20;
  border-radius: 24px;
  padding: 40px;
  color: #fff;
  height: 100%;
}
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  border: 1px solid rgba(255,255,255,0.15);
}
.form-control, .form-select {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,153,204,0.12);
}
.form-label { font-weight: 600; font-size: 13px; color: var(--text); margin-bottom: 6px; }

/* ─── CTA BANNER ─────────────────────────────────────────────── */
.cta-section {
  background: #231F20;
  color: #fff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/svg%3E");
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 90px 0 0;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: #00AEEF;
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
}
.footer-brand img { height: 48px; border-radius: 8px; margin-bottom: 16px; }
.footer-desc { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.6); margin-bottom: 24px; }
.footer-title { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 22px; position: relative; padding-bottom: 12px; }
.footer-title::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--gold);
  border-radius: 1px;
}
.footer-link {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 14px;
  padding: 5px 0;
  transition: var(--transition);
}
.footer-link::before { content: '→'; opacity: 0; transition: var(--transition); margin-left: -16px; }
.footer-link:hover { color: var(--gold); padding-left: 8px; }
.footer-link:hover::before { opacity: 1; margin-left: 0; }
.footer-social { display: flex; gap: 10px; margin-top: 8px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}
.footer-social a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,153,204,0.4);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 60px;
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 8px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item i { color: var(--gold); font-size: 16px; margin-top: 2px; flex-shrink: 0; }

/* ─── COOKIE BANNER ──────────────────────────────────────────── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; width: 100%;
  background: rgba(10,20,40,0.97);
  backdrop-filter: blur(20px);
  color: #fff; padding: 20px 0; z-index: 99990;
  transform: translateY(110%);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-top: 2px solid rgba(0,153,204,0.3);
}
#cookie-banner.show { transform: translateY(0); }
.cookie-btn {
  padding: 8px 20px; border-radius: 8px; font-size: 13px;
  font-weight: 600; cursor: pointer; transition: var(--transition);
  border: none;
}
.cookie-btn-accept { background: var(--primary); color: #fff; }
.cookie-btn-accept:hover { background: var(--navy); }
.cookie-btn-decline { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
.cookie-btn-decline:hover { background: rgba(255,255,255,0.18); }
.cookie-btn-customize { background: transparent; color: var(--gold); border: 1px solid rgba(255,184,0,0.3) !important; }

/* ─── BACK TO TOP ────────────────────────────────────────────── */
#backToTop {
  position: fixed; bottom: 28px; right: 28px;
  background: var(--primary);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 6px 20px rgba(0,153,204,0.4);
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  z-index: 1000; border: none; cursor: pointer;
}
#backToTop.show { opacity: 1; visibility: visible; }
#backToTop:hover { background: var(--navy); transform: translateY(-4px); box-shadow: 0 10px 25px rgba(0,51,102,0.3); }

/* ─── SCROLL PROGRESS ────────────────────────────────────────── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: #00AEEF;
  z-index: 99999; width: 0%; transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  border-radius: 10px; padding: 11px 26px;
  font-weight: 600; font-size: 14px;
  transition: var(--transition); border: none;
  display: inline-flex; align-items: center; gap: 7px;
}
.btn-primary { background: var(--primary) !important; color: #fff !important; box-shadow: 0 4px 15px rgba(0,174,239,0.35); }
.btn-primary:hover { background: var(--primary-dark) !important; box-shadow: 0 8px 25px rgba(0,174,239,0.45); transform: translateY(-2px); color: #fff !important; }
.btn-outline-primary { border: 2px solid var(--primary) !important; color: var(--primary) !important; background: transparent; }
.btn-outline-primary:hover { background: var(--primary) !important; color: #fff !important; transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--navy); box-shadow: 0 4px 12px rgba(255,184,0,0.3); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,184,0,0.4); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--primary); transform: translateY(-2px); color: #fff; }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.btn-rounded { border-radius: 50px; padding: 12px 30px; }
.btn-lg-custom { padding: 15px 36px; font-size: 15px; }

/* ─── VISION CARD ────────────────────────────────────────────── */
.vision-card {
  background: var(--light-bg);
  padding: 32px 28px 28px;
  border-radius: 20px;
  height: 100%;
  border: 1px solid rgba(0, 174, 239, 0.2);
  box-shadow: 0 4px 14px rgba(35,31,32,0.04);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.vision-card::before {
  content: none;
}
.vision-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ─── VALUE CARDS ────────────────────────────────────────────── */
.value-card {
  text-align: center; padding: 36px 24px;
  border-radius: 18px; background: #fff;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: var(--transition); height: 100%;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.value-card .value-icon {
  font-size: 2.5rem; margin-bottom: 16px; display: block;
  transition: transform 0.4s ease;
}
.value-card:hover .value-icon { transform: scale(1.2) rotate(10deg); }
.value-card h5 { color: var(--navy); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.value-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; margin: 0; }

/* ─── MODAL ──────────────────────────────────────────────────── */
.modal-content { border-radius: 20px; border: none; box-shadow: 0 30px 80px rgba(0,0,0,0.2); }
.modal-header { border-bottom: 1px solid var(--border); padding: 24px 28px; }
.modal-body { padding: 24px 28px; }
.modal-footer { border-top: 1px solid var(--border); padding: 16px 28px; }
.modal-title { font-weight: 800; color: var(--navy); font-size: 1.2rem; }

/* ─── TOAST SYSTEM ───────────────────────────────────────────── */
.toast-container { z-index: 99999 !important; }
.toast {
  border-radius: 14px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
  border: none !important;
}

/* ─── SECTION WAVE ───────────────────────────────────────────── */
.wave-top, .wave-bottom { position: absolute; left: 0; right: 0; line-height: 0; z-index: 1; }
.wave-top { top: -1px; }
.wave-bottom { bottom: -1px; }
.wave-top svg, .wave-bottom svg { display: block; width: 100%; }

/* ─── LOGIN / REGISTER ───────────────────────────────────────── */
.auth-wrapper {
  min-height: 100vh;
  background: #231F20;
  display: flex; align-items: center; justify-content: center;
  padding: 40px 16px;
  position: relative; overflow: hidden;
}
.auth-wrapper::before {
  content: '';
  position: absolute; inset: 0;
  background: #231F20;
}
.auth-card {
  background: #fff;
  border-radius: 24px;
  padding: 48px 40px;
  width: 100%; max-width: 440px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
  position: relative; z-index: 2;
  animation: scaleIn 0.5s ease;
}
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-logo img { height: 64px; border-radius: 12px; }
.google-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 13px;
  border: 1.5px solid var(--border);
  border-radius: 12px; background: #fff;
  font-weight: 600; font-size: 14px; color: var(--text);
  cursor: pointer; transition: var(--transition); text-decoration: none;
}
.google-btn:hover { border-color: var(--primary); box-shadow: 0 4px 15px rgba(0,153,204,0.12); background: var(--light-bg); transform: translateY(-1px); color: var(--text); }
.google-btn img { width: 20px; }
.auth-divider { text-align: center; position: relative; margin: 20px 0; }
.auth-divider::before, .auth-divider::after {
  content: ''; position: absolute;
  top: 50%; width: 42%; height: 1px;
  background: var(--border);
}
.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }
.auth-divider span { color: var(--text-muted); font-size: 13px; background: #fff; padding: 0 12px; position: relative; z-index: 1; }

/* ─── BREADCRUMB HERO ────────────────────────────────────────── */
.page-hero {
  background: #231F20;
  color: #fff; padding: 100px 0 70px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: #231F20;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 12px; position: relative; }
.page-hero .breadcrumb { justify-content: center; margin: 0; background: none; position: relative; }
.page-hero .breadcrumb-item { color: rgba(255,255,255,0.7); font-size: 14px; }
.page-hero .breadcrumb-item.active { color: var(--gold); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 991px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
  }
  .hero-section {
    min-height: auto !important;
    padding: 100px 0 60px !important;
  }
  .hero-shape {
    display: none !important;
  }
  .hero-badge {
    max-width: 100% !important;
    white-space: normal !important;
    text-align: center;
  }
  .hero-content h1 {
    font-size: clamp(1.7rem, 6vw, 2.4rem) !important;
    word-break: break-word !important;
  }
  .hero-meta-item {
    padding: 8px 12px;
  }
  .hero-float-card {
    display: none !important;
  }
  .whatsapp-float {
    left: 16px !important;
    bottom: 16px !important;
    width: 48px !important;
    height: 48px !important;
    font-size: 24px !important;
  }
  #backToTop {
    right: 16px !important;
    bottom: 16px !important;
    width: 44px !important;
    height: 44px !important;
  }
}
@media (max-width: 767px) {
  .top-bar { display: none; }
  .navbar { top: 0 !important; }
  section { padding: 45px 0; }
  .hero-section { min-height: auto !important; padding: 85px 0 45px !important; }
  .hero-content h1 { font-size: 1.8rem !important; }
  .section-title { font-size: 1.6rem !important; }
  .stat-item { margin-bottom: 24px; }
  .stat-item::after { display: none; }
  .testimonial-card { padding: 24px 18px; }
  .contact-form-card { padding: 24px 18px; }
  .contact-info-card { padding: 24px 18px; margin-top: 24px; }
  .auth-card { padding: 28px 18px; }
  .service-card { padding: 24px 18px; }
}
@media (max-width: 480px) {
  .hero-meta { gap: 8px; flex-direction: column; align-items: center; }
  .hero-meta-item { width: 100%; max-width: 280px; justify-content: center; }
  .hero-ctas .btn, .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
}

/* ─── UTILITY ANIMATIONS ─────────────────────────────────────── */
.hover-lift { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.hover-lift:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pulse-primary { animation: pulsePrimary 2s ease infinite; }
@keyframes pulsePrimary {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,153,204,0.4); }
  70% { box-shadow: 0 0 0 10px rgba(0,153,204,0); }
}
.text-gradient-primary { color: #00AEEF !important; background: none !important; -webkit-text-fill-color: initial !important; }
.bg-gradient-primary { background: #231F20; }
.section-bg-alt { background: var(--light-bg); }

/* ─── NUMBER TICKER ──────────────────────────────────────────── */
.count-up { display: inline-block; }

/* ═══════════════════════════════════════════════════════════════
   NUCLEAR VISIBILITY GUARANTEE — CONTENT ALWAYS SHOWS
   This rule fires LAST and overrides any animation/library that
   would set opacity:0 or visibility:hidden on content elements.
   ═══════════════════════════════════════════════════════════════ */
[data-aos],
.hero-section, .hero-content, .hero-badge, .hero-content h1,
.hero-content p, .hero-ctas, .hero-meta, .hero-img-wrap,
.hero-meta-item, .hero-content *, .hero-img-wrap *,
section, section *, nav, nav *, footer, footer *,
.service-card, .why-card, .step-card, .job-card,
.testimonial-card, .contact-form-card, .contact-info-card,
.stat-item, .stat-number, .stat-label,
.stagger-item, .stagger-group {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Restore intentional opacity for hover-only pseudo-elements & decorative */
.service-card::after { opacity: 0 !important; }
.service-card:hover::after { opacity: 1 !important; }
.team-overlay { opacity: 0 !important; }
.team-card:hover .team-overlay { opacity: 1 !important; }
.footer-link::before { opacity: 0 !important; }
.nav-link::after { opacity: 1 !important; }
#backToTop { opacity: 0 !important; visibility: hidden !important; }
#backToTop.show { opacity: 1 !important; visibility: visible !important; }



/* ─── JUSTIFIED TEXT ALIGNMENT ──────────────────────────────── */
p, .section-desc, .service-card p, .why-card p, .step-card p, .job-card p, .blog-card p, .testimonial-text, .leading-relaxed {
  text-align: justify;
  text-justify: inter-word;
}
