/* styles.css */
:root{
  --bg1:#f5f8ff;
  --bg2:#ffffff;

  --card:#ffffff;
  --text:#0b1220;
  --muted:#6b7a90;

  --line:rgba(210,225,255,.75);

  --blue:#2563eb;
  --blue2:#1d4ed8;
  --cyan:#22d3ee;
  --indigo:#6366f1;

  --shadow-xl: 0 28px 70px rgba(14, 22, 40, .12);
  --shadow-lg: 0 18px 44px rgba(14, 22, 40, .10);
  --shadow-md: 0 12px 26px rgba(14, 22, 40, .08);
  --shadow-sm: 0 10px 18px rgba(14, 22, 40, .06);

  --r-xl: 26px;
  --r-lg: 20px;
  --r-md: 16px;
  --r-sm: 14px;

  --max: 1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 75% 10%, rgba(37,99,235,.18), rgba(37,99,235,0) 62%),
    radial-gradient(700px 460px at 10% 22%, rgba(99,102,241,.12), rgba(99,102,241,0) 60%),
    linear-gradient(180deg, var(--bg1) 0%, var(--bg2) 54%, #fff 100%);
}

a{ text-decoration:none; color:inherit; }
.container{ width:min(var(--max), calc(100% - 44px)); margin-inline:auto; }

*{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection{ background: rgba(37,99,235,.18); }

/* ================= NAV ================= */
.nav{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220,232,255,.75);
}
.nav__bar{
  display:flex; align-items:center; justify-content:space-between;
  height:76px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  font-weight:900;
  letter-spacing:-.03em;
}
.brand__logo{
  width:42px; height:42px; border-radius:14px;
  background:
    radial-gradient(12px 12px at 30% 25%, rgba(255,255,255,.9), rgba(255,255,255,0) 55%),
    linear-gradient(135deg, #2f6bff 0%, #7aa8ff 60%, #a6f3ff 120%);
  box-shadow: 0 18px 28px rgba(37,99,235,.22);
  position:relative;
}
.brand__logo:before{
  content:"";
  position:absolute; inset:11px;
  border-radius:10px;
  background:rgba(255,255,255,.88);
  transform: rotate(45deg);
}
.brand__name{ font-size:18px; }

.user-menu {
  position: relative;
  z-index: 9999;
}

.user-menu-btn {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #f3f4f6;
  color: #111827;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.user-menu-btn:hover {
  background: purple;
  color: #fff;
}

.user-dropdown {
  position: absolute;
  top: 55px;
  right: 0;
  width: 320px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.16);
  padding: 16px;
  display: none;
  z-index: 99999;
}

.user-dropdown::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 22px;
  width: 16px;
  height: 16px;
  background: #fff;
  transform: rotate(45deg);
}

.user-dropdown.show {
  display: block;
}

.dropdown-header {
  background: linear-gradient(135deg, purple, #b000b5);
  padding: 18px;
  border-radius: 16px;
  margin-bottom: 12px;
}

.dropdown-header .user-name {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 6px;
}

.dropdown-header .user-email {
  color: #f5e8ff;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.user-status {
  color: #f5e8ff;
  font-size: 12px;
  margin: 0 0 4px;
}

.user-dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 12px;
  color: #111827;
  font-weight: 700;
  text-decoration: none;
  margin-top: 5px;
  transition: 0.25s ease;
}

.user-dropdown a i {
  width: 22px;
  height: 22px;
  background: #f3e8ff;
  color: purple;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.user-dropdown a:hover {
  background: #f7e9ff;
  color: purple;
  transform: translateX(4px);
}

.user-dropdown a:hover i {
  background: purple;
  color: white;
}




@media (max-width: 768px) {
  .user-dropdown {
    right: -10px;
    width: 300px;
    top: 52px;
  }

  .user-dropdown::before {
    right: 24px;
  }

  .dropdown-header {
    padding: 16px;
  }

  .dropdown-header .user-name {
    font-size: 16px;
  }

  .dropdown-header .user-email {
    font-size: 12px;
  }

  .user-dropdown a {
    padding: 12px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .user-menu {
    position: static;
  }

  .user-dropdown {
    position: fixed;
    top: 85px;
    left: 16px;
    right: 16px;
    width: auto;
    max-width: none;
    border-radius: 18px;
  }

  .user-dropdown::before {
    display: none;
  }

  .user-menu-btn {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .dropdown-header {
    padding: 15px;
  }

  .user-dropdown a {
    font-size: 14px;
    padding: 12px;
  }
}


@media (max-width: 768px) {
  .nav__bar {
    position: relative;
  }

  .brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav__cta {
    display: none;
  }

  .menu.show ~ .nav__cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 15px 26px 20px;
    background: #fff;
  }

  .menu.show ~ .nav__cta .btn--primary {
    width: 100%;
    height: 48px;
    border-radius: 14px;
  }

  .menu.show ~ .nav__cta .user-menu {
    width: 100%;
  }

  .menu.show ~ .nav__cta .user-menu-btn {
    width: 100%;
    height: 48px;
    border-radius: 14px;
  }

  .user-dropdown {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .user-dropdown::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav__bar {
    display: block;
  }

  .brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .menu {
    display: none;
    width: 100%;
    margin-top: 20px;
  }

  .menu.show {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .menu.show a {
    width: 100%;
  }

  .nav__cta {
    display: none !important;
    position: static !important;
    width: 100%;
    margin-top: 12px;
  }

  .menu.show ~ .nav__cta {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
  }

  .nav__cta .btn--primary {
    width: 100%;
    height: 48px;
    border-radius: 14px;
  }

  .user-menu {
    width: 100%;
    position: relative;
  }

  .user-menu-btn {
    width: 100%;
    height: 48px;
    border-radius: 14px;
    background: purple;
    color: white;
  }

  .user-dropdown {
    position: static !important;
    width: 100%;
    margin-top: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  }

  .user-dropdown::before {
    display: none;
  }
}

.menu{
  display:flex; gap:26px; align-items:center;
  color:#2a3752;
  font-weight:700;
  font-size:14px;
}
.menu a{
  padding:10px 10px;
  border-radius:12px;
  position:relative;
  opacity:.92;
  transition: .2s ease;
  display:flex; align-items:center; gap:6px;
}
.menu a i{ font-size:12px; opacity:.75; }
.menu a:hover{ opacity:1; transform: translateY(-1px); }
.menu a.active{ color:var(--blue); }
.menu a.active:after{
  content:"";
  position:absolute; left:10px; right:10px; bottom:6px;
  height:2px; border-radius:999px;
  background:linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 10px 20px rgba(37,99,235,.22);
}

.nav__cta{
  display:flex; align-items:center; gap:14px;
  font-weight:800; font-size:14px;
}
.nav__link{ color:#2a3752; opacity:.9; }
.nav__link:hover{ opacity:1; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  height:42px; padding:0 16px;
  border-radius:14px;
  border:1px solid rgba(37,99,235,.18);
  background:rgba(255,255,255,.92);
  color:#1c2b4a;
  box-shadow: var(--shadow-sm);
  transition: .2s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--primary{
  border:0;
  color:#fff;
  background: linear-gradient(135deg, var(--blue) 0%, var(--indigo) 60%, var(--cyan) 140%);
  box-shadow: 0 22px 40px rgba(37,99,235,.28);
}
.btn--primary:hover{ box-shadow: 0 30px 60px rgba(37,99,235,.32); }



.user-menu {
  position: relative;
  display: inline-block;
}

.user-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7b2cff, #a000a8);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(122, 44, 255, 0.25);
}

.user-dropdown {
  position: absolute;
  top: 58px;
  right: 0;
  width: 260px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  padding: 16px;
  display: none;
  z-index: 1000;
}

.user-dropdown.show {
  display: block;
}

.user-dropdown-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-dropdown-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f3ebff;
  color: #8b00a8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
}

.user-dropdown-info h4 {
  margin: 0;
  font-size: 16px;
  color: #1f2937;
  font-weight: 700;
}

.user-dropdown-info p {
  margin: 4px 0 0;
  font-size: 13px;
  color: #6b7280;
  word-break: break-word;
   font-weight: 600;
}

.user-dropdown-divider {
  height: 1px;
  background: #ececec;
  margin: 14px 0;
}

.dropdown-link {
  display: block;
  text-decoration: none;
  color: #222;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 10px;
  transition: 0.2s ease;
}

.dropdown-link:hover {
  background: #f7f4ff;
  color: #8b00a8;
}

.logout-link {
  color: #c62828;
}

.logout-link:hover {
  background: #fff3f3;
  color: #c62828;
}


/* ================= HERO ================= */
.hero{
  position:relative;
  padding:54px 0 26px;
  overflow:hidden;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  align-items:center;
  gap:40px;
  min-height:460px;
}
.hero__copy h1{
  font-size:35px;
  line-height:1.35;
  margin:0 0 14px;
  letter-spacing:-.045em;
}

.brand{
  display:flex;
  align-items:center;
}

.brand__logo-link{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.brand__logo-img{
  height:48px;
  width:auto;
  display:block;
  object-fit:contain;
}
.accent{
  background: linear-gradient(135deg, var(--blue) 0%, var(--indigo) 60%, var(--cyan) 130%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero__copy p{
  margin:0 0 24px;
  color:var(--muted);
  font-size:15px;
  line-height:1.7;
  max-width:560px;
}

/* Search */
.search{
  width:min(650px, 100%);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(220,232,255,.9);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding:14px;
  position:relative;
}
.search:before{
  content:"";
  position:absolute; inset:0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(34,211,238,.05));
  pointer-events:none;
}
.search__row{
  display:grid;
  grid-template-columns: 1.1fr 1fr 1.2fr auto;
  gap:12px;
  align-items:center;
  position:relative;
}
.field{
  height:50px;
  border:1px solid rgba(220,232,255,.95);
  background: rgba(255,255,255,.92);
  border-radius: 14px;
  padding:0 14px;
  display:flex; align-items:center; gap:10px;
  color:#0b1220;
  font-size:14px;
  box-shadow: 0 10px 18px rgba(14,22,40,.05);
  transition: .2s ease;
}
.field:hover{ transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.field:focus-within{
  border-color: rgba(37,99,235,.42);
  box-shadow: 0 18px 30px rgba(37,99,235,.14);
}
.field__icon{
  width:28px;height:28px;border-radius:10px;
  background: linear-gradient(135deg, rgba(37,99,235,.18), rgba(34,211,238,.10));
  display:grid;place-items:center;
  color:var(--blue);
  font-weight:900;
}
.field__icon i{ font-size:14px; line-height:1; }
.field input{
  border:0; outline:0; width:100%;
  font:inherit;
  color:inherit;
  background:transparent;
}

.btn-search{
  height:40px;
 padding: 6px 20px !important;
  border-radius: 14px;
  border:0;
  cursor:pointer;
  color:#fff;
  font-weight:900;
  letter-spacing:.01em;
  background: purple;
  box-shadow: 0 22px 42px rgba(37,99,235,.26);
  transition:.2s ease;
}
.btn-search:hover{ transform: translateY(-1px); box-shadow: 0 30px 62px rgba(37,99,235,.32); }
.btn-search:active{ transform: translateY(0px) scale(.99); }

.search__popular{
  position:relative;
  margin-top:10px;
  font-size:14px;
  color:#9aa8bf;
}
.search__popular span{ color:#5a6a86; font-weight:700; }

/* Hero visual */
.hero__visual{
  position:relative;
  height:460px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
}

.hero-title {
  max-width: 820px;
  line-height: 1.2;
}

.typewriter {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 4px solid #111827;
  width: 0;
  animation: typing 4s steps(65, end) forwards, blink 0.8s step-end infinite;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  50% { border-color: transparent; }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-title {
    text-align: center;
    font-size: 32px !important;
    line-height: 1.25 !important;
  }

  .typewriter {
    max-width: 100%;
    white-space: normal;
    animation: fadeTyping 2.5s ease forwards, blink 0.8s step-end infinite;
  }

  @keyframes fadeTyping {
    from {
      opacity: 0;
      transform: translateY(8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

#typewriterText::after {
  content: "|";
  animation: blink 0.8s infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}


.gradient-text {
  background: linear-gradient(90deg, purple, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cluster{
  position:relative;
  width:460px;
  height:400px;
  margin-right:8px;
}
.pic{
  position:absolute;
 border-radius: 24px 24px 0 0;
  overflow:hidden;
 border-top: 8px solid rgba(255,255,255,.92);
border-left: 8px solid rgba(37,99,235,.32);
  background:#e8f0ff;
  box-shadow: 0 30px 60px rgba(14,22,40,.16);
}


.pic--one{ width:340px; height:210px; right:18px; top:22px; }
.pic--two{ width:310px; height:190px; right:102px; bottom:26px; }
.pic img{ width:100%; height:100%; object-fit:cover; display:block; }

.dots{
  position:absolute;
  width:92px;height:60px;
  background-image: radial-gradient(rgba(37,99,235,.22) 1.1px, transparent 1.2px) !important;
  background-size: 10px 10px;
  opacity:.55;
  border-radius:12px;
}
.dots--a{ right:20px; top:8px; }
.dots--b{ right:316px; bottom:62px; opacity:.42; }

/* ================= SECTIONS ================= */
.section{ padding:22px 0 12px; }
.section__title{
  text-align:center;
  margin:22px 0 6px;
  font-size:24px;
  letter-spacing:-.02em;
}
.section__sub{
  text-align:center;
  margin:0 0 18px;
  color:#94a3b8;
  font-size:14px;
  margin-bottom: 5%;
  margin-top: 1%;
}



@media (max-width: 768px) {
  .svc__badgeTop i {
    font-size: 24px;
  }

  .svc__badgeBottom {
    font-size: 8px;
    line-height: 1.2;
    letter-spacing: 0.06em;
  }

  .svc__badge {
    width: 105px;
    height: 105px;
  }
}


/* ================= CATEGORY ================= */
.cat{ position:relative; }
.cat__grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:16px;
  padding:0 42px;
}
.cat__item{
  background: rgba(255,255,255,.9);
  border:1px solid rgba(220,232,255,.9);
  border-radius: var(--r-md);
  padding:16px 16px;
  display:flex;
  gap:12px;
  align-items:flex-start;
  box-shadow: var(--shadow-sm);
  min-height:74px;
  transition:.2s ease;
}
.cat__item:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37,99,235,.20);
}
.cat__icon{
  width:44px;height:44px;border-radius:16px;
  background: linear-gradient(135deg, rgba(37,99,235,.18), rgba(34,211,238,.10));
  display:grid;place-items:center;
  color:var(--blue);
  flex:0 0 auto;
}
.cat__icon i{ font-size:18px; line-height:1; }
.cat__item h4{ margin:2px 0 4px; font-size:14px; letter-spacing:-.01em; }
.cat__item p{ margin:0; font-size:12.5px; color:#97a6bf; }

.cat__arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:40px; height:40px;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(220,232,255,.95);
  box-shadow: var(--shadow-md);
  display:grid; place-items:center;
  color:#62708a;
  user-select:none;
  transition:.2s ease;
  cursor:pointer;
  
}

.cat__item {
  cursor: pointer;
  transition: all 0.25s ease;
}

.cat__item:hover {
  transform: translateY(-3px);
}

.active-category {
  border: 1px solid #6c63ff !important;
  background: #f5f3ff;
}

.cat__arrow i{ font-size:18px; }
.cat__arrow:hover{
  transform:translateY(-50%) scale(1.05);
  color: var(--blue);
}

.cat__arrow--left{
  left:-30px;
}

.cat__arrow--right{
  right:-30px !important;
}
.cat__arrow--left{ left:-2; }
.cat__arrow--right{ right:0; }

.cat__pager{
  display:flex;
  justify-content:center;
  gap:8px;
  margin:14px 0 0;
}
.dot{ width:7px;height:7px;border-radius:999px; background:#cbd5e1; }
.dot--active{
  width:22px;
  background: linear-gradient(90deg, rgba(37,99,235,.7), rgba(34,211,238,.6));
}

/* ================= HIRING ================= */
.hiring{
  margin:22px auto 12px;
  border-radius: var(--r-xl);
  background:
    radial-gradient(700px 220px at 90% 50%, rgba(37,99,235,.16), rgba(37,99,235,0) 60%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  border:1px solid rgba(220,232,255,.9);
  box-shadow: var(--shadow-lg);
  overflow:hidden;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 26px;
  gap:20px;
}
.hiring__left{ display:flex; align-items:center; gap:16px; }
.hiring__mark{
  width:58px;height:58px;border-radius:18px;
  background: linear-gradient(135deg, rgba(37,99,235,.16), rgba(34,211,238,.10));
  border:1px solid rgba(220,232,255,.95);
  box-shadow: var(--shadow-sm);
  position:relative;
}
.hiring__mark:before{
  content:"";
  width:18px;height:18px;border-radius:9px;
  background: rgba(37,99,235,.28);
  position:absolute;
  left:12px; top:12px;
}
.hiring__txt small{
  display:block;
  font-size:12px;
  letter-spacing:.18em;
  color:#9aa8bf;
  font-weight:900;
}
.hiring__txt strong{
  display:block;
  font-size:28px;
  letter-spacing:-.03em;
  margin-top:2px;
}
.hiring__txt span{
  display:block;
  margin-top:4px;
  color:#92a2bc;
  font-size:13px;
  font-weight:600;
}

/* ================= JOBS ================= */
.jobs{ padding:18px 0 46px; }

.tabs{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin:14px 0 20px;
}
.tab{
  padding:11px 16px;
  border-radius: 14px;
  border:1px solid rgba(220,232,255,.95);
  background: rgba(255,255,255,.92);
  color:#41516c;
  font-size:13.5px;
  font-weight:900;
  box-shadow: var(--shadow-sm);
  transition:.2s ease;
  cursor:pointer;
}
.tab:hover{ transform: translateY(-1px); box-shadow: var(--shadow-md); }
.tab--active{
  color:var(--blue);
  border-color: rgba(37,99,235,.26);
  background: linear-gradient(135deg, rgba(37,99,235,.10), rgba(34,211,238,.06));
}


    /* ========================= JOBS BAND (META BELOW ICON) ========================= */
/* ========================= JOBS BAND ========================= */
.jobs-band{
  background:#f5f7fb;
  padding:34px 0 70px;

  --border:#dbe8ff;
  --muted:#727e93;
  --text:#0f172a;
  --blue:#1f56ff;
  --blue-2:#0b49ff;
  --chip-border:#d7e6ff;
  --shadow:0 18px 55px rgba(15,23,42,.06);
  --iconBg1:#eaf3ff;
  --iconBg2:#dbeaff;
  --green:#22c55e;
}

.jobs-wrap{
  width:min(1100px, 100%);
  margin:0 auto;
  padding:0 22px;
}

.jobs-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:26px;
  margin-bottom: 10%;
}

.job-card{
  border:1px solid var(--border);
  border-radius:10px;
  background:#fff;
  box-shadow: var(--shadow);
  padding:22px 22px 18px;
  min-height:355px;

  display:flex;
  flex-direction:column;
}

.card-top{
  display:grid;
  grid-template-columns: 1fr 42px;
  gap:14px;
  align-items:start;
}

.brandRow{
  display:grid;
  grid-template-columns: 54px 1fr;
  gap:14px;
  align-items:start;
  min-width:0;
}

.headings{
  min-width:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-start !important;
}



.company{
  font-size:15px;
  font-weight:500;
  color:#8a9bbd;
  margin:2px 0 6px;
  line-height:1.1;
  margin-left: -13%;
}

.title{
  margin:0;
  font-size:16px;
  font-weight:600;
  line-height:1.15;
  letter-spacing:-0.02em;
  color:var(--text);

  

  min-height:46px;
  max-width:300px;
  margin-left: -40%;
  margin-top: 10%;
}
.arrowBtn{
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid rgba(219,232,255,.95);
  background:#fff;
  display:grid;
  place-items:center;
  box-shadow:0 10px 24px rgba(15,23,42,.06);
  cursor:pointer;
}

.meta{
  margin-top:14px;
  min-height:58px; /* keeps meta rows aligned */
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  gap:8px;
  color:var(--muted);
  font-weight:500 !important;
  font-size:14px;
  margin-top: -2%;
}

.metaLine{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;

}

.desc{
  margin:16px 0 16px;
  color:#666d7d;
  font-weight:400 !important;
  line-height:1.6;
  font-size:15px;

  min-height:78px; /* keeps description aligned */
}

.chips{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:18px;
  min-height:42px; /* keeps chips row aligned */
  align-items:flex-start;
}

.footer{
  margin-top:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.job-card .title br{
  display:none;
}

.price{
  font-weight:500;
  color:var(--blue);
  font-size:20px;
  letter-spacing:-0.01em;
  line-height:1.2;
}

.apply{
  border:1px solid var(--chip-border);
  background:#8b00a8;
  color:#fff;
  font-weight:500;
  border-radius:8px;
  padding:8px 16px;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:140px;
  box-shadow:0 12px 26px rgba(31,86,255,.10);
  white-space:nowrap;
}

/* Mobile job cards alignment */
@media (max-width: 768px) {
  .jobs-wrap {
    padding: 0 16px;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .job-card {
    padding: 20px;
    min-height: auto;
    border-radius: 14px;
  }

  .card-top {
    grid-template-columns: 1fr 44px;
    gap: 12px;
  }

  .brandRow {
    grid-template-columns: 46px 1fr;
    gap: 12px;
  }

  .company,
  .title {
    margin-left: 0;
    margin-top: 0;
  }

  .company {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .title {
    font-size: 17px;
    min-height: auto;
    max-width: 100%;
  }

  .meta {
    margin-top: 14px;
    min-height: auto;
    gap: 8px;
  }

  .metaLine {
    gap: 12px;
  }

  .desc {
    min-height: auto;
    margin: 18px 0;
    font-size: 15px;
  }

  .chips {
    min-height: auto;
  }

  .footer {
    flex-direction: column;
    align-items: stretch;
  }

  .apply {
    width: 100%;
    min-width: 0;
    height: 48px;
  }
}


@media (max-width: 768px) {

  .brandRow {
    grid-template-columns: 65px 1fr;

    align-items: start;
  }

  .brandRow i {
    font-size: 28px !important;
    line-height: 1 !important;
    color: #111;
  }

  .brandRow svg {
    width: 28px !important;
    height: 28px !important;
  }

}

/* filter button */
.filter-btn{
  position:fixed;
  right:26px;
  bottom:26px;
  width:74px;
  height:74px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(226,232,240,.9);
  box-shadow:0 20px 60px rgba(15,23,42,.16);
  display:grid;
  place-items:center;
  cursor:pointer;
  z-index:1200;
}

.filter-btn i{
  font-size:28px;
  color:#0f172a;
}



 /* ========================= HERO ========================= */
    .hero-band{
      background:#fff;
      padding: 26px 0 34px;
    }

    .hero-panel::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.18),
    rgba(0,0,0,0.30)
  );
  z-index: 1;
  border-radius: inherit;
}
    
    .hero-panel{
      border-radius: 28px;
      overflow:hidden;
      position:relative;
      background: linear-gradient(100deg,#7fe1d6 0%, #f1d46b 45%, #e67c3f 100%);
      height: 340px;
    }
    .hero-panel::after{
      content:"";
      position:absolute; inset:0;
      background:
        radial-gradient(900px 280px at 40% 10%, rgba(255,255,255,.22), transparent 55%),
        radial-gradient(700px 260px at 70% 40%, rgba(255,255,255,.16), transparent 55%),
        repeating-linear-gradient(0deg, rgba(255,255,255,.06) 0 1px, transparent 1px 3px);
      opacity:.55;
      pointer-events:none;
    }
    .hero-center{
      position:absolute;
      left:50%;
      top:55%;
      transform:translate(-50%,-50%);
      text-align:center;
      width:min(860px,92%);
      z-index:2;
    }
    .hero-center h1{
      margin:0 0 14px;
      font-size: clamp(34px, 4vw, 58px);
      line-height: 1.02;
      font-weight: 700;
      color: rgba(255,255,255,.97);
      text-shadow: 0 14px 35px rgba(17,24,39,.18);
      letter-spacing:-0.02em;
    }
    .hero-center p{
      margin:0;
      font-size: clamp(12px, 1.35vw, 16px);
      line-height:1.5;
      font-weight:500;
      color: rgba(255,255,255,.90);
    }
    .ava{
      position:absolute;
      border-radius:999px;
      object-fit:cover;
      border:6px solid rgba(255,255,255,.55);
      box-shadow:0 18px 38px rgba(17,24,39,.14);
      z-index:2;
    }
    .a1{width:92px;height:92px;left:6%;top:18%;}
    .a2{width:64px;height:64px;left:20%;top:44%;}
    .a3{width:54px;height:54px;left:32%;top:14%;}
    .a4{width:110px;height:110px;left:41%;top:9%;}
    .a5{width:70px;height:70px;right:34%;top:20%;}
    .a6{width:64px;height:64px;right:14%;top:14%;}
    .a7{width:70px;height:70px;right:7%;top:34%;}
    .hero-search-row{
      margin-top: 18px;
      display:flex;
      justify-content:center;
    }
    .search-pill{
      width:min(980px, 100%);
      height: 74px;
      border-radius: 999px;
      background: #f8fafc;
      border: 1px solid rgba(226,232,240,.9);
      box-shadow: 0 18px 45px rgba(15,23,42,.08);
      display:flex;
      align-items:center;
      gap:14px;
      padding: 10px 14px;
    }
    .search-icon{
      width:54px;height:54px;border-radius:999px;
      background:#21d1a3;
      display:grid;place-items:center;
      flex:0 0 auto;
    }
    .search-icon i{ color:#fff; font-size:22px; }
    .search-input{
      flex:1 1 auto;
      display:flex;
      align-items:center;
    }
    .search-input input{
      width:100%;
      border:0;
      outline:0;
      background:transparent;
      font-size:18px;
      font-weight:500;
      color:#0f172a;
    }
    .search-input input::placeholder{ color:#9aa4b2; font-weight:500; }
    .hero-loc{
      height:54px;
      padding:0 18px;
      border-radius:999px;
      border:1px solid rgba(226,232,240,.95);
      background:#ffffff;
      display:flex;
      align-items:center;
      gap:10px;
      font-size:18px;
      font-weight:800;
      color:#0f172a;
      cursor:pointer;
      flex:0 0 auto;
      box-shadow: 0 10px 22px rgba(15,23,42,.06);
    }
    .hero-loc i{ font-size:18px; color:#64748b; }
    @media (max-width: 860px){
      .a1,.a2,.a3,.a4,.a5,.a6,.a7{ display:none; }
      .hero-panel{ height: 280px; }
      .search-pill{ height: 62px; }
      .search-icon{ width:46px; height:46px; }
      .search-input input{ font-size:15px; }
      .hero-loc{ height:46px; font-size:15px; }
    }




.why-difference {
  padding: 70px 30px;
  background: #f7f6f4;
}

.why-difference__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 40px;
  align-items: start;
}

.why-difference__left h2 {
  font-size: 30px;
  line-height: 1.05;
  font-weight: 800;
  color: #111;
  margin: 0 0 20px;
  max-width: 350px;
  margin-left: 7%;
  margin-top: 5%;
}

.why-difference__image {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  margin-top: 12% !important;
  border-radius: 7px;
  margin-left: 7%;
}



.why-difference__links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.why-difference__links a {
  text-decoration: none;
  color: #6c3cf0;
  font-size: 14px;
  font-weight: 600;
}

.why-difference__right {
  border-left: 1px solid #d8d1ca;
  padding-left: 28px;
}

.why-difference__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0 22px;
  border-bottom: 1px solid #d8d1ca;
  margin-bottom: 22px;
}

.why-item:nth-last-child(-n+2) {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.why-item__icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border: 2px solid #ED5932;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ED5932;
  font-size: 16px;
}

.why-item__text h4 {
  font-size: 15px;
  line-height: 1.2;
  color: #111;
  margin: 0 0 8px;
  font-weight: 600;
}

.why-item__text p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin: 0;
  max-width: 230px;
}

@media (max-width: 992px) {
  .why-difference__container {
    grid-template-columns: 1fr;
  }

  .why-difference__right {
    border-left: none;
    padding-left: 0;
  }

  .why-difference__grid {
    grid-template-columns: 1fr;
  }

  .why-difference__left h2 {
    max-width: 100%;
  }
}



    
/* styles.css */
:root{
  --green:#94a3b8;
  --green2:#94a3b8;
  --text:#111827;
  --muted:#6b7280;
  --line:#e5e7eb;
  --max: 1100px;
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:#fff;
}

.svc{ padding:42px 0; }
.svc__container{
  width:min(var(--max), calc(100% - 44px));
  margin-inline:auto;
  display:grid;
  grid-template-columns: 1fr 1.15fr;
  gap:46px;
  align-items:center;
}

/* ===== LEFT MEDIA ===== */
.svc__media{
  position:relative;
  min-height:260px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
}

/* green blob behind image */
.svc__blob{
  position:absolute;
  left:36px;
  top:18px;
  width:300px;
  height:220px;
  background: purple;
  border-radius: 90px 140px 120px 110px; /* organic blob */
  z-index:0;
}

/* photo with “not all corners” rounded */
.svc__photo{
  position:relative;
  width:300px;
  height:200px;
  overflow:hidden;
  z-index:1;

  /* not all corners */
  border-radius: 34px 110px 34px 110px;

  /* white frame, but not all sides (top + left only) */
  border-top: 10px solid rgba(255,255,255,.95);
  border-left: 10px solid rgba(255,255,255,.95);

  box-shadow: 0 18px 45px rgba(17,24,39,.10);
  background:#f3f4f6;
}
.svc__photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* badge */
.svc__badge{
  position:absolute;
  right:8px;
  top:-6px;
  width:130px;
  height:130px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow: 0 16px 36px rgba(17,24,39,.12);
  z-index:2;
  margin-left: -8% !important;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding-top:6px;
}
.svc__badgeTop{
  font-weight:800;
  font-size:30px;
  line-height:1;
  color:var(--green2);
}
.svc__badgeBottom{
  margin-top:4px;
  font-size:10px;
  font-weight:700;
  color:#6b7280;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.svc__badgeBottom span{ display:block; }

/* ===== RIGHT CONTENT ===== */
.svc__kicker{
  font-size:11px;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#9ca3af;
  margin-bottom:10px;
}

.svc__title{
  margin:0 0 14px;
  font-size:34px;
  line-height:1.15;
  letter-spacing:-.03em;
}

.svc__text{
  margin:0 0 18px;
  max-width:520px;
  color:var(--muted);
  font-size:15px;
  line-height:1.8;
}

.svc__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:38px;
  padding:0 16px;
  border-radius:9px;
  background: purple;
  color:#fff;
  font-weight:800;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  text-decoration:none;
  box-shadow: 0 14px 28px rgba(106,168,60,.22);
}
.svc__btn:hover{ filter:brightness(1.03); }

/* responsive */
@media (max-width: 900px){
  .svc__container{ grid-template-columns:1fr; gap:26px; }
  .svc__media{ justify-content:center; }
  .svc__blob{ left:50%; transform:translateX(-45%); }
  .svc__badge{ right:18%; }
}
@media (max-width: 520px){
  .svc__photo{ width:100%; max-width:320px; }
  .svc__blob{ width:280px; height:210px; }
  .svc__badge{ right:10px; }
  .svc__title{ font-size:28px; }
}

    .footer-wrap {
      width: min(1320px, 100%);
      position: relative;
      
    }

    .newsletter-card {
      width: min(860px, calc(100% - 120px));
      margin: 0 auto -54px;
      background: linear-gradient(135deg, #4c72ea, #4b73f0);
      border-radius: 10px;
      box-shadow: 0 18px 35px rgba(45, 79, 180, 0.22);
      position: relative;
      z-index: 2;
      overflow: hidden;
      margin-top: -5%;
    }

    .newsletter-inner {
      display: grid;
      grid-template-columns: 260px 1fr;
      align-items: center;
      gap: 22px;
      padding: 26px 34px;
    }

    .newsletter-illustration {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 160px;
    }

    .newsletter-illustration img {
      width: 100%;
      max-width: 220px;
      object-fit: contain;
      display: block;
      filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.18));
    }

    .newsletter-content h2 {
      font-size: 30px;
      line-height: 1.22;
      color: #fff;
      font-weight: 700;
      max-width: 560px;
      margin-bottom: 14px;
    }

    .newsletter-content p.top-note {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 14px;
    }

    .subscribe-form {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
      flex-wrap: wrap;
    }

    .subscribe-form input {
      flex: 1 1 260px;
      min-width: 0;
      height: 42px;
      border: none;
      outline: none;
      border-radius: 999px;
      padding: 0 18px;
      background: rgba(255, 255, 255, 0.18);
      color: #fff;
      font-size: 14px;
    }

    .subscribe-form input::placeholder {
      color: rgba(255, 255, 255, 0.78);
    }

    .subscribe-form button {
      height: 42px;
      border: none;
      border-radius: 999px;
      padding: 0 22px;
      background: #fff;
      color: #2b2b2b;
      font-weight: 600;
      cursor: pointer;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    }

    .newsletter-content .small-text {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.82);
      line-height: 1.6;
    }

    .footer-box {
      background: #fff;
      border-radius: 0;
      box-shadow: 0 20px 40px rgba(34, 46, 77, 0.12);
      padding: 110px 48px 0;
    }

    .footer-main {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
      gap: 34px;
      padding-bottom: 28px;
    }

    .brand-block .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .brand-block .brand i {
      color: #4c72ea;
      font-size: 30px;
    }

    .brand-block p {
      color: #6f6f6f;
      font-size: 13px;
      line-height: 1.8;
      max-width: 250px;
      margin-bottom: 18px;
    }

    .socials {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .socials a {
      color: #111;
      font-size: 14px;
      text-decoration: none;
      transition: 0.2s ease;
    }

    .socials a:hover {
      color: #4c72ea;
    }

    .footer-col h4 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 18px;
      color: #151515;
      margin-left: 20%;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col ul li {
      margin-bottom: 12px;
    }

    .footer-col ul li a {
      text-decoration: none;
      color: #4d4d4d;
      font-size: 14px;
      transition: 0.2s ease;
    }

    .footer-col ul li a:hover {
      color: #4c72ea;
    }

    .contact-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: #4d4d4d;
      font-size: 14px;
      line-height: 1.7;
      margin-bottom: 14px;
    }

    .contact-list i {
      color: #4c72ea;
      font-size: 14px;
      margin-top: 4px;
      width: 15px;
    }

    .footer-bottom {
      border-top: 1px solid #ececec;
      padding: 20px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .footer-bottom p,
    .footer-bottom a {
      color: #575757;
      font-size: 13px;
      text-decoration: none;
    }

    .bottom-links {
      display: flex;
      align-items: center;
      gap: 22px;
      flex-wrap: wrap;
    }

    .bottom-links a:hover {
      color: #4c72ea;
    }

    @media (max-width: 1024px) {
      .footer-main {
        grid-template-columns: repeat(2, 1fr);
      }

      .newsletter-inner {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .newsletter-content h2 {
        max-width: 100%;
      }

      .subscribe-form {
        justify-content: center;
      }
    }

    @media (max-width: 768px) {
      .footer-box {
        padding: 140px 24px 0;
      }

      .newsletter-card {
        width: calc(100% - 20px);
        margin-bottom: -80px;
      }

      .newsletter-inner {
        padding: 24px 20px;
      }

      .newsletter-content h2 {
        font-size: 22px;
      }

      .footer-main {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }




    
   
    .hero-wrapper {
      width: 100%;
      max-width: 1180px;
      padding: 28px 36px 34px;
      position: relative;
      overflow: hidden;
      margin-left: 5%;
    }

 
   

  

    .hero-content {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 30px;
      align-items: center;
    }

    .hero-text {
      padding-left: 8px;
    }

    .hero-text h1 {
      font-size: 40px;
      line-height: 1.08;
      font-weight: 700;
      color: #111;
      letter-spacing: -2px;
      max-width: 520px;
      margin-bottom: 22px;
      margin-top: 3%;
    }

    .hero-text p {
      color: #555;
      font-size: 15px;
      line-height: 1.7;
      max-width: 440px;
      margin-bottom: 28px;
    }

  

    .hero-stats {
      display: flex;
      align-items: center;
      gap: 34px;
      flex-wrap: wrap;
    }

    .stat {
      position: relative;
      padding-right: 26px;
    }

    .stat:not(:last-child)::after {
      content: "";
      position: absolute;
      right: 0;
      top: 6px;
      width: 1px;
      height: 42px;
      background: #ddd;
    }

    .stat h3 {
      font-size: 17px;
      font-weight: 700;
      color: #111;
      margin-bottom: 4px;
    }

    .stat p {
      font-size: 13px;
      color: #777;
      margin: 0;
    }

    .rings {
      font-size: 28px;
      color: #111;
      line-height: 1;
    }

    .hero-visual {
      position: relative;
      min-height: 520px;
    }

    .card {
      position: absolute;
      overflow: hidden;
      border-radius: 26px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .card-1 {
      width: 240px;
      height: 230px;
      top: 20px;
      left: 20px;
      background: #a8d7e7;
    }

    .card-2 {
      width: 230px;
      height: 265px;
      top: 90px;
      right: 10px;
      background: #ccb2f3;
    }

    .card-3 {
      width: 250px;
      height: 200px;
      bottom: 48px;
      left: 3%;
      background: #97bd73;
    }

    .small-circle {
      position: absolute;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #a9d8eb;
      top: 0;
      right: 120px;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      font-size: 26px;
      font-weight: 700;
    }

    .purple-pill {
      position: absolute;
      width: 120px;
      height: 54px;
      border-radius: 999px;
      background: #c6b0ef;
      display: flex;
      justify-content: center;
      align-items: center;
      top: 310px;
      left: 185px;
      box-shadow: 0 10px 20px rgba(198, 176, 239, 0.35);
    }

    .purple-pill span {
      font-size: 28px;
      color: white;
      letter-spacing: -4px;
    }

    .star {
      position: absolute;
      color: #8fa57a;
      font-size: 24px;
      font-weight: 700;
    }

    .star-1 {
      left: 0;
      top: 210px;
    }

    .star-2 {
      right: 40px;
      top: 330px;
    }

    .dot {
      position: absolute;
      border-radius: 50%;
    }

    .dot-purple {
      width: 16px;
      height: 16px;
      background: #c8b0f3;
      top: 120px;
      right: 55px;
    }

    .dot-blue {
      width: 20px;
      height: 20px;
      background: #9fd6ef;
      bottom: 70px;
      right: 38px;
    }

    @media (max-width: 992px) {
      .hero-content {
        grid-template-columns: 1fr;
      }

      .hero-text h1 {
        font-size: 48px;
      }

      .hero-visual {
        min-height: 560px;
        margin-top: 10px;
      }

      .nav-links {
        display: none;
      }
    }

    @media (max-width: 768px) {
      body {
        padding: 20px;
      }

      .hero-wrapper {
        padding: 24px 20px 28px;
      }

      .hero-text h1 {
        font-size: 38px;
      }

      .hero-text p {
        font-size: 15px;
      }

      .hero-buttons {
        flex-wrap: wrap;
      }

      .hero-visual {
        transform: scale(0.88);
        transform-origin: top center;
        min-height: 500px;
      }

      .hero-stats {
        gap: 20px;
      }

      .stat {
        padding-right: 16px;
      }
    }

    @media (max-width: 560px) {
      .hero-visual {
        transform: scale(0.73);
        min-height: 420px;
        left: -30px;
      }

      .hero-text h1 {
        font-size: 32px;
      }
    } 

 * {
  box-sizing: border-box;
}

.why-us-section {
  background: #f8f7fb;
  padding: 90px 20px;
  font-family: "Inter", sans-serif;
}

.why-us-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-us-header {
  text-align: center;
  margin-bottom: 70px;
}

.why-us-header .mini-title {
  display: block;
  font-size: 14px;
  color: #3c3c3c;
  margin-bottom: 10px;
  font-weight: 500;
}

.why-us-header h2 {
  font-size: 50px;
  line-height: 1.15;
  color: #1d2454;
  font-weight: 700;
  margin: 0;
}

.why-us-header h2 span {
  color: #a2a2a2;
  font-weight: 600;
}

.why-us-flow {
  position: relative;
  min-height: 520px;
}

/* center card */
.center-node {
  position: absolute;
  top: 140px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 150px;
  background: #f3e9ff;
  border: 1px solid #ead7ff;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(160, 110, 255, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.center-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(180deg, #cba8ff, #a86dff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
}

.center-node h3 {
  margin: 0 0 14px;
  font-size: 28px;
  color: #1f2547;
  font-weight: 700;
}

.center-node button {
  border: none;
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #c389ff, #9e66ff);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(161, 104, 255, 0.25);
}

/* side cards */
.benefit-card {
  position: absolute;
  width: 245px;
  height: 54px;
  background: #fcfbff;
  border: 1px solid #efe8f7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.benefit-card span:last-child {
  font-size: 16px;
  color: #1e2032;
  font-weight: 500;
}

.icon-box {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  background: #f7efff;
}

/* positions left */
.left-1 { top: 40px; left: 0; }
.left-2 { top: 155px; left: 0; }
.left-3 { top: 285px; left: 0; }
.left-4 { top: 415px; left: 0; }

/* positions right */
.right-1 { top: 32px; right: 0; }
.right-2 { top: 145px; right: 0; }
.right-3 { top: 285px; right: 0; }
.right-4 { top: 405px; right: 0; }

/* connector base */
.connector {
  position: absolute;
  border-color: #e6e1eb;
  border-style: solid;
  pointer-events: none;
}

/* left connectors */
.c-left-1 {
  top: 56px;
  left: 245px;
  width: 185px;
  height: 140px;
  border-width: 2px 2px 0 0;
  border-top-right-radius: 26px;
}

.c-left-2 {
  top: 171px;
  left: 245px;
  width: 185px;
  height: 80px;
  border-width: 2px 2px 0 0;
  border-top-right-radius: 26px;
}

.c-left-3 {
  top: 301px;
  left: 245px;
  width: 185px;
  height: 60px;
  border-width: 0 2px 2px 0;
  border-bottom-right-radius: 26px;
}

.c-left-4 {
  top: 360px;
  left: 245px;
  width: 185px;
  height: 82px;
  border-width: 0 2px 2px 0;
  border-bottom-right-radius: 26px;
}

/* right connectors */
.c-right-1 {
  top: 48px;
  right: 245px;
  width: 185px;
  height: 135px;
  border-width: 2px 0 0 2px;
  border-top-left-radius: 26px;
}

.c-right-2 {
  top: 161px;
  right: 245px;
  width: 185px;
  height: 82px;
  border-width: 2px 0 0 2px;
  border-top-left-radius: 26px;
}

.c-right-3 {
  top: 301px;
  right: 245px;
  width: 185px;
  height: 60px;
  border-width: 0 0 2px 2px;
  border-bottom-left-radius: 26px;
}

.c-right-4 {
  top: 360px;
  right: 245px;
  width: 185px;
  height: 82px;
  border-width: 0 0 2px 2px;
  border-bottom-left-radius: 26px;
}

/* responsive */
@media (max-width: 1100px) {
  .why-us-header h2 {
    font-size: 38px;
  }

  .why-us-flow {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }

  .benefit-card,
  .center-node,
  .connector {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
  }

  .connector {
    display: none;
  }

  .center-node {
    order: -1;
    margin-bottom: 14px;
  }

  .benefit-card {
    width: min(100%, 360px);
  }
}

@media (max-width: 600px) {
  .why-us-section {
    padding: 70px 16px;
  }

  .why-us-header h2 {
    font-size: 28px;
  }

  .center-node {
    width: 160px;
    height: 138px;
  }

  .center-node h3 {
    font-size: 22px;
  }

  .benefit-card span:last-child {
    font-size: 14px;
  }
}  



/* ================= GLOBAL RESPONSIVE FIXES ================= */

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

/* Tablets */
@media (max-width: 1024px) {
  .container {
    width: calc(100% - 32px);
  }

  .nav__bar {
    height: auto;
    padding: 16px 0;
    gap: 16px;
  }

  .menu {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero__grid,
  .hero-content,
  .svc__container,
  .why-difference__container {
    grid-template-columns: 1fr;
  }

  .hero__copy,
  .hero-text {
    text-align: center;
  }

  .hero__copy p,
  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .search__row {
    grid-template-columns: 1fr 1fr;
  }

  .hero__visual {
    justify-content: center;
    height: auto;
  }

  .cat__grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }

  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  body {
    padding: 0;
  }

  .nav__bar {
    flex-direction: column;
    align-items: center;
  }

  .menu {
    display: none;
  }

  .nav__cta {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding: 36px 0 20px;
  }

  .hero__grid {
    min-height: auto;
    gap: 24px;
  }

  .hero__copy h1,
  .hero-text h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .search {
    padding: 12px;
  }

  .search__row {
    grid-template-columns: 1fr;
  }

  .field,
  .btn-search {
    width: 100%;
  }

  .cluster {
    width: 100%;
    height: auto;
    margin: 0;
  }

  .pic {
    position: relative;
    width: 100% !important;
    height: 220px !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    margin-bottom: 16px;
  }

  .dots,
  .cat__arrow {
    display: none;
  }

  .cat__grid {
    grid-template-columns: 1fr;
  }

  .hiring {
    flex-direction: column;
    text-align: center;
  }

  .hiring__left {
    flex-direction: column;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .job-card {
    min-height: auto;
  }

  .title,
  .company {
    margin-left: 0;
  }

  .footer {
    flex-direction: column;
    align-items: stretch;
  }

  .apply {
    width: 100%;
  }

  .why-difference {
    padding: 50px 18px;
  }

  .why-difference__grid {
    grid-template-columns: 1fr;
  }

  .why-difference__right {
    border-left: none;
    padding-left: 0;
  }

  .svc {
    padding: 36px 0;
  }

  .svc__title {
    font-size: 28px;
  }

  .newsletter-card {
    width: calc(100% - 24px);
  }

  .newsletter-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-box {
    padding: 120px 22px 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-col h4 {
    margin-left: 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .container {
    width: calc(100% - 24px);
  }

  .brand__logo-img {
    height: 38px;
  }

  .hero__copy h1,
  .hero-text h1 {
    font-size: 28px;
  }

  .hero__copy p,
  .hero-text p {
    font-size: 14px;
  }

  .section__title {
    font-size: 22px;
  }

  .cat__item {
    padding: 14px;
  }

  .hero-panel {
    height: 240px;
    border-radius: 20px;
  }

  .hero-center h1 {
    font-size: 30px;
  }

  .search-pill {
    flex-direction: column;
    height: auto;
    border-radius: 22px;
    padding: 14px;
  }

  .hero-loc,
  .search-icon {
    width: 100%;
  }

  .svc__photo {
    width: 100%;
    max-width: 280px;
    height: 190px;
  }

  .svc__badge {
    width: 100px;
    height: 100px;
    right: 0;
  }

  .svc__badgeTop {
    font-size: 24px;
  }

  .why-us-header h2 {
    font-size: 28px;
  }

  .filter-btn {
    width: 58px;
    height: 58px;
    right: 16px;
    bottom: 16px;
  }
}


@media (max-width: 768px) {
  .cat__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 0 16px;
    overflow: visible;
  }

  .cat__item {
    min-height: 120px;
    flex-direction: column;
    justify-content: center;
  }

  .cat__arrow {
    display: none;
  }
}

@media (max-width: 380px) {
  .cat__grid {
    grid-template-columns: 1fr;
  }
}


.menu-toggle {
  display: none;
  border: none;
  background: purple;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #fff;
  }

  .nav__bar {
    height: 88px;
    padding: 0 20px;
    flex-direction: row;
    justify-content: space-between;
  }

  .brand {
    width: 100%;
    justify-content: space-between;
  }

  .brand__logo-img {
    height: 70px;
    max-width: 180px;
    object-fit: contain;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .menu {
    display: none;
    position: absolute;
    top: 88px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 18px 20px;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 18px 35px rgba(0,0,0,.12);
  }

  .menu.show {
    display: flex;
  }

  .menu a {
    width: 100%;
    padding: 14px;
    background: #f8f7fb;
    border-radius: 12px;
  }

  .nav__cta {
    display: none;
  }
}




/* ================= MOBILE HERO FIX ================= */
@media (max-width: 768px) {
  .hero {
    padding: 34px 0 24px;
  }

  .hero__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: auto;
  }

  .hero__copy {
    text-align: center;
  }

  .hero__copy h1 {
    font-size: 30px;
    line-height: 1.18;
    letter-spacing: -1px;
    margin-bottom: 18px;
  }

  .hero__copy p {
    font-size: 15px;
    line-height: 1.7;
    max-width: 360px;
    margin: 0 auto 24px;
    color: #667085;
  }

  .search {
    width: 100%;
    padding: 16px;
    border-radius: 22px;
  }

  .search__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .field {
    height: 62px;
    border-radius: 16px;
  }

  .btn-search {
    width: 100%;
    height: 56px;
    font-size: 16px;
    border-radius: 16px;
  }

  .search__popular {
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
    margin-top: 14px;
  }

  .hero__visual {
    height: auto;
    width: 100%;
  }

  .cluster {
    width: 100%;
    height: auto;
    margin: 0;
  }

  .pic {
    position: relative;
    width: 100% !important;
    height: 230px !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    margin-bottom: 16px;
    border-radius: 22px;
  }

  .pic--two {
    display: none;
  }

  .dots {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__copy h1 {
    font-size: 27px;
  }

  .hero__copy p {
    font-size: 14px;
  }

  .pic {
    height: 210px !important;
  }
}

@media (max-width: 768px) {
  .search {
    padding: 10px 12px;
    border-radius: 18px;
  }

  .search__row {
    gap: 10px;
  }

  .field {
    height: 48px;
    border-radius: 14px;
  }

  .field__icon {
    width: 34px;
    height: 34px;
  }

  .field input {
    font-size: 14px;
  }

  .btn-search {
    height: 48px;
    font-size: 15px;
    border-radius: 14px;
  }

  .search__popular {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.4;
  }
}

@media (max-width: 992px) {
  .why-difference__left h2 {
    font-size: 34px;
    line-height: 1.15;
    margin-left: 0;
    margin-top: 0;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .why-difference__left h2 {
    font-size: 28px;
    line-height: 1.15;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .why-difference__left h2 {
    font-size: 25px;
    line-height: 1.15;
  }
}


@media (max-width: 768px) {
  .brandRow {
    grid-template-columns: 44px 1fr;
    gap: 8px;
    align-items: start;
  }

  .brandRow i {
    font-size: 30px !important;
  }

  .headings {
    margin-left: 0;
    padding-left: 0;
  }

  .company {
    margin-left: 0 !important;
    margin-top: 0;
    margin-bottom: 6px;
  }

  .title {
    margin-left: 0 !important;
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .footer-col {
    width: 100%;
    text-align: left !important;
  }

  .footer-col h4,
  .footer-col ul,
  .footer-col li,
  .contact-list,
  .contact-list li {
    margin-left: 0 !important;
    padding-left: 0 !important;
    text-align: left !important;
  }

  .footer-col h4 {
    display: block;
  }

  .contact-list li {
    display: flex;
    justify-content: flex-start !important;
    align-items: center;
    gap: 12px;
  }
}



@media (max-width: 768px) {
  .hero-wrapper {
    margin-left: 0;
    padding: 32px 20px 36px;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-text {
    text-align: center;
    padding-left: 0;
  }

  .hero-text h1 {
    font-size: 34px;
    line-height: 1.12;
    margin-bottom: 14px;
  }

  .hero-text p {
    font-size: 15px;
    line-height: 1.6;
    max-width: 360px;
    margin: 0 auto 20px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    justify-items: center;
  }

  .stat {
    padding-right: 0;
  }

  .stat:not(:last-child)::after {
    display: none;
  }

  .stat h3 {
    font-size: 17px;
    margin-bottom: 4px;
  }

  .stat p {
    font-size: 13px;
  }

  .hero-visual {
    min-height: 300px;
    height: 300px;
    position: relative;
    transform: none;
  }

  .card {
    position: absolute;
    border-radius: 18px;
  }

  .card-1 {
    width: 150px !important;
    height: 145px !important;
    top: 0 !important;
    left: 12px !important;
  }

  .card-2 {
    width: 150px !important;
    height: 165px !important;
    top: 36px !important;
    right: 12px !important;
  }

  .card-3 {
    width: 165px !important;
    height: 130px !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%);
  }

  .small-circle,
  .purple-pill,
  .star,
  .dot {
    display: none;
  }
}

@media (max-width: 420px) {
  .hero-text h1 {
    font-size: 30px;
  }

  .hero-visual {
    height: 270px;
    min-height: 270px;
  }

  .card-1 {
    width: 135px !important;
    height: 130px !important;
    margin-left: 10%;
    border-radius: 5px;
  }

  .card-2 {
    width: 135px !important;
    height: 130px !important;
    margin-right: -5%;
    margin-top: -10%;
    border-radius: 5px;
  }

  .card-3 {
    width: 155px !important;
    height: 120px !important;
     margin-left: 5%;
    margin-top: -5%;
   border-radius: 5px;
  }
}

@media (max-width: 768px) {
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 14px;
    align-items: start;
  }

  .stat {
    width: 100%;
    text-align: center;
  }

  .stat:nth-child(3) {
    grid-column: 1 / -1;
    margin-top: -4%;
  }
}




.contact-hero {
  position: relative;
  height: 210px;
  background: url("https://lh3.googleusercontent.com/d/1-4K02YBOg5ni6FG40vouRKH3Ay88mM7G") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 53, 101, 0.48);
}

.contact-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.contact-hero__content h1 {
  margin: 0 0 8px;
  font-size: 38px;
  font-weight: 700;
}

.contact-hero__content p {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .contact-hero {
    height: 180px;
  }

  .contact-hero__content h1 {
    font-size: 30px;
  }
}



.contact-section {
  padding: 70px 20px;
  background: #fff;
}

.contact-container {
  max-width: 1120px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  gap: 22px;
}

.contact-info,
.contact-form {
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 15px 40px rgba(0,0,0,.04);
}

.contact-info > small {
  color: #1d4ed8;
  font-weight: 800;
  font-size: 11px;
}

.contact-info h2 {
  font-size: 28px;
  margin: 8px 0 12px;
}

.contact-info p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

.contact-item {
  display: flex;
  gap: 14px;
  padding: 22px 0;
  border-top: 1px solid #edf0f2;
}

.contact-item span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e9f7f4;
  color: #1d4ed8;
  display: grid;
  place-items: center;
}

.contact-item small {
  color: #8b98a8;
  font-size: 12px;
}

.contact-item strong {
  display: block;
  font-size: 14px;
  margin-top: 4px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: none;
  outline: none;
  background: #f5f5f5;
  border-radius: 14px;
  padding: 15px 18px;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 135px;
  resize: vertical;
}

.contact-form button {
  width: 250px;
  height: 48px;
  border: none;
  border-radius: 999px;
  background: #a000a8;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.contact-map {
  grid-column: 1 / -1;
  height: 430px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 48px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info,
  .contact-form {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form button {
    width: 100%;
  }

  .contact-map {
    height: 300px;
  }
}


/* Contact page responsive */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-info,
  .contact-form {
    padding: 28px;
  }

  .contact-map {
    height: 360px;
    margin-top: 28px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    height: 170px;
  }

  .contact-hero__content h1 {
    font-size: 30px;
  }

  .contact-section {
    padding: 45px 16px;
  }

  .contact-info,
  .contact-form {
    padding: 22px;
    border-radius: 16px;
  }

  .contact-info h2 {
    font-size: 24px;
    line-height: 1.2;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 14px;
    border-radius: 12px;
  }

  .contact-form button {
    width: 100%;
    height: 46px;
  }

  .contact-map {
    height: 280px;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    height: 150px;
  }

  .contact-hero__content h1 {
    font-size: 26px;
  }

  .contact-hero__content p {
    font-size: 11px;
  }

  .contact-section {
    padding: 35px 12px;
  }

  .contact-item {
    gap: 12px;
  }

  .contact-item strong {
    font-size: 13px;
    word-break: break-word;
  }

  .contact-map {
    height: 240px;
  }
}


@media (max-width: 768px) {
  .nav__bar {
    height: 76px;
    padding: 0;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative;
  }

  .brand {
    width: auto !important;
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
  }

  .brand__logo-img {
    height: 42px;
  }

  .nav__cta {
    order: 2;
    display: flex !important;
    align-items: center !important;
    width: auto !important;
    margin: 0 !important;
    gap: 8px !important;
  }

  .menu-toggle {
    order: 3;
    display: flex !important;
    width: 42px !important;
    height: 42px !important;
    font-size: 24px !important;
    border-radius: 12px !important;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
  }

  .user-menu,
  .user-menu-btn {
    width: auto !important;
  }

  .user-menu-btn {
    width: 42px !important;
    height: 42px !important;
    font-size: 18px !important;
    border-radius: 12px !important;
    background: purple !important;
    color: #fff !important;
  }

  .nav__cta .btn--primary,
  .nav__cta .nav__link {
    display: none !important;
  }

.menu {
  position: absolute;
  top: 92px !important;
  left: 16px;
  right: 16px;
  width: auto !important;
  display: none !important;
  background: #fff;
  padding: 18px 22px;
  z-index: 999;
  flex-direction: column;
  gap: 12px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

  .menu.show {
    display: flex !important;
  }

  .menu a {
    width: 100%;
    background: #f7f7fb;
    padding: 14px 18px;
    border-radius: 14px;
  }
}

@media (max-width: 768px) {
  .nav {
    z-index: 9999 !important;
  }

  .nav__bar {
    height: 76px !important;
    position: relative !important;
  }

  .menu {
    position: fixed !important;
    top: 105px !important;
    left: 20px !important;
    right: 20px !important;
    width: auto !important;
    display: none !important;
    background: #fff !important;
    padding: 18px !important;
    border-radius: 20px !important;
    z-index: 99999 !important;
    flex-direction: column !important;
    gap: 12px !important;
    box-shadow: 0 20px 45px rgba(0,0,0,0.14) !important;
  }

  .menu.show {
    display: flex !important;
  }

  .user-dropdown {
    position: fixed !important;
    top: 105px !important;
    left: 20px !important;
    right: 20px !important;
    width: auto !important;
    display: none !important;
    z-index: 99999 !important;
  }

  .user-dropdown.show {
    display: block !important;
  }
}