﻿/* Core Styling & Variables */
:root {
    --primary-color: #5b21b6; /* Deep Purple */
    --primary-light: #ede9fe;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --bg-light: #f8fafc;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.02em;
}

.fs-7 {
    font-size: 0.85rem;
}

.fs-8 {
    font-size: 0.75rem;
}

/* Section Subtitles (E.g. THE PROBLEM & THE SOLUTION) */
.section-subtitle {
    color: #7c3aed; /* Vibrant Purple */
    font-weight: 700;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    text-transform: uppercase;
}

/* Hero Badge */
.subtitle-badge {
    background-color: var(--primary-light);
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 0.7rem;
    padding: 0.4rem 1rem;
    border-radius: 50rem;
    text-transform: uppercase;
}

/* Colors & Backgrounds */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-primary-subtle {
    background-color: var(--primary-light) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

    .btn-primary:hover {
        background-color: #4c1d95;
        border-color: #4c1d95;
    }

.bg-light-gradient {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.bg-light-gray {
    background-color: #fcfcfc;
}

.bg-danger-subtle {
    background-color: #fef2f2 !important;
}

/* Trusted By Avatar Group */
.avatar-group img {
    margin-left: -10px; /* Causes the overlap */
    transition: transform 0.2s ease;
}

    .avatar-group img:first-child {
        margin-left: 0;
    }

    .avatar-group img:hover {
        transform: translateY(-3px);
        z-index: 10 !important;
    }

/* 3D Shadows and Hover Effects */
.shadow-3d {
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15), 0 10px 20px -5px rgba(0, 0, 0, 0.05);
}

.shadow-3d-hover {
    transition: all 0.3s ease-in-out;
}

    .shadow-3d-hover:hover {
        transform: translateY(-5px);
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    }

.transition-all {
    transition: all 0.3s ease;
}


.feature-card {
    transition: all 0.3s ease;
    border-color: #e2e8f0 !important; /* Very subtle border */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02); /* Lighter shadow */
    padding: 1.5rem !important; /* Slightly tighter padding so they fit in one row */
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 15px -3px rgba(91, 33, 182, 0.1); /* Subtle purple glow on hover */
        border-color: var(--primary-light) !important;
    }

    /* Remove the solid background from the icon wrapper to match the original */
    .feature-card .icon-wrapper {
        background-color: transparent !important;
        color: var(--primary-color);
        transition: transform 0.3s ease;
    }

    .feature-card:hover .icon-wrapper {
        transform: scale(1.1);
        color: var(--primary-color) !important;
        background-color: transparent !important;
    }


#how-it-works .bg-light-gray {
    background-color: #fcfcfc; /* Needs to match the section background so the dashed line is hidden behind the numbers */
}
/* Typography Tweaks for tighter spaces */
.fs-8 {
    font-size: 0.8rem;
    line-height: 1.4;
}
/* Form Override */
input[type="text"].form-control,
input[type="email"].form-control {
    padding: 0.75rem 1rem;
}

input.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(91, 33, 182, 0.25);
    border-color: var(--primary-color);
}

/* Utilities */
.border-dashed {
    border-style: dashed !important;
}

.top-25 {
    top: 25%;
}

.start-10 {
    left: 10%;
}

.end-10 {
    right: 10%;
}

/* Floating Camera Fixes */
/*.floating-camera {
    max-width: 250px;*/ /* Made slightly larger to match design */
    /*height: auto;
    filter: drop-shadow(-10px 20px 15px rgba(0,0,0,0.15));
    transition: transform 0.4s ease;
    z-index: 5 !important;*/ /* Forces it above the card boundaries */
/*}*/

.card:hover .floating-camera {
    transform: translateY(-50%) scale(1.05);
}

/* Feature Card Spacing Fix */
.feature-card {
    transition: all 0.3s ease;
    border-color: #e2e8f0 !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    padding: 1.25rem !important; /* Reduced padding from 1.5rem so text doesn't wrap awkwardly */
}

    .feature-card .icon-wrapper {
        background-color: transparent !important;
        color: var(--primary-color);
        transition: transform 0.3s ease;
    }

/* Hover effects for buttons */
.btn-white:hover {
    background-color: #f8fafc !important;
    border-color: #94a3b8 !important;
}

/* Floating Camera Images for Cards */
.floating-camera {
    max-width: 220px;
    height: auto;
    /*filter: drop-shadow(-10px 20px 15px rgba(0,0,0,0.15));*/
    transition: transform 0.4s ease;
}

.card:hover .floating-camera {
    transform: translateY(-50%) scale(1.05);
}

 timeline icon box (matches design exactly) 
.timeline-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #f5f3ff;  very light purple fill 
    border: 2px solid #ddd6fe;  light purple outline 
    box-shadow: inset 0 0 0 4px #ffffff;  inner white ring effect 
    z-index: 2;
}

/* Footer Hover Effects */
.hover-primary:hover {
    color: var(--primary-color) !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.img-fluid {
    max-width: 100%;
    height: 355px;
}