* {
  margin: 0;
  padding: 0;
}

.learn-more-btn {
  position: relative;
  background: linear-gradient(#ffbe00, #ffbe00) padding-box,
    linear-gradient(90deg, #fdce09 0%, #f79820 100%) border-box;
  border: 2px solid transparent;
  border-radius: 300px;
  padding: 20px 60px;
  height: 65px;
  width: 261px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: inset 0px -6px 4px 0px rgba(255, 236, 128, 0.25);
  transition: all 0.4s ease;
  opacity: 1;
}

.learn-more-btn:hover {
  background: linear-gradient(180deg, #007ae2 0%, #02437c 100%) padding-box,
    linear-gradient(90deg, #fdce09 0%, #f79820 100%) border-box;
  color: #f79820;
}

.learn-more-btn span {
  transition: all 0.4s ease;
}

.learn-more-btn:hover span {
  color: #f79820;
  transform: translateX(-5px);
}

.learn-more-btn i {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s ease;
  color: #00437c;
  font-size: 18px;
}

.learn-more-btn:hover i {
  opacity: 1;
  transform: translateX(0);
  color: #f79820;
}

@keyframes scan {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.8;
  }
  22% {
    opacity: 1;
  }
  45% {
    transform: translateX(-50%) translateY(418px);
    opacity: 0.2;
  }
  50% {
    transform: translateX(-50%) translateY(418px);
    opacity: 0;
  }
  55% {
    transform: translateX(-50%) translateY(418px);
    opacity: 0.2;
  }
  78% {
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.8;
  }
}

.scan-container {
  position: relative;
  width: 401px;
  height: 418px;
  overflow: hidden;
  border-radius: 8px;
}

.scan-outline {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 401px;
  height: 418px;
  z-index: 2;
}

.scan-outline::before,
.scan-outline::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border: 4px solid white;
}

/* Top-left corner */
.scan-outline::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
  border-radius: 8px 0 0 0;
}

/* Top-right corner */
.scan-outline::after {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
  border-radius: 0 8px 0 0;
}

.scan-corner-bottom-left,
.scan-corner-bottom-right {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 4px solid white;
  z-index: 2;
}

/* Bottom-left corner */
.scan-corner-bottom-left {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
  border-radius: 0 0 0 8px;
}

/* Bottom-right corner */
.scan-corner-bottom-right {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
  border-radius: 0 0 8px 0;
}

.scan-beam {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 401px;
  height: 418px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.18) 39.5%,
    rgba(255, 255, 255, 0) 100%
  );
  border-top: 2px solid white;
  border-radius: 8px 8px 0 0;
  animation: scan 3s ease-in-out infinite;
  z-index: 3;
}

.woman-image-container {
  position: relative;
  width: 622.955px;
  height: 755px;
  /* overflow: hidden; */
}

.woman-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Hero Section Responsive Styles */
@media (max-width: 1024px) {
  .woman-image-container {
    width: 450px;
    height: 545px;
  }

  .scan-container {
    width: 290px;
    height: 302px;
    top: 58px !important;
    left: 107px !important;
  }

  .scan-outline {
    width: 290px;
    height: 302px;
  }

  .scan-beam {
    width: 290px;
    height: 302px;
  }

  .scan-outline::before,
  .scan-outline::after,
  .scan-corner-bottom-left,
  .scan-corner-bottom-right {
    width: 50px;
    height: 50px;
    border-width: 3px;
  }
}

@media (max-width: 768px) {
  .woman-image-container {
    width: 400px;
    height: 485px;
  }

  .scan-container {
    width: 260px;
    height: 271px;
    top: 14px !important;
    left: 94px !important;
  }

  .scan-outline {
    width: 260px;
    height: 271px;
  }

  .scan-beam {
    width: 260px;
    height: 271px;
  }

  .scan-outline::before,
  .scan-outline::after,
  .scan-corner-bottom-left,
  .scan-corner-bottom-right {
    width: 40px;
    height: 40px;
    border-width: 3px;
  }
}

@media (max-width: 480px) {
  .woman-image-container {
    width: 280px;
    height: 340px;
  }

  .scan-container {
    width: 180px;
    height: 188px;
    top: 10px !important;
    left: 65px !important;
  }

  .scan-outline {
    width: 180px;
    height: 188px;
  }

  .scan-beam {
    width: 180px;
    height: 188px;
  }

  .scan-outline::before,
  .scan-outline::after,
  .scan-corner-bottom-left,
  .scan-corner-bottom-right {
    width: 30px;
    height: 30px;
    border-width: 2px;
  }
}

/* Data Flow Section Styles */
@keyframes arrow-flow {
  0% {
    stroke-dashoffset: 20;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

.flow-arrow {
  stroke-dasharray: 10 5;
  stroke-dashoffset: 20;
  animation: arrow-flow 1.5s linear infinite;
}

.flow-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flow-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.cloud-card {
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(255, 165, 0, 0.3);
}

.therap-card {
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(255, 190, 0, 0.3);
}

/* Mobile Arrow Styles */
.mobile-arrow {
  display: none;
}

@media (max-width: 1023px) {
  .flow-card,
  .therap-card,
  .cloud-card {
    margin-bottom: 0 !important;
  }

  .flow-card,
  .therap-card {
    width: 100%;
    max-width: 320px;
    height: 200px;
  }

  .cloud-card {
    width: 100%;
    max-width: 200px;
    height: 200px;
  }

  .mobile-arrow {
    display: flex;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .flow-card,
  .therap-card {
    max-width: 280px;
    height: 180px;
    padding: 16px;
  }

  .cloud-card {
    max-width: 180px;
    height: 180px;
  }

  .cloud-card svg {
    transform: scale(0.85);
  }

  .mobile-arrow {
    width: 50px;
    height: 50px;
  }
}

/* Features Slider Styles */
.slider-container {
  position: relative;
  overflow: hidden;
  height: 420px;
  width: 100%;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 0 80px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 1;
}

.slide > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s,
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.slide.active > * {
  opacity: 1;
  transform: translateY(0);
}

.feature-icon-circle {
  width: 240px;
  height: 240px;
  min-width: 240px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffa500 0%, #ffd700 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(255, 165, 0, 0.3);
  flex-shrink: 0;
}

.progress-indicator {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}

.progress-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #d3d3d3;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  pointer-events: auto;
  flex-shrink: 0;
}

.progress-line {
  width: 4px;
  height: 40px;
  background: #e0e0e0;
  flex-shrink: 0;
  margin: 8px 0;
}

.progress-dot:hover {
  background: #7a9bb8;
  transform: scale(1.2);
  box-shadow: 0 2px 8px rgba(0, 67, 124, 0.3);
}

.progress-dot.active {
  background: #00437c;
  width: 16px;
  height: 50px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 67, 124, 0.4);
}

/* Slider Responsive Styles */
@media (max-width: 1280px) {
  .slide {
    padding: 0 60px;
    gap: 50px;
  }

  .feature-icon-circle {
    width: 220px;
    height: 220px;
    min-width: 220px;
  }

  .feature-icon-circle svg {
    transform: scale(0.92);
  }

  .progress-indicator {
    left: 30px;
  }
}

@media (max-width: 1024px) {
  .slider-container {
    height: 400px;
  }

  .slide {
    gap: 40px;
    padding: 0 40px;
  }

  .feature-icon-circle {
    width: 200px;
    height: 200px;
    min-width: 200px;
  }

  .feature-icon-circle svg {
    transform: scale(0.85);
  }

  .slide h3 {
    font-size: 36px !important;
  }

  .slide p {
    font-size: 19px !important;
  }

  .progress-indicator {
    left: 20px;
  }

  .progress-line {
    height: 35px;
    margin: 6px 0;
  }

  .progress-dot.active {
    width: 16px;
    height: 45px;
  }
}

@media (max-width: 900px) {
  .slide {
    padding: 0 30px;
    gap: 30px;
  }

  .feature-icon-circle {
    width: 180px;
    height: 180px;
    min-width: 180px;
  }

  .feature-icon-circle svg {
    transform: scale(0.75);
  }

  .slide h3 {
    font-size: 32px !important;
  }

  .slide p {
    font-size: 18px !important;
  }
}

@media (max-width: 768px) {
  .slider-container {
    height: 470px;
    padding-bottom: 60px;
  }

  .slide {
    height: 410px;
    flex-direction: column;
    gap: 32px;
    padding: 30px 24px 0;
  }

  .feature-icon-circle {
    width: 180px;
    height: 180px;
    min-width: 180px;
  }

  .feature-icon-circle svg {
    transform: scale(0.75);
  }

  .slide h3 {
    font-size: 32px !important;
    text-align: center;
  }

  .slide p {
    font-size: 18px !important;
    text-align: center;
    max-width: 100%;
  }

  /* Horizontal progress indicator for mobile */
  .progress-indicator {
    flex-direction: row;
    left: 50%;
    top: auto;
    bottom: 20px;
    transform: translateX(-50%);
    gap: 0;
    pointer-events: none;
  }

  .progress-line {
    width: 35px;
    height: 3px;
    background: #e0e0e0;
    margin: 0 6px;
  }

  .progress-dot {
    width: 12px;
    height: 12px;
  }

  .progress-dot.active {
    width: 50px;
    height: 12px;
    border-radius: 6px;
  }

  .progress-dot:hover {
    transform: scale(1.2);
  }
}

@media (max-width: 640px) {
  .slider-container {
    height: 440px;
    padding-bottom: 50px;
  }

  .slide {
    height: 390px;
    padding: 25px 20px 0;
    gap: 28px;
  }

  .feature-icon-circle {
    width: 150px;
    height: 150px;
    min-width: 150px;
  }

  .feature-icon-circle svg {
    transform: scale(0.65);
  }

  .slide h3 {
    font-size: 28px !important;
  }

  .slide p {
    font-size: 17px !important;
    line-height: 1.6;
  }

  .progress-indicator {
    bottom: 18px;
  }

  .progress-line {
    width: 28px;
    margin: 0 5px;
  }

  .progress-dot.active {
    width: 45px;
    height: 12px;
  }
}

@media (max-width: 480px) {
  .slider-container {
    height: 410px;
    padding-bottom: 45px;
  }

  .slide {
    height: 365px;
    padding: 20px 16px 0;
    gap: 24px;
  }

  .feature-icon-circle {
    width: 130px;
    height: 130px;
    min-width: 130px;
  }

  .feature-icon-circle svg {
    transform: scale(0.58);
  }

  .slide h3 {
    font-size: 26px !important;
    margin-bottom: 12px !important;
  }

  .slide p {
    font-size: 16px !important;
    line-height: 1.5;
  }

  .progress-indicator {
    bottom: 15px;
  }

  .progress-dot {
    width: 10px;
    height: 10px;
  }

  .progress-dot.active {
    width: 40px;
    height: 10px;
    border-radius: 5px;
  }

  .progress-line {
    width: 22px;
    height: 2.5px;
    margin: 0 4px;
  }
}

@media (max-width: 360px) {
  .slider-container {
    height: 390px;
    padding-bottom: 40px;
  }

  .slide {
    height: 350px;
    padding: 18px 12px 0;
    gap: 20px;
  }

  .feature-icon-circle {
    width: 110px;
    height: 110px;
    min-width: 110px;
  }

  .feature-icon-circle svg {
    transform: scale(0.5);
  }

  .slide h3 {
    font-size: 24px !important;
    margin-bottom: 10px !important;
  }

  .slide p {
    font-size: 15px !important;
  }

  .progress-indicator {
    bottom: 12px;
  }

  .progress-dot {
    width: 9px;
    height: 9px;
  }

  .progress-dot.active {
    width: 35px;
    height: 9px;
    border-radius: 4.5px;
  }

  .progress-line {
    width: 18px;
    height: 2px;
    margin: 0 3px;
  }
}

/* Phone Mockup Section Styles */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.phone-mockup-container {
  animation: float 6s ease-in-out infinite;
}

.phone-image {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.phone-image:hover {
  transform: scale(1.05);
}

.content-box {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.content-box.left {
  animation-delay: 0.2s;
}

.content-box.right {
  animation-delay: 0.4s;
}

.content-box:hover {
  transform: translateY(-10px);
  transition: transform 0.3s ease;
}

/* Responsive Navbar Styles */
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInStagger {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1024px) {
  .menu-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    box-shadow: -10px 0 30px rgba(0, 67, 124, 0.15);
    transition: right 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1000;
    overflow-y: auto;
    opacity: 0;
  }

  .menu-links.active {
    right: 0;
    animation: slideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  .menu-links.active .nav-link,
  .menu-links.active .dropdown-btn,
  .menu-links.active .dropdown-container {
    animation: fadeInStagger 0.5s ease-out forwards;
    opacity: 0;
  }

  .menu-links.active .dropdown-container:nth-child(1) {
    animation-delay: 0.1s;
  }

  .menu-links.active .nav-link:nth-child(2),
  .menu-links.active a:nth-child(2) {
    animation-delay: 0.2s;
  }

  .menu-links.active .nav-link:nth-child(3),
  .menu-links.active a:nth-child(3) {
    animation-delay: 0.3s;
  }

  .menu-links .nav-link,
  .menu-links .dropdown-btn {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 20px;
    margin-bottom: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
  }

  .menu-links .nav-link:hover,
  .menu-links .dropdown-btn:hover {
    transform: translateX(5px);
    background: rgba(255, 190, 0, 0.1);
  }

  .dropdown-arrow {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-shrink: 0;
  }

  .dropdown-arrow path {
    fill: #0a4c7c !important;
  }

  .dropdown-item svg {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-shrink: 0;
  }

  .dropdown-item svg path {
    stroke: #0a4c7c !important;
  }

  .dropdown-menu {
    position: static !important;
    opacity: 0 !important;
    visibility: hidden !important;
    max-height: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0;
    padding: 0 !important;
    box-shadow: none;
    border: none;
    min-width: 100%;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .dropdown-menu.mobile-open {
    opacity: 1 !important;
    visibility: visible !important;
    max-height: 400px !important;
    height: auto !important;
    overflow: visible !important;
    margin-top: 4px;
    margin-bottom: 8px;
    padding: 16px 0;
    background: #ffffff !important;
    border-radius: 8px;
    position: relative;
  }

  /* Timeline Line for Mobile Menu */
  .dropdown-menu.mobile-open::before {
    content: "";
    position: absolute;
    left: 32px;
    top: 62px;
    height: calc(100% - 82px);
    width: 2px;
    background: linear-gradient(to bottom, #fdce09, #f79820);
    z-index: 1;
  }

  .dropdown-menu .dropdown-item {
    font-weight: 600;
    font-size: 20px;
    padding: 10px 20px 10px 56px;
    margin: 2px 0;
    border: none;
    background: rgba(255, 255, 255, 0);
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(-10px);
    position: relative;
  }

  /* Timeline Dots for Mobile Menu */
  .dropdown-menu.mobile-open .dropdown-item::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: linear-gradient(to right, #fdce09, #f79820);
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 2;
  }

  .dropdown-menu.mobile-open .dropdown-item {
    opacity: 1;
    transform: translateX(0);
  }

  .dropdown-menu.mobile-open .dropdown-item:nth-child(1) {
    transition-delay: 0.1s;
  }

  .dropdown-menu.mobile-open .dropdown-item:nth-child(2) {
    transition-delay: 0.15s;
  }

  .dropdown-menu.mobile-open .dropdown-item:nth-child(3) {
    transition-delay: 0.2s;
  }

  .dropdown-container {
    width: 100%;
    margin-bottom: 4px;
  }
}

/* Hamburger Animation */
.hamburger {
  transition: all 0.3s ease;
}

.hamburger-icon,
.close-icon {
  transition: all 0.3s ease;
}

.hamburger.active .hamburger-icon {
  display: none;
}

.hamburger.active .close-icon {
  display: block !important;
}

/* Desktop Dropdown Menu Styles */
@media (min-width: 1025px) {
  .dropdown-menu {
    min-width: 355px;
    padding: 0;
    gap: 0;
    position: absolute !important;
    top: calc(100% + 20px) !important;
    left: 0 !important;
  }

  .dropdown-container {
    position: relative;
  }
}

/* Mobile Menu Overlay */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 67, 124, 0.4);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

/* Desktop Menu Visibility */
@media (min-width: 1025px) {
  .hamburger {
    display: none !important;
  }

  .menu-links {
    display: flex !important;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    flex-direction: row;
    padding: 0;
    box-shadow: none;
  }
}

/* Small Mobile Adjustments */
@media (max-width: 480px) {
  nav {
    padding: 12px 20px !important;
  }

  .logo .text-xl {
    font-size: 18px;
  }

  .hamburger {
    display: flex !important;
  }
}

/* Show hamburger on mobile/tablet, hide on desktop */
@media (max-width: 1024px) {
  .hamburger {
    display: flex !important;
  }
}

@media (min-width: 1025px) {
  .hamburger {
    display: none !important;
  }
}

/* Check-in/Check-out Box Animations */
@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translate(80px, 40px);
  }
  25% {
    opacity: 1;
    transform: translate(0, 0);
  }
  75% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    transform: translate(80px, 40px);
  }
}

@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translate(-80px, 40px);
  }
  25% {
    opacity: 1;
    transform: translate(0, 0);
  }
  75% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    transform: translate(-80px, 40px);
  }
}

.check-in-box,
.check-out-box {
  opacity: 0;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.check-in-box {
  animation-name: slideInFromLeft;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-duration: 5s;
}

.check-out-box {
  animation-name: slideInFromRight;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-duration: 5s;
}

@media (max-width: 1024px) {
  .check-in-box {
    animation-delay: 0s;
  }
  .check-out-box {
    animation-delay: 0s;
  }
}

/* Default positioning for check-in/check-out boxes */
.check-in-box {
  top: 450px;
  left: -80px;
  width: 171px;
  height: 96px;
}

.check-out-box {
  top: 550px;
  right: -80px;
  width: 171px;
  height: 96px;
}

/* Responsive positioning for check-in/check-out boxes */
@media (max-width: 1440px) {
  .check-in-box {
    top: 400px !important;
    left: -60px !important;
    width: 165px !important;
    height: 92px !important;
  }
  .check-out-box {
    top: 300px !important;
    right: -100px !important;
    width: 165px !important;
    height: 92px !important;
  }
}

@media (max-width: 1280px) {
  .check-in-box {
    top: 300px !important;
    left: -60px !important;
    width: 165px !important;
    height: 92px !important;
  }
  .check-out-box {
    bottom: 320px !important;
    right: -10px !important;
    width: 155px !important;
    height: 88px !important;
  }
  .check-in-box .text-center p:first-child,
  .check-out-box .text-center p:first-child {
    font-size: 18px !important;
  }
  .check-in-box .text-center p:last-child,
  .check-out-box .text-center p:last-child {
    font-size: 18px !important;
  }
}

@media (max-width: 1023px) {
  .check-in-box {
    top: 300px !important;
    left: -60px !important;
    width: 165px !important;
    height: 92px !important;
  }
  .check-out-box {
    bottom: 250px !important;
    right: -100px !important;
    width: 140px !important;
    height: 80px !important;
  }
  .check-in-box .text-center p:first-child,
  .check-out-box .text-center p:first-child {
    font-size: 16px !important;
  }
  .check-in-box .text-center p:last-child,
  .check-out-box .text-center p:last-child {
    font-size: 16px !important;
  }
  @keyframes slideInFromLeft {
    0% {
      opacity: 0;
      transform: translate(60px, 30px);
    }
    25% {
      opacity: 1;
      transform: translate(0, 0);
    }
    75% {
      opacity: 1;
      transform: translate(0, 0);
    }
    100% {
      opacity: 0;
      transform: translate(60px, 30px);
    }
  }
  @keyframes slideInFromRight {
    0% {
      opacity: 0;
      transform: translate(-60px, 30px);
    }
    25% {
      opacity: 1;
      transform: translate(0, 0);
    }
    75% {
      opacity: 1;
      transform: translate(0, 0);
    }
    100% {
      opacity: 0;
      transform: translate(-60px, 30px);
    }
  }
}

@media (max-width: 767px) {
  .check-in-box {
    top: 280px !important;
    left: 20px !important;
    width: 125px !important;
    height: 72px !important;
  }
  .check-out-box {
    top: 220px !important;
    right: -80px !important;
    width: 125px !important;
    height: 72px !important;
  }
  .check-in-box .text-center p:first-child,
  .check-out-box .text-center p:first-child {
    font-size: 14px !important;
  }
  .check-in-box .text-center p:last-child,
  .check-out-box .text-center p:last-child {
    font-size: 14px !important;
  }
  @keyframes slideInFromLeft {
    0% {
      opacity: 0;
      transform: translate(100px, 60px);
    }
    25% {
      opacity: 1;
      transform: translate(0, 0);
    }
    75% {
      opacity: 1;
      transform: translate(0, 0);
    }
    100% {
      opacity: 0;
      transform: translate(100px, 60px);
    }
  }
  @keyframes slideInFromRight {
    0% {
      opacity: 0;
      transform: translate(-100px, 60px);
    }
    25% {
      opacity: 1;
      transform: translate(0, 0);
    }
    75% {
      opacity: 1;
      transform: translate(0, 0);
    }
    100% {
      opacity: 0;
      transform: translate(-100px, 60px);
    }
  }
}

@media (max-width: 640px) {
  .check-in-box {
    top: 160px !important;
    left: -60px !important;
    width: 110px !important;
    height: 65px !important;
  }
  .check-out-box {
    bottom: 160px !important;
    right: -60px !important;
    width: 110px !important;
    height: 65px !important;
  }
  .check-in-box .text-center p:first-child,
  .check-out-box .text-center p:first-child {
    font-size: 12px !important;
  }
  .check-in-box .text-center p:last-child,
  .check-out-box .text-center p:last-child {
    font-size: 12px !important;
  }
  @keyframes slideInFromLeft {
    0% {
      opacity: 0;
      transform: translate(80px, 50px);
    }
    25% {
      opacity: 1;
      transform: translate(0, 0);
    }
    75% {
      opacity: 1;
      transform: translate(0, 0);
    }
    100% {
      opacity: 0;
      transform: translate(80px, 50px);
    }
  }
  @keyframes slideInFromRight {
    0% {
      opacity: 0;
      transform: translate(-80px, 50px);
    }
    25% {
      opacity: 1;
      transform: translate(0, 0);
    }
    75% {
      opacity: 1;
      transform: translate(0, 0);
    }
    100% {
      opacity: 0;
      transform: translate(-80px, 50px);
    }
  }
}

@media (max-width: 480px) {
  .check-in-box {
    top: 130px !important;
    left: -50px !important;
    width: 95px !important;
    height: 58px !important;
  }
  .check-out-box {
    bottom: 130px !important;
    right: -50px !important;
    width: 95px !important;
    height: 58px !important;
  }
  .check-in-box .text-center p:first-child,
  .check-out-box .text-center p:first-child {
    font-size: 10px !important;
    margin-bottom: 2px !important;
  }
  .check-in-box .text-center p:last-child,
  .check-out-box .text-center p:last-child {
    font-size: 11px !important;
  }
  @keyframes slideInFromLeft {
    0% {
      opacity: 0;
      transform: translate(60px, 40px);
    }
    25% {
      opacity: 1;
      transform: translate(0, 0);
    }
    75% {
      opacity: 1;
      transform: translate(0, 0);
    }
    100% {
      opacity: 0;
      transform: translate(60px, 40px);
    }
  }
  @keyframes slideInFromRight {
    0% {
      opacity: 0;
      transform: translate(-60px, 40px);
    }
    25% {
      opacity: 1;
      transform: translate(0, 0);
    }
    75% {
      opacity: 1;
      transform: translate(0, 0);
    }
    100% {
      opacity: 0;
      transform: translate(-60px, 40px);
    }
  }
}

/* Card Gradient Styles */
.check-card {
  background: linear-gradient(135deg, #fff9e6 0%, #ffffff 50%, #fff9e6 100%);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  /* overflow: hidden; */
}

.check-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 3px;
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #f59e0b 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.glow-top-right {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: radial-gradient(
    circle,
    rgba(251, 191, 36, 0.4) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.glow-bottom-left {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  background: radial-gradient(
    circle,
    rgba(251, 191, 36, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}
