@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Jost:ital,wght@0,100..900;1,100..900&family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap");

:root {
  --font-family-dm-sans: "DM Sans", sans-serif;
  --font-family-jost: "Jost", serif;
  --font-family-manrope: "Manrope", sans-serif;
  --font-family-montserrat: "Montserrat", sans-serif;
  --font-family-playfair: "Playfair Display", serif;
  --font-family-plus-jakarta: "Plus Jakarta Sans", sans-serif;
  --font-family-raleway: "Raleway", sans-serif;
  --font-family-josfin: "Josefin Sans", sans-serif;
  --theme-main-color: #1b3654;
  --theme-secondary-color: #f56c3c;
  --theme-tertiary-color: #5956e9;
  --header-height: 117px;
}

* {
  margin: 0;
  padding: 0;
  font-family: var(--font-family-josfin);
  color: #232233;
}

/* GLOBAL */

a {
  text-decoration: none !important;
}

.container-box {
  max-width: 1200px;
}

.container-1420 {
  max-width: 1420px;
  margin: auto;
}

.text-theme {
  color: var(--theme-main-color);
}

.text-theme-secondary {
  color: var(--theme-secondary-color);
}

.bg-theme-main {
  background-color: var(--theme-main-color);
}

.bg-theme-secondary {
  background-color: var(--theme-secondary-color);
}

.btn-theme-secondary,
.btn-theme-secondary-outline:hover {
  background-color: var(--theme-secondary-color) !important;
  border: 1px solid var(--theme-secondary-color) !important;
  color: var(--theme-main-color) !important;
  transition: all 0.3s ease;
}

.btn-theme-secondary:hover,
.btn-theme-secondary-outline {
  background-color: transparent !important;
  color: var(--theme-secondary-color) !important;
  border: 1px solid var(--theme-secondary-color) !important;
  transition: all 0.3s ease;
}

/* ------------------------------
              HEADER
------------------------------ */

/* TOP HEADER */
.top-header-link p,
.top-header-link svg path,
.top-social-links svg path {
  color: var(--theme-main-color);
  transition: all 0.3s ease;
}

.top-header-link:hover p,
.top-header-link:hover svg path,
.top-social-links:hover svg path {
  color: var(--theme-secondary-color);
  fill: var(--theme-secondary-color);
}

/* BOTTOM HEADER */
.logo {
  width: 60px;
  height: auto;
}

.bottom-header .nav-link {
  color: #232233;
}

.bottom-header .nav-link.active,
.bottom-header .nav-link:hover {
  color: var(--theme-main-color) !important;
  text-decoration: underline !important;
}
/* ---- */

.header-space{
  height: var(--header-height);
}

/* ------------------------------
              HEADER-HERO
------------------------------ */

.header-hero {
  background-image: url(../asset/home/hero.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top:  -117px;
  position: relative;
}

/* HERO */
.hero-left {
  height: 800px;
  padding-left: 3rem;
  padding-right: 2rem;
}
.hero-content-wrap {
  border: 18px solid var(--theme-main-color);
}
.hero-content {
  margin-left: -4rem;
  margin-right: 2rem;
}

.hero-mobile img {
  height: 650px;
}

/* ------------------------------
              ABOUT
------------------------------ */

.about-iphone {
  height: 650px;
}

/* ------------------------------
              Features
------------------------------ */
.features {
  background-image: url(../asset/home/features.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.feature-item-img img {
  width: 50px;
}

/* ------------------------------
              Download
------------------------------ */

.download-card {
  background: linear-gradient(90deg, #1b3654 0%, #0b4e98 100%);
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.1);
}

/* ------------------------------
              Usage
------------------------------ */
.usage {
  background-image: url(../asset/home/usage.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.usage-video {
  box-shadow: 0px 10px 100px rgba(0, 0, 0, 0.24);
}

.video-icon img {
  cursor: pointer;
  animation: heartbeat 3s infinite ease-in-out;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* ------------------------------
             Team
------------------------------ */
.team-card {
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.1);
  transform: scale(1);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: scale(1.05);
  box-shadow: 0px 1px 10px 2px #2732462f;
}

.team-social-links svg {
  width: 24px;
  height: 24px;
}

.team-line {
  height: 22px;
  width: 1px;
  background-color: #6c6c72;
}

.team-social-links svg path {
  fill: var(--theme-main-color);
  transition: all 0.3s ease;
}

.team-social-links:hover svg path {
  fill: var(--theme-tertiary-color);
}

/* ------------------------------
             Testimonial
------------------------------ */
.testimonialSwiper .swiper-slide {
  max-width: 650px;
}

.testimonial-card {
  box-shadow: 0px 10px 100px rgba(0, 0, 0, 0.096);
}

.swiper-pagination-bullet-active {
  transform: scale(1.4) !important;
}

.swiper-pagination-bullet {
  background-color: var(--theme-main-color) !important;
  opacity: 1 !important;
}

/* ------------------------------
           Footer
------------------------------ */

.footer-sticky {
  margin-top: -9rem;
  margin-bottom: 6rem;
  filter: drop-shadow(0px 10px 100px rgba(0, 0, 0, 0.11));
}

.footer-sticky-img {
  width: 80px;
  height: auto;
}

.footer-line {
  height: 100%;
  width: 2px;
  background-color: #6c6c72;
}

.news-submit-btn {
  background-color: var(--theme-main-color) !important;
  margin: 0.2rem;
  transition: all 0.3s ease;
}

.news-submit-btn:hover {
  background-color: var(--theme-secondary-color) !important;
}
.newsletter-form .form-control:focus {
  outline: 0;
  box-shadow: none;
}

.footer-social-links svg path {
  fill: #ffffff;
  transition: all 0.3s ease;
}

.footer-social-links svg {
  width: 24px;
  height: 24px;
}

.footer-social-links:hover svg path {
  fill: var(--theme-secondary-color);
}

.footer-link {
  color: #ffffff;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--theme-secondary-color);
  margin-left: 0.5rem;
}

/* ------------------------------
     Service Provider Popup
------------------------------ */
.upload-items {
  background: #f4f3f3;
  border: 1px dashed #abacad;
}

.service-popup-submit {
  background-color: var(--theme-main-color) !important;
  color: #ffffff !important;
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.upload-browse-icon {
  cursor: pointer;
}

.service-provider-form .form-label {
  font-size: 1.125rem;
  text-transform: uppercase;
  color: var(--theme-main-color);
  font-weight: 600;
}

.service-provider-form .form-control {
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(128, 128, 128, 0.164);
}

/* ------------------------------
     Register Success Popup
------------------------------ */

#registerModal .modal-dialog .modal-content {
  background: linear-gradient(178.32deg, #1b3654 1.51%, #3c78ba 195.13%);
}

/* ------------------------------
     Service Select Popup
------------------------------ */

.service-card {
    cursor: pointer;
    border: 2px solid var(--theme-main-color);
    transition: 0.3s;
    border-radius: 0.75rem;
    width: 100%;
}
.service-card.selected {
    background-color: var(--theme-main-color); 
    color: white;
    border-color: var(--theme-main-color);
}
.service-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 0.75rem;
}
.service-label {
    display: block;
    text-align: center;
    background: var(--theme-secondary-color);
    color: var(--theme-main-color);
    padding: 5px;
    font-weight: 600;;
    border-radius: 0.75rem;
    margin-top: 5px;
}
input[type="checkbox"] {
    display: none; 
}