/* Home Page Specific Styles */

/* Navbar Enhancements */
.navbar-brand .brand-text h4 {
    font-size: 1.25rem;
    line-height: 1.2;
}

.navbar-brand .brand-text small {
    font-size: 0.75rem;
    line-height: 1;
}

.navbar-brand:hover .brand-text h4 {
    color: var(--bs-primary) !important;
    transition: color 0.3s ease;
}

/* Hero Section Enhancements */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle, rgba(var(--bs-primary-rgb), 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.hero-image-wrapper {
    position: relative;
    display: inline-block;
}

.play-button {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9) !important;
    border: 2px solid rgba(var(--bs-primary-rgb), 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.play-button:hover {
    background: rgba(255, 255, 255, 1) !important;
    border-color: var(--bs-primary);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(var(--bs-primary-rgb), 0.3);
}

.scroll-indicator {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Animation Classes */
.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s ease-out forwards;
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s ease-out 0.3s forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Floating Stats */
.hero-image-wrapper .position-absolute > div {
    animation: floatStats 3s ease-in-out infinite;
}

.hero-image-wrapper .position-absolute:nth-child(2) > div {
    animation-delay: 1s;
}

.hero-image-wrapper .position-absolute:nth-child(3) > div {
    animation-delay: 2s;
}

@keyframes floatStats {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.05);
    }
}

/* Stats Section */
.stat-card {
    padding: 2rem 1rem;
    transition: all 0.3s ease;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--bs-primary), var(--bs-info));
    transition: left 0.5s ease;
}

.stat-card:hover::before {
    left: 0;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--bs-primary);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
    color: var(--bs-primary);
}

.stat-label {
    font-weight: 600;
    color: #6c757d;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-label {
    color: var(--bs-dark);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-weight: 600;
    color: #6c757d;
    font-size: 1.1rem;
}

/* Product Cards */
.product-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-card .card-img-top-wrapper {
    position: relative;
    overflow: hidden;
}

.product-card .card-img-top {
    transition: transform 0.3s ease;
}

.product-card:hover .card-img-top {
    transform: scale(1.1);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--bs-primary), var(--bs-info));
    transition: left 0.5s ease;
    z-index: 10;
}

.product-card:hover::before {
    left: 0;
}

/* Testimonial Cards */
.testimonial-card {
    transition: all 0.3s ease;
    border-radius: 15px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.testimonial-card .card-body {
    padding: 2rem;
}

/* Project Cards */
.project-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

/* Technology Features */
.technology-feature {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border-left: 4px solid var(--bs-primary);
}

.technology-feature:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Video Play Button */
.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.play-button:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Badges */
.badge {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* Section Spacing */
section {
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--bs-primary), var(--bs-info));
    opacity: 0.7;
}

section.bg-light::before {
    display: none;
}

/* Icon Animations */
.fa-3x {
    transition: all 0.3s ease;
}

.card:hover .fa-3x {
    transform: scale(1.1);
    color: var(--bs-primary);
}

/* Custom Gradients */
.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-text {
    background: linear-gradient(45deg, var(--bs-primary), var(--bs-info));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-card {
        margin-bottom: 1.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .display-6 {
        font-size: 1.75rem;
    }
    
    .product-card,
    .testimonial-card,
    .project-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .stat-number {
        font-size: 2rem;
    }
    
    section::before {
        width: 40px;
        height: 3px;
    }
    
    .card-body {
        padding: 1.5rem;
    }
}

/* Animation Classes */
.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.animate-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.animate-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Hero Section Enhancements */
.hero-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
}

/* Button Hover Effects */
.btn-primary {
    background: linear-gradient(45deg, var(--bs-primary), #0056b3);
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.2));
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(var(--bs-primary-rgb), 0.3);
}

/* Star Ratings */
.text-warning i {
    transition: all 0.2s ease;
}

.testimonial-card:hover .text-warning i {
    transform: scale(1.1);
}

/* Enhanced Product Cards */
.product-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Product Image Hover Effects */
.product-image {
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.9), rgba(var(--bs-info-rgb), 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.product-card:hover .overlay-content {
    transform: translateY(0);
}

/* Ribbon Styles */
.ribbon {
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.ribbon-featured {
    background: linear-gradient(45deg, #ffd700, #ff8c00);
    color: #333;
}

.ribbon-new {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
}

.ribbon-premium {
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
}

.ribbon-digital {
    background: linear-gradient(45deg, #3498db, #2980b9);
}

.ribbon-support {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.ribbon-consulting {
    background: linear-gradient(45deg, #f39c12, #e67e22);
}

/* Product Icon Animation */
.product-icon {
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--bs-info);
}

/* Feature List Styling */
.features-list {
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.feature-item:hover {
    padding-left: 10px;
    color: var(--bs-primary);
}

/* Pricing Badge */
.pricing-badge {
    position: relative;
}

.pricing-badge .badge {
    animation: pulse-badge 2s infinite;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-info));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

/* Background Gradient for CTA */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-info) 100%);
}

/* Rotating Gear Animation */
.rotating-gear {
    animation: rotate 20s linear infinite;
}

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

/* Pulse Badge Animation */
@keyframes pulse-badge {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(var(--bs-primary-rgb), 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0);
    }
}

/* Enhanced Button Effects */
.btn {
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-primary {
    background: linear-gradient(45deg, var(--bs-primary), var(--bs-info));
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--bs-info), var(--bs-primary));
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Stats Section Enhancements */
.stat-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bs-primary), var(--bs-info));
    border-radius: 12px 12px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-number {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 800;
    line-height: 1;
    transition: all 0.3s ease;
}

.stat-icon {
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-card:hover .stat-number {
    transform: scale(1.05);
}

/* Client Logos Animation */
.client-logo {
    transition: all 0.3s ease;
    cursor: pointer;
}

.client-logo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

/* Gradient Card Effects */
.bg-gradient {
    position: relative;
    overflow: hidden;
}

.bg-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.bg-gradient:hover::before {
    transform: rotate(45deg) translate(50px, 50px);
}

/* Number Animation Enhancement */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.stat-number.animate {
    animation: countUp 0.8s ease-out;
}

/* Badge Enhancements */
.badge {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

/* Initial state for product cards */
.product-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Responsive Design for Products */
@media (max-width: 768px) {
    .ribbon {
        font-size: 10px;
        padding: 3px 35px;
        right: -25px;
    }
    
    .product-card {
        margin-bottom: 2rem;
    }
    
    .product-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .features-list {
        text-align: center;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .stat-card {
        margin-bottom: 1.5rem;
    }
    
    .stat-card:hover {
        transform: translateY(-5px);
    }
    
    .client-logo {
        margin: 0.5rem;
    }
}

@media (max-width: 576px) {
    .stat-number {
        font-size: 2.5rem !important;
    }
    
    .stat-card {
        padding: 1.5rem !important;
    }
    
    .bg-gradient .card-body {
        padding: 2rem !important;
    }
}

/* Client Testimonials & Partners Section Styles */
.testimonial-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
}

.client-avatar {
    transition: all 0.3s ease;
}

.testimonial-card:hover .client-avatar > div {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.client-result {
    border-left: 4px solid var(--bs-primary);
    transition: all 0.3s ease;
}

.testimonial-card:hover .client-result {
    background: var(--bs-primary) !important;
    color: white !important;
}

.testimonial-card:hover .client-result .fw-bold {
    color: white !important;
}

.partner-logo {
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.partner-logo:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--bs-primary);
    box-shadow: 0 10px 25px rgba(0,123,255,0.2);
}

.counter {
    transition: all 0.5s ease;
}

.counter.counting {
    color: var(--bs-primary) !important;
    transform: scale(1.1);
}

/* Transform utilities */
.transform-rotate-15 {
    transform: rotate(15deg);
}

.transform-rotate--15 {
    transform: rotate(-15deg);
}

/* Background pattern animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.testimonial-card .client-avatar > div {
    animation: float 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.testimonial-card:nth-child(2) .client-avatar > div {
    animation-delay: 1s;
}

.testimonial-card:nth-child(3) .client-avatar > div {
    animation-delay: 1.5s;
}

/* Gradient text effect */
.gradient-text {
    background: linear-gradient(45deg, #007bff, #0056b3, #28a745);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Badge animations */
.badge {
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(var(--bs-primary-rgb), 0); }
}

/* Testimonial card entrance animation */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Partner logo entrance animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.bg-glass-anim{
    background: linear-gradient(135deg, #021024 0%, #042b6b 50%, #0b5394 100%);
    background-size: 200% 200%;
    animation: bgMove 15s linear infinite;
    overflow: hidden;
}

@keyframes bgMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* floating glass blobs */
.glass-blob{
    position:absolute;
    border-radius:50%;
    mix-blend-mode: screen;
    filter: blur(30px) saturate(140%);
    opacity: 0.35;
    transform-origin: center;
    animation: floatGlass 8s ease-in-out infinite;
}

.glass-blob::before{
    content: "";
    position:absolute;
    inset:0;
    border-radius:inherit;
    background: linear-gradient(45deg, rgba(255,255,255,0.16), rgba(255,255,255,0.02));
    mix-blend-mode: overlay;
    pointer-events:none;
}

@keyframes floatGlass {
    0% { transform: translateY(0) rotate(0deg) scale(1); opacity:0.28; }
    25% { transform: translateY(-12px) rotate(6deg) scale(1.03); opacity:0.42; }
    50% { transform: translateY(-20px) rotate(12deg) scale(1.05); opacity:0.48; }
    75% { transform: translateY(-12px) rotate(6deg) scale(1.03); opacity:0.42; }
    100% { transform: translateY(0) rotate(0deg) scale(1); opacity:0.28; }
}

/* subtle shimmer line */
.glass-shimmer{
    position:absolute;
    inset: -10% -40%;
    background: linear-gradient(90deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0.02) 100%);
    transform: rotate(-20deg);
    filter: blur(12px);
    opacity:0.12;
    animation: shimmer 8s linear infinite;
    pointer-events:none;
    mix-blend-mode: overlay;
}

@keyframes shimmer {
    0% { transform: translateX(-30%) rotate(-20deg); opacity:0.08; }
    50% { transform: translateX(0%) rotate(-20deg); opacity:0.14; }
    100% { transform: translateX(30%) rotate(-20deg); opacity:0.08; }
}

/* responsive adjustments */
@media (max-width:767px){
    .glass-blob{ filter: blur(22px); opacity:0.25; }
    .glass-shimmer{ opacity:0.08; }
}

    .bg-glass-professional { position:absolute; inset:0; pointer-events:none; z-index:0; overflow:hidden; }
    .bg-glass-professional .blob { position:absolute; border-radius:50%; filter: blur(40px) saturate(120%); opacity:0.34; transform: translate3d(0,0,0); will-change: transform, opacity; }
    .bg-glass-professional .blob.a1 { right:6%; top:8%; width:420px; height:420px; background: radial-gradient(circle at 30% 30%, rgba(96,165,250,0.26), rgba(124,58,237,0.12) 40%, rgba(11,20,36,0) 70%); animation: floatSlow 16s ease-in-out infinite; }
    .bg-glass-professional .blob.a2 { left:6%; bottom:10%; width:320px; height:320px; background: radial-gradient(circle at 70% 70%, rgba(52,211,153,0.20), rgba(245,158,11,0.08) 40%, rgba(11,20,36,0) 70%); animation: floatSlow 20s ease-in-out 3s infinite; }
    .bg-glass-professional .blob.a3 { left:18%; top:28%; width:220px; height:220px; background: radial-gradient(circle at 40% 40%, rgba(255,255,255,0.08), rgba(255,255,255,0.02) 50%, rgba(11,20,36,0) 80%); animation: floatSlow 13s ease-in-out 1s infinite; }

    /* subtle glass panel */
    .bg-glass-professional .glass-panel {
        position:absolute;
        right:12%;
        top:20%;
        width:340px;
        height:220px;
        border-radius:18px;
        background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
        border: 1px solid rgba(255,255,255,0.06);
        backdrop-filter: blur(8px) saturate(120%);
        -webkit-backdrop-filter: blur(8px) saturate(120%);
        box-shadow: 0 12px 40px rgba(11,20,50,0.12);
        transform: translateZ(0);
        animation: drift 10s ease-in-out infinite;
        opacity:0.96;
        will-change: transform, opacity;
    }

    /* decorative icons */
    .bg-glass-professional .rotating-gear {
        position:absolute;
        right:5%;
        top:6%;
        font-size:7.5rem;
        color:rgba(255,255,255,0.06);
        transform-origin:center center;
        animation: slowRotate 22s linear infinite;
        filter: drop-shadow(0 10px 30px rgba(3,82,162,0.06));
    }
    .bg-glass-professional .car-silhouette {
        position:absolute;
        left:4%;
        bottom:4%;
        font-size:6.2rem;
        color:rgba(11,20,36,0.05);
        animation: bob 9s ease-in-out infinite;
        transform-origin:center;
    }

    /* moving shimmer for a premium sheen */
    .bg-glass-professional .shimmer {
        position:absolute;
        inset:0;
        background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.04) 40%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0.03) 60%, rgba(255,255,255,0) 100%);
        transform: translateX(-120%);
        animation: shimmer 6.5s linear infinite;
        mix-blend-mode: overlay;
        opacity:0.6;
        pointer-events:none;
        will-change: transform;
    }

    /* keyframes */
    @keyframes floatSlow { 0%{ transform: translateY(0) translateX(0) } 50%{ transform: translateY(-18px) translateX(8px)} 100%{ transform: translateY(0) translateX(0)} }
    @keyframes drift { 0%{ transform: translateY(0) rotate(-2deg)} 50%{ transform: translateY(-8px) rotate(0deg)} 100%{ transform: translateY(0) rotate(-2deg)} }
    @keyframes slowRotate { from{ transform: rotate(0deg)} to{ transform: rotate(360deg)} }
    @keyframes bob { 0%{ transform: translateY(0)} 50%{ transform: translateY(-12px)} 100%{ transform: translateY(0)} }
    @keyframes shimmer { 0%{ transform: translateX(-120%)} 100%{ transform: translateX(120%)} }

    /* accessibility: respect reduce-motion */
    @media (prefers-reduced-motion: reduce) {
        .bg-glass-professional .blob,
        .bg-glass-professional .glass-panel,
        .bg-glass-professional .rotating-gear,
        .bg-glass-professional .car-silhouette,
        .bg-glass-professional .shimmer { animation: none !important; }
    }
