/* Base styles from original, adjusted for new theme */

:where([class^="ri-"])::before {
    content: var(--ri-menu-line-content, "\f3c2");
    /* Default fallback for missing content property */
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #FFFFFF;
    /* Main background white */
    color: #333333;
    /* Dark text for light backgrounds */
    /* Removed custom cursor URL as it needs an image or complex JS */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: #1A202C;
    /* Dark headings */
}

.hero-section {
    background-image: url("image/bg.png");
    /* Changed to bg.png */
    background-size: cover;
    background-position: center;
    color: #FFFFFF;
    /* White text for hero section */
    position: relative;
    overflow: hidden;
}


/* Removed .hero-section::before as bg.png is now the main background */

.hero-section .container {
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: #FFFFFF;
    /* White background as per screenshots */
    backdrop-filter: none;
    /* No blur */
    color: #333333;
    /* Dark text for testimonial card */
    border-radius: 12px;
    /* Rounded corners as in screenshot */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
}

.testimonial-card p {
    color: #555555;
    /* Slightly lighter text for quotes */
}

.testimonial-card h4 {
    color: #1A202C;
    /* Dark text for names */
}

.testimonial-card p.text-sm {
    color: #777777;
    /* Lighter text for titles */
}

.service-card {
    background: #FFFFFF;
    /* White background as per screenshots */
    border: none;
    /* No border initially */
    transition: all 0.3s ease;
    border-radius: 12px;
    /* Rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
}

.service-card:hover {
    border-color: transparent;
    transform: translateY(-8px);
    /* More pronounced pop-up on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    /* Enhanced shadow on hover */
}

.service-card h3 {
    color: #1A202C;
    /* Dark text for service titles */
}

.service-card p {
    color: #555555;
    /* Lighter text for descriptions */
}

input,
textarea,
select {
    background-color: #F8F8F8;
    /* Light background for inputs */
    border: 1px solid #E0E0E0;
    /* Light border */
    color: #333333;
    /* Dark text for inputs */
}

input:focus,
textarea:focus,
select:focus {
    border-color: #8155e7;
    /* Primary purple border on focus */
    outline: none;
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
    /* Soft focus ring */
}

.purple-glow {
    /* Renamed from golden-glow */
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
    /* Purple glow effect */
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #8B5CF6;
    /* Primary purple underline */
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    /* Subtle text glow on hover */
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: none;
    /* Removed invert filter */
    color: #8B5CF6;
    /* Make calendar icon purple */
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.about-image {
    position: relative;
}


/* Removed about-image::before as it's not in the screenshot */


/* .about-image::before {
        content: '';
        position: absolute;
        top: -15px;
        left: -15px;
        width: 100%;
        height: 100%;
        border: 2px solid #FFB800;
        z-index: -1;
    } */

.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-8px) scale(1.1);
    /* More pronounced pop-up and slight scale */
    color: #8B5CF6;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.7);
    /* Glow effect on hover */
}

.service-option.selected {
    border-color: #8B5CF6 !important;
    background-color: rgba(139, 92, 246, 0.05) !important;
}


/* Specific icon color for the "About" section statistics */

.about-stats-card .text-3xl {
    color: #8B5CF6;
}

.about-stats-card p {
    color: #555555;
}

.about-stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    /* Enhanced shadow on hover */
    transition: all 0.3s ease;
}

.whatsapp-button {
    background-color: #25D366;
    /* WhatsApp green */
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 9999px;
    /* Pill shape */
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    transform: translateY(-3px) scale(1.02);
    /* Slight pop-up and scale */
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
    /* More intense shadow on hover */
}

.whatsapp-fixed-button {
    background-color: #25D366;
    width: 56px;
    height: 56px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp-fixed-button:hover {
    transform: scale(1.15);
    /* More pronounced scale */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    /* Enhanced shadow */
}

.testimonial-dot.active {
    background-color: #8B5CF6 !important;
    /* Active dot color */
}

.testimonial-dot {
    background-color: #D1D5DB !important;
    /* Inactive dot color */
}


/* Services section with dim bg.png */

#services {
    background-image: linear-gradient(rgba(249, 244, 255, 0.8), rgba(249, 244, 255, 0.8)), url('image/bg.png');
    /* Very dim bg.png with lightPurpleBg overlay */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#why-choose-us {
    background-image: linear-gradient(rgba(249, 244, 255, 0.8), rgba(249, 244, 255, 0.8)), url('image/bg.png');
    /* Very dim bg.png with lightPurpleBg overlay */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* Add the new footer styling here */

footer {
    background-image: linear-gradient(rgba(74, 0, 183, 0.2), rgba(74, 0, 183, 0.2)), url('image/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    /* Ensure text remains white on the dark background */
}


/* Testimonial slider animation classes */

.testimonial-track {
    /* Basic transition for sliding and fading */
    transition: transform 0.5s ease-in-out, opacity 0.2s ease-in-out;
}

.testimonial-track.animating-out {
    opacity: 0;
    transform: translateY(-20px);
    /* Move up slightly while fading out */
}

.testimonial-track.animating-in {
    opacity: 1;
    transform: translateY(0);
    /* Return to original position while fading in */
}


/* --- Scroll-triggered animation styles --- */


/* Define the keyframe animation for elements appearing */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Base style for elements that will animate on scroll - initially hidden below view */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    /* Smooth transition */
}


/* Style for when the element becomes visible in the viewport */

.animate-on-scroll.is-visible {
    animation: fadeInUp 0.8s ease-out forwards;
    /* Apply the animation */
}