/* ==========================================
   JOINYFY LANDING PAGE - MAIN STYLESHEET
   Light Blue & White Theme
   ========================================== */

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

:root {
  --blue-dark: #0369a1;
  --blue-mid: #0ea5e9;
  --blue-light: #38bdf8;
  --blue-pale: #bae6fd;
  --blue-bg: #e0f2fe;
  --blue-xbg: #f0f9ff;
  --white: #ffffff;
  --text-dark: #0c1a2e;
  --text-mid: #334155;
  --text-light: #64748b;
  --card-border: #e0f2fe;
  --shadow-sm: 0 2px 8px rgba(3, 105, 161, .08);
  --shadow-md: 0 8px 30px rgba(3, 105, 161, .12);
  --shadow-lg: 0 20px 60px rgba(3, 105, 161, .18);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --transition: 0.3s cubic-bezier(.4, 0, .2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(14, 165, 233, .35);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(14, 165, 233, .45);
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-light));
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, .6);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .15);
  border-color: #fff;
  transform: translateY(-2px);
}

.full-width {
  width: 100%;
  justify-content: center;
}

/* ---- SECTION COMMON ---- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: var(--blue-bg);
  color: var(--blue-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid var(--blue-pale);
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.25;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.highlight {
  color: var(--blue-mid);
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(3, 105, 161, .1);
  padding: 10px 0;
}

.navbar.scrolled .nav-links a {
  color: var(--text-mid);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--blue-mid);
  background: var(--blue-bg);
}

.navbar.scrolled .nav-links a::after {
  background: var(--blue-mid);
}

.navbar.scrolled .logo-main {
  color: var(--blue-dark);
}

.navbar.scrolled .logo-sub {
  color: var(--text-light);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.logo-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* Logo image override — white background, rounded */
.logo-icon.logo-img {
  background: #ffffff;
  padding: 4px;
  border: 2px solid rgba(255, 255, 255, .35);
}

.logo-icon.logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

/* Dashboard topbar mini logo */
.dash-logo-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  border-radius: 4px;
  vertical-align: middle;
}

/* Why-Us big circle logo */
.trust-logo-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  padding: 6px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  transition: var(--transition);
}

.logo-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, .7);
  font-weight: 400;
  letter-spacing: .3px;
  transition: var(--transition);
}

.nav-links {
  display: flex;
  gap: 6px;
}

.nav-links a {
  color: rgba(255, 255, 255, .9);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 255, 255, .15);
  color: #fff;
}

.nav-cta {
  font-size: 0.88rem;
  padding: 10px 22px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .hamburger span {
  background: var(--text-dark);
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  background: linear-gradient(135deg, #0369a1 0%, #0ea5e9 50%, #38bdf8 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
}

.c1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
  background: rgba(255, 255, 255, .04);
}

.c2 {
  width: 300px;
  height: 300px;
  bottom: 100px;
  left: -80px;
  background: rgba(255, 255, 255, .04);
}

.c3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 40%;
  background: rgba(255, 255, 255, .03);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-content {
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, .25);
  margin-bottom: 20px;
}

.hero-badge i {
  color: #fcd34d;
  font-size: 0.75rem;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #fff, #bae6fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-desc strong {
  color: #fff;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, .7);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, .25);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  padding: 20px 0 40px;
}

/* ---- MONITOR FRAME ---- */
.monitor-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: floatUp 6s ease-in-out infinite;
}

@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.monitor-frame {
  width: 100%;
  background: #cbd5e1;
  border-radius: 14px;
  padding: 10px 10px 0;
  box-shadow: 0 30px 70px rgba(3, 105, 161, .35), 0 0 0 1px rgba(255, 255, 255, .15);
  position: relative;
}

.monitor-frame::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #94a3b8;
  border-radius: 50%;
}

.monitor-screen {
  background: #f8fafc;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  min-height: 310px;
}

.monitor-stand {
  width: 60px;
  height: 28px;
  background: linear-gradient(to bottom, #94a3b8, #cbd5e1);
  margin: 0 auto;
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}

.monitor-base {
  width: 140px;
  height: 8px;
  background: #94a3b8;
  border-radius: 4px;
  margin: 0 auto;
}

/* ---- DASHBOARD INSIDE MONITOR ---- */
.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}

.dash-logo-sm {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--blue-dark);
  font-family: 'Poppins', sans-serif;
}

.dash-logo-sm i {
  color: var(--blue-mid);
  font-size: 0.7rem;
}

.dash-nav-dots {
  display: flex;
  gap: 12px;
}

.dash-nav-dots span {
  width: 30px;
  height: 5px;
  background: #e2e8f0;
  border-radius: 3px;
}

.dash-nav-dots span:first-child {
  background: var(--blue-pale);
}

.dash-avatar {
  color: var(--blue-mid);
  font-size: 1rem;
}

.dash-body {
  display: flex;
  height: calc(310px - 37px);
}

/* Sidebar */
.dash-sidebar {
  width: 36px;
  background: #0f172a;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
  gap: 14px;
  flex-shrink: 0;
}

.dsb-item {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 0.6rem;
  cursor: default;
  transition: var(--transition);
}

.dsb-item.active {
  background: var(--blue-mid);
  color: #fff;
}

/* Main dashboard content */
.dash-main {
  flex: 1;
  padding: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Stat cards row */
.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.dstat {
  border-radius: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.dstat.blue {
  background: #eff6ff;
}

.dstat.green {
  background: #f0fdf4;
}

.dstat.orange {
  background: #fff7ed;
}

.dstat-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.dstat.blue .dstat-icon {
  background: #dbeafe;
  color: #2563eb;
}

.dstat.green .dstat-icon {
  background: #dcfce7;
  color: #16a34a;
}

.dstat.orange .dstat-icon {
  background: #ffedd5;
  color: #ea580c;
}

.dstat-info {
  display: flex;
  flex-direction: column;
}

.dstat-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.dstat-lbl {
  font-size: 0.6rem;
  color: var(--text-light);
}

/* Chart row */
.dash-chart-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 6px;
  flex: 1;
}

.dash-chart,
.dash-placement {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px;
}

.chart-title {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 6px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 60px;
}

.cbar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 1;
  height: 100%;
  justify-content: flex-end;
}

.cbar {
  width: 100%;
  background: var(--blue-pale);
  border-radius: 3px 3px 0 0;
  transition: all 0.8s ease;
}

.cbar.active-bar {
  background: var(--blue-mid);
}

.cbar-wrap span {
  font-size: 0.45rem;
  color: var(--text-light);
  white-space: nowrap;
}

/* Donut ring */
.dash-placement {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.placement-ring {
  position: relative;
  width: 56px;
  height: 56px;
  margin: 4px auto 2px;
}

.placement-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-pct {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--blue-dark);
}

.ring-lbl {
  font-size: 0.55rem;
  color: var(--text-light);
}

/* Progress list */
.dash-progress-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px;
}

.dpl-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dpl-item>span:first-child {
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--text-mid);
  width: 48px;
  flex-shrink: 0;
}

.dpl-bar {
  flex: 1;
  height: 5px;
  background: #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
}

.dpl-fill {
  height: 100%;
  background: var(--blue-mid);
  border-radius: 3px;
}

.dpl-fill.green-fill {
  background: #22c55e;
}

.dpl-pct {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--text-light);
  width: 24px;
  text-align: right;
}

/* Float cards (keep same style) */
.hero-card {
  background: rgba(255, 255, 255, .97);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  min-width: 155px;
}

.float-card i {
  font-size: 1.3rem;
  color: var(--blue-mid);
}

.float-card strong {
  display: block;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.88rem;
}

.float-card p {
  color: var(--text-light);
  font-size: 0.73rem;
}

.fc1 {
  bottom: 10px;
  left: -40px;
  animation: floatLeft 5s ease-in-out infinite;
}

.fc2 {
  top: 10px;
  right: -30px;
  animation: floatRight 5.5s ease-in-out infinite;
}

/* dot colors (used in project section too) */
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red {
  background: #ef4444;
}

.dot.yellow {
  background: #f59e0b;
}

.dot.green {
  background: #22c55e;
}

@keyframes floatLeft {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

@keyframes floatRight {

  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }

  50% {
    transform: translateY(-10px) rotate(-1deg);
  }
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
}

.hero-wave svg {
  width: 100%;
  display: block;
}

/* ==========================================
   ABOUT
   ========================================== */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.about-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-dark), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-pale);
}

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

.about-icon {
  width: 60px;
  height: 60px;
  background: var(--blue-bg);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--blue-mid);
  margin-bottom: 20px;
  transition: var(--transition);
}

.about-card:hover .about-icon {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  color: #fff;
  transform: scale(1.05);
}

.about-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.about-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ==========================================
   SERVICES
   ========================================== */
.services {
  padding: 100px 0;
  background: var(--blue-xbg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  cursor: default;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(3, 105, 161, .15);
  border-color: var(--blue-light);
}

.service-card.featured {
  background: linear-gradient(135deg, #0369a1, #0ea5e9);
  border-color: transparent;
  color: #fff;
}

.service-card.featured h3,
.service-card.featured p {
  color: rgba(255, 255, 255, .92);
}

.service-card.featured .service-icon {
  background: rgba(255, 255, 255, .2);
  color: #fff;
}

.service-card.featured .service-tags span {
  background: rgba(255, 255, 255, .2);
  color: #fff;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--blue-bg);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--blue-mid);
  margin-bottom: 22px;
  transition: var(--transition);
}

.service-card:hover .service-icon:not(.service-card.featured .service-icon) {
  background: var(--blue-mid);
  color: #fff;
  transform: rotate(5deg) scale(1.05);
}

.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-card p {
  font-size: 0.91rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-tags span {
  background: var(--blue-bg);
  color: var(--blue-dark);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ==========================================
   PROJECTS
   ========================================== */
.projects {
  padding: 100px 0;
  background: var(--white);
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.project-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.project-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.project-visual {
  padding: 20px 20px 0;
  background: linear-gradient(135deg, var(--blue-bg), var(--blue-xbg));
  min-height: 180px;
  display: flex;
  align-items: flex-end;
}

.pv1 {
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
}

.pv2 {
  background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
}

/* Mini browser mockup */
.project-screen {
  width: 100%;
  background: #fff;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .08);
  overflow: hidden;
}

/* HRMS Image Slider */
.hrms-slider {
  width: calc(100% - 40px);
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .08);
  background: #fff;
  margin: 20px;
}

.hrms-slider .screen-bar {
  background: #f1f5f9;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #e2e8f0;
}

.hrms-slider .screen-bar .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hrms-slider .screen-bar .dot.red {
  background: #ef4444;
}

.hrms-slider .screen-bar .dot.yellow {
  background: #f59e0b;
}

.hrms-slider .screen-bar .dot.green {
  background: #22c55e;
}

.hrms-slider .screen-url {
  margin-left: 12px;
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
}

.hrms-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 500%;
}

.hrms-slide {
  width: 20%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
  height: 220px;
  overflow: hidden;
}

.hrms-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hrms-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 12px;
  border-radius: 20px;
}

.hrms-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background 0.3s;
}

.hrms-dots .dot.active {
  background: var(--blue-mid);
}

.hrms-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-mid);
  font-size: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
  z-index: 10;
}

.hrms-btn:hover {
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.hrms-btn.prev {
  left: 15px;
}

.hrms-btn.next {
  right: 15px;
}

.project-screen {
  width: 100%;
  background: #fff;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .08);
  overflow: hidden;
}

.screen-bar {
  background: #f1f5f9;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.screen-url {
  margin-left: 10px;
  font-size: 0.72rem;
  color: var(--text-light);
  background: #fff;
  padding: 2px 10px;
  border-radius: 4px;
  flex: 1;
}

.screen-body {
  padding: 12px;
}

.screen-nav {
  height: 8px;
  background: linear-gradient(90deg, var(--blue-pale), var(--blue-bg));
  border-radius: 4px;
  margin-bottom: 10px;
}

.screen-hero-block {
  height: 40px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-light));
  border-radius: 6px;
  margin-bottom: 10px;
  opacity: .7;
}

.screen-hero-block.inv {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
}

.project-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform var(--transition);
}

.project-card:hover .project-img {
  transform: scale(1.03);
}

.project-info {
  padding: 28px;
}

.project-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.project-badge.live {
  background: #dcfce7;
  color: #16a34a;
}

.project-badge.live i {
  font-size: 0.5rem;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

.project-info h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.project-info p {
  font-size: 0.91rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.project-tech span {
  background: var(--blue-bg);
  color: var(--blue-dark);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid var(--blue-pale);
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-mid);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.project-link:hover {
  gap: 10px;
  color: var(--blue-dark);
}

/* ==========================================
   WHY US
   ========================================== */
.why-us {
  padding: 100px 0;
  background: var(--blue-xbg);
  position: relative;
  overflow: hidden;
}

.why-bg-shape {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--blue-bg) 0%, transparent 70%);
  pointer-events: none;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-content .section-tag {
  text-align: left;
}

.why-content .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.why-desc {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 36px;
  line-height: 1.7;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.wp-icon {
  width: 46px;
  height: 46px;
  background: var(--blue-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-mid);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.why-point:hover .wp-icon {
  background: var(--blue-mid);
  color: #fff;
  transform: scale(1.08);
}

.why-point h4 {
  font-weight: 700;
  font-size: 0.98rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.why-point p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Why Visual */
.why-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.trust-big-circle {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.5rem;
  gap: 4px;
  box-shadow: 0 0 0 20px var(--blue-bg), 0 0 0 40px rgba(14, 165, 233, .08);
  animation: floatUp 6s ease-in-out infinite;
}

.trust-big-circle span {
  font-size: 0.85rem;
  font-weight: 700;
}

.trust-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  min-width: 200px;
}

.trust-card i {
  font-size: 1.4rem;
  color: var(--blue-mid);
}

.trust-card strong {
  display: block;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.trust-card p {
  color: var(--text-light);
  font-size: 0.75rem;
}

.tc1 {
  top: -5px;
  left: -15px;
  animation: floatLeft 5s ease-in-out infinite;
}

.tc2 {
  top: -2px;
  right: -15px;
  animation: floatRight 5.5s ease-in-out infinite;
}

.tc3 {
  bottom: 15px;
  left: -10px;
  animation: floatLeft 6s ease-in-out infinite 0.5s;
}

.tc4 {
  bottom: 5px;
  right: -15px;
  animation: floatRight 5s ease-in-out infinite 0.8s;
}

.tc5 {
  top: 50%;
  left: -100px;
  transform: translateY(-50%);
  animation: floatLeft 6.5s ease-in-out infinite 1.2s;
}

/* ==========================================
   TECHNOLOGIES SLIDER
   ========================================== */
.technologies {
  padding: 100px 0 80px;
  background: var(--white);
  overflow: hidden;
}

.tech-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  margin-top: 10px;
}

.tech-slider-wrapper::before,
.tech-slider-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.tech-slider-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.tech-slider-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.tech-slider {
  display: flex;
  gap: 20px;
  animation: slideLeft 30s linear infinite;
  width: max-content;
  align-items: center;
}

.tech-slider:hover {
  animation-play-state: paused;
}

@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  min-width: 100px;
  transition: var(--transition);
  cursor: default;
  flex-shrink: 0;
}

.tech-item:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  background: var(--blue-xbg);
}

.tech-item img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.tech-item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-mid);
  white-space: nowrap;
}

.ai-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}

.ai-icon.api {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
}

/* ==========================================
   CONTACT
   ========================================== */
.contact {
  padding: 100px 0;
  background: var(--blue-xbg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
  line-height: 1.3;
}

.contact-info>p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.contact-item:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.ci-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-mid);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
}

.contact-item span {
  font-size: 0.85rem;
  color: var(--text-light);
}

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

.social-btn {
  width: 42px;
  height: 42px;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-mid);
  font-size: 1rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--blue-mid);
  color: #fff;
  border-color: var(--blue-mid);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(14, 165, 233, .3);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, .1);
}

.form-success {
  text-align: center;
  color: #16a34a;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px;
  background: #dcfce7;
  border-radius: var(--radius-sm);
}

.form-success i {
  margin-right: 6px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: #0c1a2e;
  color: rgba(255, 255, 255, .7);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand .logo-main {
  color: #fff;
}

.footer-brand .logo-sub {
  color: rgba(255, 255, 255, .5);
}

.footer-brand>p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 16px;
  color: rgba(255, 255, 255, .55);
}

.footer-links h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, .55);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--blue-light);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, .4);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 2;
    max-width: 500px;
    margin: 0 auto;
  }

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

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

  .hero-desc {
    margin: 0 auto 32px;
  }

  .hero-badge {
    margin: 0 auto 20px;
  }

  .why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-visual {
    display: none;
  }

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

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

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(20px);
    padding: 20px;
    gap: 4px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
  }

  .nav-links.open a {
    color: var(--text-mid);
    padding: 10px 16px;
    border-radius: 8px;
  }

  .nav-links.open a:hover,
  .nav-links.open a.active {
    background: var(--blue-bg);
    color: var(--blue-mid);
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

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

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-stats {
    gap: 12px;
  }

  .stat-divider {
    height: 30px;
  }

  .contact-form-wrap {
    padding: 24px 20px;
  }
}

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(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;
}

/* Project Image Slider Styles */
.project-slider {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  background: #f1f5f9;
  display: flex;
  align-items: center;
}

.slider-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-wrapper .slide {
  min-width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 30px;
  /* Increased padding for better 'phone' mockup look */
  background: #f1f5f9;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.5);
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.slider-dots .dot:not(.active):hover {
  background: rgba(0, 0, 0, 0.25);
}

.slider-dots .dot.active {
  background: var(--blue-mid);
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(14, 165, 233, 0.4);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(3, 105, 161, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  opacity: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.project-slider:hover .slider-btn {
  opacity: 1;
}

.slider-btn:hover {
  background: var(--blue-mid);
  color: #fff;
  border-color: var(--blue-mid);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
  left: 12px;
}

.slider-btn.next {
  right: 12px;
}

@media (max-width: 768px) {
  .project-slider {
    height: 200px;
  }

  .slider-btn {
    opacity: 1;
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  .slider-btn.prev {
    left: 8px;
  }

  .slider-btn.next {
    right: 8px;
  }
}