/* ============================================================
   Cybersol Infotech — Site Stylesheet
   Palette matched to ManpowerGroup: blue #376097, orange #EA7D21,
   sky blue #40B2D6, teal #5FA88F
   ============================================================ */

:root{
  --blue: #376097;
  --blue-dark: #294A75;
  --orange: #EA7D21;
  --orange-dark: #C25600;
  --sky: #40B2D6;
  --teal: #5FA88F;
  --ink: #1F2937;
  --gray: #5B6B80;
  --gray-light: #6B7B93;
  --bg-soft: #F4F7FA;
  --bg-soft-2: #EDF2F7;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --shadow: 0 10px 30px rgba(31, 41, 55, 0.08);
  --shadow-lg: 0 20px 50px rgba(31, 41, 55, 0.14);
  --radius: 14px;
  --maxw: 1180px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ margin:0 0 .5em; line-height:1.2; font-weight:800; color: var(--blue-dark); }
p{ margin:0 0 1em; color: var(--gray); }
.container{ max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section{ padding: 64px 0; }
.section-tight{ padding: 40px 0; }
.bg-soft{ background: var(--bg-soft); }
.bg-blue{ background: var(--blue); color:#fff; }
.bg-blue h1,.bg-blue h2,.bg-blue h3,.bg-blue p{ color:#fff; }
.center{ text-align:center; }
.eyebrow{
  display:inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.bg-blue .eyebrow{ color:#FFC98A; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight:700;
  font-size:15px;
  border: 2px solid transparent;
  cursor:pointer;
  transition: all .2s ease;
}
.btn-primary{ background: var(--orange); color:#fff; }
.btn-primary:hover{ background: var(--orange-dark); }
.btn-outline{ background: transparent; border-color: var(--blue); color: var(--blue); }
.btn-outline:hover{ background: var(--blue); color:#fff; }
.btn-outline-white{ background: transparent; border-color:#fff; color:#fff; }
.btn-outline-white:hover{ background:#fff; color: var(--blue); }
.btn-block{ width:100%; justify-content:center; }

/* ---------- Header ---------- */
.site-header{
  position: sticky; top:0; z-index:1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.header-top{
  background: var(--blue-dark);
  color:#cfe0f5;
  font-size: 13px;
}
.header-top .container{
  display:flex; justify-content:space-between; align-items:center;
  padding-top:5px; padding-bottom:5px;
  flex-wrap: wrap; gap:8px;
}
.header-top a{ color:#fff; font-weight:600; }
.header-top .htop-links{ display:flex; gap:20px; flex-wrap:wrap; }
.header-top .htop-links span{ opacity:.85; }

.navbar{
  display:flex; align-items:center; justify-content:space-between;
  padding: 6px 0;
}
.brand{ display:flex; align-items:center; transition: transform .25s ease; }
.brand:hover{ transform: scale(1.03); }
.brand img{ height: 92px; width:auto; }
.nav-links{ display:flex; align-items:center; gap: 6px; }
.nav-links > li > a{
  display:block;
  padding: 8px 14px;
  font-weight:700;
  font-size: 15px;
  color: var(--blue-dark);
  border-radius: 8px;
  position: relative;
}
.nav-links > li > a::after{
  content:"";
  position:absolute; left:14px; right:14px; bottom:2px;
  height:2px; background: var(--orange);
  transform: scaleX(0); transform-origin:left;
  transition: transform .25s ease;
}
.nav-links > li > a:hover::after, .nav-links > li.active > a::after{ transform: scaleX(1); }
.nav-links > li > a:hover, .nav-links > li.active > a{ color: var(--orange); }
.nav-cta{ display:flex; align-items:center; gap:10px; }
.nav-toggle{ display:none; background:none; border:none; font-size:26px; color:var(--blue-dark); cursor:pointer; }

@media (max-width: 900px){
  .nav-toggle{ display:block; }
  .nav-links{
    position:absolute; top:100%; left:0; right:0;
    background:#fff; flex-direction:column; align-items:stretch;
    padding: 10px 20px 20px; border-bottom: 1px solid var(--border);
    display:none;
  }
  .nav-links.open{ display:flex; }
  .nav-cta{ display:none; }
  .header-top .htop-links{ display:none; }
}

/* ---------- Hero ---------- */
.hero{
  background: linear-gradient(120deg, var(--blue) 0%, var(--blue-dark) 65%);
  color:#fff;
  position:relative;
  overflow:hidden;
}
.hero::after{
  content:"";
  position:absolute; right:-120px; top:-120px;
  width:480px; height:480px; border-radius:50%;
  background: radial-gradient(circle, rgba(234,125,33,.35), transparent 70%);
  animation: float-blob 9s ease-in-out infinite;
}
.hero::before{
  content:"";
  position:absolute; left:-140px; bottom:-160px;
  width:360px; height:360px; border-radius:50%;
  background: radial-gradient(circle, rgba(64,178,214,.28), transparent 70%);
  animation: float-blob 11s ease-in-out infinite reverse;
}
@keyframes float-blob{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(-24px, 26px) scale(1.08); }
}
.hero .container{
  position:relative; z-index:2;
  padding-top: 84px; padding-bottom: 84px;
  display:grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items:center;
}
.hero h1{ color:#fff; font-size: 44px; margin-bottom: 20px; }
.hero p.lead{ color:#DCE7F5; font-size:18px; max-width: 520px; }
.hero-actions{ display:flex; gap:14px; margin-top: 28px; flex-wrap:wrap; }
.hero-art{
  position:relative;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 28px;
  overflow:hidden;
  background-size: 115% 115%;
  background-position: center;
  box-shadow: var(--shadow-lg);
  animation: kenburns 16s ease-in-out infinite alternate;
}
@keyframes kenburns{
  0%{ background-size: 112% 112%; }
  100%{ background-size: 130% 130%; }
}
.hero-art::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(160deg, rgba(41,74,117,.90), rgba(20,36,58,.88));
  z-index:0;
}
.hero-art > *{ position:relative; z-index:1; }
.hero-stats{ display:grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hero-stats .stat{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 14px 16px;
  backdrop-filter: blur(3px);
  transition: transform .25s ease, background .25s ease;
}
.hero-stats .stat:hover{ transform: translateY(-3px); background: rgba(255,255,255,.12); }
.hero-stats .stat b{ font-size: 30px; display:block; color:#fff; }
.hero-stats .stat span{ font-size: 13px; color:#CBDAF0; }

@media (max-width: 900px){
  .hero .container{ grid-template-columns: 1fr; padding-top:56px; padding-bottom:56px; }
  .hero h1{ font-size: 32px; }
}

/* Page banner (non-home hero) */
.page-banner{
  background-color: var(--blue-dark);
  background-size: cover;
  background-position: center;
  color:#fff; padding: 88px 0 76px;
  position:relative; overflow:hidden;
}
.page-banner::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(120deg, rgba(41,74,117,.93) 0%, rgba(20,36,58,.90) 100%);
}
.page-banner::after{
  content:""; position:absolute; left:-100px; bottom:-140px;
  width:360px; height:360px; border-radius:50%;
  background: radial-gradient(circle, rgba(64,178,214,.30), transparent 70%);
}
.page-banner .container{ position:relative; z-index:2; }
.page-banner h1{ color:#fff; font-size:36px; margin-bottom:10px; }
.breadcrumb{ font-size:13px; color:#CBDAF0; margin-bottom:14px; }
.breadcrumb a{ color:#fff; font-weight:600; }
.breadcrumb span{ opacity:.7; }

/* ---------- Cards / grids ---------- */
.grid{ display:grid; gap: 28px; }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px){
  .grid-3, .grid-4{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 620px){
  .grid-2,.grid-3,.grid-4{ grid-template-columns: 1fr; }
}

.card{
  background:#fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
  display:flex; flex-direction:column;
}
.card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card .icon-badge{
  width:52px; height:52px; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px; font-size:22px; color:#fff; font-weight:800;
}
.card h3{ font-size:20px; margin-bottom:10px; }
.card p{ font-size:15px; flex:1; }
.card .card-link{ font-weight:700; color:var(--blue); margin-top:8px; display:inline-flex; align-items:center; gap:6px; }
.card .card-link:hover{ color:var(--orange); }

.badge-orange{ background: var(--orange); }
.badge-sky{ background: var(--sky); }
.badge-teal{ background: var(--teal); }
.badge-blue{ background: var(--blue); }

.tag{
  display:inline-block; font-size:12px; font-weight:700; letter-spacing:.5px;
  text-transform:uppercase; padding:5px 12px; border-radius:999px;
  background: var(--bg-soft-2); color: var(--blue);
  margin-bottom: 10px;
}

/* Feature list */
.check-list li{
  position:relative; padding-left:30px; margin-bottom:12px; color:var(--ink); font-weight:500;
}
.check-list li::before{
  content:"✓"; position:absolute; left:0; top:0;
  width:20px; height:20px; border-radius:50%;
  background: var(--teal); color:#fff; font-size:12px; font-weight:800;
  display:flex; align-items:center; justify-content:center;
}

/* Split section (image/text) */
.split{ display:grid; grid-template-columns: 1fr 1fr; gap:56px; align-items:center; }
@media (max-width: 900px){ .split{ grid-template-columns: 1fr; } }
.split img{ border-radius: var(--radius); box-shadow: var(--shadow); width:100%; height:340px; object-fit:cover; }

/* Stats bar */
.stats-bar{ background: var(--bg-soft); }
.stats-bar .grid-4{ text-align:center; }
.stats-bar b{ display:block; font-size:34px; color:var(--blue-dark); }
.stats-bar span{ color: var(--gray); font-size:14px; }

/* CTA banner */
.cta-banner{
  background: linear-gradient(100deg, var(--orange) 0%, var(--orange-dark) 100%);
  color:#fff; border-radius: var(--radius);
  padding: 44px 40px; display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
}
.cta-banner h3{ color:#fff; margin-bottom:6px; }
.cta-banner p{ color:#FDE6CE; margin:0; }

/* Insight/article cards */
.insight-card .insight-thumb{
  height:170px; border-radius: 10px 10px 0 0; margin: -30px -26px 18px;
  background-size: cover; background-position:center;
}
.insight-meta{ font-size:12px; color:var(--gray-light); font-weight:700; letter-spacing:.4px; text-transform:uppercase; margin-bottom:8px; }

/* Values grid */
.value-card{ text-align:center; }
.value-card .icon-badge{ margin: 0 auto 18px; }

/* Timeline / process steps */
.steps{ counter-reset: step; }
.step{ display:flex; gap:18px; margin-bottom: 30px; }
.step .num{
  counter-increment: step; flex: none;
  width:44px; height:44px; border-radius:50%;
  background: var(--blue); color:#fff; font-weight:800;
  display:flex; align-items:center; justify-content:center;
}
.step .num::before{ content: counter(step); }

/* ---------- Contact page ---------- */
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 900px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-info-card{
  background: var(--blue-dark); color:#fff; border-radius: var(--radius);
  padding: 36px; height:100%;
}
.contact-info-card h3{ color:#fff; }
.contact-info-card .item{ display:flex; gap:16px; margin-bottom:24px; align-items:flex-start; }
.contact-info-card .item .ic{
  width:44px; height:44px; border-radius:10px; background: rgba(255,255,255,.12);
  display:flex; align-items:center; justify-content:center; flex:none; font-size:18px;
}
.contact-info-card .item a, .contact-info-card .item div{ color:#DCE7F5; }
.contact-info-card .item strong{ color:#fff; display:block; margin-bottom:2px; font-size:15px; }
.map-embed{ border-radius: var(--radius); overflow:hidden; border:1px solid var(--border); margin-top:24px; box-shadow: var(--shadow); }
.map-embed iframe{ width:100%; height:260px; border:0; display:block; }
.map-embed-large{ margin-top:0; }
.map-embed-large iframe{ height:420px; }
@media (max-width: 620px){ .map-embed-large iframe{ height:300px; } }

.form-card{
  background:#fff; border:1px solid var(--border); border-radius: var(--radius);
  padding: 36px; box-shadow: var(--shadow);
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:18px; }
@media (max-width:620px){ .form-row{ grid-template-columns:1fr; } }
.field{ margin-bottom: 18px; }
.field label{ display:block; font-weight:700; font-size:13px; margin-bottom:6px; color: var(--blue-dark); }
.field input, .field select, .field textarea{
  width:100%; padding: 12px 14px; border-radius:8px; border:1px solid var(--border);
  font-family:inherit; font-size:15px; color: var(--ink); background:#fbfcfd;
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:2px solid var(--sky); border-color:var(--sky); }
.form-note{ font-size:13px; color: var(--gray-light); margin-top:10px; }
#formStatus{ margin-top:14px; font-weight:700; }
#formStatus.ok{ color: var(--teal); }
#formStatus.err{ color: var(--orange-dark); }

/* ---------- Footer ---------- */
.site-footer{ background: var(--blue-dark); color:#B9CCE8; }
.footer-top{ padding: 56px 0 30px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 900px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-grid h4{ color:#fff; font-size:15px; margin-bottom:16px; }
.footer-grid li{ margin-bottom:10px; font-size:14px; }
.footer-grid a:hover{ color:#fff; }
.footer-logo img{ height:64px; margin-bottom:14px; }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 18px 0; font-size:13px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
}
.social-row{ display:flex; gap:10px; margin-top:16px; }
.social-row a{
  width:34px; height:34px; border-radius:50%; background: rgba(255,255,255,.1);
  display:flex; align-items:center; justify-content:center; font-size:14px;
}
.social-row a:hover{ background: var(--orange); }

/* Breadcrumb spacing helper */
.mt-0{ margin-top:0; }
.small{ font-size: 13px; }

/* ---------- Scroll reveal ---------- */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
}
.reveal.in-view{ opacity: 1; transform: translateY(0); }
.reveal-1{ transition-delay: .05s; }
.reveal-2{ transition-delay: .15s; }
.reveal-3{ transition-delay: .25s; }
.reveal-4{ transition-delay: .35s; }

/* Livelier card interaction */
.card{ transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease, border-color .3s ease; }
.card:hover{ transform: translateY(-8px) scale(1.01); border-color: rgba(64,178,214,.4); }
.card .icon-badge{ transition: transform .3s ease; }
.card:hover .icon-badge{ transform: rotate(-6deg) scale(1.08); }

/* Button motion */
.btn{ transition: all .25s cubic-bezier(.2,.7,.3,1); }
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 10px 24px rgba(234,125,33,.35); }
.btn-outline:hover, .btn-outline-white:hover{ transform: translateY(-2px); }

/* ---------- Custom tech cursor (pointer devices only) ---------- */
body.custom-cursor, body.custom-cursor a, body.custom-cursor button,
body.custom-cursor input, body.custom-cursor textarea, body.custom-cursor select,
body.custom-cursor .card{ cursor: none; }

.cursor-dot, .cursor-ring{
  position: fixed; top:0; left:0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
}
.cursor-dot{
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  transition: background .2s ease, width .2s ease, height .2s ease;
}
.cursor-ring{
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid rgba(64,178,214,.65);
  transition: width .22s ease, height .22s ease, border-color .22s ease, background .22s ease;
}
.cursor-ring.cursor-hover{
  width: 54px; height: 54px;
  border-color: var(--orange);
  background: rgba(234,125,33,.08);
}
.cursor-dot.cursor-hover{ background: var(--sky); width:10px; height:10px; }

@media (pointer: coarse){
  .cursor-dot, .cursor-ring{ display:none; }
}

/* ---------- Image hover: rotate + zoom ---------- */
.split img{ transition: transform .55s cubic-bezier(.2,.7,.3,1), filter .55s ease; }
.split:hover img{ transform: scale(1.06) rotate(1.2deg); }
.insight-thumb{ transition: transform .5s cubic-bezier(.2,.7,.3,1); }
.insight-card:hover .insight-thumb{ transform: scale(1.06) rotate(-1deg); }
.mosaic img{ transition: transform .5s cubic-bezier(.2,.7,.3,1); }
.mosaic a:hover img{ transform: scale(1.07) rotate(1.5deg); }

/* ---------- Mosaic gallery strip ---------- */
.mosaic{ display:grid; grid-template-columns: repeat(4, 1fr); gap:18px; }
.mosaic a{ display:block; border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow); }
.mosaic img{ width:100%; height:150px; object-fit:cover; display:block; }
@media (max-width: 900px){ .mosaic{ grid-template-columns: repeat(2,1fr); } }

/* ---------- Small buttons (used in popup) ---------- */
.btn-sm{ padding: 9px 20px; font-size:13px; border-radius: 999px; }

/* ---------- Social icons ---------- */
.social-row a{
  width:38px; height:38px; border-radius:50%; background: rgba(255,255,255,.1);
  display:flex; align-items:center; justify-content:center; font-size:15px; font-weight:700;
  transition: background .25s ease, transform .25s ease;
}
.social-row a:hover{ background: var(--orange); transform: translateY(-3px) rotate(6deg); }

/* ---------- WhatsApp floating button ---------- */
.whatsapp-float{
  position: fixed; right: 26px; bottom: 26px; z-index: 1200;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 26px rgba(37,211,102,.45);
  transition: transform .25s ease, box-shadow .25s ease;
}
.whatsapp-float:hover{ transform: scale(1.08) rotate(-4deg); box-shadow: 0 14px 32px rgba(37,211,102,.55); }
.whatsapp-float svg{ width: 30px; height: 30px; }
.whatsapp-float::before{
  content:""; position:absolute; inset:-6px; border-radius:50%;
  border: 2px solid rgba(37,211,102,.55);
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse{
  0%{ transform: scale(.9); opacity:.9; }
  100%{ transform: scale(1.5); opacity:0; }
}
.wa-tooltip{
  position:absolute; right: 72px; top:50%; transform: translateY(-50%);
  background: var(--blue-dark); color:#fff; padding:8px 14px; border-radius:8px;
  font-size:13px; font-weight:700; white-space:nowrap;
  opacity:0; pointer-events:none; transition: opacity .2s ease;
}
.whatsapp-float:hover .wa-tooltip{ opacity:1; }
@media (max-width: 620px){
  .whatsapp-float{ right:16px; bottom:16px; width:54px; height:54px; }
  .wa-tooltip{ display:none; }
}

/* ---------- Site notice / cookie popup ---------- */
.site-notice{
  position: fixed; left:0; right:0; bottom: 0; z-index: 1300;
  background: var(--blue-dark); color:#DCE7F5;
  padding: 18px 24px;
  transform: translateY(120%);
  transition: transform .45s cubic-bezier(.2,.7,.3,1);
  box-shadow: 0 -10px 30px rgba(0,0,0,.2);
}
.site-notice.show{ transform: translateY(0); }
.site-notice-inner{
  max-width: var(--maxw); margin:0 auto;
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
}
.site-notice-inner p{ margin:0; font-size:13.5px; color:#DCE7F5; max-width: 780px; }
.site-notice-inner a{ color:#fff; text-decoration:underline; font-weight:600; }
.site-notice-actions{ display:flex; gap:10px; flex:none; }
.site-notice-actions .btn-outline-white{ border-color: rgba(255,255,255,.5); }
@media (max-width: 700px){
  .site-notice-inner{ flex-direction:column; align-items:flex-start; }
}
