﻿/* Font Stack */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Floating Login Button */
.floating-login-btn {
    transition: transform 0.3s ease, background 0.3s ease;
}

    .floating-login-btn:hover {
        transform: scale(1.1);
        background: #004aad;
    }

/* Hero Banner */
.hero-banner {
    background-size: cover;
    background-position: center;
}

.gradient-text {
    background: linear-gradient(45deg, #ffcc00, #ff5e57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-gradient-primary {
    background: linear-gradient(135deg, #4a90e2, #6c63ff);
    color: #ffffff;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .btn-gradient-primary:hover {
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

.btn-outline-light {
    border-color: #ffffff;
    color: #ffffff;
    transition: all 0.3s ease;
}

    .btn-outline-light:hover {
        background: #ffffff;
        color: #2f3e9e;
        transform: scale(1.05);
    }

.glowing-btn {
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.5);
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
}

    .glowing-btn:hover {
        box-shadow: 0 0 20px rgba(74, 144, 226, 0.7);
    }

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Video Section */
.video-section .card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
}

.video-section video {
    max-height: 450px;
    object-fit: cover;
}

@media (max-width: 576px) {
    .video-section video {
        max-height: 300px;
    }
}

/* Features Section */
.features-section .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
}

    .features-section .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

.animate-icon {
    transition: transform 0.3s ease;
    display: inline-block;
}

    .animate-icon:hover {
        transform: scale(1.2) rotate(5deg);
    }

.text-purple {
    color: #6c63ff;
}

/* Testimonials Carousel */
.testimonials-section .carousel-item {
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.testimonials-section .card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    transition: transform 0.3s ease;
}

    .testimonials-section .card:hover {
        transform: translateY(-5px);
    }

.carousel-control-prev, .carousel-control-next {
    width: 5%;
    background: rgba(0, 0, 0, 0.2);
}

/* Quick Action Cards */
.hero-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .hero-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .hero-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border: 2px solid transparent;
        border-image: linear-gradient(135deg, #ffcc00, #ff5e57) 1;
        z-index: -1;
    }

/* Sticky CTA */
.sticky-cta {
    display: none;
}

@media (max-width: 767.98px) {
    .sticky-cta {
        display: block;
    }

        .sticky-cta .btn {
            white-space: nowrap;
            font-size: clamp(0.85rem, 3.5vw, 0.9rem);
            padding: 0.5rem 1rem;
        }

    .hero-banner .d-flex {
        flex-direction: column;
    }

    .hero-banner .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .carousel-control-prev, .carousel-control-next {
        display: none;
    }

    .hero-box {
        padding: 2.5rem !important;
    }

    @media (max-width: 360px) {
        .sticky-cta .btn {
            font-size: 0.8rem;
            padding: 0.5rem 0.75rem;
        }
    }
}

/* Accessibility */
:focus {
    outline: 3px solid #4a90e2;
    outline-offset: 2px;
}


