@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;900&display=swap");
:root {
  --bg: #fff;
  --text-dark: #090c17;
  --text-1: #26253a;
  --text-2: #696a78;
  --text-3: #81808b;
  --text-4: #989aa4;
  --text-disabled: #bdbfca;
  --border: #bac4cc;
  --core: #d7d8e0;
  --core-2: #f7f9fa;
  --core-3: #eee;
  --primary: #233ebe;
  --primary-hover: #1d34a5;
  --secondary: #f76a29;
  --secondary-hover: #e74d06;
  --placeholder: #b5bdc5;
  --error: #f95555;
  --success: #26dd6f;
  --font-xxs: 0.625rem;
  --font-xs: 0.75rem;
  --font-sm: 0.875rem;
  --font-base: 1rem;
  --font-lg: 1.125rem;
  --font-xl: 1.25rem;
  --font-2xl: 1.5rem;
  --font-3xl: 1.75rem;
  --font-4xl: 2rem;
  --font-5xl: 2.25rem;
  --font-6xl: 2.5rem;
  --font-7xl: 2.75rem;
  --font-8xl: 3.25rem;
  --font-9xl: 4rem;
  --line-height-xs: 1rem;
  --line-height-sm: 1.25rem;
  --line-height-base: 1.5rem;
  --line-height-lg: 1.75rem;
  --line-height-xl: 1.75rem;
  --line-height-2xl: 2rem;
  --line-height-3xl: 2.5rem;
  --line-height-4xl: 2.625rem;
  --line-height-5xl: 2.75rem;
  --line-height-6xl: 3rem;
  --line-height-7xl: 3.125rem;
  --line-height-8xl: 3.875rem;
  --line-height-9xl: 4.25rem;
}

*,
*::after,
*::before {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  color: var(--text-1);
}

*,
*:focus,
*:active {
  outline: none;
}

*:not(i) {
  font-family: "Plus Jakarta Sans", sans-serif !important;
}

a {
  text-decoration: none;
}

button {
  outline: none;
}

::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--placeholder) !important;
  opacity: 1;
  /* Firefox */
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--placeholder) !important;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--placeholder) !important;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--placeholder) !important;
}

body {
  background-color: var(--bg);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.btn {
  transition: all 0.2s ease-in;
  display: inline-block;
  padding: 16px;
  border-radius: 8px;
  font-size: var(--font-base);
  line-height: var(--line-height-base);
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}
.btn-primary {
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #fff !important;
}
.btn-primary-border {
  border: 1px solid var(--primary);
  background: white;
  color: var(--primary) !important;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary-border:hover, .btn-primary-border:focus {
  border: 1px solid var(--primary-hover);
  background-color: var(--primary-hover);
  color: white !important;
}
.btn-secondary {
  border: 1px solid var(--secondary);
  background: var(--secondary);
  color: #fff !important;
}
.btn-secondary-border {
  border: 1px solid var(--secondary);
  background: white;
  color: var(--secondary) !important;
}
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary-border:hover, .btn-secondary-border:focus {
  border: 1px solid var(--secondary-hover);
  background-color: var(--secondary-hover);
  color: white !important;
}
.btn-disable, .btn-disable:hover, .btn-disable:focus {
  color: white;
  border: 1px solid var(--text-disabled);
  background: var(--text-disabled);
  cursor: not-allowed;
}

#topMenu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 24px 0;
  text-align: center;
  z-index: 9;
  background-color: rgba(255, 255, 255, 0.6);
  transition: background-color 0.3s ease;
}
#topMenu.scrolled {
  background-color: rgb(255, 255, 255); /* Fully opaque on scroll */
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 120px;
  gap: 32px;
}
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
nav ul li {
  display: inline;
  margin-left: 54px;
}
nav ul li a {
  font-size: var(--font-sm);
  line-height: var(--line-height-sm);
  font-weight: 400;
  color: var(--text-3);
  text-decoration: none;
  transition: all 200ms ease;
}
nav ul li a.active, nav ul li a:hover {
  color: var(--primary);
  font-weight: 700;
}

.nav-logo {
  margin-right: auto;
}

.nav-logo > a .mobile-logo {
  display: none;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  height: 100vh;
  padding: 0 120px;
  background: no-repeat url(images/hero.png) var(--bg);
  background-position: right center;
  background-size: auto 130%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
.hero > * {
  position: relative;
  z-index: 2; /* Ensures that the content is above the overlay */
  color: var(--text-1);
}
.hero h1 {
  font-size: var(--font-8xl);
  line-height: var(--line-height-8xl);
  font-weight: 400;
  margin-bottom: 42px;
}
.hero h1 span {
  color: var(--primary);
  font-weight: 600;
}
.hero p {
  font-size: var(--font-3xl);
  line-height: var(--line-height-3xl);
  font-weight: 200;
  max-width: 830px;
  margin: 0;
}
.hero-btn {
  margin-top: 64px;
}
.hero .hero-link {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-size: var(--font-2xl);
  line-height: var(--line-height-2xl);
  font-weight: 400;
  position: absolute;
  bottom: 36px;
  left: 120px;
}

.section {
  padding: 120px 120px 80px;
}
.section-title {
  font-size: var(--font-2xl);
  line-height: var(--line-height-2xl);
  color: var(--primary);
  font-weight: 400;
  margin-bottom: 16px;
}
.section-desc {
  font-size: var(--font-base);
  line-height: var(--line-height-base);
  color: var(--text-2);
  font-weight: 300;
  margin: 0 0 80px;
}

/* Video section */
.video-section {
  padding: 50px 90px 0 90px !important;
}
.video-section-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  background-color: rgba(35, 62, 190, 0.1);
  padding: 64px 32px;
  border-radius: 12px;
}
.video-section-wrapper .video-info .section-desc {
  margin-bottom: 32px !important;
  margin-top: 32px !important;
}
.video-section-wrapper .video-info .btn {
  min-width: 150px;
  padding: 12px !important;
  font-size: var(--font-sm);
  line-height: var(--line-height-sm);
}
.video-section #player {
  width: 100%;
  max-width: 900px;
  margin: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* Services */
.services {
  padding: 80px 120px 0 !important;
}

.service-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-container .service .service-title {
  font-size: var(--font-base);
  line-height: var(--line-height-base);
  font-weight: 700;
  margin: 24px 0 8px;
}
.service-container .service .service-desc {
  font-size: var(--font-sm);
  line-height: var(--line-height-sm);
  font-weight: 300;
  margin: 0;
}
.service-container .service .service-img-box img {
  width: 100%;
  height: 100%;
}

/* Meet the team */
.team {
  padding: 180px 0px 148px;
}
.team .section-header {
  padding: 0px 120px;
}
.team .section-header .section-desc {
  margin-bottom: 48px !important;
}

.swiper-container {
  padding: 32px;
  overflow: hidden;
}
.swiper-slide {
  width: 100%;
  height: unset !important;
  min-width: 600px;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 24px;
  border-radius: 16px;
  background: rgba(253, 254, 255, 0.2);
  box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.05);
}
.swiper-slide .slide-header {
  display: flex;
  align-items: center;
  gap: 8px;
}
.swiper-slide .slide-header .slide-img-box {
  overflow: hidden;
  border-radius: 100%;
  background: rgba(247, 106, 41, 0.2);
  width: 72px;
  height: 72px;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}
.swiper-slide .slide-header .slide-img-box img {
  width: 70px;
  height: 70px;
  margin: 8px auto 0;
}
.swiper-slide .slide-header h5 {
  font-size: var(--font-base);
  line-height: var(--line-height-base);
  font-weight: 700;
  margin: 0;
  color: var(--text-dark);
}
.swiper-slide .slide-header p {
  font-size: var(--font-base);
  line-height: var(--line-height-base);
  font-weight: 700;
  margin: 0;
  color: var(--text-4);
}
.swiper-slide .slide-desc {
  font-size: var(--font-base);
  line-height: var(--line-height-base);
  font-weight: 300;
  margin: 8px 0 0;
}

/* Contact Us */
.contact-us {
  display: flex;
  align-items: start;
  gap: 60px;
  padding: 80px 120px 180px;
}
.contact-us .section-info {
  max-width: 615px;
}
.contact-us .section-info .section-desc {
  margin-bottom: 47px;
}
.contact-us .section-info .section-info-img {
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.contact-us .section-info .section-info-img img {
  max-width: 100%;
}

.form-container {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}
.form-container form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 600px;
}
.form-container form .form-group {
  display: flex;
  gap: 16px;
}
.form-container form .form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.form-container form .form-field label span.required {
  color: var(--error);
}
.form-container form .form-field.text-area {
  grid-column: span 2;
}
.form-container form label {
  font-size: var(--font-base);
  line-height: var(--line-height-base);
  font-weight: 400;
  margin-bottom: 10px;
}
.form-container form input,
.form-container form textarea {
  font-size: var(--font-sm);
  line-height: var(--line-height-sm);
  font-weight: 400;
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s ease;
  font-family: "Plus Jakarta Sans", sans-serif !important;
}
.form-container form input:focus,
.form-container form textarea:focus {
  border-color: #4eabfd;
}
.form-container form textarea {
  resize: none;
  height: 118px;
}
.form-container form .btn {
  margin-top: 26px;
}
.form-container form .field-error {
  display: none;
  color: var(--error);
  font-size: var(--font-sm);
  line-height: var(--line-height-sm);
  margin-top: 8px;
  font-weight: 500;
}
.form-container form .field-error.visible {
  display: block;
}
.form-container .g-recaptcha {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

/* Footer */
.footer {
  background: var(--bg);
  color: #fff;
  text-align: center;
  padding: 24px 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer .footer-logo {
  width: 113px;
}
.footer .footer-logo img {
  width: 100%;
}
.footer .footer-info p {
  font-size: var(--font-sm);
  line-height: var(--line-height-sm);
  color: var(--text-2);
  font-weight: 400;
}
.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1rem;
}
.footer .footer-links ul li {
  font-size: var(--font-xs);
}
.footer .footer-links a {
  color: var(--primary);
  text-decoration: none;
  width: 24px;
  height: 24px;
  display: flex;
  width: 24px;
  height: 24px;
  justify-content: center;
  align-items: center;
  border-radius: 200px;
  background: rgba(35, 62, 190, 0.1);
  font-weight: 700;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  justify-content: center;
  align-items: center;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.modal .modal-content {
  background-color: #fff;
  margin: auto;
  padding: 32px;
  border: 1px solid #888;
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0px 8px 12px rgba(9, 30, 66, 0.15);
}
.modal .modal-header {
  display: flex;
  justify-content: end;
}
.modal .modal-body {
  padding: 30px 0 50px;
}
.modal .modal-body h3 {
  font-size: var(--font-2xl);
  font-weight: bold;
  color: var(--text-dark);
  margin: 16px 0;
  text-align: center;
}
.modal .modal-body p {
  font-size: var(--font-sm);
  line-height: var(--line-height-sm);
  color: var(--text-dark);
  text-align: center;
}
.modal .modal-icon {
  font-size: 56px;
  text-align: center;
  margin-bottom: 24px;
}
.modal .modal-icon.success {
  color: var(--success);
}
.modal .modal-icon.error {
  color: var(--error);
}

.close {
  color: #aaa;
  float: right;
  font-size: 18px;
  font-weight: bold;
}
.close:hover, .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
  transition: all 300ms ease-in;
}

@media (max-width: 1280px) {
  nav,
  .hero,
  .section,
  .video-section,
  .footer,
  .team .section-header {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .hero .hero-link {
    left: 50px;
  }
  .team {
    padding: 150px 0px 118px;
  }
}
@media (max-width: 1024px) {
  nav,
  .hero,
  .section,
  .footer,
  .team .section-header {
    padding-left: 32px;
    padding-right: 32px;
  }
  .hero .hero-link {
    left: 32px;
  }
  .video-section .video-section-wrapper {
    flex-direction: column;
    gap: 40px;
    padding: 32px 24px;
  }
  .service-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .btn {
    padding: 12px 16px;
    font-size: var(--font-sm);
    line-height: var(--line-height-sm);
  }
  nav,
  .hero,
  .section,
  .video-section,
  .footer {
    padding-left: 24px !important;
    padding-right: 24px !important;
    overflow-x: hidden;
  }
  #topMenu {
    padding: 16px 0;
    position: fixed;
  }
  .nav-logo {
    margin-right: 0;
  }
  .nav-logo > a {
    color: white;
    font-weight: 700;
  }
  .nav-logo > a .desktop-logo {
    display: none;
  }
  .nav-logo > a .mobile-logo {
    display: block;
  }
  nav ul {
    display: none;
    flex-direction: column;
    gap: 16px;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 0 24px 24px;
    margin: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
  }
  nav ul li {
    display: block;
    margin: 0 auto;
  }
  #nav-links.active {
    display: flex;
  }
  .mobile-menu {
    display: block;
    cursor: pointer;
    color: var(--text-3);
  }
  .hero {
    background: no-repeat url(images/hero.png) var(--bg);
    background-position: center right;
    background-size: auto 100%;
  }
  .hero h1 {
    font-size: var(--font-2xl);
    line-height: var(--line-height-2xl);
  }
  .hero p {
    font-size: var(--font-lg);
    line-height: var(--line-height-lg);
  }
  .hero .hero-link {
    font-size: var(--font-base);
    line-height: var(--line-height-base);
    left: 24px;
  }
  .video-section {
    padding: 24px !important;
  }
  .video-section .video-section .video-section-wrapper {
    padding: 24px 16px;
  }
  .video-section .video-section-wrapper .video-info .section-desc {
    margin-bottom: 24px !important;
    margin-top: 24px !important;
  }
  .service-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .services {
    padding-top: 24px !important;
  }
  .section {
    padding: 24px;
  }
  .section-desc {
    margin: 0 0 42px;
  }
  .team .section-header {
    padding-left: 0;
    padding-right: 0;
  }
  .swiper-slide {
    width: 100%;
    min-width: 100%;
  }
  .swiper-container {
    padding: 32px 0;
  }
  .contact-us {
    display: block;
  }
  .contact-us .section-info .section-desc {
    margin-bottom: 32px;
  }
  .contact-us .section-info .section-info-img img {
    display: none;
  }
  .form-container {
    display: block;
  }
  .form-container .form-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .modal .modal-content {
    max-width: 300px;
  }
  .modal .modal-body {
    padding: 30px 0;
  }
  .modal .modal-body h3 {
    font-size: var(--font-lg);
    font-weight: bold;
    color: var(--text-dark);
    margin: 16px 0;
    text-align: center;
  }
  .modal .modal-body p {
    font-size: var(--font-sm);
    line-height: var(--line-height-sm);
    color: var(--text-dark);
    text-align: center;
  }
  .footer {
    flex-direction: column;
    margin-top: 20px;
  }
}/*# sourceMappingURL=style.css.map */