@charset "UTF-8";

/* Spacing for margin and padding */
/* Border Radius */
* {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
  background: linear-gradient(180deg, #BAE6FD 0%, #F0F9FF 30%, #FFFFFF 70%);
  color: #0F172A;
}

a {
  cursor: pointer;
}

p,
a {
  font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
  line-height: normal;
}

a {
  display: block;
  color: #000;
}

section:not(#hero) {
  padding: 32px 0;
}

img {
  width: 100%;
}

span {
  display: block;
}

/* Spacing for margin and padding */
/* Border Radius */
.section-heading {
  margin-bottom: 48px;
  text-align: center;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.01em;
}

.flex-container {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1170px;
  margin: auto;
}

.logo {
  height: 200px;
  width: auto;
}

.logo a {
  display: inline-block;
  height: 100%;
  width: auto;
}

.logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.mobile-nav-active,
.mobile-nav-inactive {
  transition: right 0.5s ease, opacity 0.5s ease;
}

@media only screen and (max-width: 567px) {
  .section-heading {
    font-size: 28px;
  }
}

/* Spacing for margin and padding */
/* Border Radius */
/* Spacing for margin and padding */
/* Border Radius */
.section-heading {
  margin-bottom: 48px;
  text-align: center;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.01em;
}

.flex-container {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1170px;
  margin: auto;
}

.logo {
  height: 200px;
  width: auto;
}

.logo a {
  display: inline-block;
  height: 100%;
  width: auto;
}

.logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.mobile-nav-active,
.mobile-nav-inactive {
  transition: right 0.5s ease, opacity 0.5s ease;
}

@media only screen and (max-width: 567px) {
  .section-heading {
    font-size: 28px;
  }
}

header {
  height: 80px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(14, 165, 233, 0.1);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}

header #header-container {
  height: 100%;
  max-width: 1170px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header #header-container .logo {
  height: 155px;
  position: relative;
  z-index: 1001;
  transition: transform 0.3s ease;
}

header #header-container .logo:hover {
  transform: scale(1.05);
}

header #header-container .logo a {
  display: inline-block;
  height: 100%;
  width: auto;
}

header #header-container .logo img {
  height: 100%;
  width: auto;
}

header #header-container #nav ul {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: center;
}

header #header-container #nav ul a {
  color: #0F172A;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

header #header-container #nav ul a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #0EA5E9;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

header #header-container #nav ul a:hover {
  color: #0EA5E9;
}

header #header-container #nav ul a:hover::after {
  width: 100%;
}

header #header-container #nav ul a.nav-active {
  color: #0EA5E9;
}

header #header-container #nav ul a.nav-active::after {
  width: 100%;
}

header #header-container #nav ul a.nav-cta {
  background: linear-gradient(135deg, #0EA5E9 0%, #38BDF8 100%);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

header #header-container #nav ul a.nav-cta::after {
  display: none;
}

header #header-container #nav ul a.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
  color: white;
}

#mobile-nav {
  display: none;
  width: 100%;
  height: 100vh;
  z-index: 2000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #0F172A;
  padding: 2rem;
  position: fixed;
  top: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobile-nav #nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

#mobile-nav #nav-header .logo {
  width: 200px;
  height: auto;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

#mobile-nav #nav-header .logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

#mobile-nav #nav-header #close-menu {
  width: 45px;
  height: 45px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#mobile-nav #nav-header #close-menu span {
  display: block;
  background-color: #0F172A;
  width: 20px;
  height: 2px;
  transition: 0.3s;
}

#mobile-nav #nav-header #close-menu span:first-child {
  transform: rotate(45deg) translateY(1px);
}

#mobile-nav #nav-header #close-menu span:last-child {
  transform: rotate(-45deg) translateY(-1px);
}

#mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#mobile-nav ul a {
  display: block;
  color: #0F172A;
  background: #f8fafc;
  padding: 1.25rem 1.5rem;
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(14, 165, 233, 0.05);
}

#mobile-nav ul a:hover {
  background: white;
  transform: translateX(10px);
  color: #0EA5E9;
  border-color: rgba(14, 165, 233, 0.2);
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.1);
}

#mobile-nav ul a.mobile-navlink-active {
  background: linear-gradient(135deg, #0EA5E9 0%, #2563EB 100%);
  color: white;
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
  border: none;
}

#hamburger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

#hamburger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #0F172A;
  transition: 0.3s;
}

.mobile-nav-inactive {
  right: -100%;
  opacity: 1;
}

.mobile-nav-active {
  opacity: 1;
  right: 0;
}

@media only screen and (max-width: 768px) {
  header {
    padding: 24px;
  }

  header #header-container .logo {
    height: 65px;
    width: auto;
    flex-shrink: 0;
  }

  header #header-container #nav {
    display: none;
  }

  header #header-container #header-cta a {
    display: none;
  }

  header #header-container #hamburger-menu {
    display: flex;
  }

  #mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    width: 100%;
  }
}

/* Spacing for margin and padding */
/* Border Radius */
#hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  color: #0F172A;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/hero-image.png");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: -1;
}

#hero-container {
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

#hero-container h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #0F172A;
  background: linear-gradient(90deg, #0F172A 0%, #0EA5E9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#hero-container p {
  font-size: 1.25rem;
  color: #334155;
  margin-bottom: 32px;
  line-height: 1.6;
}

#hero-container #cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

#hero-container #cta-buttons .cta-button {
  display: flex;
  align-items: center;
  background-color: #0F172A;
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  width: auto;
  min-width: 200px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#hero-container #cta-buttons .cta-button img {
  width: 24px;
  height: auto;
  margin-right: 12px;
}

#hero-container #cta-buttons .cta-button .button-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#hero-container #cta-buttons .cta-button .button-text span {
  font-size: 0.75rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

#hero-container #cta-buttons .cta-button .button-text h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

#hero-container #cta-buttons .cta-button:hover {
  transform: translateY(-4px);
  background-color: rgb(28.4210526316, 43.5789473684, 79.5789473684);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

#hero-container #cta-buttons .cta-button.google-play {
  background: linear-gradient(90deg, #0EA5E9 0%, #38BDF8 100%);
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

#hero-container #cta-buttons .cta-button.google-play:hover {
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.5);
}

#hero-container #cta-buttons .cta-button.app-store img {
  filter: brightness(0) invert(1);
}

#hero-container .hero-video-card {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 8px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.1);
  text-align: left;
  animation: fadeInUp 1s ease-out;
  cursor: pointer;
  transition: all 0.3s ease;
}

#hero-container .hero-video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

#hero-container .hero-video-card .video-wrapper {
  width: 65px;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #000;
}

#hero-container .hero-video-card .video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#hero-container .hero-video-card .video-wrapper .video-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  font-size: 7px;
  padding: 3px 0;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

#hero-container .hero-video-card .video-wrapper .video-label .verified-icon {
  color: #0EA5E9;
  font-size: 7px;
}

#hero-container .hero-video-card .video-info {
  padding-right: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#hero-container .hero-video-card .video-info p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0F172A;
  font-style: italic;
  background: none;
  -webkit-text-fill-color: initial;
}

#hero-container .hero-video-card .video-info .video-cta-btn {
  background: linear-gradient(135deg, #F43F5E 0%, #FB923C 100%);
  color: white;
  border: none;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  width: fit-content;
  animation: pulseBlink 2s infinite;
  box-shadow: 0 4px 12px rgba(244, 63, 94, 0.3);
  transition: all 0.3s ease;
}

#hero-container .hero-video-card .video-info .video-cta-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(244, 63, 94, 0.4);
}

@keyframes pulseBlink {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(244, 63, 94, 0.3);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(244, 63, 94, 0.5);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(244, 63, 94, 0.3);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media only screen and (max-width: 768px) {
  #hero {
    height: auto;
    padding: 120px 24px 80px;
  }

  #hero::before {
    opacity: 0.15;
  }

  #hero #cta-buttons {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    justify-content: center;
  }

  #hero #cta-buttons .cta-button {
    min-width: auto !important;
    padding: 8px 12px !important;
    flex: 1;
    max-width: 160px;
  }

  #hero #cta-buttons .cta-button img {
    width: 18px !important;
    margin-right: 8px !important;
  }

  #hero #cta-buttons .cta-button .button-text span {
    font-size: 0.6rem !important;
  }

  #hero #cta-buttons .cta-button .button-text h4 {
    font-size: 0.8rem !important;
  }
}

/* Spacing for margin and padding */
/* Border Radius */
#features {
  background-color: #000000;
  padding: 100px 0;
}

#features .section-heading {
  color: white;
}

#features-container .feature {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  background-color: #111111;
  border-color: rgba(255, 255, 255, 0.05);
}

#features-container .feature .card-header {
  color: white;
}

#features-container .feature p {
  color: rgba(255, 255, 255, 0.7);
}

#features-container .feature.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Spacing for margin and padding */
/* Border Radius */
#get-started {
  background-color: #E0F2FE;
  padding: 80px 0;
}

#get-started #get-started-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1170px;
  gap: 4rem;
  padding: 0 24px;
  margin: auto;
}

#get-started #get-started-container>div {
  flex: 1;
}

#get-started #get-started-container>div img {
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

#get-started .section-heading {
  color: #0F172A;
  margin-bottom: 32px;
  text-align: left;
  font-size: 2.5rem;
  font-weight: 800;
}

#get-started #steps-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#get-started #steps-container .step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

#get-started #steps-container .step .step-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #0EA5E9;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

#get-started #steps-container .step .step-icon img {
  width: 24px;
  filter: brightness(0) invert(1);
}

#get-started #steps-container .step div:last-child h4 {
  margin-bottom: 4px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0F172A;
}

#get-started #steps-container .step div:last-child p {
  color: #334155;
  font-size: 1rem;
  line-height: 1.5;
}

#get-started #steps-container .step.visible {
  opacity: 1;
  transform: translateX(0);
}

@media only screen and (max-width: 912px) {
  #get-started-container {
    flex-direction: column;
    padding: 16px;
  }

  #get-started-container>div h2 {
    font-size: 24px;
  }

  #get-started-container>div {
    width: 300px;
  }

  .step .step-icon {
    width: 40px;
    height: 40px;
  }
}

/* Spacing for margin and padding */
/* Border Radius */
#reviews .carousel-wrapper {
  position: relative;
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

#reviews .carousel-nav {
  background: white;
  border: 1px solid rgba(14, 165, 233, 0.2);
  color: #0EA5E9;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  z-index: 10;
  flex-shrink: 0;
}

#reviews .carousel-nav:hover {
  background: #0EA5E9;
  color: white;
  transform: scale(1.1);
}

#reviews .carousel-nav:active {
  transform: scale(0.95);
}

#reviews #carousel-container {
  flex-grow: 1;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

#reviews #reviews-container {
  display: flex;
  justify-content: start;
  gap: 16px;
  will-change: transform;
  padding: 16px 0;
}

#reviews #reviews-container .review {
  position: relative;
  padding: 32px;
  max-width: 320px;
  min-width: 320px;
  border-radius: 24px;
  user-select: none;
  color: #0F172A;
  background-color: white;
  border: 1px solid rgba(14, 165, 233, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transform: translateX(0);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#reviews #reviews-container .review:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(14, 165, 233, 0.15);
  border-color: rgba(14, 165, 233, 0.3);
}

#reviews #reviews-container .review .quote {
  position: absolute;
  width: 32px;
  right: 24px;
  top: 24px;
  opacity: 0.15;
}

#reviews #reviews-container .review-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

#reviews #reviews-container .avatar {
  width: 64px;
  height: 64px;
  margin: 0;
}

#reviews #reviews-container .avatar img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0EA5E9;
  padding: 2px;
}

#reviews #reviews-container .user {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin: 0;
}

#reviews #reviews-container .user h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0F172A;
  display: flex;
  align-items: center;
  gap: 5px;
}

#reviews #reviews-container .user h3::after {
  content: "✓";
  background: #0EA5E9;
  color: white;
  font-size: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#reviews #reviews-container .rating {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: #F59E0B;
  font-size: 0.9rem;
  gap: 5px;
}

#reviews #reviews-container .rating img {
  width: 14px;
  height: 14px;
}

#reviews #reviews-container .review-text {
  margin-top: 20px;
}

#reviews #reviews-container .review-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  font-style: italic;
  position: relative;
}

#reviews #reviews-container .review-text p::before {
  content: "“";
  font-size: 20px;
  color: #0EA5E9;
  margin-right: 4px;
}

@media only screen and (max-width: 567px) {
  #carousel-container {
    width: 324px;
  }
}

/* Spacing for margin and padding */
/* Border Radius */
footer {
  padding: 40px 0;
  background-color: #0F172A;
  color: white;
}

footer #footer-container {
  max-width: 1170px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding: 0 24px;
  align-items: start;
}

footer #footer-container .footer-column h3 {
  margin-bottom: 24px;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
}

footer #footer-container .footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer #footer-container .footer-column ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

footer #footer-container .footer-column ul a:hover {
  color: #0EA5E9;
  padding-left: 5px;
}

footer #footer-container .footer-brand .logo {
  height: 220px;
  margin-top: -40px;
  margin-bottom: -40px;
}

footer #footer-container .footer-brand .logo img {
  height: 100%;
  width: auto;
}

footer #footer-container .footer-brand p {
  margin-top: 0;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
}

footer #footer-container .footer-brand .footer-socials {
  display: flex;
  gap: 24px;
}

footer #footer-container .footer-brand .footer-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

footer #footer-container .footer-brand .footer-socials a img {
  width: 18px;
  filter: brightness(0) invert(1);
}

footer #footer-container .footer-brand .footer-socials a:hover {
  background: #0EA5E9;
  transform: translateY(-5px);
}

footer #footer-container .footer-contact .contact-item {
  margin-bottom: 24px;
}

footer #footer-container .footer-contact .contact-item span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #0EA5E9;
  font-weight: 700;
  margin-bottom: 4px;
}

footer #footer-container .footer-contact .contact-item a,
footer #footer-container .footer-contact .contact-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin: 0;
  transition: color 0.3s ease;
}

footer #footer-container .footer-contact .contact-item a:hover {
  color: white;
}

footer #footer-bottom {
  margin-top: 40px;
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}

@media only screen and (max-width: 992px) {
  footer #footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 540px) {
  footer #footer-container {
    grid-template-columns: 1fr;
  }
}

/* Spacing for margin and padding */
/* Border Radius */
.card {
  text-align: center;
  width: 320px;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(14, 165, 233, 0.1);
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.08);
  color: #0F172A;
  background-color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(14, 165, 233, 0.12);
}

.card .card-header {
  margin-bottom: 16px;
  font-size: 1.25rem;
  font-weight: 700;
}

.card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #0EA5E9 0%, #38BDF8 100%);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 16px rgba(14, 165, 233, 0.2);
}

.card .icon img {
  width: 32px;
  filter: brightness(0) invert(1);
}

.card p {
  color: #334155;
  font-size: 1rem;
  line-height: 1.6;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: white;
  width: 100%;
  max-width: 800px;
  max-height: 85vh;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(14, 165, 233, 0.2);
  animation: modalAppear 0.4s ease-out;
}

.modal-content .modal-header {
  padding: 24px 32px;
  background: linear-gradient(90deg, #0EA5E9 0%, #38BDF8 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}

.modal-content .modal-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0;
}

.modal-content .modal-header .close-modal {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  color: white;
  transition: all 0.3s ease;
}

.modal-content .modal-header .close-modal:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.modal-content .modal-body {
  padding: 32px;
  overflow-y: auto;
  font-size: 1rem;
  line-height: 1.8;
  color: #475569;
}

.modal-content .modal-body h3 {
  color: #0EA5E9;
  margin: 32px 0 16px;
  font-size: 1.25rem;
  font-weight: 700;
}

.modal-content .modal-body p {
  margin-bottom: 20px;
}

.modal-content .modal-body strong {
  color: #0EA5E9;
}

.modal-content .modal-body ul {
  margin-bottom: 24px;
  padding-left: 20px;
}

.modal-content .modal-body ul li {
  list-style: none;
  position: relative;
  margin-bottom: 12px;
  padding-left: 20px;
}

.modal-content .modal-body ul li::before {
  content: "✓";
  color: #0EA5E9;
  position: absolute;
  left: 0;
  font-weight: bold;
}

@keyframes modalAppear {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.video-modal-content {
  max-width: 400px !important;
  background: black !important;
}

.video-modal-content .modal-header {
  background: #0F172A !important;
}

.video-modal-content .modal-body {
  padding: 0 !important;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-modal-content .modal-body .modal-video-wrapper {
  width: 100%;
  height: 100%;
}

.video-modal-content .modal-body .modal-video-wrapper video {
  width: 100%;
  display: block;
  max-height: 70vh;
}

.contact-modal-content {
  max-width: 500px !important;
  background: white !important;
  border-radius: 30px !important;
  overflow: hidden;
}

.contact-modal-content .modal-header {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%) !important;
  padding: 25px !important;
}

.contact-modal-content .modal-header h2 {
  color: white !important;
  font-size: 1.5rem;
}

.contact-modal-content .modal-body {
  padding: 30px !important;
}

.contact-modal-content #contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-modal-content #contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-modal-content #contact-form .form-group label {
  font-weight: 700;
  font-size: 0.9rem;
  color: #334155;
}

.contact-modal-content #contact-form .form-group input,
.contact-modal-content #contact-form .form-group textarea {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-modal-content #contact-form .form-group input:focus,
.contact-modal-content #contact-form .form-group textarea:focus {
  outline: none;
  border-color: #0EA5E9;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.contact-modal-content #contact-form .submit-btn {
  background: linear-gradient(135deg, #0EA5E9 0%, #2563EB 100%);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.contact-modal-content #contact-form .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

.contact-modal-content #contact-form .submit-btn:active {
  transform: translateY(0);
}

.contact-modal-content #contact-form #form-status {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-modal-content #contact-form #form-status.success {
  color: #10B981;
}

.contact-modal-content #contact-form #form-status.error {
  color: #EF4444;
}

/*# sourceMappingURL=main.css.map */