:root {
    --primary-color: #51105c; /* Deep purple from stats section */
    --accent-blue: #5c6bc0;  /* Blue from buttons */
    --accent-pink: #e91e63;  /* Pink/Magenta accent */
    --accent-orange: #ff9800; /* Orange for 'fair and human' */
    --text-dark: #1a1a1a;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --bg-gradient-hero: linear-gradient(135deg, #fdf4ff 0%, #ffffff 100%);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
.text-danger {
    color: var(--accent-pink) !important;
}

.text-primary {
    color: var(--accent-blue) !important;
}

.text-warning {
    color: var(--accent-orange) !important;
}

.display-4, .display-5, .display-6 {
    letter-spacing: -1px;
}

/* Buttons */
.btn-primary {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #4a59a7;
    border-color: #4a59a7;
}

.btn-outline-primary {
    color: var(--accent-blue);
    border-color: var(--accent-blue);
   
    font-weight: 600;
}

.btn-outline-primary:hover {
    background-color: var(--accent-blue);
    color: #ffffff;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

/* Hero Section */
.hero-section {
    background: var(--bg-gradient-hero);
}

.hero-gradient {
    top: -10%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.08) 0%, transparent 70%);
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

/* Badge */
.badge.bg-light {
    background-color: #f1f3f5 !important;
    color: #495057 !important;
    padding: 0.6rem 1rem;
    border-radius: 50px;
    font-weight: 600;
}

/* Cards & Sections */
.bg-light-soft {
    background-color: #fcfcfc;
}

.card {
    border-radius: 2rem;
    border: none;
}

.bg-white-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f8 100%);
    border: 1px solid rgba(233, 30, 99, 0.1) !important;
}

.shadow-lg {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08) !important;
}

/* Icons */
.bi-arrow-right-circle-fill {
    transition: transform 0.3s ease;
}

a:hover .bi-arrow-right-circle-fill {
    transform: translateX(5px);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #51105c 0%, #300a37 100%);
}

.stats-section h2 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

/* Testimonial Section */
.testimonial-slider {
    position: relative;
}

.testimonial-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(233, 30, 99, 0.05), transparent 40%);
    pointer-events: none;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .display-4 { font-size: 2.5rem; }
    .display-5 { font-size: 2rem; }
    .display-6 { font-size: 1.75rem; }
    .hero-section { text-align: center; }
    .hero-section .d-flex { justify-content: center; }
}

@media (max-width: 767.98px) {
    .stats-section h2 { font-size: 2.5rem; }
}

  .modal-full {
            padding: 0 !important;
        }
        .modal-full .modal-dialog {
            width: 100%;
            max-width: 100%;
            height: 100%;
            margin: 0;
        }
        .modal-full .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0;
            background: rgba(0, 0, 0, 0.95);
        }
        .modal-header {
            border: 0;
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 1060;
        }
        .btn-close-white {
            filter: invert(1) grayscale(100%) brightness(200%);
            opacity: 1;
            transform: scale(1.5);
        }
        .video-container {
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
        }
        .demo-video {
            width: 100%;
            max-width: 1100px;
            aspect-ratio: 16/9;
            border-radius: 20px;
            box-shadow: 0 25px 50px rgba(0,0,0,0.5);
        }
       .hero-section {
            display: flex;
            align-items: center;
            position: relative;
        }
           @media (max-width: 768px) {
            .hero-section { text-align: center; }
            .hero-subtitle { margin-inline: auto; }
            .btn-demo { width: 100%; justify-content: center; }
        }