@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #111827;
    /* Dark background */
    color: #f3f4f6;
    /* Light text */
    overflow-x: hidden;
}

.hero-gradient-text {
    background: linear-gradient(to right, #facc15, #fb923c, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-button {
    background-color: #facc15;
    /* Yellow accent */
    color: #111827;
    /* Dark text for contrast */
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    /* Rounded corners */
}

.cta-button:hover {
    background-color: #eab308;
    /* Darker yellow on hover */
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(250, 204, 21, 0.3), 0 4px 6px -2px rgba(250, 204, 21, 0.2);
}

.section-title {
    font-size: 2.25rem;
    /* 36px */
    line-height: 2.5rem;
    /* 40px */
    font-weight: 700;
    margin-bottom: 1.5rem;
    /* 24px */
    text-align: center;
}

.card {
    background-color: #1f2937;
    /* Slightly lighter dark shade for cards */
    border-radius: 0.75rem;
    /* 12px */
    padding: 1.5rem;
    /* 24px */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

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

.testimonial-card {
    background-color: #1f2937;
    /* Consistent card background */
    padding: 1.5rem;
    /* 24px */
    border-radius: 0.75rem;
    /* 12px */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    /* Standard shadow */
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    /* For aligning image and text */
    flex-direction: column;
    /* Stack items vertically */
    align-items: center;
    /* Center items for a nicer look */
    text-align: center;
    /* Center text within the card */
}

.testimonial-card img {
    width: 80px;
    /* Size of the testimonial image */
    height: 80px;
    border-radius: 50%;
    /* Circular images */
    object-fit: cover;
    margin-bottom: 1rem;
    /* Space below image */
    border: 3px solid #facc15;
    /* Yellow border for emphasis */
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.animated-img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0.75rem;
    /* Rounded images */
}

.animated-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px rgba(250, 204, 21, 0.2);
    /* Subtle yellow glow on image hover */
}

/* --- NEWLY ADDED CSS FOR VIDEO SECTION START --- */
.video-placeholder-card {
    background-color: #1f2937;
    border-radius: 0.75rem;
    overflow: hidden;
    /* To keep image corners rounded */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    /* For play button overlay */
}

.video-placeholder-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 25px -5px rgba(250, 204, 21, 0.2), 0 8px 10px -6px rgba(250, 204, 21, 0.1);
}

.video-placeholder-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.video-placeholder-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    /* Common video aspect ratio */
    object-fit: cover;
    display: block;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: #facc15;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    cursor: pointer;
    /* Indicate it's clickable */
}

.video-placeholder-card:hover .video-play-button {
    background-color: rgba(250, 204, 21, 0.8);
    color: #111827;
}

.video-play-button svg {
    width: 30px;
    height: 30px;
}

/* --- NEWLY ADDED CSS FOR VIDEO SECTION END --- */

/* Responsive adjustments for navigation */
@media (max-width: 768px) {
    .mobile-menu-item {
        padding: 0.75rem 1rem;
        border-radius: 0.375rem;
        transition: background-color 0.2s ease;
    }

    .mobile-menu-item:hover {
        background-color: #374151;
        /* Slightly lighter gray for hover on mobile links */
    }

    .mobile-cta-button {
        display: block;
        width: 100%;
        text-align: center;
    }

    .testimonial-card {
        align-items: center;
        /* Center items on mobile too */
    }
}