* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

.navbar {
  background-color: rgba(15, 23, 42, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: 64px;
  box-shadow: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
}
.navbar--scrolled {
  background-color: #1e293b;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.navbar__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: #f1f5f9;
  transition: color 0.2s ease;
}
.navbar__brand:hover {
  color: #38bdf8;
}
.navbar__logo {
  width: 36px;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 4px;
}
.navbar__company-name {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.navbar__nav {
  display: flex;
  align-items: center;
}
.navbar__links {
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
}
.navbar__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.navbar__burger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #f1f5f9;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.navbar__burger.is-open .navbar__burger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__burger.is-open .navbar__burger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar__burger.is-open .navbar__burger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.navbar__btn {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #f1f5f9;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
}
.navbar__btn:hover {
  color: #38bdf8;
  border-color: #38bdf8;
  background-color: rgba(56, 189, 248, 0.12);
}
.navbar__btn--cta {
  background-color: #38bdf8;
  color: #fff;
  border-color: #38bdf8;
}
.navbar__btn--cta:hover {
  background-color: #0ea5e9;
  border-color: #0ea5e9;
  color: #fff;
}

@keyframes scroll-dot {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  75% {
    opacity: 0;
    transform: translateX(-50%) translateY(16px);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(0);
  }
}
@keyframes fade-bounce {
  0%, 100% {
    opacity: 0.65;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(5px);
  }
}
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  background: linear-gradient(rgba(10, 18, 35, 0.45), rgba(10, 18, 35, 0.6)), url("/Images/cover picture.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero__content {
  max-width: 760px;
  padding: 0 2rem;
}
.hero__title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 1rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.hero__subtitle {
  font-size: 1.2rem;
  color: #cbd5e1;
  line-height: 1.6;
}
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 1;
  transition: opacity 0.4s ease;
  animation: fade-bounce 2.2s ease-in-out infinite;
  cursor: default;
}
.hero__scroll-indicator--hidden {
  opacity: 0;
  pointer-events: none;
}
.hero__scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(241, 245, 249, 0.65);
  border-radius: 13px;
  position: relative;
}
.hero__scroll-mouse::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background-color: rgba(241, 245, 249, 0.65);
  border-radius: 2px;
  animation: scroll-dot 1.8s ease-in-out infinite;
}
.hero__scroll-label {
  font-size: 0.7rem;
  color: rgba(241, 245, 249, 0.65);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro {
  background-color: #f8fafc;
  margin-top: 4rem;
  padding: 5rem 2rem;
}
.intro__container {
  max-width: 1000px;
  margin: 0 auto;
}
.intro__heading {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
}
.intro__body + .intro__heading {
  margin-top: 4rem;
}
.intro__body {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.8;
}
.intro__body + .intro__body {
  margin-top: 1rem;
}
.intro__vision {
  margin: 2.5rem 0 3.5rem;
  padding: 1.5rem 2rem;
  border-left: 4px solid #38bdf8;
  background-color: rgba(56, 189, 248, 0.06);
  border-radius: 0 8px 8px 0;
  font-size: 1.1rem;
  font-style: italic;
  color: #1e293b;
  line-height: 1.7;
}
.intro__split {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
}
.intro__slider {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  min-height: 320px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.intro__slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #1c1c1c 0%, #000000 100%);
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.intro__slide--active {
  transform: translateX(0);
}
.intro__slide--exiting {
  transform: translateX(-100%);
}
.intro__slide-header {
  padding: 1.75rem 2rem;
  background-color: rgba(0, 0, 0, 0.25);
  border-bottom: 2px solid #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.intro__slide-content {
  flex: 1;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.intro__slide-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #f1f5f9;
  line-height: 1.4;
}
.intro__slide-body {
  font-size: 0.9rem;
  color: rgba(241, 245, 249, 0.75);
  line-height: 1.75;
}
.intro__split-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  min-height: 220px;
}
.intro__split-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.intro__reasons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.intro__reason {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(30, 41, 59, 0.08);
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s ease;
}
.intro__reason:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}
.intro__reason-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: #38bdf8;
  min-width: 2.5rem;
  line-height: 1;
  padding-top: 2px;
}
.intro__reason-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.4rem;
}
.intro__reason-body {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.7;
}

.page {
  background-color: #f8fafc;
  min-height: calc(100vh - 64px);
}
.page__hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.page__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
}
.page__subtitle {
  font-size: 1.1rem;
  color: #64748b;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 280px;
  background-color: #1e293b;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding-top: 64px;
}
.sidebar.is-open {
  transform: translateX(0);
}
.sidebar__nav {
  padding: 1rem 0;
}
.sidebar__links {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.sidebar__link {
  display: block;
  padding: 1rem 1.5rem;
  color: #f1f5f9;
  text-decoration: none;
  font-size: 1rem;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.sidebar__link:hover {
  background-color: rgba(56, 189, 248, 0.08);
  color: #38bdf8;
}
.sidebar__link--cta {
  display: block;
  margin: 1.25rem 1.5rem 0;
  padding: 0.75rem 1.5rem;
  background-color: #38bdf8;
  color: #fff;
  border-radius: 6px;
  text-align: center;
  border-bottom: none;
  font-weight: 600;
}
.sidebar__link--cta:hover {
  background-color: #0ea5e9;
  color: #fff;
}
.sidebar__overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.sidebar__overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.footer {
  background-color: #1e293b;
  color: #f1f5f9;
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 2rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__logo {
  width: 48px;
  height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 6px;
}
.footer__company-name {
  font-size: 1rem;
  font-weight: 600;
  color: #f1f5f9;
}
.footer__tagline {
  font-size: 0.85rem;
  color: rgba(241, 245, 249, 0.55);
  line-height: 1.6;
  max-width: 280px;
}
.footer__nav-heading {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #38bdf8;
  margin-bottom: 1rem;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__link {
  font-size: 0.9rem;
  color: rgba(241, 245, 249, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__link:hover {
  color: #38bdf8;
}
.footer__contact-item {
  font-size: 0.88rem;
  color: rgba(241, 245, 249, 0.7);
  line-height: 1.6;
  margin-bottom: 0.4rem;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 2rem;
  text-align: center;
}
.footer__copyright {
  font-size: 0.8rem;
  color: rgba(241, 245, 249, 0.4);
}
.footer__contact-item--accent {
  color: #38bdf8;
}
.footer__social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(241, 245, 249, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}
.footer__social-link:hover {
  background-color: #38bdf8;
  border-color: #38bdf8;
  color: #fff;
}

.services {
  background-color: #f8fafc;
  padding: 3rem 2rem 5rem;
}
.services__container {
  max-width: 1000px;
  margin: 0 auto;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(30, 41, 59, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.service-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}
.service-card__icon {
  width: 54px;
  height: 54px;
  background-color: rgba(56, 189, 248, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #38bdf8;
}
.service-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
}
.service-card__body {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.75;
  flex: 1;
}
.service-card__cta {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #38bdf8;
  border: 1.5px solid #38bdf8;
  text-decoration: none;
  align-self: flex-start;
  transition: all 0.2s ease;
}
.service-card__cta:hover {
  background-color: #38bdf8;
  color: #fff;
}

@media (max-width: 768px) {
  .navbar__nav {
    display: none;
  }
  .navbar__burger {
    display: flex;
  }
  .navbar__company-name {
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 55vw;
  }
  .hero__title {
    font-size: 2.2rem;
  }
  .hero__subtitle {
    font-size: 1rem;
  }
  .intro {
    padding: 3rem 1.25rem;
  }
  .intro__heading {
    font-size: 1.5rem;
  }
  .intro__vision {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }
  .intro__split {
    flex-direction: column;
  }
  .intro__split-image {
    min-height: 260px;
  }
  .intro__reason {
    gap: 1rem;
  }
  .services {
    padding: 2rem 1.25rem 3rem;
  }
  .services__grid {
    grid-template-columns: 1fr;
  }
  .footer__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1.25rem 1.5rem;
  }
}/*# sourceMappingURL=style.css.map */