
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


:root {
  --brand: #e60000;
  --muted: #bdbdbd;
  --glass: rgba(30, 30, 30, 0.86);
  --glass-strong: rgba(30, 30, 30, 0.94);
  --tile: #141416;
  --br-outer: 28px;
  --br-inner: 18px;

  
  --brand-dark: #b00000;
  --stroke: rgba(255, 255, 255, 0.08);
  --ring: rgba(230, 0, 0, 0.25);
  --muted-2: #cccccc;

  
  --wave-fill: #e3e8f2;
  --wave-fill-2: #f4f7fb;
  --wave-stroke: #cfd6e3;
  --wave-shadow: rgba(0, 0, 0, 0.16);
}

@font-face {
  font-family: "Uniwars W00 Regular";
  src: url("assets/uniwars.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}


body {
  font-family: "Inter", sans-serif;
  background-color: #e4e8ee; 
  color: #333;
  line-height: 1.6;
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}


.navbar {
  background-color: #1e1e1e;
  color: white;
  padding: 15px 40px;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: auto;
  max-width: 1200px;
  height: 70px;
  white-space: nowrap;
  transition: all 0.3s ease;
}


.navbar .logo img {
  width: 90px;
  max-width: 160px;
  height: auto;
  filter: invert(1) brightness(1000%);
}


.navbar nav ul {
  display: flex;
  gap: 3rem;
  list-style: none;
  padding: 0;
  margin-left: auto;
}
.navbar nav ul li {
  list-style: none;
}
.navbar nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 1px;
  transition: color 0.3s, transform 0.3s;
}
.navbar nav ul li a:hover {
  color: #e60000;
  transform: translateY(-3px);
}


.burger-menu {
  display: none; 
  cursor: pointer;
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 200;
  color: #FFEEEE;
  font-size: 40px;
}


.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  padding-left: 20px;
  padding-top: 50px;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) blur(0px);
  transition: filter 0.5s ease;
  z-index: -1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.hero-content {
  color: white;
  z-index: 1;
  padding: 0 20px;
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}
.hero-text {
  max-width: 650px;
  padding-left: 0;
}
.hero h1 {
  font-size: 5rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
  line-height: 1.2;
}
.hero p {
  font-size: 1.4rem;
  margin-bottom: 30px;
  font-weight: 400;
}


.btn-primary {
  padding: 1rem 2rem;
  background-color: #e60000;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: 0.3s;
  align-self: center;
}
.btn-primary:hover {
  background-color: #b20000;
}


.about {
  padding: 5rem 0;
  background-color: white;
  text-align: center;
}
.about h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.about p {
  font-size: 1.2rem;
  line-height: 1.6;
}


.services {
  padding: 5rem 0;
  background-color: #f5f8fc;
  text-align: center;
}
.services h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.service-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}


.statistics {
  padding: 5rem 0;
  background-color: #f5f8fc;
  text-align: center;
}
.statistics h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}
.statistics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  justify-items: center;
}
.stat-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.stat-card h3 {
  font-size: 3rem;
  font-weight: 600;
  color: #2aa84a;
  margin-bottom: 10px;
}
.stat-card p {
  font-size: 1.2rem;
  font-weight: 400;
  color: #333;
}


.career {
  padding: 5rem 0;
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  max-width: 900px;
}
.career h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.career p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.career form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.career input,
.career textarea {
  padding: 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
}
.career button {
  padding: 1rem 2rem;
  background-color: #e60000;
  color: white;
  border-radius: 5px;
  font-weight: 600;
  border: none;
}


.section-contact {
  font-family: "Poppins", sans-serif;
  background: #1e1e1e;
  color: #fff;
  padding: 6rem 2rem;
}
.section-contact .container {
  max-width: 1200px;
  margin: 0 auto;
}
.section-contact .row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}
.section-contact .col {
  flex: 1 1 400px;
}
.section-contact .content .sm-title {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.section-contact .content .sm-title .line {
  display: inline-block;
  margin-right: 20px;
  width: 60px;
  height: 3px;
  background-color: #e60000;
}
.section-contact .content .sm-title h3 {
  font-weight: 500;
  font-size: 20px;
}
.section-contact .content .title {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 40px;
}
.section-contact .content .title span {
  color: #e60000;
}
.section-contact .content .description {
  margin-bottom: 40px;
  line-height: 1.8em;
  max-width: 80%;
}
.section-contact .social-links {
  margin-bottom: 50px;
}
.section-contact .social-links li {
  display: inline-block;
  margin-right: 10px;
}
.section-contact .social-links a {
  display: inline-block;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border: 2px solid #e60000;
  border-radius: 50%;
  font-size: 22px;
  transition: all 0.3s;
  color: #fff;
}
.section-contact .social-links a:hover {
  background-color: #e60000;
}
.section-contact .hire-us {
  max-width: 70%;
  background-color: #2b2b2b;
  border-radius: 80px;
  padding: 10px 10px 10px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-contact .hire-us a {
  color: #fff;
  text-decoration: none;
}
.section-contact .hire-us span {
  font-size: 20px;
  font-weight: 700;
}
.section-contact .hire-us button {
  border: none;
  border-radius: 30px;
  background-color: #e60000;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  padding: 15px 30px;
  cursor: pointer;
  transition: all 0.3s;
}
.section-contact .infos .single-info {
  display: flex;
  margin-bottom: 40px;
}
.section-contact .infos .single-info .icon {
  position: relative;
  margin-right: 20px;
  padding-top: 12px;
  width: 40px;
}
.section-contact .infos .single-info .icon:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 1px;
  background-color: #e60000;
  transform: rotate(-60deg);
  transform-origin: 100%;
}
.section-contact .infos .single-info i {
  font-size: 22px;
}
.section-contact .infos .text h3 {
  margin-bottom: 7px;
  font-size: 20px;
  font-weight: 700;
}
.section-contact .infos .text p {
  line-height: 1.85em;
  margin: 0;
}
.section-contact .infos .text p a {
  color: #fff;
  text-decoration: none;
}
.section-contact .contact-map {
  width: 100%;
  max-width: 100%;
  height: 320px;
  border: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
textarea {
  resize: none;
}


.footer {
  background: linear-gradient(180deg, #252527 0%, #1b1b1d 100%);
  color: white;
  text-align: center;
  padding: 2.2rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer img {
  width: 120px;
  margin-bottom: 1rem;
}
.footer .made-by {
  margin-top: 0.4rem;
  font-size: 0.95rem;
  color: #d7d7d7;
}
.footer .made-by a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.footer .made-by a:hover {
  color: var(--brand);
}


.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s, transform 0.8s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}


@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    display: none;
    top: 0;
  }
  .burger-menu {
    display: block;
    position: fixed;
    right: 20px;
    top: 20px;
  }
  .navbar.active {
    display: flex;
    width: 100%;
  }
  .navbar nav ul {
    top: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #1e1e1e;
    padding: 2rem;
    position: absolute;
    right: 0;
    width: 100%;
    border-radius: 0 0 20px 20px;
  }
  .navbar .logo img {
    max-width: 160px;
    width: auto;
  }
}

@media (max-width: 600px) {
  .section-contact .contact-map {
    height: 260px;
  }
}


.stats {
  padding: 0 1rem;
  margin: 6rem auto;
}
.stats__wrap {
  max-width: 1100px;
  margin: 0 auto;
  color: #fff;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--br-outer);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.stats__wrap:hover {
  background: var(--glass-strong);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}
.stats__head {
  text-align: center;
  padding: 2.5rem 2rem 0;
}
.stats .eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.9;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 2.2rem;
  color: #fff;
}
.stats .eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 3px;
  border-radius: 3px;
  background: var(--brand);
}
.stats__head h2 {
  font-size: clamp(1.9rem, 2.6vw, 2.6rem);
  line-height: 1.15;
  font-weight: 800;
  margin: 0.2rem 0 0.6rem;
}
.stats__head .accent {
  color: var(--brand);
}
.stats__head p {
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto 1.8rem;
}
.stats__grid {
  display: grid;
  gap: 1.25rem;
  padding: 1.8rem;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1000px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .stats__grid {
    grid-template-columns: 1fr;
  }
}


.stat-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--tile), #0f1012);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--br-inner);
  padding: 1.25rem 1.25rem 1.35rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
  color: #fff;
  text-align: center;
}
.stat-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px -40px;
  height: 52px;
  background: radial-gradient(
    120px 40px at 25% 50%,
    rgba(230, 0, 0, 0.22),
    transparent 60%
  );
  filter: blur(10px);
  opacity: 0.35;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(230, 0, 0, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.stat-card:hover::after {
  opacity: 0.6;
}
.stat-card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 12px;
  background: #0e0f11;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 0.55rem;
}
.stat-card__value {
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: 0.5px;
  margin-bottom: 0.1rem;
}
.stat-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 0.25rem;
}
.stat-card p {
  color: var(--muted);
  margin: 0;
}


.stats.reveal {
  opacity: 0;
  transform: translateY(24px);
}
.stats.reveal.visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}


.career-glass {
  padding: 0 1rem;
  margin: 6rem auto;
}
.career__wrap {
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
  background: var(--glass);
  border: 1px solid var(--stroke);
  border-radius: var(--br-outer);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.career__wrap:hover {
  background: var(--glass-strong);
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}
.career__head {
  text-align: center;
  padding: 2.5rem 2rem 0;
}
.career__head .eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.9;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 2.2rem;
  color: #fff;
}
.career__head .eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 3px;
  border-radius: 3px;
  background: var(--brand);
}
.career__head h2 {
  font-size: clamp(1.9rem, 2.6vw, 2.6rem);
  line-height: 1.15;
  font-weight: 800;
  margin: 0.2rem 0 0.6rem;
}
.career__head .accent {
  color: var(--brand);
}
.career__head p {
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto 1.8rem;
}


.career-form {
  padding: 2rem;
  display: grid;
  gap: 1.1rem;
}
.c-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
@media (max-width: 760px) {
  .c-row {
    grid-template-columns: 1fr;
  }
}
.c-field {
  position: relative;
  background: var(--tile);
  border: 1px solid var(--stroke);
  border-radius: var(--br-inner);
  padding: 0.95rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.c-field:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 6px var(--ring);
  background: #16171a;
}
.c-field input,
.c-field select,
.c-field textarea {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  padding: 0.75rem 0 0.2rem;
  line-height: 1.35;
  appearance: none;
}
.c-field select {
  padding-top: 1rem;
  padding-bottom: 0.1rem;
}
.c-field select:invalid {
  color: var(--muted);
}
.c-field select:valid {
  color: #fff;
}


.c-field label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
  transition: transform 0.2s, color 0.2s, font-size 0.2s, top 0.2s;
}
.c-field textarea + label {
  top: 1.2rem;
  transform: none;
}
.c-field input:focus + label,
.c-field input:not(:placeholder-shown) + label,
.c-field textarea:focus + label,
.c-field textarea:not(:placeholder-shown) + label {
  color: #e2e2e2;
  top: 0.55rem;
  transform: translateY(0);
  font-size: 0.75rem;
  letter-spacing: 0.2px;
}

.c-field select + label {
  top: 0.5rem;
  transform: none;
  font-size: 0.75rem;
  color: #e2e2e2;
}

.c-field input[type="date"] {
  padding-top: 1rem;
  padding-bottom: 0.1rem;
}
.c-field input[type="date"] + label {
  top: 0.5rem;
  transform: none;
  font-size: 0.75rem;
  color: #e2e2e2;
}


.c-file {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}
.c-file input[type="file"] {
  padding: 1rem 0 0.1rem;
}
.c-file label {
  top: 0.5rem;
  transform: none;
  font-size: 0.75rem;
  color: #e2e2e2;
}
.c-file .file-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.c-field.c-recaptcha {
  background: transparent;
  border: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}


.c-consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: #dcdcdc;
  font-size: 0.95rem;
  margin-top: 0.25rem;
}
.c-consent input {
  margin-top: 0.2rem;
}


.career-btn {
  width: 100%;
  margin-top: 0.35rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), #b00000);
  border: 1px solid var(--stroke);
  box-shadow: 0 10px 24px rgba(230, 0, 0, 0.25);
}
.career-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(230, 0, 0, 0.35);
}
.c-hint {
  color: var(--muted);
  text-align: center;
  margin: 0.75rem 0 0;
}
.c-hint a {
  color: #fff;
  text-decoration: none;
}
.c-hint a:hover {
  text-decoration: underline;
}


.career-glass.reveal {
  opacity: 0;
  transform: translateY(24px);
}
.career-glass.reveal.visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}


.about-glass {
  padding: 0 1rem;
  margin: 6rem auto;
}
.about__wrap {
  max-width: 1100px;
  margin: 0 auto;
  color: #fff;
  background: var(--glass);
  border: 1px solid var(--stroke);
  border-radius: var(--br-outer);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.about__wrap:hover {
  background: var(--glass-strong);
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}
.about__head {
  text-align: center;
  padding: 2.5rem 2rem 0;
}
.about__head .eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.9;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 2.2rem;
  color: #fff;
}
.about__head .eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 3px;
  border-radius: 3px;
  background: var(--brand);
}
.about__head h2 {
  font-size: clamp(1.9rem, 2.6vw, 2.6rem);
  line-height: 1.15;
  font-weight: 800;
  margin: 0.2rem 0 0.6rem;
}
.about__head .accent {
  color: var(--brand);
}
.about__head p {
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto 1.8rem;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  padding: 2rem;
  align-items: center;
}
@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
  }
}

.about__text {
  display: grid;
  align-content: start;
  gap: 1.2rem;
  background: rgba(13, 14, 16, 0.7);
  border: 1px solid var(--stroke);
  border-radius: var(--br-inner);
  padding: 1.15rem;
}
.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}
.about-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: #e6e6e6;
}
.about-list .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 0.45rem;
  background: radial-gradient(circle at 50% 50%, var(--brand), #b00000);
  box-shadow: 0 0 0 4px rgba(230, 0, 0, 0.18);
}
.about-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}
.badge {
  background: #101012;
  border: 1px solid var(--stroke);
  color: #fff;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 42px;
}

.about__media {
  background: #0f1012;
  border: 1px solid var(--stroke);
  border-radius: var(--br-inner);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 1rem;
  text-align: center;
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  align-self: start;
}
.about__media img {
  width: 100%;
  max-width: 460px;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  opacity: 0.97;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}
.services-glass {
  padding: 0 1rem;
  margin: 6rem auto;
}
.services__wrap {
  max-width: 1100px;
  margin: 0 auto;
  color: #fff;
  background: var(--glass);
  border: 1px solid var(--stroke);
  border-radius: var(--br-outer);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.services__wrap:hover {
  background: var(--glass-strong);
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}
.services__head {
  text-align: center;
  padding: 2.5rem 2rem 0;
}
.services__head .eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.9;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 2.2rem;
  color: #fff;
}
.services__head .eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 3px;
  border-radius: 3px;
  background: var(--brand);
}
.services__head h2 {
  font-size: clamp(1.9rem, 2.6vw, 2.6rem);
  line-height: 1.15;
  font-weight: 800;
  margin: 0.2rem 0 0.6rem;
}
.services__head .accent {
  color: var(--brand);
}
.services__head p {
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto 1.8rem;
}

.services__grid {
  display: grid;
  gap: 1.25rem;
  padding: 1.8rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1000px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

.svc-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--tile), #0f1012);
  border: 1px solid var(--stroke);
  border-radius: var(--br-inner);
  padding: 1.25rem 1.25rem 1.35rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.svc-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px -40px;
  height: 52px;
  background: radial-gradient(
    120px 40px at 25% 50%,
    rgba(230, 0, 0, 0.22),
    transparent 60%
  );
  filter: blur(10px);
  opacity: 0.35;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.svc-card:hover {
  transform: translateY(-3px);
  border-color: rgba(230, 0, 0, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.svc-card:hover::after {
  opacity: 0.6;
}

.svc-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 12px;
  background: #0e0f11;
  border: 1px solid var(--stroke);
  margin-bottom: 0.55rem;
}
.svc-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 0.25rem;
}
.svc-card p {
  color: var(--muted);
  margin: 0 0 0.6rem;
}
.svc-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}
.svc-tags span {
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 0.4rem 0.55rem;
  font-size: 0.85rem;
  background: #101012;
  color: #eaeaea;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 38px;
}


.about-glass.reveal,
.services-glass.reveal {
  opacity: 0;
  transform: translateY(24px);
}
.about-glass.reveal.visible,
.services-glass.reveal.visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}


:root {
  
}
.hero-uni {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  padding: 0 clamp(24px, 8vw, 8%);
}
.hero-uni .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42);
  z-index: -2;
  transition: transform 0.15s ease-out;
  will-change: transform;
}
.hero-uni .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.45) 55%,
    rgba(0, 0, 0, 0.15) 100%
  );
  z-index: -1;
}
.hero-uni .hero-content {
  max-width: 780px;
}
.hero-uni .eyebrow {
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  font-size: 0.95rem;
}
.hero-uni .hero-wordmark {
  font-family: 'Uniwars W00 Regular', 'Uniwars', 'Inter', sans-serif;
  letter-spacing: 0.03em;
  word-spacing: 0;
  font-size: clamp(1.8rem, 4.8vw, 3.4rem);
  display: inline-block;
  color: #ff2a12;
  margin-bottom: 0.9rem;
  line-height: 1.05;
  font-weight: 700;
}
.hero-uni h1 {
  font-size: clamp(2.2rem, 5.4vw, 4.1rem);
  line-height: 1.08;
  font-weight: 900;
  margin: 0.8rem 0 0.6rem;
  hanging-punctuation: first allow-end;
}
.hero-uni .accent {
  color: var(--brand);
}
.hero-uni p {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.6;
  color: var(--muted-2);
  max-width: 62ch;
  text-wrap: pretty;
}


.same-size-btns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 208px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
}
.hero-uni .btn-primary {
  background: var(--brand);
  color: #fff;
  border: 1px solid var(--stroke);
  box-shadow: 0 12px 26px rgba(230, 0, 0, 0.28);
  transition: 0.3s transform;
}
.hero-uni .btn-primary:hover {
  transform: translateY(-2px);
}
.hero-uni .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid var(--stroke);
  transition: 0.3s transform, 0.3s background;
}
.hero-uni .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.hero-uni .hero-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin: 1.2rem 0 0.4rem;
}
.hero-uni .hero-chips {
  list-style: none;
  display: inline-grid;
  grid-template-columns: repeat(3, max-content);
  gap: 0.55rem;
  padding: 0;
  margin: 0.7rem 0 0;
  width: auto;
  justify-content: start;
}
.hero-uni .hero-chips li {
  background: rgba(16, 16, 18, 0.75);
  color: #eaeaea;
  border: 1px solid var(--stroke);
  padding: 0.5rem 0.72rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 40px;
}


.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: 38px;
  height: 60px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  display: grid;
  place-items: center;
  background: transparent;
  cursor: pointer;
}
.scroll-cue span {
  width: 4px;
  height: 12px;
  background: #fff;
  border-radius: 2px;
  animation: cue 1.9s ease-in-out infinite;
}
@keyframes cue {
  0% {
    transform: translateY(-8px);
    opacity: 0.2;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
  100% {
    transform: translateY(-8px);
    opacity: 0.2;
  }
}


@keyframes slideLeftFadeSlow {
  0% {
    opacity: 0;
    transform: translateX(-36px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.stagger-left .item {
  opacity: 0;
}
.stagger-left.inview .item {
  animation: slideLeftFadeSlow 1.6s cubic-bezier(0.18, 0.8, 0.18, 1) forwards;
}
.stagger-left.inview .item:nth-child(1) {
  animation-delay: 0.1s;
}
.stagger-left.inview .item:nth-child(2) {
  animation-delay: 0.45s;
}
.stagger-left.inview .item:nth-child(3) {
  animation-delay: 0.85s;
}
.stagger-left.inview .item:nth-child(4) {
  animation-delay: 1.25s;
}
.stagger-left.inview .item:nth-child(5) {
  animation-delay: 1.65s;
}

@media (prefers-reduced-motion: reduce) {
  .stagger-left .item {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }
}


@media (max-width: 768px) {
  .hero-uni {
    justify-content: center;
    text-align: center;
    padding: 0 6%;
  }
  .hero-uni .hero-chips {
    grid-template-columns: 1fr;
    width: min(100%, 360px);
  }
  .hero-uni .hero-buttons {
    justify-content: center;
  }
  .section-contact .content .description {
    max-width: 100%;
  }
  .section-contact .hire-us {
    max-width: 100%;
    border-radius: 20px;
    padding: 16px;
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
}

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

@media (max-width: 720px) {
  .svc-tags {
    grid-template-columns: 1fr;
  }
}





.wave-bottom,
.wave-top {
  position: relative;
  isolation: isolate;
}


.wave-bottom {
  background: linear-gradient(
    to bottom,
    transparent 0,
    rgba(227, 232, 242, 0.35) 100%
  );
}
.wave-top {
  background: linear-gradient(
    to top,
    transparent 0,
    rgba(227, 232, 242, 0.35) 100%
  );
}
iframe {
  border-radius: 20px;
}


.wave-bottom::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 160px;
  background: url("data:image/svg+xml;utf8,\
    <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 240' preserveAspectRatio='none'>\
      <defs>\
        <linearGradient id='g' x1='0' y1='0' x2='0' y2='1'>\
          <stop offset='0%'  stop-color='%23f4f7fb'/>\
          <stop offset='100%' stop-color='%23e3e8f2'/>\
        </linearGradient>\
        <filter id='ds' x='-20%' y='-20%' width='140%' height='140%'>\
          <feDropShadow dx='0' dy='6' stdDeviation='10' flood-color='rgba(0,0,0,0.18)'/>\
        </filter>\
      </defs>\
      <path filter='url(%23ds)' fill='url(%23g)' stroke='%23cfd6e3' stroke-width='1' \
            d='M0,120 C280,200 720,40 1440,150 L1440,240 L0,240 Z'/>\
    </svg>")
    center / 100% 100% no-repeat;
  pointer-events: none;
  z-index: 0;
}


.wave-top::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 160px;
  transform: rotate(180deg);
  background: url("data:image/svg+xml;utf8,\
    <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 240' preserveAspectRatio='none'>\
      <defs>\
        <linearGradient id='g' x1='0' y1='0' x2='0' y2='1'>\
          <stop offset='0%'  stop-color='%23f4f7fb'/>\
          <stop offset='100%' stop-color='%23e3e8f2'/>\
        </linearGradient>\
        <filter id='ds' x='-20%' y='-20%' width='140%' height='140%'>\
          <feDropShadow dx='0' dy='6' stdDeviation='10' flood-color='rgba(0,0,0,0.18)'/>\
        </filter>\
      </defs>\
      <path filter='url(%23ds)' fill='url(%23g)' stroke='%23cfd6e3' stroke-width='1' \
            d='M0,120 C280,200 720,40 1440,150 L1440,240 L0,240 Z'/>\
    </svg>")
    center / 100% 100% no-repeat;
  pointer-events: none;
  z-index: 0;
}


.wave-bottom > *,
.wave-top > * {
  position: relative;
  z-index: 1;
}


.wave-strong.wave-bottom::after,
.wave-strong.wave-top::before {
  height: 200px; 
  filter: saturate(1.06) contrast(1.05);
}


@media (max-width: 768px) {
  .wave-bottom::after,
  .wave-top::before {
    height: 120px;
  }
  .wave-strong.wave-bottom::after,
  .wave-strong.wave-top::before {
    height: 150px;
  }
}


.navbar nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between; 
  width: 100%;
  max-width: 1200px; 
  margin: 0 auto;
  padding: 0 24px; 
  gap: 10px; 
  list-style: none;
}

.navbar .logo {
  margin-right: 30px;
  flex-shrink: 0; 
}

.navbar nav ul li:not(.logo) {
  margin-left: 24px;
}

.navbar .container {
  max-width: 100%;
  padding: 0;
  overflow: visible; 
}

.navbar nav ul {
  justify-content: center;
}


@media (max-width: 768px) {
  
  .navbar nav ul{
    position: absolute;
    top: 0;
    right: auto;                 
    left: 50%;                   
    transform: translateX(-50%); 
    width: 100%;

    flex-direction: column;
    align-items: center;         
    justify-content: center;
    text-align: center;

    margin-left: 0 !important;   
    gap: 20px;
    padding: 2rem 1.25rem;
  }

  
  .navbar .logo{
    order: -1;
    margin: 0 !important;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .navbar .logo a{ display:inline-block; }
  .navbar .logo img{
    display:block;
    margin-left: 40px;
    max-width: 160px;            
    height: auto;
  }

  
  .navbar nav ul li{
    margin: 0 !important;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .navbar nav ul li a{
    display: inline-block;
    padding: .35rem 0;
  }
}
