:root {
  --bg-body: #1e293b;
  --bg-footer: #1a2533;
  --bg-copyright: #e2e8f0;
  --text-color: white;
  --text-secondary: #d5e7f3;
  --text-hover: #57FFE3;
  --menu-link: white;
  --header-bg: #1E293B;
  --border-header: #006494;
  --btn-bg: #0077C0;
  --btn-sign: #1E293B;
  --btn-sign-text: white;
  --btn-sign-border: white;
  --btn-color: white;
  --btn-theme-bg: #204B6A;
  --btn-theme-border: #57FFE3;
  --btn-theme-color: #57FFE3;
  --text-white: white;
  --home-btn-color: #16529F;
  --footer-bg-color: #204B6A;
  --footer-text-color: #fff;
  --footer-input-bg: #243552;
  --font-family-base: 'Roboto', sans-serif;
  --font-weight-base: 500;
  --color-p: #cbd5e1;
  --error-inputs: #ffb1b1;
}

:root.light-theme {
  --bg-body: white;
  --bg-footer: #fff;
  --bg-copyright: #204B6A;

  --text-color: #1e293b;
  --text-secondary: #1e293b;
  --text-hover: #0077c0;
  --menu-link: #1e293b;
  --header-bg: #ffffff;
  --border-header: #cce5f8;
  --btn-bg: #0077c0;
  --btn-sign: white;
  --btn-sign-text: #0077c0;
  --btn-sign-border: #0077c0;
  --btn-color: white;
  --btn-theme-bg: #e2e8f0;
  --btn-theme-border: #0077c0;
  --btn-theme-color: #0077c0;
  --text-white: white;
  --home-btn-color: #16529F;
  --footer-bg-color: #16529F;
  --footer-text-color: #000;
  --footer-input-bg: #619FBD --font-family-base: 'Roboto', sans-serif;
  --font-weight-base: 500;
  --color-p: #204b6a;
  --error-inputs: #e90000;
}

@font-face {
  font-family: 'Mont-regular';
  src: url(../fonts/Montserrat/Montserrat-Regular.ttf);
}

@font-face {
  font-family: 'Mont-extra-italic';
  src: url(../fonts/Montserrat/Montserrat-ExtraLightItalic.ttf);
}

@font-face {
  font-family: 'Mont-semiBold';
  src: url(../fonts/Montserrat/Montserrat-SemiBold.ttf);
}

body.no-scroll {
  overflow: hidden;
}

* {
  font-family: 'Mont-regular' !important;
}

.input-error {
  text-align: start;
}

.extraLight {
  font-family: 'Mont-extra-italic' !important;
  border-bottom: 2px solid #ffffff;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 52px;
}

.semibold {
  font-family: 'Mont-semiBold' !important;
}

body {
  margin: 0;
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-base);
  background-color: var(--bg-body);
  color: var(--text-color);
}

/* logo style theme start */
img.dark-logo {
  height: 35px;
}

img.light-logo {
  display: none;
}

.light-theme img.light-logo {
  height: 35px;
}

.light-theme img.dark-logo {
  display: none;
}

/* logo style theme end */
/* header style start */
.hero-text {
  margin-top: 45px;
  margin-bottom: 25px;
}

.header-main {
  background-color: var(--header-bg);
  border-bottom: 1px solid var(--border-header);
  padding: 20px 40px;
  position: sticky !important;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.menu {
  display: flex;
  gap: 40px;
  font-weight: bold;
  color: var(--menu-link);
  margin-right: 10px;
}

.menu a {
  margin: auto;
  color: var(--menu-link);
  text-decoration: none;
  border-bottom: 0;
  padding-bottom: 3px;
  padding-right: 5px;
  padding-left: 5px;
}

.menu a.active-item {
  cursor: default;
  border-bottom: 1px solid var(--text-color);
}

.auth-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-right {
  background-color: var(--home-btn-color);
  border: 2px solid var(--home-btn-color);
  color: var(--btn-color);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
}

.btn-signin {
  background-color: var(--btn-sign);
  color: var(--btn-sign-text);
  border: 2px solid var(--btn-sign-border);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
}

#theme-icon {
  cursor: pointer;
  width: 42px;
  height: 28px;
  vertical-align: middle;
  margin-left: 12px;
  display: inline-block;
  transform: translateY(2px);
}

.text-color {
  color: var(--text-white);
}

.text-white {
  color: var(--text-color);
}

/* header style end */
.wrapper-page {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-left: 50px;
  padding-right: 50px;
  overflow-x: hidden;
  padding-bottom: 80px;
}

/* footer style start */
.footer {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-footer);
  border-top: 1px solid var(--border-header) !important;
}

.upper-footer {
  justify-content: space-between;
  display: flex;
  padding: 40px 60px;
  gap: 30px;
}

.footer-logo .hero-icon.dark-logo {
  max-width: 224px;
  height: auto;
  display: inline-block;
  width: 100%;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-column a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}

.footer-logo {
  height: auto;
  width: 100%;
  display: inline-block;
}

.company-name {
  font-weight: bold;
  font-size: 18px;
  color: var(--text-color);
}

.footer-column p {
  font-weight: bold;
  color: var(--text-color);
  font-size: 18px;
  margin-bottom: 5px;
  margin-top: 0;
}

.icon-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.4;
}

.icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-footer {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.footer-column a,
.footer-column span {
  text-decoration: none;
  color: var(--text-secondary);
  transition: color 0.2s;
  font-size: 18px;
}

.footer-column a:hover {
  color: var(--text-hover);
}

.copyright {
  background-color: var(--footer-bg-color);
  font-size: 14px;
  /* color: var(--footer-text-color); */
  color: white;
  text-align: center;
  padding: 15px 20px;
}

.light-icon-footer {
  display: inline-block;
}

.dark-icon-footer {
  display: none;
}

.light-theme .dark-icon-footer {
  display: inline-block;
}

.light-theme .light-icon-footer {
  display: none;
}

.icon-footer {
  width: 35px;
}

/* footer style end */

/* footer contact start */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
}

.footer-logo-wrap {
  display: block;
}

.footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  flex: 1 1 58%;
  justify-content: space-between;
  min-width: 300px;
}

.contact-form-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-form label {
  font-size: 22px;
  color: var(--footer-text-color);
  font-weight: 500;
  text-align: left;
}

.footer-contact-form input,
.footer-contact-form textarea {
  background: var(--footer-input-bg);
}

.footer-contact-form input,
.footer-contact-form textarea {
  padding: 10px;
  border: 1px solid #3b4a5a;
  color: var(--footer-text-color);
  font-size: 14px;
  border-radius: 4px;
  font-family: var(--font-family-base);
}

.footer-contact-form textarea {
  min-height: 100px;
  resize: none;
}

.footer-contact-form .footer-send-button {
  background-color: var(--btn-bg);
  color: white;
  font-weight: bold;
  font-size: 25px;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  margin-top: 10px;
}

.footer-contact-form .footer-send-button:hover {
  background-color: #005fa3;
}

.light-theme .footer-contact-form input,
.light-theme .footer-contact-form textarea {
  background-color: #f0f0f0;
  border: 1px solid #3b4a5a;
  color: #1e293b;
  font-size: 14px;
}

.light-theme .footer-contact-form input::placeholder,
.light-theme .footer-contact-form textarea::placeholder {
  color: #64748b;
}

.light-theme .footer-contact-form .footer-send-button {
  background-color: #0077c0;
  color: white;
}

.social-icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  padding: 20px 60px 0;
  margin-bottom: 18px;
}

.social-icons a img {
  width: 30px;
  height: 30px;
  transition: opacity 0.2s ease;
  object-fit: cover;
}

.social-icons a:hover img {
  opacity: 0.7;
}

/* Footer icon dark / light change */
.dark-theme-icon {
  display: inline-block;
}

.light-theme-icon {
  display: none;
}

.light-theme .dark-theme-icon {
  display: none;
}

.light-theme .light-theme-icon {
  display: inline-block;
}


#name::placeholder,
#email::placeholder,
#bussines::placeholder,
#message::placeholder {
  color: #b5b5b5;
}

.light-theme #name::placeholder,
.light-theme #email::placeholder,
.light-theme #bussines::placeholder,
.light-theme #message::placeholder {
  color: #656565;
}


/* Modal START */

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: var(--bg-footer);
  color: var(--text-color);
  border-radius: 16px;
  padding: 40px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  animation: modalFade 0.3s ease;
}

.modal-title {
  margin-top: 0;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  border-bottom: 1px solid #838383;
  padding-bottom: 8px;
}

.modal-form input,
.modal-form textarea {
  width: 100%;
  margin-bottom: 16px;
  padding: 12px;
  border: 1px solid #3b4a5a;
  border-radius: 6px;
  background-color: var(--footer-input-bg);
  color: var(--footer-text-color);
  font-family: var(--font-family-base);
  font-size: 14px;
}

.light-theme .modal-form input,
.light-theme .modal-form textarea {
  background-color: #e2e8f0;
  border: 1px solid var(--color-p);
  color: #1e293b;
}

.modal-form textarea {
  resize: none;
  height: 120px;
  font-size: 14px;
}

.modal-submit {
  background-color: var(--btn-bg);
  color: white;
  font-weight: bold;
  font-size: 14px;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.2s;
}

.modal-submit:hover {
  background-color: #005fa3;
}

.form-unified {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-unified label {
  font-size: 22px;
  color: var(--footer-text-color);
  font-weight: 500;
  text-align: left;
}

.form-unified input,
.form-unified textarea,
.form-unified select {
  flex-grow: 1;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid #3b4a5a;
  border-radius: 6px;
  background-color: var(--footer-input-bg);
  color: var(--footer-text-color);
  font-family: var(--font-family-base);
  font-size: 14px;
  /* appearance: none; */
}

.form-unified .captcha-input {
  width: 50px;
}

.select-wrapper {
  position: relative;
  display: flex;
  justify-content: stretch;
}

.select-wrapper .arrow-select-custom {
  pointer-events: none;
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(calc(-50% - 5px));
}

.form-unified textarea {
  resize: none;
  min-height: 100px;
}

.light-theme .form-unified input,
.light-theme .form-unified textarea,
.light-theme .form-unified select {
  background-color: #e2e8f0;
  border: 1px solid var(--color-p);
  color: #1e293b;
}

.form-unified button {
  background-color: var(--btn-bg);
  color: white;
  font-weight: bold;
  font-size: 14px;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.2s;
}

.form-unified button:hover {
  background-color: #005fa3;
}


.close-btn {
  position: absolute;
  top: -6px;
  right: 10px;
  font-size: 49px;
  color: var(--text-color);
  cursor: pointer;
}

@keyframes modalFade {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Modal END */

/* Swiper START */

.swiper {
  width: 90%;
  max-width: 1000px;
  height: 500px;
  margin: 0 auto;
  overflow: visible;
}

.swiper-slide {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Swiper END */
/* footer contact end */
@media (max-width: 1024px) {
  .header-inner {
    /* position: relative; */
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  #theme-icon {
    position: absolute;
    top: 6px;
    right: 20px;
    transform: translateY(0);
    margin-left: 0;
    z-index: 10;
  }

  .menu {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 16px;
  }

  .auth-buttons {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 10px;
  }

  .btn-signin,
  .btn-right {
    width: 100%;
    text-align: center;
  }

  .upper-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 40px 60px;
    gap: 40px;
  }

  .footer-column {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .footer-logo {
    text-align: center;
    max-width: 160px;
    margin-bottom: 20px;
  }
}

.pricing-btn-full {
  background-color: #204b6a;
  color: white;
  border-radius: 25px;
  padding: 10px 30px;
  font-weight: bold;
  font-size: 18px;
  width: 260px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease all;
}

.pricing-btn-full:hover {
  background-color: #005fa3;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 119, 192, 0.3);
}

@media (max-width: 768px) {
  .upper-footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 30px;
    padding: 0 16px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .footer-column {
    align-items: center;
  }

  .footer a {
    justify-content: center;
    font-size: 14px;
  }

  .footer-column p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    max-width: 120px;
  }

  .footer a {
    font-size: 13px;
  }

  .footer-column p {
    font-size: 14px;
  }

  .copyright {
    font-size: 12px;
  }

  .btn-right,
  .btn-signin {
    padding: 10px 14px;
    font-size: 14px;
  }

  .menu {
    gap: 12px;
  }

  .menu a {
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .upper-footer {
    flex-direction: column;
    align-items: center;
  }

  .footer-right {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }

  .footer-right .footer-column {
    align-items: center;
  }

  .footer-left {
    align-items: center;
    width: 100%;
  }

  .footer-contact-form {
    width: 100%;
  }
}

.partners-intro {
  max-width: 1100px;
  margin: 1rem auto 3rem;
  padding: 2.5rem 2rem;
  text-align: center;
  /* border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px); */
  animation: fadeInSlide 1.2s ease-out;
}

.partners-intro h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.6;
  font-weight: 300;
  color: var(--text-color) !important;
  ;
  letter-spacing: -0.3px;
}

.partners-intro .highlight {
  color: #4dabf7;
  font-weight: 800;
  font-family: 'Mont-extra-italic' !important;
}

/* Fade/slide animation */
@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments for .partners-intro */
@media (max-width: 1024px) {
  .partners-intro {
    padding: 2rem 1.5rem;
    margin: 3rem auto 2rem;
  }

  .partners-intro h1 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  .partners-intro {
    padding: 1.5rem 1rem;
    margin: 2rem auto;
  }

  .partners-intro h1 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .partners-intro {
    padding: 1.25rem 0.75rem;
  }

  .partners-intro h1 {
    font-size: clamp(1.25rem, 6vw, 1.75rem);
    line-height: 1.3;
  }
}

.swiper-button-prev {
  left: -160px !important;
  background-color: white;
  color: black !important;
  padding: 16px;
  border-radius: 50%;
  width: 40px !important;
  height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
}

.swiper-button-next {
  right: -160px !important;
  background-color: white;
  color: black !important;
  padding: 16px;
  border-radius: 50%;
  width: 40px !important;
  height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
}

.swiper-pagination {
  bottom: -35px !important;
}

.swiper-pagination-bullet {
  width: 20px !important;
  height: 20px !important;
  background: white !important;
}

.light-theme .swiper-button-prev {
  background-color: #243552;
  color: #ffffff !important;
}

.light-theme .swiper-button-next {
  background-color: #243552;
  color: #ffffff !important;
}

.light-theme .swiper-pagination-bullet {
  background: #243552 !important;
}


/* Cookies */
#cookie-consent {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #222;
  color: #fff;
  padding: 15px;
  text-align: center;
  z-index: 9999;
  font-size: 14px;
}

#cookie-consent .cookie-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

#cookie-consent button {
  background-color: #4caf50;
  border: none;
  color: white;
  padding: 8px 15px;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
}

#cookie-consent button:hover {
  background-color: #45a049;
}

/* hide Swiper for Mobile device */
@media (max-width: 768px) {
  .mySwiper {
    display: none !important;
  }
}

/* Modal-form */
.form-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.form-modal.hidden {
  display: none;
}

.form-modal-content {
  background-color: var(--btn-theme-bg);
  padding: 20px 30px;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  font-size: 18px;
}

.form-modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 24px;
  cursor: pointer;
}

.text-left {
  text-align: left;
}

#captcha-error {
  color: var(--error-inputs) !important;
  margin-top: -5px !important;
  margin-left: 170px;
}

.relative {
  position: relative;
}

.input-error {
  color: var(--error-inputs) !important;
  margin-top: -15px !important;
}

.form-modal #form-modal-text {
  color: var(--text-color);
  font-size: 16px;
}

#form-modal-icon {
  display: none !important;
}

#form-modal-message {
  background-color: #00000085;
}

.hamburger {
  display: none;
  font-size: 32px;
  background: none;
  border: none;
  color: var(--menu-link);
  cursor: pointer;
  z-index: 1001;
}

@media (max-width: 1024px) {
  .hamburger {
    display: block;
    position: absolute;
    top: 22px;
    right: 60px;
  }

  .theme-toggle {
    display: none !important;
  }

  #theme-icon {
    top: 85px;
    right: 60px;
    margin-left: 0;
    transform: none;
    z-index: 10;
  }

  .menu,
  .auth-buttons {
    display: none;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    background-color: var(--header-bg);
    padding: 20px 0;
  }

  .menu.show,
  .auth-buttons.show {
    display: flex;
  }
}