body {
    font-family: 'Be Vietnam Pro', sans-serif;
    scroll-behavior: smooth;
}

.hero-title-logo {
    font-family: 'Playfair Display', serif;
    -webkit-text-stroke: 1px #1a1a1a;
    paint-order: stroke fill;
    color: transparent;
}

.section-title {
    @apply text-3xl md:text-4xl font-bold text-gray-900 text-center mb-4;
}

.section-subtitle {
    @apply text-base md:text-lg text-gray-600 text-center max-w-3xl mx-auto mb-12;
}

/* Phone Mockup Styling */
.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    margin: auto;
    border: 12px solid #333;
    border-radius: 40px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
    background: #fff;
}

.phone-mockup-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    background-color: #fff;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 20px;
    background: #333;
    border-radius: 0 0 10px 10px;
    z-index: 10;
}

/* Scroll Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Swiper custom styles */
.swiper-button-next, .swiper-button-prev {
    color: #111827 !important;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 9999px;
    width: 44px !important;
    height: 44px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px !important;
    font-weight: bold;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.07), 0 4px 6px -4px rgb(0 0 0 / 0.07);
}

.thumbnail {
    max-width: 800px;
    max-height: 600px;
    margin: auto;
    display: block;
}

.flex.items-center.justify-between {
    justify-content: flex-start;
}

.ml-10 {
    margin-left: 2.5rem !important;
}

.w-28 {
    width: 20rem !important;
}

.py-24 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.fixed-search-bar {
    position: fixed;
    top: 20px;
    right: 300px;
    z-index: 50;
}

@keyframes flashGrow {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.flash-grow {
    animation: flashGrow 1.2s ease-in-out infinite;
    display: inline-block;
}

@media (max-width: 640px) {
  .h-20 {
    height: 3rem !important;
  }
}

@media (max-width: 768px) {
  .h-20 {
    height: 3rem !important;
  }
}




