  /* ============================================================
    CSS VARIABLES & RESET
  ============================================================ */
  :root {
    --navy:      #253d48;
    --navy-deep: #182830;
    --navy-mid:  #1e3340;
    --sky:       #38b6d8;
    --sky-light: #6ecfe8;
    --sky-pale:  #e8f7fb;
    --white:     #ffffff;
    --off-white: #f8fafc;
    --gray-100:  #f1f5f8;
    --gray-300:  #cbd5e0;
    --gray-500:  #718096;
    --gray-700:  #4a5568;
    --gold:      #c9a84c;
    --radius:    8px;
    --radius-lg: 16px;
    --shadow-sm: 0 2px 8px rgba(37,61,72,0.08);
    --shadow-md: 0 8px 32px rgba(37,61,72,0.14);
    --shadow-lg: 0 24px 64px rgba(37,61,72,0.18);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'DM Sans', sans-serif;
    --font-mono:    'Space Mono', monospace;
    --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --P:#35bef2;

    --PR:53;
    --PG:190;
    --PB:242;

    --P-5:rgba(53,190,242,.05);
    --P-10:rgba(53,190,242,.10);
    --P-20:rgba(53,190,242,.20);
  }
  *, *::before, *::after { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
  }
  html { 
    scroll-behavior: smooth; 
    font-size: 16px; 
  }

  body {
    font-family: var(--font-body);
    color: var(--navy);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
  }

  img { 
    display: block; 
    max-width: 100%; 
  }

  a { 
    text-decoration: none; 
    color: inherit; 
  }

  ul { 
    list-style: none; 
  }

  button { 
    cursor: pointer; 
    border: none; 
    font-family: var(--font-body); 
  }

  /* ============================================================
    UTILITIES
  ============================================================ */
  .container { 
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 0 2rem; 
  }

  .text-white {
    color: #fff !important;
  }

  .text-sky {
    color: var(--sky) !important;
  }
  .text-navy {
    color: var(--navy) !important;
  }
  .dark-background {
    background: var(--navy-deep) !important;
  }

  .light-background {
    background: var(--white) !important;
  }

  .text-danger {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

.is-invalid {
    border-color: #dc3545 !important;
}

  .section-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sky);
    display: inline-block;
    margin-bottom: 0.75rem;
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--navy);
  }

  .section-title span { 
    color: var(--sky); 
    font-style: italic; 
  }

  .section-lead {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.75;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: var(--transition);
  }
  .btn-solid {
    background: var(--sky);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(56,182,216,0.3);
  }
  .btn-solid:hover { background: var(--sky-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(56,182,216,0.4); }
  .btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--white);
  }
  .btn-outline:hover { background: var(--navy); color: var(--white); }
  .btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.5);
  }
  .btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
  .divider-line {
    width: 48px; height: 3px;
    background: var(--sky);
    border-radius: 2px;
    margin: 1rem 0 1.5rem;
  }

  /* ============================================================
    ANIMATIONS
  ============================================================ */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
  }
  @keyframes waveFlow {
    0%   { transform: translateX(0) scaleY(1); }
    50%  { transform: translateX(-20px) scaleY(0.95); }
    100% { transform: translateX(0) scaleY(1); }
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; } 50% { opacity: 0.6; }
  }
  @keyframes slideRight {
    from { width: 0; } to { width: 100%; }
  }

  .fade-up { animation: fadeUp 0.7s ease both; }
  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.2s; }
  .delay-3 { animation-delay: 0.3s; }
  .delay-4 { animation-delay: 0.4s; }
  .delay-5 { animation-delay: 0.5s; }

  /* ============================================================
    NAVBAR
  ============================================================ */
  .navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(37, 61, 72, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: var(--transition);
  }
  .navbar.scrolled {
    background: rgba(24, 40, 48, 0.98);
    box-shadow: var(--shadow-md);
  }
  .navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 2rem;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
  }
  .logo-icon {
    width: 200px;
    position: relative;
  }
  .logo-icon svg { width: 100%; height: 100%; }
  .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }
  .logo-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.04em;
  }
  .logo-sub {
    font-size: 0.6rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--sky);
    font-weight: 500;
    margin-top: 2px;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
  }
  .nav-links a {
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    font-weight: 400;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    transition: var(--transition);
    white-space: nowrap;
  }
  .nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
  .nav-ctas { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
  .nav-ctas .btn { padding: 0.55rem 1.2rem; font-size: 0.82rem; }
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 4px;
  }
  .hamburger span {
    width: 22px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
  }
  /* ==========================================
   NAVBAR DROPDOWN
========================================== */

.nav-links .nav-dropdown{
  position:relative;
}

.nav-links .nav-dropdown > a{
  display:flex;
  align-items:center;
  gap:6px;
}

.dropdown-icon{
  font-size:11px;
  transition:.3s ease;
}

.nav-dropdown:hover .dropdown-icon{
  transform:rotate(180deg);
}

.dropdown-menu{
  position:absolute;
  top:calc(100% + 12px);
  left:50%;
  transform:translateX(-50%);

  min-width:220px;

  background:#fff;

  border:1px solid rgba(0,0,0,.08);

  border-radius:12px;

  padding:10px 0;

  box-shadow:0 15px 40px rgba(0,0,0,.12);

  opacity:0;
  visibility:hidden;

  transition:.25s ease;

  z-index:999;
}

.nav-dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  top:100%;
}

.dropdown-menu li{
  list-style:none;
}

.dropdown-menu li a{
  display:block;

  padding:12px 18px;

  color:#1e293b;

  font-size:14px;

  transition:.2s ease;
}

.dropdown-menu li a:hover{
  background:rgba(56,182,216,.08);

  color:var(--sky);
}

  /* ============================================================
    HERO
  ============================================================ */
  .hero {
    min-height: 100vh;
    background: var(--navy-deep);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 68px;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(56,182,216,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(56,182,216,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
  }
  .hero-bg-glow {
    position: absolute;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(56,182,216,0.12) 0%, transparent 70%);
    top: -200px; right: -200px;
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
  }
  .hero-bg-glow2 {
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(56,182,216,0.06) 0%, transparent 70%);
    bottom: -100px; left: -100px;
    border-radius: 50%;
  }
  .hero-wave {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    overflow: hidden;
  }
  .hero-wave svg { position: absolute; bottom: 0; width: 100%; }
  .hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
  }
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 5rem 0;
  }
  .hero-left { }
  .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  .hero-eyebrow-line {
    width: 32px; height: 1px;
    background: var(--sky);
  }
  .hero-eyebrow-text {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sky);
  }
  .hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1rem;
  }
  .hero-headline em {
    color: var(--sky);
    font-style: italic;
  }
  .hero-tagline {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
  }
  .hero-desc {
    color: rgba(255,255,255,0.65);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 480px;
  }
  .hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
  .hero-right {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  .hero-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    backdrop-filter: blur(8px);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  .hero-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--sky), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .hero-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(56,182,216,0.3); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.2); }
  .hero-card:hover::before { transform: scaleX(1); }
  .hero-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(56,182,216,0.15);
    color: var(--sky);
    border: 1px solid rgba(56,182,216,0.25);
    border-radius: 20px;
    padding: 0.3rem 0.85rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
  }
  .hero-card h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
  }
  .hero-card p {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.1rem;
  }
  .hero-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--sky);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
  }
  .hero-card-link:hover { gap: 0.75rem; }
  .hero-card-link svg { width: 16px; height: 16px; transition: var(--transition); }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
  }
  .hero-stat {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 1rem;
    text-align: center;
  }
  .hero-stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--sky);
    line-height: 1;
  }
  .hero-stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.3rem;
    letter-spacing: 0.04em;
  }

  /* ============================================================
    ABOUT
  ============================================================ */
  .about {
    padding: 6rem 0;
    background: var(--off-white);
    position: relative;
  }
  .about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .about-graphic {
    position: relative;
    height: 420px;
  }
  .about-graphic-main {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about-graphic-main svg { width: 220px; opacity: 0.8; }
  .about-graphic-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .about-graphic-card-icon {
    width: 44px; height: 44px;
    background: var(--sky-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sky);
  }
  .about-graphic-card-icon svg { width: 22px; }
  .about-card-text strong { display: block; font-weight: 600; color: var(--navy); font-size: 0.95rem; }
  .about-card-text span { font-size: 0.8rem; color: var(--gray-500); }
  .about-graphic-badge {
    position: absolute;
    top: -1rem;
    left: -1rem;
    background: var(--sky);
    color: var(--white);
    border-radius: var(--radius);
    padding: 0.85rem 1.25rem;
    box-shadow: 0 8px 24px rgba(56,182,216,0.35);
    text-align: center;
  }
  .about-graphic-badge strong { display: block; font-size: 1.5rem; font-weight: 700; font-family: var(--font-display); }
  .about-graphic-badge span { font-size: 0.7rem; letter-spacing: 0.08em; opacity: 0.9; }
  .about-text { }
  .about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }
  .about-value {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-left: 3px solid var(--sky);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
  }
  .about-value h4 { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
  .about-value p { font-size: 0.8rem; color: var(--gray-500); line-height: 1.5; }

  /* ============================================================
    HIRING MODULE
  ============================================================ */
  .hiring {
    padding: 6rem 0;
    background: var(--white);
  }
  .section-header { margin-bottom: 3.5rem; }
  .hiring-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .hiring-track {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
  }
  .hiring-track:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
  .hiring-track-head {
    padding: 2rem;
    position: relative;
    overflow: hidden;
  }
  .track-employer .hiring-track-head { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); }
  .track-seeker .hiring-track-head { background: linear-gradient(135deg, #1a4a5a, #0f3340); }
  .hiring-track-head h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.4rem;
  }
  .hiring-track-head p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
  .track-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255,255,255,0.1);
    color: var(--sky-light);
    border-radius: 20px;
    padding: 0.3rem 0.85rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  .free-badge {
    background: rgba(56,182,216,0.2);
    color: var(--sky-light);
    border: 1px solid rgba(56,182,216,0.3);
  }
  .hiring-track-body { padding: 2rem; background: var(--off-white); }
  .hiring-features { margin-bottom: 1.75rem; }
  .hiring-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
  }
  .hiring-feature:last-child { border-bottom: none; }
  .feature-check {
    width: 20px; height: 20px;
    background: var(--sky-pale);
    color: var(--sky);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .feature-check svg { width: 11px; }
  .hiring-feature span { font-size: 0.88rem; color: var(--gray-700); }
  .mini-form {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    padding: 1.5rem;
  }
  .mini-form h4 { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 1rem; }
  .mini-form-field {
    background: var(--off-white);
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    padding: 0.65rem 0.9rem;
    font-size: 0.83rem;
    color: var(--gray-500);
    margin-bottom: 0.6rem;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .mini-form-field svg { width: 14px; color: var(--sky); flex-shrink: 0; }
  .mini-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-bottom: 0.6rem; }

  /* ============================================================
    IT SERVICES
  ============================================================ */
  .it-services {
    padding: 6rem 0;
    background: var(--navy-deep);
    position: relative;
    overflow: hidden;
  }
  .it-services-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(56,182,216,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(56,182,216,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .it-services .section-tag { color: var(--sky); }
  .it-services .section-title { color: var(--white); }
  .it-services .section-lead { color: rgba(255,255,255,0.6); }
  .it-services .divider-line { background: var(--sky); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
  }
  .service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--sky);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .service-card:hover {
    background: rgba(56,182,216,0.07);
    border-color: rgba(56,182,216,0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.25);
  }
  .service-card:hover::after { transform: scaleX(1); }
  .service-icon {
    width: 48px; height: 48px;
    background: rgba(56,182,216,0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sky);
    margin-bottom: 1.25rem;
    transition: var(--transition);
  }
  .service-card:hover .service-icon { background: rgba(56,182,216,0.2); transform: scale(1.1); }
  .service-icon svg { width: 22px; }
  .service-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
  }
  .service-card p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
  .services-cta-wrap {
    text-align: center;
    margin-top: 3rem;
  }
  .services-cta-wrap p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 1rem; }

  /* ============================================================
    WHY CHOOSE US
  ============================================================ */
  .why {
    padding: 6rem 0;
    background: var(--gray-100);
    position: relative;
  }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }
  .why-pillar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }
  .why-pillar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--sky);
  }
  .why-pillar:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
  .why-pillar-number {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    color: var(--gray-100);
    line-height: 1;
    position: absolute;
    top: 0.5rem; right: 1rem;
    user-select: none;
  }
  .why-icon {
    width: 64px; height: 64px;
    background: var(--sky-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--sky);
    transition: var(--transition);
  }
  .why-pillar:hover .why-icon { background: var(--sky); color: var(--white); }
  .why-icon svg { width: 28px; }
  .why-pillar h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem;
  }
  .why-pillar p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.7; }
  .why-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--navy);
    border-radius: var(--radius-lg);
    text-align: center;
  }
  .why-metric-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--sky);
  }
  .why-metric-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    margin-top: 0.25rem;
    letter-spacing: 0.05em;
  }

  /* ============================================================
    TESTIMONIALS
  ============================================================ */
  .testimonials {
    padding: 6rem 0;
    background: var(--white);
    overflow: hidden;
  }
  .testimonials-slider-wrap { position: relative; margin-top: 3rem; }
  .testimonials-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .testimonial-card {
    background: var(--off-white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: var(--transition);
  }
  .testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
  .testimonial-card::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--sky);
    opacity: 0.15;
    position: absolute;
    top: 0.5rem; left: 1.25rem;
    line-height: 1;
  }
  .testimonial-stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 0.75rem; }
  .testimonial-text {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-style: italic;
  }
  .testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
  .testimonial-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    flex-shrink: 0;
  }
  .av-navy { background: var(--navy); }
  .av-sky  { background: var(--sky); }
  .av-gold { background: var(--gold); }
  .testimonial-author-info strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--navy); }
  .testimonial-author-info span { font-size: 0.75rem; color: var(--gray-500); }
  .testi-type-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
  }
  .badge-corp { background: rgba(37,61,72,0.08); color: var(--navy); }
  .badge-cand { background: rgba(56,182,216,0.12); color: var(--sky); }

  /* ============================================================
    BLOGS
  ============================================================ */
  .blogs {
    padding: 6rem 0;
    background: var(--off-white);
  }
  .blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 3rem;
  }
  .blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
  }
  .blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
  .blog-thumb {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .blog-thumb-1 { background: linear-gradient(135deg, var(--navy) 0%, #1a4a5a 100%); }
  .blog-thumb-2 { background: linear-gradient(135deg, #0e3a2f 0%, #1a5540 100%); }
  .blog-thumb-3 { background: linear-gradient(135deg, #3d2314 0%, #5a3520 100%); }
  .blog-thumb svg { width: 64px; opacity: 0.4; color: var(--white); }
  .blog-thumb-tag {
    position: absolute;
    top: 1rem; left: 1rem;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    padding: 0.25rem 0.7rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .blog-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
  .blog-meta { font-size: 0.72rem; color: var(--gray-500); margin-bottom: 0.6rem; }
  .blog-body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 0.6rem;
  }
  .blog-body p { font-size: 0.83rem; color: var(--gray-500); line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }
  .blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--sky);
    transition: var(--transition);
  }
  .blog-read-more:hover { gap: 0.65rem; }
  .blog-read-more svg { width: 14px; }

  /* ============================================================
    FAQs
  ============================================================ */
  .faqs {
    padding: 6rem 0;
    background: var(--white);
  }
  .faqs-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
    align-items: start;
  }
  .faqs-left { position: sticky; top: 100px; }
  .faqs-list { margin-top: 2rem; }
  .faq-item {
    border-bottom: 1px solid var(--gray-100);
  }
  .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--navy);
    transition: var(--transition);
    background: none;
    width: 100%;
    text-align: left;
  }
  .faq-question:hover { color: var(--sky); }
  .faq-toggle {
    width: 24px; height: 24px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--navy);
  }
  .faq-toggle svg { width: 12px; transition: transform 0.3s ease; }
  .faq-item.open .faq-toggle { background: var(--sky); color: var(--white); }
  .faq-item.open .faq-toggle svg { transform: rotate(45deg); }
  .faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, padding 0.3s ease;
  }
  .faq-item.open .faq-answer { max-height: 300px; }
  .faq-answer p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.75;
    padding-bottom: 1.25rem;
  }

  /* ============================================================
    INTAKE ZONE / CONTACT
  ============================================================ */
  .intake {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
  }
  .intake-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(56,182,216,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
  }
  .intake-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
  }
  .intake-left .section-title { color: var(--white); }
  .intake-left .section-lead { color: rgba(255,255,255,0.6); }
  .intake-left .divider-line { background: var(--sky); }
  .intake-left .section-tag { color: var(--sky); }
  .intake-perks { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
  .intake-perk {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
  }
  .intake-perk-dot {
    width: 6px; height: 6px;
    background: var(--sky);
    border-radius: 50%;
    flex-shrink: 0;
  }
  .intake-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
  }
  .intake-form-wrap h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 0.3rem;
  }
  .intake-form-wrap > p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 1.75rem;
  }
  .form-group { margin-bottom: 1.1rem; }
  .form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
  }
  .form-control {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-family: var(--font-body);
    color: var(--navy);
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    appearance: none;
  }
  .form-control:focus {
    border-color: var(--sky);
    box-shadow: 0 0 0 3px rgba(56,182,216,0.12);
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .dynamic-fields { display: none; }
  .dynamic-fields.active { display: block; }
  .form-submit-btn {
    width: 100%;
    padding: 0.9rem;
    background: var(--sky);
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(56,182,216,0.3);
    margin-top: 0.5rem;
  }
  .form-submit-btn:hover { background: var(--sky-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(56,182,216,0.4); }
  .form-privacy {
    font-size: 0.72rem;
    color: var(--gray-500);
    text-align: center;
    margin-top: 0.85rem;
    line-height: 1.5;
  }

  /* ============================================================
    FOOTER
  ============================================================ */
  .footer {
    background: var(--navy-deep);
    padding-top: 4rem;
    border-top: 1px solid rgba(255,255,255,0.05);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .footer-brand .logo-name { font-size: 1.3rem; margin-bottom: 0.25rem; }
  .footer-brand .logo-sub { margin-bottom: 1rem; display: block; }
  .footer-brand p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin-bottom: 1.25rem;
  }
  .social-links { display: flex; gap: 0.6rem; }
  .social-link {
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
  }
  .social-link:hover { background: var(--sky); color: var(--white); border-color: var(--sky); }
  .social-link svg { width: 15px; }
  .footer-col h4 {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.25rem;
  }
  .footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
  .footer-links a {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
  }
  .footer-links a:hover { color: var(--sky); }
  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-copyright {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
  }
  .footer-privacy-note {
    font-size: 0.73rem;
    color: rgba(255,255,255,0.25);
    max-width: 380px;
    text-align: right;
    line-height: 1.5;
  }

  /* ============================================================
    SCROLL TO TOP
  ============================================================ */
  .scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px; height: 44px;
    background: var(--sky);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(56,182,216,0.35);
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    z-index: 999;
  }
  .scroll-top.visible { opacity: 1; pointer-events: all; }
  .scroll-top:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(56,182,216,0.4); }
  .scroll-top svg { width: 18px; }

  /* ============================================================
    RESPONSIVE
  ============================================================ */
  @media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-metrics { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  }
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 0 4rem; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); }
    .about-inner { grid-template-columns: 1fr; }
    .about-graphic { height: 300px; }
    .hiring-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-track { grid-template-columns: 1fr 1fr; }
    .blogs-grid { grid-template-columns: 1fr 1fr; }
    .faqs-inner { grid-template-columns: 1fr; gap: 2rem; }
    .faqs-left { position: static; }
    .intake-inner { grid-template-columns: 1fr; gap: 2rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-ctas .btn { display: none; }
  }
  @media (max-width: 640px) {
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .testimonials-track { grid-template-columns: 1fr; }
    .blogs-grid { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-privacy-note { text-align: center; max-width: 100%; }
    .about-values { grid-template-columns: 1fr; }
    .why-metrics { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
  }



  /* Testimonial CSS */
  .testimonial-group {
    display: none;
}

.testimonial-group.active {
    display: block;
}

.testimonial-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.testimonial-tab {
    border: 1px solid #d9e2ec;
    background: #fff;
    padding: 12px 24px;
    border-radius: 40px;
    cursor: pointer;
    transition: .3s;
}

.testimonial-tab.active {
    background: #26c6da;
    color: #fff;
    border-color: #26c6da;
}


.who-we-are-description {
  font-size:0.9rem;
  color:var(--gray-500);
  line-height:1.75;
  margin-top:1rem;
}

/* CTA Section CSS */
.intake{
    padding:100px 0;
}

.cta-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.cta-header .section-lead{
    color:rgba(255,255,255,.75);
}

.cta-header .divider-line{
    margin:20px auto;
}

.cta-title {
  color:var(--white);
}

.cta-actions{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-bottom:50px;
}

.cta-action-card{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:30px;
    text-decoration:none;
    transition:.3s ease;
}

.cta-action-card:hover{
    transform:translateY(-6px);
    border-color:var(--P);
}

.cta-action-icon{
    width:60px;
    height:60px;
    border-radius:14px;
    background:var(--P);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin-bottom:20px;
}

.cta-action-card h3{
    color:#fff;
    margin-bottom:12px;
}

.cta-action-card p{
    color:rgba(255,255,255,.7);
    margin-bottom:20px;
}

.cta-action-card span{
    color:var(--white);
    font-weight:600;
}

.cta-perks{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:16px 32px;
}

.cta-perk{
    color:rgba(255,255,255,.75);
}

@media(max-width:991px){

    .cta-actions{
        grid-template-columns:1fr;
    }

    .cta-perks{
        flex-direction:column;
        align-items:center;
    }

}
/* ========================
      ABOUT PAGE BANNER
========================= */

.page-banner{
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
  background: linear-gradient(
      135deg,
      #071c2b 0%,
      #0b2638 50%,
      #102f43 100%
  );
}

.page-banner-bg{
  position: absolute;
  inset: 0;
  background:
      radial-gradient(
          circle at top right,
          rgba(53,190,242,.15),
          transparent 40%
      );
}

.page-banner-content{
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.page-banner .section-tag{
  margin-bottom: 18px;
}

.page-banner-title{
  color: #fff;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.15;
  font-weight: 700;
  margin: 20px 0;
}

.page-banner-title span{
  display: block;
  color: var(--P);
}

.page-banner-description{
  max-width: 700px;
  margin: 0 auto 35px;
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.8;
}

.page-breadcrumbs{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,.65);
}

.page-breadcrumbs a{
  color: var(--P);
  text-decoration: none;
  transition: .3s;
}

.page-breadcrumbs a:hover{
  color: #fff;
}

.page-breadcrumbs .current{
  color: #fff;
  font-weight: 600;
}

/*==================================
          1200px
===================================*/

@media (max-width:1200px){

  .page-banner{
      padding:120px 0 90px;
  }

  .page-banner-content{
      max-width:720px;
  }

}

/*==================================
          992px
===================================*/

@media (max-width:991px){

  .page-banner{
      padding:110px 0 80px;
  }

  .page-banner-title{
      font-size:3rem;
  }

  .page-banner-description{
      font-size:16px;
      line-height:1.7;
      padding:0 20px;
  }

}

/*==================================
          768px
===================================*/

@media (max-width:767px){

  .page-banner{
      padding:90px 0 65px;
  }

  .page-banner-title{
      font-size:2.4rem;
      margin:15px 0;
  }

  .page-banner-description{
      font-size:15px;
      margin-bottom:25px;
  }

  .page-breadcrumbs{
      gap:8px;
      font-size:14px;
  }

}

/*==================================
          576px
===================================*/

@media (max-width:575px){

  .page-banner{
      padding:80px 0 55px;
  }

  .page-banner-content{
      width:100%;
  }

  .page-banner-title{
      font-size:2rem;
      line-height:1.25;
  }

  .page-banner-title span{
      display:inline;
  }

  .page-banner-description{
      padding:0 10px;
      font-size:14px;
      line-height:1.7;
  }

  .page-breadcrumbs{
      font-size:13px;
      gap:6px;
  }

}

/*==================================
          380px
===================================*/

@media (max-width:380px){

  .page-banner{
      padding:75px 0 50px;
  }

  .page-banner-title{
      font-size:1.75rem;
  }

  .page-banner-description{
      font-size:13px;
  }

  .page-breadcrumbs{
      font-size:12px;
  }

}
/* Team Section CSS */
.team-section{
    padding:100px 0;
    background:#f8fafc;
}

.team-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.team-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    transition:.35s ease;
    position:relative;
    box-shadow:
        0 10px 30px rgba(0,0,0,.06);
}

.team-card:hover{
    transform:translateY(-10px);
    box-shadow:
        0 25px 60px rgba(0,0,0,.12);
}

.team-image{
    position:relative;
    height:340px;
    overflow:hidden;
}

.team-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s ease;
}

.team-card:hover .team-image img{
    transform:scale(1.08);
}

.team-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(6,24,36,.85),
        rgba(6,24,36,.1)
    );

    display:flex;
    align-items:flex-end;
    justify-content:center;

    opacity:0;
    transition:.35s ease;
    padding-bottom:25px;
}

.team-card:hover .team-overlay{
    opacity:1;
}

.team-social{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#fff;
    color:#0077b5;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:18px;

    transition:.3s ease;
}

.team-social:hover{
    background:#0077b5;
    color:#fff;
}

.team-content{
    padding:28px;
}

.team-content h3{
    font-size:24px;
    margin-bottom:8px;
    color:#0b2239;
}

.team-designation{
    display:inline-block;

    color:var(--P);

    font-weight:600;

    font-size:14px;

    margin-bottom:15px;

    padding:6px 14px;

    background:rgba(var(--PR),var(--PG),var(--PB),0.08);

    border-radius:30px;
}

.team-content p{
    color:#64748b;
    line-height:1.8;
    font-size:15px;
}


.services-intro{
    padding:100px 0;
    background:#fff;
}

.services-intro-inner{
    display:grid;
    grid-template-columns:1fr 500px;
    gap:60px;
    align-items:center;
}

.services-stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.service-stat-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    text-align:center;
}

.service-stat-number{
    font-size:36px;
    font-weight:700;
    color:var(--P);
}

.service-stat-label{
    color:#64748b;
    margin-top:10px;
}




@media(max-width:992px){

    .services-intro-inner{
        grid-template-columns:1fr;
    }

}


/* Process Section CSS */
.services-process{
    padding:100px 0;
    background:#fff;
}

.process-timeline{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
}

.process-card{
    position:relative;
    background:#fff;
    border-radius:20px;
    padding:35px 30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s ease;
}

.process-card:hover{
    transform:translateY(-8px);
}

.process-number{
    width:70px;
    height:70px;
    margin:0 auto 25px;

    border-radius:50%;

    background:var(--P);

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;
    font-weight:700;
}

.process-card h3{
    margin-bottom:15px;
}

.process-card p{
    color:#64748b;
    line-height:1.8;
}


/* Industries Section CSS *//* ============================================================
   INDUSTRIES
============================================================ */
.services-industries{
    padding:6rem 0;
    background:var(--navy-deep);
    position:relative;
    overflow:hidden;
}

.services-industries::before{
    content:'';
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(56,182,216,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56,182,216,0.03) 1px, transparent 1px);
    background-size:60px 60px;
}

.services-industries .container{
    position:relative;
    z-index:2;
}

.services-industries .section-tag{
    color:var(--sky);
}

.services-industries .section-title{
    color:var(--white);
}

.services-industries .section-lead{
    color:rgba(255,255,255,.6);
}

.services-industries .divider-line{
    background:var(--sky);
}

.industries-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:1.25rem;
    margin-top:3rem;
}

.industry-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:var(--radius-lg);
    padding:2rem 1.5rem;
    text-align:center;
    transition:var(--transition);
    position:relative;
    overflow:hidden;
}

.industry-card::after{
    content:'';
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:2px;
    background:var(--sky);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .35s ease;
}

.industry-card:hover{
    background:rgba(56,182,216,.07);
    border-color:rgba(56,182,216,.25);
    transform:translateY(-6px);
    box-shadow:0 20px 48px rgba(0,0,0,.25);
}

.industry-card:hover::after{
    transform:scaleX(1);
}

.industry-icon{
    width:60px;
    height:60px;
    margin:0 auto 1rem;

    background:rgba(56,182,216,.12);

    border-radius:14px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:var(--sky);

    font-size:24px;

    transition:var(--transition);
}

.industry-card:hover .industry-icon{
    background:rgba(56,182,216,.2);
    transform:scale(1.08);
}

.industry-card h3{
    color:var(--white);
    font-size:1rem;
    font-weight:600;
    margin:0;
    line-height:1.5;
}

@media(max-width:992px){

    .industries-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:576px){

    .industries-grid{
        grid-template-columns:1fr;
    }

}



/* ============================================================
   WHY HIRING
============================================================ */

.why-hiring{
    padding:6rem 0;
    background:#fff;
}

.why-hiring .services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:1.5rem;
    margin-top:3rem;
}

.why-hiring .service-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:20px;
    padding:2rem;
    transition:.3s ease;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.why-hiring .service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.why-hiring .service-icon{
    width:60px;
    height:60px;
    border-radius:14px;
    background:rgba(56,182,216,.1);
    color:var(--sky);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;
    margin-bottom:1rem;
}

.why-hiring .service-card h3{
  color: var(--navy);
  margin-bottom:.75rem;
}

.why-hiring .service-card p{
    color:#64748b;
    line-height:1.7;
}

/* ============================================================
   HIRING TRACKS
============================================================ */

.hiring-track-section{
    padding:6rem 0;
}

.seeker-section{
    background:#f8fafc;
}

.track-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:4rem;
    align-items:center;
}

.track-grid.reverse{
    grid-template-columns:1fr 1fr;
}

.track-content h2{
    margin-bottom:1rem;
}

.track-content p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:1.5rem;
}

.track-features{
    margin-bottom:2rem;
}

.track-feature{
    display:flex;
    align-items:center;
    gap:.75rem;
    margin-bottom:1rem;
    color:#334155;
}

.track-feature i{
    color:var(--sky);
}

.track-image{
    position:relative;
}

.track-image img{
    width:100%;
    border-radius:24px;
    display:block;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.track-image::before{
    content:'';
    position:absolute;
    top:-15px;
    right:-15px;
    width:120px;
    height:120px;
    background:rgba(56,182,216,.1);
    border-radius:24px;
    z-index:-1;
}


/* ============================================================
   RECRUITMENT PROCESS
============================================================ */

.hiring-process{
    padding:6rem 0;
    background:var(--navy-deep);
    position:relative;
}

.hiring-process::before{
    content:'';
    position:absolute;
    inset:0;

    background-image:
        linear-gradient(rgba(56,182,216,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56,182,216,.03) 1px, transparent 1px);

    background-size:60px 60px;
}

.hiring-process .container{
    position:relative;
    z-index:2;
}

.hiring-process .section-tag{
    color:var(--sky);
}

.hiring-process .section-title{
    color:#fff;
}

.hiring-process .section-lead{
    color:rgba(255,255,255,.6);
}

.hiring-process .divider-line{
    background:var(--sky);
}

.process-wrapper{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:1.5rem;
    margin-top:3rem;
}

.process-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:2rem;

    transition:.3s ease;

    position:relative;
    overflow:hidden;
}

.process-card::after{
    content:'';
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:2px;
    background:var(--sky);
    transform:scaleX(0);
    transform-origin:left;
    transition:.3s ease;
}

.process-card:hover{
    transform:translateY(-6px);

    background:rgba(56,182,216,.07);

    border-color:rgba(56,182,216,.25);
}

.process-card:hover::after{
    transform:scaleX(1);
}

.process-number{
    width:60px;
    height:60px;

    border-radius:14px;

    background:rgba(56,182,216,.12);

    color:var(--sky);

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:700;
    font-size:20px;

    margin-bottom:1rem;
}

.process-card h3{
    color:#fff;
    margin-bottom:.75rem;
}


.process-card p{
    color:rgba(255,255,255,.55);
    line-height:1.7;
}


/* ============================================================
   HIRING METRICS
============================================================ */

.why-metrics-section{
    padding:5rem 0;
    background:#fff;
}

.why-metrics{
    background:var(--navy);
    border-radius:24px;

    padding:3rem;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    text-align:center;
}

.why-metric-num{
    font-size:2.5rem;
    font-weight:700;
    color:var(--sky);
    margin-bottom:.5rem;
}

.why-metric-label{
    color:rgba(255,255,255,.75);
    font-size:.9rem;
}


@media(max-width:992px){

    .track-grid{
        grid-template-columns:1fr;
        gap:2rem;
    }

    .track-grid.reverse{
        display:flex;
        flex-direction:column-reverse;
    }

    .process-wrapper{
        grid-template-columns:repeat(2,1fr);
    }

    .why-hiring .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .why-metrics{
        grid-template-columns:repeat(2,1fr);
        gap:2rem;
    }

}

@media(max-width:576px){

    .process-wrapper,
    .why-hiring .services-grid{
        grid-template-columns:1fr;
    }

    .why-metrics{
        grid-template-columns:1fr;
    }

}


/* ============================================================
   HIRING CTA
============================================================ */

.hiring-cta{
    padding:6rem 0;
    background:var(--navy-deep);
    position:relative;
    overflow:hidden;
}

.hiring-cta::before{
    content:'';
    position:absolute;
    inset:0;

    background-image:
        linear-gradient(rgba(56,182,216,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56,182,216,.03) 1px, transparent 1px);

    background-size:60px 60px;
}

.hiring-cta .container{
    position:relative;
    z-index:2;
}

.hiring-cta-box{
    max-width:100%;
    margin:auto;
    text-align:center;
}

.hiring-cta .section-tag{
    color:var(--sky);
}

.hiring-cta .section-title{
    color:var(--white);
}

.hiring-cta .section-lead{
    color:rgba(255,255,255,.65);
    max-width:700px;
    margin:1rem auto 0;
}

.hiring-cta .divider-line{
    background:var(--sky);
}

.hiring-cta-actions{
    display:flex;
    justify-content:center;
    gap:1rem;
    margin-top:2rem;
    flex-wrap:wrap;
}

.hiring-cta-actions .btn{
    display:flex;
    align-items:center;
    gap:.75rem;
}

.hiring-cta-highlights{
    margin-top:3rem;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:1rem;
}

/* Tablet */
@media (max-width: 991px) {
  .hiring-cta-highlights{
      grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .hiring-cta-highlights{
      grid-template-columns: 1fr;
  }
}

.hiring-highlight{
    color:rgba(255,255,255,.75);
    display:flex;
    align-items:center;
    justify-content:center;
    gap:.5rem;
    font-size:.9rem;
}

.hiring-highlight i{
    color:var(--sky);
}


/* For Job seekers page */

/* ============================================================
   JOB SEEKERS PAGE
============================================================ */

.job-benefits{
  padding:6rem 0;
  background:#fff;
}

.job-benefits-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.5rem;
}

.job-benefit-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:20px;
  padding:2rem;
  text-align:center;
  transition:.3s;
}

.job-benefit-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.job-benefit-icon{
  width:70px;
  height:70px;
  margin:auto auto 1rem;
  border-radius:16px;
  background:rgba(56,182,216,.1);
  color:var(--sky);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
}

.candidate-form-section{
  padding:6rem 0;
  background:#f8fafc;
}

.candidate-form-wrap{
  background:#fff;
  padding:3rem;
  border-radius:24px;
  max-width:1000px;
  margin:auto;
  box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1.5rem;
}

.form-group{
  margin-bottom:1.25rem;
}

.form-group label{
  display:block;
  margin-bottom:.5rem;
  font-weight:600;
}

.form-control{
  width:100%;
  padding:14px 16px;
  border:1px solid #dbe2ea;
  border-radius:12px;
}

.skills-section{
  padding:6rem 0;
  background:var(--navy-deep);
}

.skills-section .section-title{
  color:#fff;
}

.skills-grid{
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
  margin-top:3rem;
}

.skill-badge{
  background:rgba(56,182,216,.1);
  border:1px solid rgba(56,182,216,.25);
  color:var(--sky);
  padding:12px 20px;
  border-radius:40px;
}

.job-cta{
  padding:6rem 0;
  background:#f8fafc;
}

.job-cta-box{
  background:var(--navy-deep);
  padding:4rem;
  border-radius:30px;
  text-align:center;
}

.job-cta-box h2{
  color:#fff;
}

.job-cta-box p{
  color:rgba(255,255,255,.7);
}

.job-cta-actions{
  margin-top:2rem;
}

@media(max-width:992px){

  .job-benefits-grid{
      grid-template-columns:repeat(2,1fr);
  }

  .form-grid{
      grid-template-columns:1fr;
  }

}

@media(max-width:576px){

  .job-benefits-grid{
      grid-template-columns:1fr;
  }

  .candidate-form-wrap{
      padding:1.5rem;
  }

}

.candidate-form-section .section-header, .employer-form-section .section-header {
  text-align: center;
}


/* ============================================================
   WHY PARTNER
============================================================ */

.employer-benefits{
  padding:6rem 0;
  background:#fff;
}

.employer-benefits-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.5rem;
}

.employer-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:20px;
  padding:2rem;
  text-align:center;
  transition:.3s;
  box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.employer-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.employer-icon{
  width:70px;
  height:70px;
  margin:auto auto 1rem;
  border-radius:16px;
  background:rgba(56,182,216,.1);
  color:var(--sky);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
}

/* ============================================================
 INDUSTRIES
============================================================ */

.hiring-categories{
  padding:6rem 0;
  background:var(--navy-deep);
  position:relative;
  overflow:hidden;
}

.hiring-categories::before{
  content:'';
  position:absolute;
  inset:0;
  background-image:
      linear-gradient(rgba(56,182,216,.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(56,182,216,.03) 1px, transparent 1px);
  background-size:60px 60px;
}

.hiring-categories .container{
  position:relative;
  z-index:2;
}

.hiring-categories .section-tag{
  color:var(--sky);
}

.hiring-categories .section-title{
  color:#fff;
}

.category-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.5rem;
}

.category-item{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:#fff;
  padding:1.25rem;
  border-radius:16px;
  text-align:center;
  transition:.3s;
}

.category-item:hover{
  transform:translateY(-5px);
  background:rgba(56,182,216,.08);
  border-color:rgba(56,182,216,.25);
}

/* ============================================================
 FORM SECTION
============================================================ */

.employer-form-section{
  padding:6rem 0;
  background:#fff;
}

.employer-form-section .section-tag{
  color:var(--sky);
}

.employer-form-section .section-title{
  color:var(--navy-deep);
}

.employer-form-section .section-lead{
  color:#64748b;
}

.employer-form-wrap{
  background:#fff;
  border:1px solid #e5e7eb;
  box-shadow:0 20px 50px rgba(0,0,0,.08);
  border-radius:24px;
  padding:3rem;
  max-width:1100px;
  margin:auto;
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1.5rem;
}

.form-group{
  margin-bottom:1.25rem;
}

.form-group label{
  display:block;
  margin-bottom:.5rem;
  color:#334155;
  font-weight:600;
}

.form-control{
  width:100%;
  padding:14px 16px;
  background:#fff;
  border:1px solid #dbe2ea;
  border-radius:12px;
  color:#334155;
}

.form-control:focus{
  outline:none;
  border-color:var(--sky);
}

/* ============================================================
 PROCESS
============================================================ */

.employer-process{
  padding:6rem 0;
  background:#f8fafc;
}

.employer-process .section-tag{
  color:var(--sky);
}

.employer-process .section-title{
  color:var(--navy-deep);
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.5rem;
}

.process-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:20px;
  padding:2rem;
  text-align:center;
  transition:.3s;
  box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.process-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.process-number{
  width:60px;
  height:60px;
  margin:auto auto 1rem;
  border-radius:50%;
  background:var(--sky);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
}

.process-card h3{
  color:#1e293b;
  margin-bottom:.75rem;
}

.process-card p{
  color:#64748b;
  line-height:1.7;
}

/* ============================================================
 RESPONSIVE
============================================================ */

@media(max-width:992px){

  .employer-benefits-grid,
  .category-grid,
  .process-grid{
      grid-template-columns:repeat(2,1fr);
  }

  .form-grid{
      grid-template-columns:1fr;
  }
}

@media(max-width:576px){

  .employer-benefits-grid,
  .category-grid,
  .process-grid{
      grid-template-columns:1fr;
  }

  .employer-form-wrap{
      padding:1.5rem;
  }
}

/* ==========================================
   FLOATING WHATSAPP BUTTON
========================================== */

.whatsapp-float {
  position: fixed;
  bottom: 32px;
  margin-left: 10px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0,0,0,.25), 0 0 0 0 rgba(37,211,102,.6);
  transition: all .3s ease;
  animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover{
    color:#fff;

    transform:translateY(-5px) scale(1.08);

    box-shadow:
        0 15px 35px rgba(0,0,0,.35);
}

@keyframes whatsappPulse{

    0%{
        box-shadow:
            0 10px 25px rgba(0,0,0,.25),
            0 0 0 0 rgba(37,211,102,.7);
    }

    70%{
        box-shadow:
            0 10px 25px rgba(0,0,0,.25),
            0 0 0 15px rgba(37,211,102,0);
    }

    100%{
        box-shadow:
            0 10px 25px rgba(0,0,0,.25),
            0 0 0 0 rgba(37,211,102,0);
    }
}

@media(max-width:768px){

    .whatsapp-float{
        width:55px;
        height:55px;
        font-size:26px;

        bottom:20px;
        right:20px;
    }

}


/* ==========================================================
   SERVICE DETAIL PAGE
========================================================== */

/* HERO */
.service-detail-banner{
  padding:140px 0;
  background:var(--navy-deep);
  position:relative;
  overflow:hidden;
}

.service-banner-bg{
  position:absolute;
  inset:0;

  background-image:
      linear-gradient(rgba(56,182,216,.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(56,182,216,.03) 1px, transparent 1px);

  background-size:60px 60px;
}

.service-banner-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:60px;
  align-items:center;
  position:relative;
  z-index:2;
}

.service-banner-title{
  font-size:4rem;
  line-height:1.1;
  color:#fff;
  margin-bottom:1rem;
}

.service-banner-description{
  font-size:1.1rem;
  color:rgba(255,255,255,.7);
  margin-bottom:2rem;
}

.service-banner-features{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:2rem;
}

.feature-pill{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.08);
  padding:10px 16px;
  border-radius:50px;
  color:#fff;
  font-size:.9rem;
}

.feature-pill i{
  color:var(--sky);
  margin-right:6px;
}

.banner-actions{
  justify-content: center;
  display:flex;
  gap:15px;
}

.service-banner-image img{
  width:100%;
  max-width:520px;
  display:block;
  margin:auto;
}

/* METRICS */
.service-metrics{
  padding:0 0 80px;
  margin-top:-45px;
  position:relative;
  z-index:5;
}

.metrics-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.metric-card{
  background:#fff;
  border-radius:20px;
  padding:30px;
  text-align:center;
  box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.metric-card h3{
  font-size:2rem;
  color:var(--sky);
  margin-bottom:8px;
}

.metric-card p{
  margin:0;
  color:#64748b;
}

/* OVERVIEW */
.service-overview{
  padding:100px 0;
  background:#fff;
}

.service-overview-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.overview-image img{
  width:100%;
  height: 450px;
  border-radius:24px;
}

.overview-content p{
  color:#64748b;
  line-height:1.8;
  margin-bottom:1rem;
}

/* HIGHLIGHTS */
.service-highlights{
  padding:100px 0;
  background:#fff;
}

.highlights-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:25px;
  margin-top:3rem;
}

.highlight-card{
  background:#fff;
  border-radius:20px;
  padding:30px 15px;
  text-align:center;
  transition:.3s;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.highlight-card:hover{
  transform:translateY(-8px);
}

.highlight-icon{
  width:70px;
  height:70px;
  margin:auto;
  margin-bottom:20px;
  border-radius:50%;
  background:rgba(56,182,216,.1);

  display:flex;
  align-items:center;
  justify-content:center;
}

.highlight-icon i{
  color:var(--sky);
  font-size:24px;
}

/* AUDIENCE */
.service-audience{
  padding:100px 0;
  background:var(--navy-deep);
}

.service-audience .section-title,
.service-audience .section-tag{
  color:#fff;
}

.audience-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
  margin-top:3rem;
}

.audience-card{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  padding:30px;
  text-align:center;
  transition:.3s;
}

.audience-card:hover{
  background:rgba(56,182,216,.08);
  transform:translateY(-8px);
}

.audience-icon{
  width:70px;
  height:70px;
  margin:auto auto 20px;
  border-radius:50%;
  background:rgba(56,182,216,.15);

  display:flex;
  align-items:center;
  justify-content:center;
}

.audience-icon i{
  color:var(--sky);
  font-size:24px;
}

.audience-card h3{
  color:#fff;
}

/* DELIVERABLES */
.service-deliverables{
  padding:100px 0;
  background:var(--navy-deep);
  
}

.deliverables-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  margin-top:3rem;
}

.deliverable-item{
  display:flex;
  align-items:center;
  gap:15px;
  padding:18px 20px;
  /* background:#f8fafc; */
  background:rgba(255, 255, 255, 0.05);
  border:rgba(255, 255, 255, 0.08);
  border-radius:14px;
}

.deliverable-item:hover{
  background:rgba(255, 255, 255, 0.07);
}

.deliverable-item i{
  color:#22c55e;
}

/* PROCESS */
.service-process{
  padding:100px 0;
  background:var(--white);
}

.service-process .section-title,
.service-process .section-tag{
  color:#fff;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
  margin-top:3rem;
}

.process-card{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  padding:30px;
  text-align:center;
}

.process-number{
  width:70px;
  height:70px;
  margin:auto auto 20px;
  border-radius:50%;

  background:var(--sky);
  color:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:24px;
  font-weight:700;
}

.process-card h3{
  color:#fff;
  margin-bottom:10px;
}

.process-card p{
  color:rgba(255,255,255,.7);
}

/* TECH STACK */
.service-tech-stack{
  padding:100px 0;
  background:#fff;
}

.stack-category{
  margin-top:3rem;
}

.stack-category h3{
  margin-bottom:1rem;
}

.stack-tags{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.stack-tag{
  padding:10px 18px;
  background:#eef8fc;
  color:#0f172a;
  border-radius:50px;
  font-size:.9rem;
}

/* ENQUIRY */
.service-enquiry{
  padding:100px 0;
  background:var(--navy-deep);
}

.service-enquiry-grid{
  display:grid;
  grid-template-columns:1fr 520px;
  gap:60px;
  align-items:center;
}

.enquiry-content h2{
  color:#fff;
  margin-bottom:1rem;
}

.enquiry-content h2 span{
  color:var(--sky);
}

.enquiry-content p{
  color:rgba(255,255,255,.7);
}

.enquiry-benefits{
  margin-top:2rem;
  padding-left:20px;
  list-style: auto !important;
}

.enquiry-benefits li{
  color:#fff;
  margin-bottom:12px;
}

.enquiry-form-card{
  background:#fff;
  padding:35px;
  border-radius:24px;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.form-group{
  margin-bottom:20px;
}

.form-control{
  width:100%;
  padding:14px 16px;
  border:1px solid #dbe2ea;
  border-radius:12px;
}

.form-control:focus{
  outline:none;
  border-color:var(--sky);
}

/* RESPONSIVE */
@media(max-width:991px){

  .service-banner-grid,
  .service-overview-grid,
  .service-enquiry-grid{
      grid-template-columns:1fr;
  }

  .metrics-grid{
      grid-template-columns:repeat(2,1fr);
  }

  .highlights-grid,
  .audience-grid,
  .process-grid{
      grid-template-columns:1fr 1fr;
  }

}

@media(max-width:768px){

  .service-banner-title{
      font-size:2.6rem;
  }

  .metrics-grid,
  .highlights-grid,
  .audience-grid,
  .process-grid,
  .deliverables-grid,
  .form-grid{
      grid-template-columns:1fr;
  }

  .banner-actions{
      flex-direction:column;
  }

}



/*=================================================
SERVICE ENQUIRY
==================================================*/

.service-enquiry{
    padding:100px 0;
}

.service-enquiry .section-header{
    max-width:100%;
    margin:0 auto 30px;
    text-align: center;
}

.service-enquiry .section-description{
    margin-top:15px;
    font-size:17px;
    color:#64748b;
    line-height:1.8;
}

/*=================================================
FORM CARD
==================================================*/
.service-form-wrapper{
    max-width:1050px;
    margin:auto;
    background:#fff;
    padding:45px;
    border-radius:24px;
    border:1px solid #e6edf5;
    box-shadow: 0 20px 60px rgba(15,23,42,.06);
}

/*=================================================
GRID
==================================================*/
.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.full-width{
    grid-column:1/-1;
}

/*=================================================
LABEL
==================================================*/
.form-group{
    margin-bottom:5px;
}

.form-group label{
    display:block;
    margin-bottom:10px;
    font-size:14px;
    font-weight:600;
    color:#1f3550;
}

.form-group label span{
    color:#ef4444;
}

/*=================================================
INPUT
==================================================*/

.form-control{
    width:100%;
    height:56px;
    padding:0 18px;
    border-radius:12px;
    border:1px solid #dbe5ef;
    background:#fff;
    transition:.3s;
    font-size:15px;
}

textarea.form-control{
    height:auto;
    min-height:170px;
    padding:18px;
    resize:vertical;
}

.form-control:focus{
    border-color:#38bdf8;
    outline:none;
    box-shadow:0 0 0 4px rgba(56,189,248,.12);
}

/*=================================================
SELECT
==================================================*/
select.form-control{
    appearance:none;
    cursor:pointer;
}

/*=================================================
FILE
==================================================*/

input[type=file].form-control{
    height:auto;
    padding:14px;
}

/*=================================================
CHECKBOX
==================================================*/
.form-check{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:30px;
}

.form-check-input{
    width:18px;
    height:18px;
}
.form-check-label{
    color:#64748b;
}


/*=================================================
BOTTOM TEXT
==================================================*/

.secure-text{

    margin-top:18px;

    text-align:center;

    font-size:14px;

    color:#64748b;

}

/*=================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

    .service-enquiry{

        padding:70px 0;

    }

    .service-form-wrapper{

        padding:30px;

    }

}

@media(max-width:768px){

    .form-grid{

        grid-template-columns:1fr;

    }

    .full-width{

        grid-column:auto;

    }

    .service-form-wrapper{

        padding:22px;

        border-radius:18px;

    }

}


/* Contact Page CSS */

    /* ============================================================
    CONTACT PAGE
    ============================================================ */

    .contact-banner{
      padding:120px 0;
      background:linear-gradient(135deg,#071c2b,#10364d);
      position:relative;
      overflow:hidden;
      text-align:center;
  }

  .contact-banner::before{
      content:'';
      position:absolute;
      inset:0;

      background-image:
          linear-gradient(rgba(56,182,216,.03) 1px, transparent 1px),
          linear-gradient(90deg, rgba(56,182,216,.03) 1px, transparent 1px);

      background-size:60px 60px;
  }

  .contact-banner-content{
      position:relative;
      z-index:2;
      max-width:850px;
      margin:auto;
  }

  .contact-banner .section-tag{
      color:var(--sky);
  }

  .contact-banner h1{
      color:#fff;
      font-size:4rem;
      margin-bottom:1rem;
  }

  .contact-banner h1 span{
      color:var(--sky);
  }

  .contact-banner p{
      color:rgba(255,255,255,.7);
      font-size:1.1rem;
  }

  /* ============================================================
  CONTACT INFO
  ============================================================ */

  .contact-page{
      padding:6rem 0;
      background:#fff;
  }

  .contact-grid{
      display:grid;
      grid-template-columns:380px 1fr;
      gap:2rem;
  }

  .contact-info-card,
  .contact-form-card{
      background:#fff;
      border:1px solid #e5e7eb;
      border-radius:24px;
      padding:2rem;
      box-shadow:0 15px 35px rgba(0,0,0,.05);
  }

  .contact-info-card h2,
  .contact-form-card h2{
      margin-bottom:2rem;
  }

  .contact-item{
      display:flex;
      gap:1rem;
      margin-bottom:1.75rem;
  }

  .contact-icon{
      width:55px;
      height:55px;
      border-radius:14px;
      background:rgba(56,182,216,.12);
      color:var(--sky);

      display:flex;
      align-items:center;
      justify-content:center;

      font-size:20px;
  }

  .contact-item h4{
      margin-bottom:.35rem;
      color:#0f172a;
  }

  .contact-item p,
  .contact-item a{
      color:#64748b;
      text-decoration:none;
  }

  .contact-socials{
      margin-top:2rem;
      display:flex;
      gap:12px;
  }

  .contact-socials a{
      width:48px;
      height:48px;
      border-radius:50%;

      background:var(--navy-deep);
      color:#fff;

      display:flex;
      align-items:center;
      justify-content:center;

      transition:.3s;
  }

  .contact-socials a:hover{
      background:var(--sky);
      transform:translateY(-5px);
  }

  /* ============================================================
  FORM
  ============================================================ */

  .form-row{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:1rem;
  }

  .form-group{
      margin-bottom:1rem;
  }

  .form-control{
      width:100%;
      border:1px solid #dbe2ea;
      border-radius:12px;
      padding:14px 16px;
      font-size:15px;
  }

  .form-control:focus{
      outline:none;
      border-color:var(--sky);
  }

  textarea.form-control{
      resize:none;
  }

  .contact-submit{
      border:none;
      background:var(--sky);
      color:#fff;
      padding:14px 30px;
      border-radius:12px;
      cursor:pointer;
      transition:.3s;
  }

  .contact-submit:hover{
      transform:translateY(-3px);
  }

  /* ============================================================
  MAP
  ============================================================ */

  .contact-map{
      height:500px;
  }

  .contact-map iframe{
      width:100%;
      height:100%;
      border:none;
  }

  /* ============================================================
  CTA
  ============================================================ */

  .contact-cta{
      padding:6rem 0;
      background:var(--navy-deep);
  }

  .contact-cta-box{
      max-width:950px;
      margin:auto;
      text-align:center;

      background:rgba(255,255,255,.05);

      border:1px solid rgba(255,255,255,.08);

      border-radius:30px;

      padding:4rem;
  }

  .contact-cta-box h2{
      color:#fff;
      margin-bottom:1rem;
  }

  .contact-cta-box p{
      color:rgba(255,255,255,.65);
      margin-bottom:2rem;
  }

  @media(max-width:992px){

      .contact-grid{
          grid-template-columns:1fr;
      }

      .form-row{
          grid-template-columns:1fr;
      }

      .contact-banner h1{
          font-size:3rem;
      }
  }

  /* Desktop */
.whatsapp-float{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
}

.scroll-top{
  position: fixed;
  right: 20px;
  bottom: 90px;
  z-index: 998;
}

/* Mobile */
@media (max-width: 767px){

  .whatsapp-float{
      right: 15px;
      bottom: 15px;
      width: 55px;
      height: 55px;
  }

  .scroll-top{
      right: 15px;
      bottom: 85px; /* Above WhatsApp */
      width: 45px;
      height: 45px;
  }

  .scroll-top svg{
      width: 18px;
      height: 18px;
  }

  /* When footer is visible */
  .footer-visible .whatsapp-float {
    bottom: 200px;
  }

  .footer-visible .scroll-top {
    bottom: 265px;
  }
}