@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif !important;
}

body {
    font-family: 'Rubik', sans-serif !important;
}

input,
button,
textarea,
select,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
div {
    font-family: 'Rubik', sans-serif !important;
}

.mobile-menu {
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
    transform: translateX(0);
}

.screenshot-carousel {
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.screenshot-carousel::-webkit-scrollbar {
    display: none;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
}

.gradient-text {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: scale(1.02);
}

.stats-grid {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.pricing-card {
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: scale(1.03);
}

.custom-shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.pulse-animation-delay {
    animation: pulse 2s infinite;
    animation-delay: 1s;
}

/* Carousel Styles */
.app-screenshot-carousel .carousel-slides {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.carousel-dot {
    transition: background-color 0.3s ease;
}

.carousel-dot.active {
    background-color: #2563eb;
}

.carousel-prev,
.carousel-next {
    transition: opacity 0.3s ease;
}

.app-screenshot-carousel:hover .carousel-prev,
.app-screenshot-carousel:hover .carousel-next {
    opacity: 1;
}

.partner-section {
    padding: 5rem 0;
    background-color: white;
    overflow: hidden;
}

.partner-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.partner-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem auto;
}

.partner-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.partner-header p {
    font-size: 1.25rem;
    color: #4B5563;
}

.partner-scroll {
    display: flex;
    animation: scroll 30s linear infinite;
}

.partner-scroll:hover {
    animation-play-state: paused;
}

.partner-group {
    display: flex;
    align-items: center;
    margin: 0 2rem;
}

.partner-link {
    width: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 1.5rem;
}

.partner-image {
    height: 3rem;
    width: auto;
    object-fit: contain;
}
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;500;600;700&display=swap');

.font-playfair {
    font-family: 'Playfair Display', serif;
}

.font-poppins {
    font-family: 'Poppins', sans-serif;
}

.bg-pattern {
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}