/* ========================================
   Assistance ANTS - Custom Styles
   ======================================== */

/* Global Styles */
/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #050505;
    color: #ffffff;
    line-height: 1.6;
}

/* Custom Color Palette */
:root {
    --primary-color: #f59e0b;
    --secondary-color: #f59e0b;
    --dark-color: #0f172a;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --light-bg: #050505;
    --white: #ffffff;
    --text-dark: #e2e8f0;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.section-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lead {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-muted);
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.95), rgba(217, 119, 6, 0.95));
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.navbar-brand {
    color: var(--white) !important;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 400;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--white) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Hero Section - Already Updated */

/* Sections */
section {
    padding: 80px 0;
}

/* Glass Card Utility */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Badge Items */
.badge-item {
    text-align: center;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.badge-item .icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

.badge-item h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.badge-item p {
    color: var(--text-muted);
}

/* Step Cards */
.step-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #d97706);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

.step-card h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-muted);
}

/* Feature Items */
.feature-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
    flex-shrink: 0;
    text-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
}

.feature-item h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-item p {
    margin-bottom: 0;
    color: var(--text-muted);
}

/* Form Section */
.form-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.form-section .section-title {
    margin-bottom: 1rem;
    text-align: left;
    background: none;
    -webkit-text-fill-color: var(--white);
    color: var(--white);
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    padding: 0.75rem 1rem;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    background-color: rgba(0, 0, 0, 0.5);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.25);
    color: var(--white);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-select option {
    background-color: #1a1a1a;
    color: var(--white);
}

.form-check-input {
    background-color: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    color: var(--text-muted);
}

.form-check-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-check-label a:hover {
    color: #fbbf24;
}

.btn-primary,
.btn-warning {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-warning {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    border: none;
    color: #000;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
    color: #000;
}

.btn-primary {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

#submitBtn {
    position: relative;
}

#submitBtn.loading {
    pointer-events: none;
    opacity: 0.7;
}

#submitBtn.loading::after {
    content: '';
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.5rem;
    border: 2px solid rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    border-top-color: #000;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.form-disclaimer {
    text-align: center;
}

.form-disclaimer small {
    color: var(--text-muted) !important;
}

/* Alert Messages */
#form-alert {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#form-alert.alert-success {
    background-color: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

#form-alert.alert-danger {
    background-color: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

#form-alert ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

/* Footer */
.footer {
    background-color: #020202;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Newsletter Box */
.newsletter-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.newsletter-title {
    color: var(--white);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.newsletter-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.newsletter-form .input-group {
    margin-bottom: 1rem;
}

.newsletter-input {
    padding: 0.875rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    border-radius: 8px 0 0 8px;
    background: rgba(0, 0, 0, 0.3);
    font-size: 1rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    border-color: var(--warning-color);
    box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.25);
    background: rgba(0, 0, 0, 0.5);
    outline: none;
    color: var(--white);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-btn {
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
    border: none;
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    color: #000;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.newsletter-disclaimer {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.75rem;
}

.newsletter-disclaimer i {
    color: var(--warning-color);
}

.footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--warning-color);
    text-decoration: none;
}

.footer-info {
    padding-left: 2rem;
}

.footer-links a {
    margin: 0 1rem;
}

.footer-disclaimer p {
    line-height: 1.8;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.3);
}

/* Accordion */
.accordion-item {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--white);
    font-weight: 500;
    padding: 1.25rem 1.5rem;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-button:not(.collapsed)::after {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(190deg);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.1);
}

.accordion-body {
    padding: 1.5rem;
    line-height: 1.8;
    color: var(--text-muted);
    background-color: rgba(0, 0, 0, 0.2);
}

/* Background Colors Override */
.bg-light {
    background-color: transparent !important;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .hero-image {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 100px 0 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .form-section {
        padding: 2rem 1.5rem;
    }

    section {
        padding: 60px 0;
    }

    .feature-icon {
        font-size: 2rem;
        margin-right: 1rem;
    }

    .footer-info {
        padding-left: 0;
        margin-top: 2rem;
        text-align: center !important;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }

    .badge-item,
    .step-card {
        padding: 1.5rem;
    }

    .badge-item .icon {
        font-size: 3rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge-item,
.step-card,
.feature-item {
    animation: fadeIn 0.6s ease-out;
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

/* Video Styles */
.hero-video {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: block;
    object-fit: cover;
    max-height: 600px;
    /* Increased to match hero section */
    width: 100%;
    border-radius: 16px;
}

.video-wrapper {
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.video-wrapper:hover .video-controls {
    opacity: 1;
}

.video-controls {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 20;
    /* Ensure controls are on top */
    pointer-events: auto;
}

.control-btn {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    z-index: 21;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    color: var(--warning-color);
}

/* ========================================
   New Animations Integration
   ======================================== */

.font-geist {
    font-family: 'Geist', sans-serif;
}

/* Animation Keyframes */
@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0px);
    }
}

@keyframes floating-points {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    85% {
        opacity: 0;
    }

    100% {
        transform: translateY(-55px);
        opacity: 0;
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 0, 20;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 10, 10;
        stroke-dashoffset: -5;
    }

    100% {
        stroke-dasharray: 20, 0;
        stroke-dashoffset: -10;
    }
}

/* Hover Lift Animation */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.3);
}

/* Footer 3D Image Styling */
.footer-3d-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    perspective: 1000px;
}

.footer-3d-image {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    /* Adjust based on preference */
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
    animation: float 6s ease-in-out infinite, swing3D 6s ease-in-out infinite;
}

.footer-3d-image:hover {
    animation-play-state: paused;
    transform: scale(1.05);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes swing3D {

    0%,
    100% {
        transform: rotateY(-25deg);
    }

    50% {
        transform: rotateY(25deg);
    }
}

.animate-fadeSlideIn {
    animation: fadeSlideIn 0.8s ease-out 0.1s both;
}

.animate-fadeSlideIn-delay-200 {
    animation: fadeSlideIn 0.8s ease-out 0.2s both;
}

.animate-fadeSlideIn-delay-400 {
    animation: fadeSlideIn 0.8s ease-out 0.4s both;
}

.animate-fadeSlideIn-delay-600 {
    animation: fadeSlideIn 0.8s ease-out 0.6s both;
}

/* Button Styles for Animation */
.button {
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.25s ease;
    background: radial-gradient(65.28% 65.28% at 50% 100%, rgba(251, 191, 36, 0.8) 0%, rgba(251, 191, 36, 0) 100%), linear-gradient(0deg, #d97706, #d97706);
    border-radius: 0.75rem;
    border: none;
    outline: none;
    padding: 12px 18px;
    min-height: 48px;
    min-width: 102px;
    color: white;
    /* Ensure text is visible */
}

.button::before,
.button::after {
    content: "";
    position: absolute;
    transition: all 0.5s ease-in-out;
    z-index: 0;
}

.button::before {
    inset: 1px;
    background: linear-gradient(177.95deg, rgba(255, 255, 255, 0.19) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: calc(0.75rem - 1px);
}

.button::after {
    inset: 2px;
    background: radial-gradient(65.28% 65.28% at 50% 100%, rgba(251, 191, 36, 0.8) 0%, rgba(251, 191, 36, 0) 100%), linear-gradient(0deg, #d97706, #d97706);
    border-radius: calc(0.75rem - 2px);
}

.button:active {
    transform: scale(0.95);
}

.points_wrapper {
    overflow: hidden;
    width: 100%;
    height: 100%;
    pointer-events: none;
    position: absolute;
    z-index: 1;
    top: 0;
    /* Fix position */
    left: 0;
    /* Fix position */
}

.points_wrapper .point {
    bottom: -10px;
    position: absolute;
    animation: floating-points infinite ease-in-out;
    pointer-events: none;
    width: 2px;
    height: 2px;
    background-color: #fff;
    border-radius: 9999px;
}

.points_wrapper .point:nth-child(1) {
    left: 10%;
    opacity: 1;
    animation-duration: 2.35s;
    animation-delay: 0.2s;
}

.points_wrapper .point:nth-child(2) {
    left: 30%;
    opacity: 0.7;
    animation-duration: 2.5s;
    animation-delay: 0.5s;
}

.points_wrapper .point:nth-child(3) {
    left: 25%;
    opacity: 0.8;
    animation-duration: 2.2s;
    animation-delay: 0.1s;
}

.points_wrapper .point:nth-child(4) {
    left: 44%;
    opacity: 0.6;
    animation-duration: 2.05s;
}

.points_wrapper .point:nth-child(5) {
    left: 50%;
    opacity: 1;
    animation-duration: 1.9s;
}

.points_wrapper .point:nth-child(6) {
    left: 75%;
    opacity: 0.5;
    animation-duration: 1.5s;
    animation-delay: 1.5s;
}

.points_wrapper .point:nth-child(7) {
    left: 88%;
    opacity: 0.9;
    animation-duration: 2.2s;
    animation-delay: 0.2s;
}

.points_wrapper .point:nth-child(8) {
    left: 58%;
    opacity: 0.8;
    animation-duration: 2.25s;
    animation-delay: 0.2s;
}

.points_wrapper .point:nth-child(9) {
    left: 98%;
    opacity: 0.6;
    animation-duration: 2.6s;
    animation-delay: 0.1s;
}

.points_wrapper .point:nth-child(10) {
    left: 65%;
    opacity: 1;
    animation-duration: 2.5s;
    animation-delay: 0.2s;
}

.inner {
    z-index: 2;
    gap: 6px;
    position: relative;
    width: 100%;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    transition: color 0.2s ease-in-out;
}

.inner svg.icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
    stroke: white;
    fill: none;
}

.button:hover svg.icon {
    transform: translateX(2px);
}

.button:hover svg.icon path {
    animation: dash 0.8s linear forwards;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-2px);
}

@keyframes scroll-testimonials {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.testimonial-scroll-container {
    animation: scroll-testimonials 30s linear infinite;
    will-change: transform;
}

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

/* Border Gradient */
.border-gradient {
    position: relative;
}

.border-gradient::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    /* Inherit from parent */
    padding: 1px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    background: linear-gradient(225deg,
            rgba(255, 255, 255, 0.0) 0%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0.0) 100%);
    pointer-events: none;
}

/* Animation on Scroll */
.animate-on-scroll {
    opacity: 0;
    /* Initially hidden */
    animation-play-state: paused !important;
}

.animate-on-scroll.animate {
    opacity: 1;
    animation-play-state: running !important;
}

/* Background Video Animation */
.video-background-container {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: -10;
    filter: saturate(50%) brightness(75%) opacity(30%);
    mask-image: linear-gradient(to bottom, transparent, black 0%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 0%, black 80%, transparent);
    pointer-events: none;
}

#aura-video {
    width: 100%;
    height: 100%;

    /* Driving Animations */
    @keyframes motionBlurIn {
        0% {
            opacity: 0;
            transform: translateX(-100px) skewX(-30deg);
            filter: blur(10px);
        }

        100% {
            opacity: 1;
            transform: translateX(0) skewX(0);
            filter: blur(0);
        }
    }

    @keyframes wiperReveal {
        0% {
            clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
        }

        100% {
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        }
    }

}

/* Driving Animations */
@keyframes motionBlurIn {
    0% {
        opacity: 0;
        transform: translateX(-100px) skewX(-30deg);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateX(0) skewX(0);
        filter: blur(0);
    }
}

@keyframes wiperReveal {
    0% {
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    }

    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

.animate-motionBlur {
    animation: motionBlurIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.animate-wiper {
    animation: wiperReveal 1s cubic-bezier(0.77, 0, 0.175, 1) both;
}

/* Headlight Reveal Effect */
.headlight-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
    transition: opacity 0.2s ease;
}

/* Fix for white background containers (Privacy Policy, etc.) */
.bg-white {
    color: #212529 !important;
}

.bg-white h1,
.bg-white h2,
.bg-white h3,
.bg-white h4,
.bg-white h5,
.bg-white h6 {
    color: #212529 !important;
}

/* Slideshow Styles */
.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 400px;
    /* Default height */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: #000;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Responsive Slideshow */
@media (max-width: 991.98px) {
    .slideshow-container {
        height: 350px;
        margin-top: 2rem;
    }
}

@media (max-width: 575.98px) {
    .slideshow-container {
        height: 250px;
    }
}