/* --- Web Development Page Enhanced Styles --- */

/* Estimate Calculator Styles */
#estimate-calculator {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

#estimate-calculator .card {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: none;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#estimate-calculator .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

#estimate-calculator .card-body {
    background: white;
    border-radius: 20px;
    padding: 40px;
}

#estimate-calculator .form-label {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

#estimate-calculator .form-label::before {
    content: '';
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #007bff, #667eea);
    border-radius: 50%;
    margin-right: 10px;
}

#estimate-calculator .form-check {
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid #f0f2f5;
    background: #fafbfc;
    margin-bottom: 15px;
    cursor: pointer;
}

#estimate-calculator .form-check:hover {
    background: linear-gradient(135deg, #f8f9ff 0%, #e3f2fd 100%);
    border-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,123,255,0.15);
}

#estimate-calculator .form-check-input:checked + .form-check-label {
    color: #007bff;
    font-weight: 600;
    transform: scale(1.02);
}

#estimate-calculator .form-check-input:checked {
    background-color: #007bff;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.25);
}

#estimate-calculator .form-check-input {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#estimate-calculator .form-check-label {
    cursor: pointer;
    user-select: none;
    font-size: 15px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    width: 100%;
}

#estimate-calculator .form-select-lg {
    border-radius: 12px;
    border: 2px solid #e9ecef;
    padding: 15px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    font-weight: 500;
}

#estimate-calculator .form-select-lg:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
    background: #fff;
}

#estimate-calculator .btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #667eea 100%);
    border: none;
    border-radius: 50px;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,123,255,0.3);
    position: relative;
    overflow: hidden;
}

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

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

#estimate-calculator .btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,123,255,0.4);
    background: linear-gradient(135deg, #0056b3 0%, #764ba2 100%);
}

#estimate-calculator .btn-primary:active {
    transform: translateY(-2px) scale(1.02);
}

#estimateResults .bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(102,126,234,0.3);
    position: relative;
    overflow: hidden;
}

#estimateResults .bg-gradient-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

#estimateResults .bg-white {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

#estimateResults .bg-white:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

#estimateResults .btn-light {
    border-radius: 50px;
    padding: 15px 35px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

#estimateResults .btn-light:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
    background: rgba(255,255,255,1);
}

#estimateResults .btn-outline-light {
    border-radius: 50px;
    padding: 15px 35px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.8);
    color: white;
}

#estimateResults .btn-outline-light:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(255,255,255,0.1);
    border-color: white;
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

/* Enhanced section headers */
#estimate-calculator h2 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

#estimate-calculator h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #667eea, #764ba2);
    border-radius: 2px;
}

/* Icon enhancements */
#estimate-calculator .form-check i {
    font-size: 18px;
    margin-right: 8px;
    width: 24px;
    text-align: center;
}

#estimate-calculator .form-check-label strong {
    color: #2c3e50;
    font-weight: 600;
}

#estimate-calculator .form-check-label small {
    color: #6c757d;
    font-size: 13px;
    margin-top: 4px;
}

/* Progress indicator */
#estimate-calculator .progress-indicator {
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    margin: 30px 0;
    overflow: hidden;
}

#estimate-calculator .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #007bff, #667eea, #764ba2);
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 2px;
}

/* Responsive improvements */
@media (max-width: 768px) {
    #estimate-calculator {
        padding: 40px 0;
    }
    
    #estimate-calculator .card-body {
        padding: 25px;
    }
    
    #estimate-calculator .form-check {
        padding: 15px;
        margin-bottom: 10px;
    }
    
    #estimate-calculator .btn-primary {
        padding: 15px 40px;
        font-size: 16px;
    }
}

/* Notification animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.position-fixed {
    position: fixed !important;
}

/* Enhanced focus states */
#estimate-calculator .form-check:focus-within {
    border-color: #007bff;
    background: linear-gradient(135deg, #f8f9ff 0%, #e3f2fd 100%);
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

/* Enhanced hover states for project type cards */
#estimate-calculator .form-check:hover .form-check-label i {
    transform: scale(1.1);
    color: #007bff;
}

/* Loading spinner enhancement */
#estimate-calculator .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Cost Summary Display */
.cost-summary {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.cost-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 0 20px;
}

.cost-item {
    text-align: center;
    flex: 1;
}

.cost-label {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cost-value {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

.cost-value.base {
    color: #007bff;
}

.cost-value.additional {
    color: #28a745;
}

.cost-value.total {
    font-size: 32px;
    color: #1a1a1a;
    margin-top: 10px;
    display: block;
    text-align: center;
}

.timeline-display {
    background: #f8f9fa;
    padding: 15px 25px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
    border: 1px solid #e9ecef;
}

.timeline-display strong {
    color: #2c3e50;
    font-weight: 600;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.action-buttons .btn {
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid;
}

.action-buttons .btn-primary {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}

.action-buttons .btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}

.action-buttons .btn-outline {
    background: transparent;
    color: #007bff;
    border-color: #007bff;
}

.action-buttons .btn-outline:hover {
    background: #007bff;
    color: #fff;
}

/* WhatsApp Icon */
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-icon:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

/* Trust Badges */
.trust-badges {
    animation: slideUp 1s ease-out 0.3s both;
}

.trust-badges .badge {
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.trust-badges .badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Enhanced Hero Section */
.service-hero {
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.1) 0%, transparent 50%, rgba(0,0,0,0.05) 100%);
    pointer-events: none;
}

/* Primary Action Button */
.btn-primary-action {
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    border: none;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-primary-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    background: linear-gradient(45deg, #FF5252, #45B7B8);
}

/* Urgent CTA */
.urgent-cta {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

/* Counter Animation */
.counter {
    display: inline-block;
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.icon-wrapper {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: all 0.3s ease;
}

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

/* Testimonial Section */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
}

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

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 4rem;
    color: #667eea;
    opacity: 0.3;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #667eea;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    z-index: -1;
}

.step-box {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.step-box:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.step-box::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    width: 20px;
    height: 20px;
    background: #667eea;
    transform: translateY(-50%) rotate(45deg);
    z-index: 1;
}

/* Pricing Cards Enhanced */
.pricing-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    color: white;
    padding: 5px 40px;
    font-size: 0.7rem;
    font-weight: bold;
    transform: rotate(45deg);
    z-index: 10;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Technology Stack Animation */
.tech-item {
    display: inline-block;
    margin: 0.5rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.6s ease;
}

.tech-item:hover::before {
    left: 100%;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

/* Contact Form Enhancement */
.contact-form {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Industry Cards */
.industry-box {
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: white;
}

.industry-box:hover {
    border-color: #667eea;
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.2);
}

.industry-box img {
    transition: all 0.3s ease;
}

.industry-box:hover img {
    transform: scale(1.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .trust-badges {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .trust-badges .badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .step-box::after {
        display: none;
    }
}

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

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.8;
    }
}

.hero-badge {
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    animation: slideUp 1s ease-out 0.3s both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-stats {
    animation: slideUp 1s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.hero-buttons {
    animation: slideUp 1s ease-out 0.9s both;
}

.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Service Cards */
.service-card {
    position: relative;
    overflow: hidden;
    border: none;
    transition: all 0.4s ease;
}

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

.service-card:hover::before {
    left: 100%;
}

.service-icon .icon-wrapper {
    transition: all 0.3s ease;
}

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

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

.bg-gradient-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.bg-gradient-info {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
}

/* Feature Boxes */
.feature-box {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-box:hover::after {
    opacity: 1;
}

.feature-icon {
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon i {
    transform: scale(1.2) rotate(5deg);
}

/* Step Boxes */
.step-box {
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.step-box:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.step-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.step-box:hover::before {
    opacity: 0.05;
}

/* Industry Boxes */
.industry-box {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.industry-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.industry-box img {
    transition: all 0.3s ease;
}

.industry-box:hover img {
    transform: scale(1.1);
}

/* Pricing Cards */
.card {
    transition: all 0.3s ease;
    border: none;
}

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

.ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #667eea;
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 10;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* --- AI AR VR Page Enhanced Styles --- */

/* Hero Section Enhancements */
.hero-animation-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.2;
    animation: float-icon 20s infinite ease-in-out;
    color: white;
}

.floating-icon-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon-2 {
    top: 65%;
    right: 15%;
    animation-delay: 5s;
}

.floating-icon-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: 10s;
}

.floating-icon-4 {
    top: 40%;
    right: 10%;
    animation-delay: 15s;
}

@keyframes float-icon {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.2;
    }
    25% {
        transform: translateY(-30px) rotate(15deg);
        opacity: 0.4;
    }
    50% {
        transform: translateY(15px) rotate(-10deg);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-20px) rotate(8deg);
        opacity: 0.5;
    }
}

.hero-badge {
    animation: slideDown 0.8s ease-out;
}

.animate-text {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.animate-text-delay {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Stats */
.hero-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 0 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Section Badges */
.section-badge {
    display: inline-block;
}

/* Feature Cards */
.feature-box {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.05), transparent);
    transition: left 0.6s ease;
}

.feature-box:hover::before {
    left: 100%;
}

.feature-icon-wrapper {
    position: relative;
    display: inline-block;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

/* Use Case Cards */
.usecase-box {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.usecase-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(40, 167, 69, 0.05), transparent);
    transition: left 0.6s ease;
}

.usecase-box:hover::before {
    left: 100%;
}

.usecase-icon-wrapper {
    position: relative;
    display: inline-block;
}

.usecase-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.usecase-box:hover .usecase-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
}

.usecase-stats {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f1f3f5;
}

/* FAQ Accordion */
.faq-accordion {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #f1f3f5;
}

.faq-item {
    border-bottom: 1px solid #f1f3f5;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    background: #f8f9fa;
}

.faq-question {
    padding: 1.5rem;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question:not(.collapsed) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.faq-question:not(.collapsed) .toggle-icon {
    transform: rotate(180deg);
    color: white;
}

.question-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.toggle-icon {
    transition: transform 0.3s ease;
    color: #6c757d;
    font-size: 0.9rem;
}

.faq-answer {
    padding: 1.5rem;
    background: #fafbfc;
    color: #6c757d;
    line-height: 1.6;
    border-top: 1px solid #f1f3f5;
}

/* Hover Effects */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

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

/* Wave Bottom */
.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-bottom svg {
    position: relative;
    display: block;
    width: 100%;
    height: 120px;
}

/* Text Colors */
.text-white-90 {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-stats {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .stat-item {
        padding: 0 1rem;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .floating-icon {
        font-size: 1.8rem;
    }
    
    .feature-icon,
    .usecase-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1.2rem;
    }
    
    .question-content {
        gap: 0.5rem;
    }
}

/* --- Chatbot Demo Styles --- */

.bg-gradient-light {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    background: linear-gradient(120deg, #89f7fe 0%, #66a6ff 100%);
}

.chatbot-demo-container {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chatbot-demo-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.chat-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.bot-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.online-indicator {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    }
}

.chat-messages {
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

.message {
    display: flex;
    flex-direction: column;
    animation: messageSlideIn 0.3s ease-out;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bot-message {
    align-items: flex-start;
}

.user-message {
    align-items: flex-end;
}

.message-content {
    max-width: 70%;
    padding: 12px 16px;
    border-radius: 18px;
    margin-bottom: 4px;
    position: relative;
}

.bot-message .message-content {
    background: #f1f5f9;
    color: #334155;
    border-bottom-left-radius: 4px;
}

.user-message .message-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-bottom-right-radius: 4px;
    margin-left: auto;
}

.message-content p {
    margin: 0;
    line-height: 1.4;
}

.typing-indicator {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: #f1f5f9;
    border-radius: 18px;
    border-bottom-left-radius: 4px;
    max-width: 70%;
}

.typing-dots {
    display: flex;
    gap: 4px;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    background: #94a3b8;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typing {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.quick-action-btn {
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: white;
}

.quick-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.chat-input {
    background: white;
}

.chat-input-field {
    border-radius: 25px;
    border: 2px solid #e2e8f0;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.chat-input-field:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.send-btn {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    transition: all 0.3s ease;
}

.send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* --- Maintenance Page Styles --- */

/* Hero Section Enhancements */
.hero-animation-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: float-icon 15s infinite ease-in-out;
}

.floating-icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon-2 {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.floating-icon-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 6s;
}

.floating-icon-4 {
    top: 40%;
    right: 10%;
    animation-delay: 9s;
}

@keyframes float-icon {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(10px) rotate(-5deg);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-15px) rotate(5deg);
        opacity: 0.6;
    }
}

.hero-badge {
    animation: slideDown 0.8s ease-out;
}

.animate-text {
    animation: fadeInUp 1s ease-out;
}

.animate-text-delay {
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Stats */
.hero-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hover Effects */
.hover-lift {
    transition: all 0.3s ease;
    position: relative;
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Section Badges */
.section-badge {
    display: inline-block;
}

/* Overview Section */
.overview-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.animated-maintenance-icon {
    position: relative;
    width: 200px;
    height: 200px;
}

.maintenance-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    animation: pulse 2s infinite;
}

.orbit {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.orbit-1 {
    top: 20%;
    left: 20%;
    animation: orbit1 8s linear infinite;
}

.orbit-2 {
    top: 20%;
    right: 20%;
    animation: orbit2 10s linear infinite;
}

.orbit-3 {
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation: orbit3 12s linear infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes orbit1 {
    0% {
        transform: rotate(0deg) translateX(80px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(80px) rotate(-360deg);
    }
}

@keyframes orbit2 {
    0% {
        transform: rotate(0deg) translateX(80px) rotate(0deg);
    }
    100% {
        transform: rotate(-360deg) translateX(80px) rotate(360deg);
    }
}

@keyframes orbit3 {
    0% {
        transform: translateX(-50%) rotate(0deg) translateY(60px) rotate(0deg);
    }
    100% {
        transform: translateX(-50%) rotate(360deg) translateY(60px) rotate(-360deg);
    }
}

/* Feature List */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.feature-icon {
    flex-shrink: 0;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.feature-content h6 {
    color: #333;
    font-weight: 600;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-header-gradient {
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card-header-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

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

.bg-gradient-success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.service-icon {
    margin-bottom: 1rem;
}

/* Pricing Highlight */
.pricing-highlight {
    max-width: 400px;
    margin: 0 auto;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
}

.price-period {
    font-size: 1.2rem;
    color: #6c757d;
}

.price-features {
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
}

/* Process Steps Enhancements */
.integration-step {
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.integration-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.integration-step:hover::before {
    left: 100%;
}

.integration-step:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

/* FAQ Section Enhancements */
.accordion-button {
    font-weight: 600;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.25);
}

/* Contact Form Enhancements */
.form-control-lg {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.form-control-lg:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-stats {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .animated-maintenance-icon {
        width: 150px;
        height: 150px;
    }
    
    .maintenance-circle {
        width: 80px;
        height: 80px;
    }
    
    .orbit {
        width: 30px;
        height: 30px;
    }
}

/* --- Training Page Enhanced Styles --- */

/* Hero Section Animations */
.hero-animation-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float-shape 15s infinite ease-in-out;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 70%;
    right: 10%;
    animation-delay: 3s;
}

.shape-3 {
    width: 40px;
    height: 40px;
    bottom: 20%;
    left: 15%;
    animation-delay: 6s;
}

@keyframes float-shape {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.1;
    }
    33% {
        transform: translateY(-30px) translateX(20px) rotate(120deg);
        opacity: 0.2;
    }
    66% {
        transform: translateY(20px) translateX(-20px) rotate(240deg);
        opacity: 0.15;
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

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

/* Overview Section */
.overview-image-wrapper {
    position: relative;
}

.floating-badge {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float-badge 3s ease-in-out infinite;
}

.badge-1 {
    top: 20px;
    right: -20px;
}

.badge-2 {
    bottom: 30px;
    left: -10px;
    animation-delay: 1.5s;
}

.badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.badge-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.badge-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes float-badge {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(102, 126, 234, 0.05);
    transform: translateX(5px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h5 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.feature-content p {
    margin-bottom: 0;
    font-size: 0.875rem;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -30px;
    top: 20px;
    z-index: 2;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.timeline-content {
    margin-left: 50px;
}

.process-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #667eea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: #667eea;
}

.process-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.feature-tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Course Categories */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-btn {
    background: white;
    border: 2px solid #e9ecef;
    color: #6c757d;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-btn:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
}

.category-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white;
}

/* Course Cards */
.course-card {
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.course-header {
    position: relative;
}

.course-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.course-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.course-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-topics {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.course-topics li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.course-topics li:last-child {
    border-bottom: none;
}

.course-footer {
    display: flex;
    gap: 0.75rem;
}

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

.bg-gradient-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%) !important;
}

.bg-gradient-danger {
    background: linear-gradient(135deg, #dc3545 0%, #e83e8c 100%) !important;
}

.bg-gradient-info {
    background: linear-gradient(135deg, #17a2b8 0%, #6f42c1 100%) !important;
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%) !important;
}

.bg-gradient-dark {
    background: linear-gradient(135deg, #343a40 0%, #212529 100%) !important;
}

.bg-gradient-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
}

/* FAQ Accordion */
.faq-accordion {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.faq-item {
    border-bottom: 1px solid #f1f3f5;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 1.5rem;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question:not(.collapsed) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.faq-question:not(.collapsed) .toggle-icon {
    transform: rotate(180deg);
}

.question-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.faq-answer {
    padding: 1.5rem;
    background: #fafbfc;
    color: #6c757d;
    line-height: 1.6;
}

/* Contact Section */
.contact-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.contact-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.method-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.method-content h6 {
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.method-content p {
    margin-bottom: 0;
    font-size: 0.8rem;
    opacity: 0.9;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    color: white;
}

.contact-form-wrapper {
    height: 100%;
}

.input-group .form-control {
    border-left: none;
}

.input-group .form-control:focus {
    border-left: none;
    box-shadow: none;
    border-color: #667eea;
}

.input-group-text {
    border-right: none;
    background: #f8f9fa;
    border: 1px solid #ced4da;
    color: #667eea;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-marker {
        left: -20px;
    }
    
    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .timeline-content {
        margin-left: 30px;
    }
    
    .category-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .contact-wrapper .row {
        flex-direction: column;
    }
    
    .contact-info {
        border-radius: 16px 16px 0 0 !important;
    }
    
    .contact-form-wrapper {
        border-radius: 0 0 16px 16px !important;
    }
}

/* --- Consulting Page Styles --- */

/* Hero Section Styles */
.consulting-hero {
    position: relative;
    overflow: hidden;
}

.consulting-hero .hero-animation-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.consulting-hero .particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float-particle 20s infinite ease-in-out;
}

.particle-1 {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 80%;
    animation-delay: 3s;
}

.particle-3 {
    width: 3px;
    height: 3px;
    top: 80%;
    left: 20%;
    animation-delay: 6s;
}

.particle-4 {
    width: 5px;
    height: 5px;
    top: 40%;
    left: 60%;
    animation-delay: 9s;
}

.particle-5 {
    width: 4px;
    height: 4px;
    top: 70%;
    left: 40%;
    animation-delay: 12s;
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.1;
    }
    25% {
        transform: translateY(-30px) translateX(20px);
        opacity: 0.3;
    }
    50% {
        transform: translateY(20px) translateX(-10px);
        opacity: 0.2;
    }
    75% {
        transform: translateY(-15px) translateX(-20px);
        opacity: 0.4;
    }
}

.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-bottom svg {
    position: relative;
    display: block;
    width: 100%;
    height: 120px;
}

/* Stats Section */
.bg-gradient-primary {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 25%, #6366f1 50%, #8b5cf6 75%, #a855f7 100%) !important;
}

.stat-box {
    padding: 2rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    animation: countUp 2s ease-out;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card Styles */
.advantage-card,
.service-card,
.expertise-card,
.testimonial-card,
.process-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

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

.icon-wrapper {
    transition: all 0.3s ease;
}

.advantage-card:hover .icon-wrapper,
.service-card:hover .icon-wrapper,
.expertise-card:hover .icon-wrapper {
    transform: scale(1.1);
}

/* Process Cards */
.process-card {
    position: relative;
    transition: all 0.3s ease;
}

.number-circle {
    transition: all 0.3s ease;
}

.process-card:hover .number-circle {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.arrow-connector {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    z-index: 10;
    color: #6c757d;
}

/* Testimonial Cards */
.testimonial-rating {
    color: #ffc107;
}

.author-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FAQ Accordion */
.accordion-button {
    background: #f8f9fa;
    border: none;
    padding: 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #1e3a8a 0%, #6366f1 100%);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 1.25rem;
    background: white;
    border-top: 1px solid #e9ecef;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.input-group .form-control {
    border-left: none;
}

.input-group .form-control:focus {
    border-left: none;
    box-shadow: none;
    border-color: #6366f1;
}

.input-group-text {
    border-right: none;
    background: linear-gradient(135deg, #1e3a8a 0%, #6366f1 100%);
    border: none;
}

.form-floating label {
    color: #6c757d;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

/* Hover Effects */
.hover-lift {
    transition: all 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .consulting-hero {
        min-height: 500px !important;
    }
    
    .consulting-hero h1 {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .arrow-connector {
        display: none;
    }
    
    .process-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .consulting-hero h1 {
        font-size: 2rem;
    }
    
    .consulting-hero .lead {
        font-size: 1.1rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* --- Integration Page UI/UX Enhancements --- */

/* Enhanced Hero Section */
.service-hero {
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(14, 165, 233, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(237, 43, 41, 0.3) 0%, transparent 50%);
    animation: heroGradientShift 8s ease-in-out infinite;
}

@keyframes heroGradientShift {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 12s infinite linear;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; }
.particle:nth-child(5) { left: 50%; animation-delay: 8s; }
.particle:nth-child(6) { left: 60%; animation-delay: 10s; }
.particle:nth-child(7) { left: 70%; animation-delay: 1s; }
.particle:nth-child(8) { left: 80%; animation-delay: 3s; }
.particle:nth-child(9) { left: 90%; animation-delay: 5s; }
.particle:nth-child(10) { left: 15%; animation-delay: 7s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

.service-hero .container {
    position: relative;
    z-index: 2;
}

.service-hero h1 {
    animation: heroTitleSlide 1s ease-out;
}

.service-hero p {
    animation: heroTextSlide 1.2s ease-out;
}

.service-hero .btn-primary {
    animation: heroButtonSlide 1.4s ease-out;
}

@keyframes heroTitleSlide {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroTextSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroButtonSlide {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Enhanced Integration Overview Section */
.integration-overview-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.integration-overview-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: cardShine 3s ease-in-out infinite;
}

@keyframes cardShine {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.integration-overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.integration-feature-list {
    list-style: none;
    padding: 0;
}

.integration-feature-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
}

.integration-feature-list li:hover {
    padding-left: 2.5rem;
    background: rgba(255,255,255,0.05);
}

.integration-feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 1.5rem;
    height: 1.5rem;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Enhanced Benefits Section */
.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ed2b29, #0ea5e9);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: #0ea5e9;
}

.benefit-card .fa-2x {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ed2b29, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.benefit-card:hover .fa-2x {
    transform: scale(1.1) rotate(5deg);
}

/* Enhanced Process Section */
.integration-step {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
    cursor: pointer;
}

.integration-step:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #0ea5e9;
}

.integration-step .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.integration-step:hover .icon {
    transform: rotate(360deg) scale(1.1);
}

.integration-step .icon i {
    color: white;
    font-size: 2rem;
}

.arrow-icon {
    color: #0ea5e9;
    font-size: 2rem;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* Enhanced Tech Stack Section */
.tech-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
    cursor: pointer;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ed2b29 0%, #0ea5e9 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.tech-card:hover::before {
    opacity: 0.9;
}

.tech-card:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.tech-card:hover .tech-icon {
    transform: scale(1.2) rotate(360deg);
    filter: brightness(0) invert(1);
}

.tech-card:hover p {
    color: white;
    transform: scale(1.05);
}

.tech-icon {
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.tech-card p {
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    font-weight: 600;
}

/* Enhanced FAQ Section */
.accordion-button {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #ed2b29 0%, #0ea5e9 100%);
    color: white;
}

.accordion-button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(45deg, #ed2b29, #0ea5e9);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::before {
    transform: scaleY(1);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.accordion-body {
    background: white;
    border-top: 1px solid #f0f0f0;
}

/* Enhanced Contact Form */
.contact-form-enhanced {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ed2b29, #0ea5e9);
}

.form-control-lg {
    border-radius: 10px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.form-control-lg:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 0.2rem rgba(14, 165, 233, 0.25);
    transform: translateY(-2px);
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.btn-primary.btn-lg {
    background: linear-gradient(135deg, #ed2b29 0%, #0ea5e9 100%);
    border: none;
    border-radius: 50px;
    padding: 1rem 3rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary.btn-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Enhanced Section Navigation */
#section-nav {
    background: rgba(255,255,255,0.95) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.1);
}

#section-nav .nav-link {
    color: #333;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

#section-nav .nav-link:hover,
#section-nav .nav-link.active {
    background: linear-gradient(135deg, #ed2b29 0%, #0ea5e9 100%);
    color: white;
    transform: translateX(5px);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .integration-step {
        margin-bottom: 1rem;
    }
    
    .tech-card {
        margin-bottom: 1rem;
    }
    
    .benefit-card {
        margin-bottom: 1rem;
    }
    
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .service-hero p {
        font-size: 1.1rem;
    }
}

/* --- Implementation Page Styles --- */

/* Hero Section Enhancements */
.btn-hero-animation {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-hero-animation:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

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

/* Implementation Overview Section */
.implementation-overview .image-container {
    overflow: hidden;
    border-radius: 15px;
}

.implementation-overview .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.implementation-overview .image-container:hover .image-overlay {
    opacity: 1;
}

.implementation-overview .overlay-content {
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.implementation-overview .image-container:hover .overlay-content {
    transform: scale(1);
}

.implementation-overview .feature-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.implementation-overview .feature-item:hover {
    transform: translateX(5px);
}

.implementation-overview .feature-item:last-child {
    border-bottom: none;
}

/* Benefits Section */
.bg-gradient-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.benefit-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: #667eea;
}

.benefit-card .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.benefit-card:hover .icon-wrapper {
    transform: scale(1.1);
}

.benefit-card .icon-wrapper i {
    color: white;
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.process-step {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.step-number {
    position: relative;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #667eea;
    color: white;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
}

.process-step:hover .step-badge {
    transform: scale(1.1);
}

/* Approach Section */
.approach-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.approach-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.approach-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.approach-card .icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.approach-card:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Tech Stack Section */
.tech-stack-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.tech-item {
    padding: 20px;
    border-radius: 10px;
    background: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.tech-item:hover p {
    color: white;
}

.tech-item img {
    transition: transform 0.3s ease;
    filter: grayscale(100%);
}

.tech-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-section .accordion-item {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-section .accordion-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-section .accordion-button {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
}

.faq-section .accordion-body {
    background: white;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-form {
    border: none;
    transition: all 0.3s ease;
}

.contact-form:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.btn-submit-animation {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit-animation:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

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

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

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

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

.hover-effect {
    transition: all 0.3s ease;
}

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

/* Section Headers */
.section-header {
    margin-bottom: 3rem;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .implementation-overview .image-container {
        margin-bottom: 2rem;
    }
    
    .benefit-card,
    .approach-card,
    .process-step {
        margin-bottom: 1.5rem;
    }
    
    .tech-item {
        margin-bottom: 1rem;
    }
}

/* --- UI/UX Design Page Styles --- */

/* Hero Section Animations */
.hero-animation-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.floating-design-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    color: white;
    animation: float-random 15s infinite ease-in-out;
}

.floating-icon-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon-2 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.floating-icon-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.floating-icon-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 6s;
}

.floating-icon-5 {
    top: 50%;
    left: 50%;
    animation-delay: 8s;
}

@keyframes float-random {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(10px) rotate(-5deg);
    }
    75% {
        transform: translateY(-15px) rotate(3deg);
    }
}

/* Fade In Animations */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in-up-delay {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.animate-fade-in-up-delay-2 {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.animate-fade-in-up-delay-3 {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

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

/* Enhanced Design Wheel */
.wheel-container {
    position: relative;
    width: 500px;
    height: 600px;
    margin: 0 auto;
    animation: wheel-rotate 30s linear infinite;
}

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

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    text-align: center;
    font-size: 1.1rem;
    box-shadow: 0 0 30px rgba(0,0,0,0.2);
    z-index: 10;
    animation: counter-rotate 30s linear infinite;
}

@keyframes counter-rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

.wheel-item {
    position: absolute;
    width: 140px;
    text-align: center;
    transition: all 0.3s ease;
    animation: counter-rotate 30s linear infinite;
}

.wheel-item:hover {
    transform: translate(-50%, -50%) scale(1.1);
    z-index: 20;
}

.wheel-item .card {
    border: none;
    padding: 15px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.wheel-item:hover .card {
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Positioning the wheel items */
.wheel-item:nth-child(1) { top: 0%; left: 50%; transform: translate(-50%, -50%) rotate(0deg); }
.wheel-item:nth-child(2) { top: 20%; left: 85%; transform: translate(-50%, -50%) rotate(45deg); }
.wheel-item:nth-child(3) { top: 50%; left: 100%; transform: translate(-50%, -50%) rotate(90deg); }
.wheel-item:nth-child(4) { top: 80%; left: 85%; transform: translate(-50%, -50%) rotate(135deg); }
.wheel-item:nth-child(5) { top: 100%; left: 50%; transform: translate(-50%, -50%) rotate(180deg); }
.wheel-item:nth-child(6) { top: 80%; left: 15%; transform: translate(-50%, -50%) rotate(225deg); }
.wheel-item:nth-child(7) { top: 50%; left: 0%; transform: translate(-50%, -50%) rotate(270deg); }
.wheel-item:nth-child(8) { top: 20%; left: 15%; transform: translate(-50%, -50%) rotate(315deg); }

/* Portfolio Showcase */
.portfolio-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

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

.portfolio-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.portfolio-content {
    text-align: center;
    color: white;
    padding: 20px;
}

/* Testimonials */
.testimonial-card {
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
    border-left-color: #667eea;
}

/* Design Tools */
.tool-card {
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
}

.tool-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Enhanced Service Cards */
.card.shadow-lg.border-0.rounded-lg.p-4.text-center.h-100 {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.card.shadow-lg.border-0.rounded-lg.p-4.text-center.h-100:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
    border-color: #667eea;
}

.card.shadow-lg.border-0.rounded-lg.p-4.text-center.h-100:hover i {
    transform: scale(1.1);
    color: #667eea;
}

/* Mobile Responsive Design */
@media (max-width: 767px) {
    .wheel-container {
        width: 350px;
        height: 420px;
    }
    
    .wheel-center {
        width: 120px;
        height: 120px;
        font-size: 0.9rem;
    }
    
    .wheel-item {
        width: 100px;
    }
    
    .wheel-item .card {
        padding: 10px;
    }
    
    .floating-design-icon {
        font-size: 1.5rem;
    }
    
    .portfolio-image-container {
        height: 200px;
    }
    
    .hero-stats .row {
        text-align: center;
    }
    
    .hero-stats .stat-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .wheel-container {
        width: 300px;
        height: 360px;
    }
    
    .wheel-center {
        width: 100px;
        height: 100px;
        font-size: 0.8rem;
    }
    
    .wheel-item {
        width: 80px;
    }
    
    .wheel-item .card {
        padding: 8px;
    }
    
    .wheel-item .card h6 {
        font-size: 0.8rem;
        margin-bottom: 0;
    }
    
    .wheel-item .card i {
        font-size: 1.2rem;
    }
}

/* --- Custom Software Development Page Styles --- */

/* Hero Section Enhancements */
.hero-animation {
    pointer-events: none;
}

.floating-code {
    animation: float 6s ease-in-out infinite;
}

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

.hero-badge .badge {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-buttons .btn {
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
}

/* Benefits Section */
.bg-gradient-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.benefit-card {
    transition: all 0.3s ease;
    border: none !important;
}

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

.benefit-icon {
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

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

.bg-gradient-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
}

.bg-gradient-info {
    background: linear-gradient(135deg, #17a2b8 0%, #6f42c1 100%);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, #dc3545 0%, #e83e8c 100%);
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

/* Process Timeline */
.process-step {
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.step-icon {
    margin: -40px auto 20px;
    position: relative;
    z-index: 1;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step-details {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.process-step:hover .step-details {
    opacity: 1;
}

/* Technology Stack */
.tech-stack {
    border-top: 1px solid #e9ecef;
}

.tech-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Industry Solutions */
.industry-card {
    transition: all 0.3s ease;
    border: none !important;
}

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

.industry-icon {
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1);
}

/* Success Metrics */
.counter {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Hover Effects */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

/* Animation Classes */
.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__fadeIn {
    animation-name: fadeIn;
}

.animate__fadeInDown {
    animation-name: fadeInDown;
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

.animate__delay-1s {
    animation-delay: 1s;
}

.animate__delay-2s {
    animation-delay: 2s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Enhancements */
.form-control-lg {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.form-control-lg:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.btn-lg {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .counter {
        font-size: 2rem;
    }
    
    .step-number,
    .step-icon {
        width: 60px !important;
        height: 60px !important;
    }
}

/* --- Testimonials Section --- */

.testimonial-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 15px;
}

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

.testimonial-stars {
    color: #ffc107;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.6;
}

.author-avatar {
    flex-shrink: 0;
}

.testimonial-author h6 {
    color: #333;
}

/* --- Portfolio Showcase --- */

.portfolio-item {
    transition: all 0.3s ease;
    overflow: hidden;
    border-radius: 15px;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1 !important;
}

.portfolio-content {
    background: white;
}

.project-tags .badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
}

/* --- Statistics Section --- */

.stat-item {
    padding: 2rem 1rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.stat-icon {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* --- Enhanced Service Cards --- */

.service-card-enhanced {
    position: relative;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
}

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

.service-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-enhanced:hover::before {
    transform: scaleX(1);
}

.service-icon .icon-wrapper {
    width: 80px;
    height: 80px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-card-enhanced:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.bg-gradient {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%) !important;
}

.bg-primary.bg-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.bg-success.bg-gradient {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%) !important;
}

.bg-info.bg-gradient {
    background: linear-gradient(135deg, #667eea 0%, #48b1bf 100%) !important;
}

.bg-warning.bg-gradient {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
}

.bg-danger.bg-gradient {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%) !important;
}

.bg-secondary.bg-gradient {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) !important;
}

.service-features {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.service-features li {
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
}

.service-features li:hover {
    transform: translateX(5px);
    color: var(--bs-primary);
}

/* --- Enhanced Web Development Hero Section --- */

/* Hero Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    animation: float 6s ease-in-out infinite;
}

.floating-element-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-element-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.floating-element-4 {
    width: 40px;
    height: 40px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

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

/* Hero Content Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out 0.3s both;
}

.animate-slide-up-delay {
    animation: slideUp 0.8s ease-out 0.5s both;
}

.animate-fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.7s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.9s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Badge */
.hero-badge .badge {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Hero Buttons */
.hero-buttons {
    margin-top: 2rem;
}

.hero-buttons .btn {
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hover-lift {
    transition: all 0.3s ease;
}

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

/* Trust Indicators */
.trust-indicators {
    margin-top: 3rem;
}

.trust-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.trust-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Enhanced Mobile Navigation & Responsiveness --- */

/* Fix Font Awesome icons display */
i.fas, i.far, i.fab, i.fa, .fa, .fas, .far, .fab {
  font-family: "Font Awesome 6 Free" !important;
  font-style: normal !important;
  font-variant: normal !important;
  text-rendering: auto !important;
  line-height: 1 !important;
}

i.fas, .fas {
  font-weight: 900 !important;
}

i.far, .far {
  font-weight: 400 !important;
}

i.fab, .fab {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
}

/* Additional fix for all Font Awesome icons */
[class^="fa-"], [class*=" fa-"] {
  font-family: "Font Awesome 6 Free" !important;
  font-style: normal !important;
  font-variant: normal !important;
  text-rendering: auto !important;
  line-height: 1 !important;
}

[class^="fab-"], [class*=" fab-"] {
  font-family: "Font Awesome 6 Brands" !important;
}

.fa-solid, [class*=" fa-solid"] {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}

.fa-regular, [class*=" fa-regular"] {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 400 !important;
}

.fa-brands, [class*=" fa-brands"] {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
}

/* Mobile Menu Improvements */
@media (max-width: 768px) {
  .nav-container {
    padding: 0.5rem 1rem;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    flex-direction: column;
    padding: 1rem;
    z-index: 1000;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links a {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    font-weight: 500;
  }
  
  .nav-links a:hover {
    background: #f8f9fa;
    color: #ed2b29;
  }
  
  .mega-menu-wrapper {
    width: 100%;
  }
  
  .mega-menu-trigger {
    display: block;
    width: 100%;
    text-align: left;
  }
  
  .mega-menu {
    position: static;
    box-shadow: none;
    background: #f8f9fa;
    margin: 0.5rem 0;
    padding: 1rem;
    border-radius: 8px;
  }
  
  .mega-menu-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .mega-menu-column {
    width: 100%;
  }
  
  .mega-menu-column h3 {
    font-size: 0.9rem;
    color: #ed2b29;
    margin-bottom: 0.5rem;
  }
  
  .mega-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .mega-menu-column li {
    margin-bottom: 0.25rem;
  }
  
  .mega-menu-column a {
    display: block;
    padding: 0.5rem;
    color: #666;
    font-size: 0.85rem;
    text-decoration: none;
  }
  
  .mega-menu-column a:hover {
    background: #e9ecef;
    color: #ed2b29;
  }
  
  /* Mobile menu toggle button */
  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ed2b29;
    cursor: pointer;
    padding: 0.5rem;
  }
}

/* Tablet responsiveness */
@media (min-width: 769px) and (max-width: 1024px) {
  .mega-menu-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .nav-links a {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }
}

/* Improved touch targets for mobile */
@media (max-width: 768px) {
  .btn {
    min-height: 44px;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
  
  .cta-button {
    min-height: 44px;
    padding: 0.75rem 1.5rem;
  }
  
  .card {
    margin-bottom: 1rem;
  }
  
  .service-card {
    margin-bottom: 1rem;
  }
}

/* Enhanced form responsiveness */
@media (max-width: 768px) {
  .form-control {
    font-size: 16px; /* Prevents zoom on iOS */
    min-height: 44px;
  }
  
  .form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
}

/* --- End Mobile Navigation & Responsiveness --- */

/* --- Marketing Page Custom Styles --- */
.hover-shadow:hover {
  box-shadow: 0 8px 24px rgba(237,43,41,0.15), 0 1.5px 4px rgba(0,0,0,0.06);
  transform: translateY(-4px) scale(1.03);
  transition: box-shadow 0.3s, transform 0.3s;
}
.testimonial-card {
  background: #f8fafc;
  border-left: 4px solid #ed2b29;
}
.step-circle {
  width: 44px;
  height: 44px;
  background: #ed2b29;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin: 0 auto;
  font-weight: bold;
}
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  z-index: 9999;
  transition: background 0.2s;
}
.whatsapp-float:hover {
  background: #128C7E;
  color: #fff;
  text-decoration: none;
}
.counter {
  transition: all 0.5s;
}
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.7s;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}
@media (max-width: 600px) {
  .step-circle {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }
  .whatsapp-float {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    bottom: 16px;
    right: 16px;
  }
}
/* --- End Marketing Page Custom Styles --- */

/* --- Solutions Page Enhanced Styles --- */
.solution-card {
  transition: all 0.3s ease;
  border: none;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ed2b29 0%, #0ea5e9 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.solution-card:hover::before {
  transform: scaleX(1);
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(237,43,41,0.15);
  background: #ffffff;
}

.solution-card i {
  transition: all 0.3s ease;
  display: inline-block;
}

.solution-card:hover i {
  transform: scale(1.2) rotate(5deg);
}

.solution-card h5 {
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.solution-card:hover h5 {
  color: #ed2b29;
}

.solution-card p {
  color: #6c757d;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.solution-card:hover p {
  color: #495057;
}

/* Process Step Enhancement */
.process-step {
  transition: all 0.3s ease;
  border: none;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 40px 40px 0;
  border-color: transparent #ed2b29 transparent transparent;
  transition: all 0.3s ease;
}

.process-step:hover::after {
  border-width: 0 60px 60px 0;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(237,43,41,0.1);
}

.process-step i {
  transition: all 0.3s ease;
}

.process-step:hover i {
  transform: scale(1.1);
}

/* Success Stories Card Enhancement */
.success-stories .card {
  transition: all 0.3s ease;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.success-stories .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(237,43,41,0.05) 0%, rgba(14,165,233,0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.success-stories .card:hover::before {
  opacity: 1;
}

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

.success-stories .card-title {
  color: #2c3e50;
  font-weight: 700;
  transition: color 0.3s ease;
}

.success-stories .card:hover .card-title {
  color: #ed2b29;
}

/* Stats Counter Enhancement */
.stats-achievements .counter {
  font-weight: 800;
  color: #ed2b29;
  transition: all 0.3s ease;
}

.stats-achievements .counter:hover {
  transform: scale(1.1);
  color: #0ea5e9;
}

.stat-wrapper {
  padding: 2rem 1rem;
  border-radius: 15px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(237,43,41,0.05) 0%, rgba(14,165,233,0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.stat-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(237,43,41,0.1);
}

.stat-wrapper .text-secondary {
  font-weight: 600;
  color: #6c757d;
  transition: color 0.3s ease;
}

.stat-wrapper:hover .text-secondary {
  color: #495057;
}

/* Feature Card Enhancement */
.feature-card {
  transition: all 0.3s ease;
  border: none;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ed2b29 0%, #0ea5e9 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(237,43,41,0.15);
  background: #ffffff;
}

.feature-card .icon-wrapper {
  transition: all 0.3s ease;
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(237,43,41,0.1) 0%, rgba(14,165,233,0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.feature-card:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(237,43,41,0.2) 0%, rgba(14,165,233,0.2) 100%);
}

.feature-card i {
  transition: all 0.3s ease;
}

.feature-card:hover i {
  transform: scale(1.2);
}

.feature-card h6 {
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.feature-card:hover h6 {
  color: #ed2b29;
}

.feature-card p {
  color: #6c757d;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.feature-card:hover p {
  color: #495057;
}

/* CTA Section Enhancement */
.bg-gradient {
  position: relative;
  overflow: hidden;
}

.bg-gradient::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.bg-gradient h2, .bg-gradient p {
  position: relative;
  z-index: 1;
}

.bg-gradient .btn {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  border: none;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bg-gradient .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Section Title Enhancement */
section h2 {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ed2b29 0%, #0ea5e9 100%);
  border-radius: 2px;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .solution-card {
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
  }
  
  .solution-card:hover {
    transform: translateY(-5px);
  }
  
  .process-step {
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
  }
  
  .process-step:hover::after {
    border-width: 0 40px 40px 0;
  }
  
  .feature-card {
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
  }
  
  .feature-card .icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .stat-wrapper {
    padding: 1.5rem 0.5rem;
    margin-bottom: 1rem;
  }
  
  .stat-wrapper:hover {
    transform: translateY(-3px);
  }
  
  section h2 {
    font-size: 1.75rem;
  }
  
  section h2::after {
    width: 40px;
  }
}

/* --- End Solutions Page Enhanced Styles --- */

/* --- Marketing Page Enhanced Styles --- */
.marketing-card {
  transition: all 0.3s ease;
  border: none;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.marketing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ed2b29 0%, #0ea5e9 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.marketing-card:hover::before {
  transform: scaleX(1);
}

.marketing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(237,43,41,0.15);
  background: #ffffff;
}

.marketing-card .card-body i {
  transition: all 0.3s ease;
  display: inline-block;
}

.marketing-card:hover .card-body i {
  transform: scale(1.2) rotate(5deg);
}

.marketing-card h5 {
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.marketing-card:hover h5 {
  color: #ed2b29;
}

.marketing-card ul li a {
  transition: all 0.3s ease;
  position: relative;
}

.marketing-card ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ed2b29;
  transition: width 0.3s ease;
}

.marketing-card:hover ul li a::after {
  width: 100%;
}

.marketing-card:hover ul li a {
  color: #ed2b29;
  transform: translateX(3px);
}

/* Case Study Card Enhancement */
.case-studies .card {
  transition: all 0.3s ease;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.case-studies .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(237,43,41,0.05) 0%, rgba(14,165,233,0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.case-studies .card:hover::before {
  opacity: 1;
}

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

.case-studies .card-img-top {
  transition: all 0.3s ease;
  height: 200px;
  object-fit: cover;
}

.case-studies .card:hover .card-img-top {
  transform: scale(1.05);
}

.case-studies .card-title {
  color: #2c3e50;
  font-weight: 700;
  transition: color 0.3s ease;
}

.case-studies .card:hover .card-title {
  color: #ed2b29;
}

.case-studies .link-danger {
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 600;
}

.case-studies .link-danger:hover {
  transform: translateX(5px);
  color: #0ea5e9;
}

.case-studies .badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.9) !important;
}

.case-studies .bg-success {
  color: #198754 !important;
}

.case-studies .bg-info {
  color: #0dcaf0 !important;
}

.case-studies .bg-warning {
  color: #ffc107 !important;
}

.case-studies .btn-outline-danger {
  transition: all 0.3s ease;
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
}

.case-studies .btn-outline-danger:hover {
  transform: translateX(5px);
  background: #ed2b29;
  border-color: #ed2b29;
}

/* Why Choose Us Enhancement */
.why-choose-us .border {
  transition: all 0.3s ease;
  border: none !important;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.why-choose-us .border::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ed2b29 0%, #0ea5e9 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.why-choose-us .border:hover::before {
  transform: scaleX(1);
}

.why-choose-us .border:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(237,43,41,0.15);
  background: #ffffff;
}

.why-choose-us .border i {
  transition: all 0.3s ease;
  display: inline-block;
}

.why-choose-us .border:hover i {
  transform: scale(1.2) rotate(5deg);
}

.why-choose-us .border h5 {
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.why-choose-us .border:hover h5 {
  color: #ed2b29;
}

/* Feature Card Enhancement for Marketing */
.feature-card {
  transition: all 0.3s ease;
  border: none !important;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ed2b29 0%, #0ea5e9 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(237,43,41,0.15);
  background: #ffffff;
}

.feature-card .icon-wrapper {
  transition: all 0.3s ease;
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(237,43,41,0.1) 0%, rgba(14,165,233,0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.feature-card:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(237,43,41,0.2) 0%, rgba(14,165,233,0.2) 100%);
}

.feature-card i {
  transition: all 0.3s ease;
}

.feature-card:hover i {
  transform: scale(1.2);
}

.feature-card h5 {
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.feature-card:hover h5 {
  color: #ed2b29;
}

.feature-card p {
  color: #6c757d;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.feature-card:hover p {
  color: #495057;
}

/* Process Step Enhancement for Marketing */
.our-process .process-step {
  transition: all 0.3s ease;
  border: none;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.our-process .process-step::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 40px 40px 0;
  border-color: transparent #ed2b29 transparent transparent;
  transition: all 0.3s ease;
}

.our-process .process-step:hover::after {
  border-width: 0 60px 60px 0;
}

.our-process .process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(237,43,41,0.1);
}

.our-process .step-circle {
  transition: all 0.3s ease;
}

.our-process .process-step:hover .step-circle {
  transform: scale(1.1);
  background: linear-gradient(135deg, #ed2b29 0%, #0ea5e9 100%);
}

/* Lead Magnet Section Enhancement */
.lead-magnet {
  position: relative;
  overflow: hidden;
}

.lead-magnet::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 3s infinite;
}

.lead-magnet .form-control,
.lead-magnet .btn {
  transition: all 0.3s ease;
}

.lead-magnet .form-control:focus {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.lead-magnet .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Video Section Enhancement */
.video-intro .ratio {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.video-intro .ratio::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(237,43,41,0.1) 0%, rgba(14,165,233,0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-intro .ratio:hover::before {
  opacity: 1;
}

.video-intro .ratio:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Review Badges Enhancement */
.review-badges img {
  transition: all 0.3s ease;
  filter: grayscale(100%);
  opacity: 0.7;
}

.review-badges img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* Awards Strip Enhancement */
.awards-strip span {
  transition: all 0.3s ease;
  display: inline-block;
}

.awards-strip span:hover {
  transform: translateY(-2px);
  color: #ed2b29;
}

/* About Story Section Enhancement */
.about-story img {
  transition: all 0.3s ease;
}

.about-story img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.about-story ul li {
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.about-story ul li:hover {
  transform: translateX(10px);
  color: #ed2b29;
}

/* Marketing Categories Section Enhancement */
.marketing-categories {
  position: relative;
}

.marketing-categories::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(237,43,41,0.02) 0%, rgba(14,165,233,0.02) 100%);
  pointer-events: none;
}

/* Digital Strategies Section Enhancement */
.digital-strategies .text-center {
  transition: all 0.3s ease;
}

.digital-strategies .text-center:hover i {
  transform: scale(1.2) rotate(5deg);
  color: #ed2b29;
}

/* Enhanced Marketing Page Styles */
.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.floating-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-2 {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.floating-3 {
  width: 40px;
  height: 40px;
  top: 40%;
  left: 80%;
  animation-delay: 4s;
}

.floating-4 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  right: 20%;
  animation-delay: 1s;
}

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

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge .badge {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.animate-text {
  animation: slideInFromTop 1s ease-out;
}

.animate-subtitle {
  animation: slideInFromBottom 1s ease-out 0.3s both;
}

.animate-buttons {
  animation: slideInFromBottom 1s ease-out 0.6s both;
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hover-lift {
  transition: all 0.3s ease;
}

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

.stat-item {
  padding: 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Enhanced Stats Section */
.bg-gradient-light {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
  position: relative;
}

.bg-gradient-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ed2b29" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></g></svg>');
  pointer-events: none;
}

.stat-card {
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, #ed2b29, #0ea5e9) border-box;
  transition: all 0.4s ease;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s ease;
}

.stat-card:hover::before {
  left: 100%;
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.stat-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(237,43,41,0.1), rgba(14,165,233,0.1));
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(237,43,41,0.2), rgba(14,165,233,0.2));
}

.progress {
  background-color: rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar {
  transition: width 2s ease-in-out;
  background: linear-gradient(90deg, #ed2b29, #0ea5e9);
}

/* Enhanced Video Section */
.video-container {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.video-placeholder {
  position: relative;
  background: linear-gradient(135deg, #ed2b29, #0ea5e9);
}

.video-overlay {
  background: rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

.video-container:hover .video-overlay {
  background: rgba(0,0,0,0.2);
}

.btn-play {
  width: 80px;
  height: 80px;
  border: none;
  transition: all 0.3s ease;
}

.btn-play:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.pulse-animation {
  animation: pulse 2s infinite;
}

.video-badges .badge {
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.section-badge .badge {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
}

.video-features .feature-item {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.video-features .feature-item:hover {
  background: rgba(237,43,41,0.05);
  transform: translateX(5px);
}

/* Enhanced Lead Magnet Section */
.lead-magnet-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float-shape 8s ease-in-out infinite;
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 10%;
  animation-delay: 3s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 80%;
  animation-delay: 6s;
}

@keyframes float-shape {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.1;
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
    opacity: 0.2;
  }
}

.lead-magnet-content {
  position: relative;
  z-index: 2;
}

.lead-magnet-features .feature-item {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.lead-magnet-features .feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.input-group {
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.input-group-lg .form-control {
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.input-group-lg .input-group-text {
  border: none;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.trust-indicators {
  opacity: 0.9;
}

.social-proof {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 0.5rem;
  margin-top: 0.5rem;
}

/* Enhanced Case Studies Section */
.case-study-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-btn {
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #ed2b29;
}

.filter-btn.active,
.filter-btn:hover {
  background: #ed2b29;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(237,43,41,0.3);
}

.case-item {
  opacity: 1;
  transform: scale(1);
  transition: all 0.5s ease;
}

.case-item.hidden {
  opacity: 0;
  transform: scale(0.8);
  position: absolute;
  pointer-events: none;
}

.case-study-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: all 0.4s ease;
}

.case-study-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(237,43,41,0.05) 0%, rgba(14,165,233,0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.case-study-card:hover::before {
  opacity: 1;
}

.case-study-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.case-study-card .card-img-top {
  height: 200px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.case-study-card:hover .card-img-top {
  transform: scale(1.05);
}

.case-metrics {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-radius: 10px;
  padding: 1rem;
  margin: 1rem 0;
}

.metric-item {
  padding: 0.5rem;
  border-radius: 8px;
  background: white;
  transition: all 0.3s ease;
}

.metric-item:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.metric-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .floating-element {
    display: none;
  }
  
  .hero-badge .badge {
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
  }
  
  .animate-text {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .case-study-filters {
    gap: 0.5rem;
  }
  
  .filter-btn {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
  }
  
  .btn-play {
    width: 60px;
    height: 60px;
  }
  
  .lead-magnet-features .feature-item {
    font-size: 0.9rem;
  }
}

.digital-strategies .text-center:hover h5 {
  color: #ed2b29;
}

/* Marketing Page Responsive Enhancements */
@media (max-width: 768px) {
  .marketing-card {
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
  }
  
  .marketing-card:hover {
    transform: translateY(-5px);
  }
  
  .case-studies .card:hover {
    transform: translateY(-5px);
  }
}

/* Enhanced Contact Section Styles */
.contact-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.contact-form-card {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(237,43,41,0.1), transparent);
  transition: left 0.8s ease;
}

.contact-form-card:hover::before {
  left: 100%;
}

.consultation-form .form-control,
.consultation-form .form-select {
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
}

.consultation-form .form-control:focus,
.consultation-form .form-select:focus {
  border-color: #ed2b29;
  box-shadow: 0 0 0 0.2rem rgba(237,43,41,0.1);
  transform: translateY(-2px);
}

.consultation-form .form-label {
  color: #2d3748;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-features .feature-item {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-features .feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(10px);
  border-color: rgba(255, 255, 255, 0.3);
}

.contact-info {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Enhanced CTA Section */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><circle cx="50" cy="50" r="2"/></g></g></svg>');
  pointer-events: none;
}

.trust-item {
  text-align: center;
  padding: 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.trust-item i {
  color: #fbbf24;
  transition: all 0.3s ease;
}

.trust-item:hover i {
  transform: scale(1.2);
  color: #f59e42;
}

/* Enhanced Review Badges */
.badge-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.badge-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Enhanced Story Section */
.story-image {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.story-image img {
  transition: all 0.3s ease;
}

.story-image:hover img {
  transform: scale(1.05);
}

.story-features .feature-item {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.story-features .feature-item:hover {
  background: rgba(237,43,41,0.05);
  transform: translateX(10px);
}

/* Enhanced Awards Section */
.awards-strip .badge {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.awards-strip .badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Additional Animations */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-left {
  animation: slideInFromLeft 1s ease-out;
}

.animate-right {
  animation: slideInFromRight 1s ease-out;
}

/* Enhanced Button Styles */
.btn-danger {
  background: linear-gradient(135deg, #ed2b29, #dc2626);
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(237,43,41,0.3);
  background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.btn-warning {
  background: linear-gradient(135deg, #fbbf24, #f59e42);
  border: none;
  transition: all 0.3s ease;
}

.btn-warning:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(251,191,36,0.3);
  background: linear-gradient(135deg, #f59e42, #d97706);
}

/* Enhanced Form Styles */
.form-control,
.form-select {
  border-radius: 10px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #ed2b29;
  box-shadow: 0 0 0 0.2rem rgba(237,43,41,0.1);
}

/* Enhanced Card Styles */
.card {
  border-radius: 15px;
  border: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

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

/* Enhanced Badge Styles */
.badge {
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 50px;
}

/* Enhanced Section Headers */
.section-badge .badge {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 1.5rem;
}

/* Enhanced Loading States */
.loading {
  position: relative;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #ed2b29;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes trustPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

.trust-pulse {
  animation: trustPulse 2s infinite;
}

/* Enhanced Trust-Building Elements */
.trust-bar {
  backdrop-filter: blur(10px);
  z-index: 10;
}

.trust-item-small {
  transition: all 0.3s ease;
}

.trust-item-small:hover {
  transform: translateY(-2px);
}

.proof-item {
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.proof-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.proof-number {
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.proof-stars {
  font-size: 0.8rem;
}

.client-logo-placeholder {
  transition: all 0.3s ease;
  cursor: pointer;
}

.client-logo-placeholder:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Enhanced Testimonials Section */
.testimonial-card {
  transition: all 0.4s ease;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, #ed2b29, #0ea5e9) border-box;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(237,43,41,0.05), transparent);
  transition: left 0.8s ease;
}

.testimonial-card:hover::before {
  left: 100%;
}

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

.testimonial-rating {
  font-size: 1.2rem;
}

.testimonial-text {
  font-style: italic;
  line-height: 1.6;
  color: #4a5568;
}

.author-avatar {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar {
  transform: scale(1.1);
}

.author-result {
  background: linear-gradient(135deg, #10b981, #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonial-badge {
  backdrop-filter: blur(10px);
}

.testimonial-summary {
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.testimonial-summary:hover {
  border-color: #ed2b29;
  box-shadow: 0 10px 30px rgba(237,43,41,0.1);
}

.summary-number {
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* Enhanced Hero Section */
.service-hero {
  position: relative;
  overflow: hidden;
}

.hero-content {
  z-index: 5;
  position: relative;
}

.hero-badge .badge {
  font-size: 1rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.social-proof-hero .proof-item {
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Enhanced Button Trust Elements */
.btn-warning {
  position: relative;
  overflow: hidden;
}

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

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

/* Enhanced Guarantee Section */
.guarantee-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.guarantee-card {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.guarantee-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(16,185,129,0.1), transparent);
  transition: left 0.8s ease;
}

.guarantee-card:hover::before {
  left: 100%;
}

.guarantee-icon {
  width: 100px;
  height: 100px;
  transition: all 0.3s ease;
}

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

.point-item {
  display: flex;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.point-item:hover {
  background: rgba(16,185,129,0.05);
  transform: translateX(5px);
}

.point-number {
  width: 40px;
  height: 40px;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.point-item:hover .point-number {
  transform: scale(1.1);
}

.guarantee-stats .stat-item {
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.guarantee-stats .stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

/* Enhanced Contact Form */
.form-header {
  position: relative;
}

.form-badge .badge {
  font-size: 0.8rem;
  font-weight: 700;
  animation: pulse 2s infinite;
}

.contact-form-card {
  position: relative;
  overflow: hidden;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(237,43,41,0.1), transparent);
  transition: left 0.8s ease;
}

.contact-form-card:hover::before {
  left: 100%;
}

.form-footer {
  border-top: 1px solid #e2e8f0;
  padding-top: 1rem;
  margin-top: 1rem;
}

/* Enhanced Trust Indicators */
.trust-pulse {
  animation: trustPulse 2s infinite;
}

@keyframes trustPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

/* Enhanced Button Styles */
.btn-success {
  background: linear-gradient(135deg, #10b981, #059669);
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(16,185,129,0.3);
  background: linear-gradient(135deg, #059669, #047857);
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
  .guarantee-card {
    margin-top: 2rem;
  }
  
  .guarantee-icon {
    width: 80px;
    height: 80px;
  }
  
  .point-item {
    padding: 0.75rem;
  }
  
  .point-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .form-header {
    margin-bottom: 1rem;
  }
  
  .form-badge .badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.75rem;
  }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
  .contact-form-card {
    margin-top: 2rem;
  }
  
  .cta-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-actions .btn {
    width: 100%;
  }
  
  .trust-badges .trust-item {
    margin-bottom: 1rem;
  }
  
  .badge-item {
    margin-bottom: 1rem;
    width: 100%;
  }
  
  .awards-strip .badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
  }
  
  .story-image {
    margin-top: 2rem;
  }
  
  .contact-features .feature-item {
    font-size: 0.9rem;
  }
  
  .contact-info {
    padding: 1rem;
  }
  
  .case-studies .card-img-top {
    height: 150px;
  }
  
  .why-choose-us .border,
  .feature-card {
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
  }
  
  .why-choose-us .border:hover,
  .feature-card:hover {
    transform: translateY(-5px);
  }
  
  .our-process .process-step {
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
  }
  
  .our-process .process-step:hover::after {
    border-width: 0 40px 40px 0;
  }
  
  .video-intro .ratio:hover {
    transform: scale(1.01);
  }
  
  .lead-magnet .input-group {
    flex-direction: column;
  }
  
  .lead-magnet .btn {
    margin-top: 1rem;
  }
}

/* --- End Marketing Page Enhanced Styles --- */

/* Team Card Styles - Force Center Alignment */
.team-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.team-card .card-body {
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 1rem !important;
}

.team-card .card-title {
  text-align: center !important;
  margin: 0 auto 0.5rem auto !important;
  display: block !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
}

.team-card .card-text {
  text-align: center !important;
  margin: 0 auto !important;
  display: block !important;
  font-size: 0.9rem !important;
  line-height: 1.4 !important;
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
}

.team-card img {
  margin: 0 auto !important;
  display: block !important;
}

/* Override Bootstrap and any other conflicting styles */
section .team-card .card-title,
section .team-card .card-text {
  text-align: center !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
  position: static !important;
}

/* Force center for all text elements in team cards */
.team-card h5,
.team-card p,
.team-card .card-title,
.team-card .card-text {
  text-align: center !important;
  justify-content: center !important;
  align-items: center !important;
  margin-left: auto !important;
}

.team-card:hover .team-social-links {
    opacity: 1;
}

.team-social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    color: #ed2b29;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    margin-left: 5px;
    transition: background 0.3s ease, color 0.3s ease;
}

.team-social-links a:hover {
    background: #ed2b29;
    color: white;
}

/* Solutions Divider */
.solutions-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ed2b29, #0ea5e9, #8b5cf6);
    border-radius: 2px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .floating-icon {
        font-size: 1.5rem;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

/* Timeline Styles */
.timeline-horizontal-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}
.timeline-horizontal-wrapper::-webkit-scrollbar {
  display: none;
}
.timeline-horizontal {
  display: flex;
  align-items: flex-end;
  gap: 48px;
  min-width: 700px;
  padding: 24px 0 16px 0;
  position: relative;
  transition: box-shadow .2s;
  user-select: none;
}
.timeline-horizontal::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 4px;
  background: linear-gradient(90deg, #ed2b29 0%, #f6f8fa 100%);
  z-index: 0;
  border-radius: 2px;
  transform: translateY(-50%);
}
.timeline-event {
  position: relative;
  min-width: 120px;
  flex: 0 0 160px;
  z-index: 1;
  text-align: center;
  cursor: grab;
  opacity: 0;
  transform: translateY(40px);
  animation: timelineFadeIn .8s forwards;
}
.timeline-event:nth-child(1) { animation-delay: 0.1s; }
.timeline-event:nth-child(2) { animation-delay: 0.3s; }
.timeline-event:nth-child(3) { animation-delay: 0.5s; }
.timeline-event:nth-child(4) { animation-delay: 0.7s; }
.timeline-event:nth-child(5) { animation-delay: 0.9s; }
.timeline-event:nth-child(6) { animation-delay: 1.1s; }
.timeline-event:nth-child(7) { animation-delay: 1.3s; }
.timeline-dot {
  width: 22px; height: 22px;
  background: #ed2b29;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto 10px auto;
  box-shadow: 0 2px 8px rgba(237,43,41,0.12);
  position: relative;
  z-index: 2;
  transition: box-shadow .2s;
}
.timeline-year {
  font-weight: 700;
  color: #ed2b29;
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.timeline-desc {
  font-size: 1rem;
  color: #22223b;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  margin-top: 6px;
  padding: 8px 10px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-horizontal.active {
  cursor: grabbing;
  box-shadow: 0 4px 18px rgba(237,43,41,0.08);
}
@media (max-width: 900px) {
  .timeline-horizontal {
    min-width: 600px;
    gap: 32px;
  }
  .timeline-event {
    flex: 0 0 120px;
  }
}
@media (max-width: 600px) {
  .timeline-horizontal {
    min-width: 400px;
    gap: 16px;
  }
  .timeline-event {
    flex: 0 0 90px;
    font-size: 0.9rem;
  }
  .timeline-desc {
    font-size: 0.95rem;
    padding: 6px 6px;
  }
}
@keyframes timelineFadeIn {
  to { opacity: 1; transform: none; }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
:root {
  --primary-color: #ed2b29;
  --secondary-color: #22223b;
  --accent-color: #ed2b29;
  --background: #fff;
  --background-alt: #f6f8fa;
  --text-color: #22223b;
  --text-light: #6b7280;
  --border-color: #ed2b29;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Poppins', Arial, sans-serif;
  background: var(--background);
  color: var(--text-color);
  line-height: 1.6;
}
.header {
  background: var(--background);
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.07);
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
}
.logo a {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color .2s;
  font-family: 'Poppins', Arial, sans-serif;
}
.logo a:hover {
  color: var(--accent-color);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-left: 1.5rem;
  position: relative;
}
.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.08rem;
  padding: 0.7rem 1.2rem;
  border-radius: 28px;
  transition: background .2s, color .2s;
  position: relative;
  font-family: 'Poppins', Arial, sans-serif;
}
.nav-links a:hover,
.nav-links a:focus,
.cta-button:hover {
  background: var(--primary-color);
  color: #fff;
  outline: none;
}
.cta-button {
  background: var(--primary-color);
  color: #fff;
  font-weight: 600;
  padding: 0.7rem 1.3rem;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(237,43,41,0.08);
  transition: background .2s, color .2s;
}
.mega-menu-wrapper {
  position: relative;
}
.mega-menu-trigger {
  cursor: pointer;
  font-weight: 500;
  position: relative;
}
.mega-menu {
  position: fixed;
  left: 10%;
  top: 70px;
  transform: translateX(-50%);
  width: min(1100px, 95vw);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(30,64,175,0.13), 0 2px 8px rgba(0,0,0,0.05);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 2rem 2.2rem 1.5rem 2.2rem;
  z-index: 9999;
  border: 1px solid var(--border-color);
  font-family: 'Poppins', Arial, sans-serif;
}
.mega-menu::before,
.mega-menu::after {
  display: none !important;
}
@media (max-width: 900px) {
  .mega-menu {
    width: 100vw !important;
    left: 0 !important;
    transform: none !important;
    min-width: 0 !important;
    border-radius: 0 0 16px 16px;
    top: 70px;
  }
}

.mega-menu::before {
  content: '';
  display: block;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 12px;
  background: transparent;
}
.mega-menu::after {
  content: '';
  display: block;
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: #fff;
  border-left: 1px solid var(--border-color);
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -2px 6px rgba(30,64,175,0.06);
  border-radius: 4px 0 0 0;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.mega-menu-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem;
  padding: 0.4rem 0;
  margin-left: auto;
  margin-right: auto;
  min-width: 750px;
}
.mega-menu-column h3 {
  color: var(--primary-color);
  font-size: 1.13rem;
  margin-bottom: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-family: 'Poppins', Arial, sans-serif;
}
.mega-menu-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mega-menu-column ul li,
.mega-menu-column ul li a {
  color: var(--text-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  padding: 0.28rem 0.2rem;
  border-radius: 5px;
  transition: var(--transition);
  font-weight: 500;
  cursor: pointer;
  font-family: 'Poppins', Arial, sans-serif;
}
.mega-menu-column ul li:hover,
.mega-menu-column ul li a:hover,
.mega-menu-column ul li:focus,
.mega-menu-column ul li a:focus {
  background: var(--background-alt);
  color: var(--primary-color);
  outline: none;
}
.mega-menu-wrapper:hover .mega-menu,
.mega-menu-wrapper:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.hero {
  background: linear-gradient(90deg, #fff 60%, #f7b801 100%);
  padding: 5rem 0 3rem 0;
  text-align: center;
}
.hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.2rem;
}
.hero p {
  color: var(--text-light);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.footer {
  background: var(--background-alt);
  padding: 2rem 0 1.2rem 0;
  margin-top: 3rem;
  color: var(--text-color);
  text-align: center;
  font-size: 1rem;
}
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 1rem;
  }
  .mega-menu {
    min-width: 500px;
  }
}
@media (max-width: 900px) {
  .mega-menu-content {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .mega-menu {
    min-width: 0;
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
}
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    height: auto;
    padding: 0 0.5rem;
  }
  .logo {
    margin: 1rem 0;
  }
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0.7rem;
  }
  .mega-menu {
    position: fixed;
    top: 0;
    left: 100vw;
    right: 0;
    min-width: 0;
    width: 100vw;
    height: 100vh;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    background: var(--background);
    z-index: 1000;
    transition: left 0.3s cubic-bezier(0.4,0,0.2,1);
    border: none;
    display: block;
  }
  .mega-menu.active {
    left: 0;
  }
  .mega-menu-content {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 2.5rem 1.2rem 1.2rem 1.2rem;
  }
  .mega-menu-wrapper {
    width: 100%;
  }
  .mega-menu-wrapper .mega-menu {
    display: none;
  }
  .mega-menu-wrapper .mega-menu.active {
    display: block;
  }
  .mega-menu-wrapper:hover .mega-menu,
  .mega-menu-wrapper:focus-within .mega-menu {
    display: none;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  .footer {
    font-size: 0.95rem;
  }
  .nav-links a {
    font-size: 0.95rem;
    padding: 0.5rem 0.7rem;
  }
}


.about-content {
  max-width: 900px;
  margin: 0 auto 2rem auto;
  padding: 2.5rem 1.2rem 1.2rem 1.2rem;
  text-align: center;
}

.vision-values-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 2.5rem 0 1.5rem 0;
}
@media (max-width: 900px) {
  .vision-values-expertise {
    flex-direction: column;
    gap: 1.2rem;
    align-items: stretch;
  }
}

.vision-card, .values-card, .expertise-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 16px rgba(30,64,175,0.08);
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 340px;
  padding: 2rem 1.2rem 1.2rem 1.2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.vision-card h2, .values-card h2, .expertise-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #2241a6;
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.vision-card h2::before {
  content: '\1F441'; /* eye icon */
  font-size: 1.15em;
}
.values-card h2::before {
  content: '\1F4AA'; /* flexed biceps icon */
  font-size: 1.15em;
}
.expertise-card h2::before {
  content: '\1F4BB'; /* laptop icon */
  font-size: 1.15em;
}
.vision-card p, .values-card ul, .expertise-card ul {
  font-size: 1.08rem;
  color: #222;
  margin-bottom: 0.7rem;
}
.values-card ul, .expertise-card ul {
  padding-left: 1.2rem;
  margin-bottom: 0.3rem;
}
.values-card li, .expertise-card li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1.2em;
  list-style: none;
  color: #2241a6;
  font-weight: 500;
}
.values-card li::before, .expertise-card li::before {
  content: '\2022';
  color: #2241a6;
  position: absolute;
  left: 0;
  font-size: 1.1em;
  top: 0.1em;
}

.about-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 0.01em;
  font-family: 'Poppins', Arial, sans-serif;
}
.about-content p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  font-family: 'Poppins', Arial, sans-serif;
}
.about-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-content ul li {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  font-family: 'Poppins', Arial, sans-serif;
}

.expertise-content {
  max-width: 650px;
  margin: 0 auto;
  padding: 2.5rem 1.2rem;
  text-align: center;
}
.expertise-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 0.01em;
  font-family: 'Poppins', Arial, sans-serif;
} 
.expertise-content p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  font-family: 'Poppins', Arial, sans-serif;
}
.expertise-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.expertise-content ul li {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  font-family: 'Poppins', Arial, sans-serif;
}

/* HERO BANNER STYLES */
#hero-banner-inner {
  position: relative;
  min-height: 340px;
  height: 340px;
  background: url('../images/marketing-banner.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
#hero-banner-inner .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30,30,30,0.45);
  z-index: 1;
}
#hero-banner-inner .container {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}
#hero-banner-inner h1,
#hero-banner-inner p,
#hero-banner-inner a {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  #hero-banner-inner {
    min-height: 220px;
    height: 220px;
    padding: 32px 0;
  }
  #hero-banner-inner .container {
    padding-top: 40px;
  }
  #hero-banner-inner h1 {
    font-size: 2rem;
  }
  #hero-banner-inner p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  #hero-banner-inner {
    min-height: 140px;
    height: 140px;
    padding: 16px 0;
  }
  #hero-banner-inner .container {
    padding-top: 16px;
  }
  #hero-banner-inner h1 {
    font-size: 1.2rem;
  }
}

#hero-banner {
  padding-top: 440px;
  background: #fff url(../images/bg.png) no-repeat 100% bottom;
}

#hero-banner {
  overflow: hidden;
  height: 650px;
  color: #4C4C4C;
  border-bottom: 1px solid #BDBDBD;
}

/* Elegant Solutions Section Styles */
.solutions {
  background: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}
.solutions::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0, #e0e7ff 0%, transparent 70%);
  opacity: 0.25;
  z-index: -1;
}
.solutions h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.5px;
  margin-bottom: 0.7rem;
  position: relative;
}
.solutions-divider {
  width: 70px;
  height: 4px;
  background: #ed2b29;
  border-radius: 2px;
  margin-bottom: 0.7rem;
}
.solutions-subtitle {
  color: #ed2b29;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  letter-spacing: 0.1px;
}

.solutions p.text-center {
  color: #5a5a7a;
  font-size: 1.08rem;
  margin-bottom: 2.8rem;
}

.solution-card {
  border: 1.5px solid #ed2b29;
  border-radius: 1.5rem;
  transition: transform 0.22s cubic-bezier(.4,0,.2,1), box-shadow 0.22s cubic-bezier(.4,0,.2,1), border-color 0.22s;
  background: #fff;
  box-shadow: 0 4px 28px rgba(44,62,80,0.08), 0 1.5px 6px rgba(44,62,80,0.04);
  margin-bottom: 28px;
  padding: 2.5rem 1.6rem 2.2rem 1.6rem;
  position: relative;
  overflow: hidden;
}
.solution-card:hover {
  transform: translateY(-12px) scale(1.035);
  box-shadow: 0 12px 36px rgba(44,62,80,0.14), 0 2px 8px rgba(44,62,80,0.08);
  border-color: #111;
  z-index: 2;
}


/* Unique color accents for each solution card */
.solutions .solution-card:nth-child(1) .solution-icon { background: linear-gradient(135deg, #e0e7ff 0%, #f8fafc 100%); }
.solutions .solution-card:nth-child(1) .solution-icon i { color: #ed2b29; }
.solutions .solution-card:nth-child(2) .solution-icon { background: linear-gradient(135deg, #d1fae5 0%, #f8fafc 100%); }
.solutions .solution-card:nth-child(2) .solution-icon i { color: #10b981; }
.solutions .solution-card:nth-child(3) .solution-icon { background: linear-gradient(135deg, #cffafe 0%, #f8fafc 100%); }
.solutions .solution-card:nth-child(3) .solution-icon i { color: #0ea5e9; }
.solutions .solution-card:nth-child(4) .solution-icon { background: linear-gradient(135deg, #fef3c7 0%, #f8fafc 100%); }
.solutions .solution-card:nth-child(4) .solution-icon i { color: #f59e42; }
.solutions .solution-card:nth-child(5) .solution-icon { background: linear-gradient(135deg, #e0e7ff 0%, #f8fafc 100%); }
.solutions .solution-card:nth-child(5) .solution-icon i { color: #ed2b29; }
.solutions .solution-card:nth-child(6) .solution-icon { background: linear-gradient(135deg, #d1fae5 0%, #f8fafc 100%); }
.solutions .solution-card:nth-child(6) .solution-icon i { color: #10b981; }
.solutions .solution-card:nth-child(7) .solution-icon { background: linear-gradient(135deg, #cffafe 0%, #f8fafc 100%); }
.solutions .solution-card:nth-child(7) .solution-icon i { color: #0ea5e9; }
.solutions .solution-card:nth-child(8) .solution-icon { background: linear-gradient(135deg, #fef3c7 0%, #f8fafc 100%); }
.solutions .solution-card:nth-child(8) .solution-icon i { color: #f59e42; }
.solutions .solution-card:nth-child(9) .solution-icon { background: linear-gradient(135deg, #ede9fe 0%, #f8fafc 100%); }
.solutions .solution-card:nth-child(9) .solution-icon i { color: #8b5cf6; }

.solution-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  z-index: 2;
}
.solution-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  margin: 0 auto 22px auto;
  border-radius: 50%;
  background: #111;
  box-shadow: 0 4px 16px rgba(44,62,80,0.08);
  transition: box-shadow 0.22s, background 0.22s;
  font-size: 2.3rem;
}
.solution-card:hover .solution-icon {
  box-shadow: 0 8px 28px rgba(44,62,80,0.14);
  background: #ed2b29;
}

.solution-icon i {
  line-height: 1;
  color: #fff !important;
  transition: color 0.2s;
}
.solution-card:hover .solution-icon i {
  color: #fff !important;
}

.solution-card .card-title {
  font-size: 1.16rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  color: #111;
  letter-spacing: 0.1px;
}

.solution-card .card-text {
  font-size: 1.01rem;
  color: #5a5a7a;
  margin-bottom: 0;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .solutions .col-lg-3 {
    margin-bottom: 24px;
  }
}

/* About Us Section Styles */
#about h2 {
  color: #111;
  font-weight: 700;
  letter-spacing: 0.5px;
}
#about h3 {
  color: #ed2b29;
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.7rem;
}
#about p.lead {
  font-size: 1.13rem;
  color: #22223b;
}
.about-hero {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.about-hero-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #ed2b29;
  box-shadow: 0 6px 32px rgba(44,62,80,0.10);
  background: #fff;
}
.about-hero-desc {
  font-size: 1.09rem;
  color: #22223b;
  max-width: 600px;
}
.about-card {
  border: 1.5px solid #ed2b29;
  border-radius: 1.3rem;
  box-shadow: 0 4px 24px rgba(44,62,80,0.07);
  background: #fff;
  transition: box-shadow 0.22s, border-color 0.22s;
}
.about-card:hover {
  box-shadow: 0 12px 32px rgba(44,62,80,0.13);
  border-color: #111;
}
.about-icon {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  border: 2.5px solid #ed2b29;
  background: #fff;
  box-shadow: 0 2px 8px rgba(44,62,80,0.08);
  margin-bottom: 0.7rem;
}
.about-list {
  padding-left: 1.3rem;
  margin-bottom: 1.2rem;
  list-style: disc inside;
}
.about-list li {
  margin-bottom: 0.6rem;
  color: #22223b;
  font-size: 1.01rem;
  line-height: 1.65;
  position: relative;
}
.about-list li strong {
  color: #ed2b29;
}
#about ul.about-list.row {
  list-style: none;
  padding-left: 0;
}
#about ul.about-list.row li {
  padding-left: 0;
  margin-bottom: 0.7rem;
}
#about .row > [class^='col'] {
  margin-bottom: 1.2rem;
}
@media (max-width: 991px) {
  .about-hero-img {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 767px) {
  .about-card {
    margin-bottom: 1.2rem;
  }
  .about-hero {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .why-choose-img {
    margin-top: 1.2rem;
    margin-bottom: 0.7rem;
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

.why-choose-img {
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(44,62,80,0.08);
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: cover;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  background: #fff;
}

.about-vision-img,
.about-mission-img {
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(44,62,80,0.08);
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: cover;
  margin-top: 1.1rem;
  margin-bottom: 0.3rem;
  background: #fff;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Expertise Section Styles */
.expertise-section {
  padding: 0.5rem 0 0.5rem 0;
}
.expertise-grid {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.expertise-card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px rgba(44,62,80,0.07);
  border: 1.5px solid #f3f3f3;
  padding: 1.8rem 1.2rem 1.4rem 1.2rem;
  text-align: center;
  transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 210px;
}
.expertise-card:hover {
  box-shadow: 0 8px 32px rgba(237,43,41,0.12), 0 2px 8px rgba(44,62,80,0.09);
  transform: translateY(-8px) scale(1.03);
  border-color: #ed2b29;
  z-index: 2;
}
.expertise-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem auto;
  border-radius: 50%;
  font-size: 2rem;
  color: #fff;
  transition: background 0.22s, transform 0.22s, color 0.22s;
  box-shadow: 0 2px 8px rgba(44,62,80,0.10);
}
.bg-red { background: #ed2b29; }
.bg-black { background: #111; }
.expertise-card:hover .expertise-icon {
  background: #fff;
  color: #ed2b29;
  transform: scale(1.12) rotate(-6deg);
  border: 2px solid #ed2b29;
}
.expertise-title {
  font-size: 1.08rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 0.3rem;
}
.expertise-desc {
  font-size: 0.99rem;
  color: #555;
  line-height: 1.6;
}
/* Portfolio Carousel Custom Styles */
#portfolioCarousel {
  margin-top: 2rem;
}
#portfolioCarousel .carousel-inner {
  padding-bottom: 2.5rem;
}
#portfolioCarousel .carousel-control-prev,
#portfolioCarousel .carousel-control-next {
  width: 48px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(237,43,41,0.85);
  border-radius: 50%;
  opacity: 0.85;
  transition: background 0.18s;
}
#portfolioCarousel .carousel-control-prev:hover,
#portfolioCarousel .carousel-control-next:hover {
  background: #c71f1d;
  opacity: 1;
}
#portfolioCarousel .carousel-control-prev-icon,
#portfolioCarousel .carousel-control-next-icon {
  filter: invert(1) grayscale(1);
}
#portfolioCarousel .carousel-item .card {
  transition: transform 0.18s, box-shadow 0.18s;
}
#portfolioCarousel .carousel-item .card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px rgba(44,62,80,0.13);
  border-color: #ed2b29;
  z-index: 2;
}
@media (max-width: 767px) {
  #portfolioCarousel .carousel-inner {
    padding-bottom: 1.2rem;
  }
  #portfolioCarousel .carousel-control-prev,
  #portfolioCarousel .carousel-control-next {
    width: 38px;
    height: 38px;
  }
}

/* Fade-in Animation */
.animate-fadein {
  opacity: 0;
  animation: fadeInUpExpertise 0.7s forwards;
}
@keyframes fadeInUpExpertise {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}

/* Fade-in animation for solution cards */

/* Brand override for Bootstrap primary button */
.btn-primary {
  background-color: #ed2b29 !important;
  border-color: #ed2b29 !important;
  color: #fff !important;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: #c71f1d !important;
  border-color: #c71f1d !important;
  color: #fff !important;
}

/* Brand override for all links */
a {
  color: #ed2b29;
  text-decoration: underline;
  transition: color 0.15s;
}
a:hover, a:focus, a:active {
  color: #c71f1d;
  text-decoration: underline;
}


.solutions .row > [class*='col-'] {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.7s forwards;
  animation-delay: calc(var(--solution-index, 1) * 0.1s);
}
.solutions .row > [class*='col-']:nth-child(1) { --solution-index: 1; }
.solutions .row > [class*='col-']:nth-child(2) { --solution-index: 2; }
.solutions .row > [class*='col-']:nth-child(3) { --solution-index: 3; }
.solutions .row > [class*='col-']:nth-child(4) { --solution-index: 4; }
.solutions .row > [class*='col-']:nth-child(5) { --solution-index: 5; }
.solutions .row > [class*='col-']:nth-child(6) { --solution-index: 6; }
.solutions .row > [class*='col-']:nth-child(7) { --solution-index: 7; }
.solutions .row > [class*='col-']:nth-child(8) { --solution-index: 8; }
.solutions .row > [class*='col-']:nth-child(9) { --solution-index: 9; }
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: none;
  }
}


/* Elegant Services Section Styles */
.services-section {
  background: #f8fafc;
  padding-top: 60px;
  padding-bottom: 60px;
}

.service-card {
  border: none;
  border-radius: 1.25rem;
  transition: transform 0.2s, box-shadow 0.2s;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  z-index: 2;
}
.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0e7ff 0%, #f8fafc 100%);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.service-icon i {
  line-height: 1;
  transition: color 0.2s;
}
.service-card:hover .service-icon i {
  color: #ed2b29 !important;
}
.service-card .card-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.service-card .card-text {
  font-size: 0.98rem;
  color: #555;
}

footer a:hover {
  color: #0d6efd;
  text-decoration: underline;
  transition: color 0.3s ease;
}


.marketing-card {
  border-radius: 1.5rem;
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 16px rgba(44,62,80,0.07);
}
.marketing-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 10px 32px rgba(237,43,41,0.12);
  border: 1.5px solid #ed2b29;
}
.marketing-card .card-title {
  color: #ed2b29;
}
.marketing-card a.link-dark {
  text-decoration: none;
  transition: color 0.2s;
}
.marketing-card a.link-dark:hover {
  color: #ed2b29;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .marketing-card {
    margin-bottom: 1.5rem;
  }
}


.service-card-hover {
  border-radius: 1.5rem;
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 16px rgba(44,62,80,0.07);
}
.service-card-hover:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 10px 32px rgba(237,43,41,0.12);
  border: 1.5px solid #ed2b29;
  z-index: 2;
}
.service-link {
  color: #222;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  display: block;
  margin-bottom: 0.25rem;
}
.service-link:hover {
  color: #ed2b29;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .service-card-hover {
    margin-bottom: 1.5rem;
  }
}



/* Container Styling */
.hire-container,
.software-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.software-container.reverse {
  flex-direction: row-reverse;
}

/* Image Styling */
.hire-image img,
.software-image img {
  max-width: 100%;
  height: auto;

  flex: 1 1 400px;
}

/* Content Styling */
.hire-content,
.software-content {
  flex: 1 1 400px;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  font-weight: 600;
  color: #1457FF;
  text-decoration: none;
  gap: 8px;
  transition: color 0.3s;
}

.learn-more:hover {
  color: #003cc5;
}

.learn-more svg {
  fill: currentColor;
}

/* Tag/Label Styling */
.tech-tags,
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.tech-tags a,
.service-tags a {
  background-color: #f0f4ff;
  color: #1457FF;
  text-decoration: none;
  padding: 8px 14px;
  font-size: 0.9rem;
  border-radius: 20px;
  transition: background-color 0.3s, color 0.3s;
}

.tech-tags a:hover,
.service-tags a:hover {
  background-color: #1457FF;
  color: #fff;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .hire-container,
  .software-container {
    flex-direction: column;
    text-align: center;
  }

  .learn-more {
    justify-content: center;
  }

  .tech-tags,
  .service-tags {
    justify-content: center;
  }
}


.transition:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

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

.step-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.text-primary {
  color: #007bff !important;
}

.text-muted {
  color: #6c757d !important;
}

.fs-5 {
  font-size: 1.125rem;
}

.shadow-lg {
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.portfolio-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}


/* Mobile Development Life Cycle Styling */
section.bg-light {
  background-color: #f8f9fa;
  padding: 60px 0;
}

section.bg-light h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #212529;
}

.card {
  border: none;
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-title {
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-body {
  padding: 25px;
  background-color: #fff;
  border-radius: 1rem;
}

.card-text {
  font-size: 0.95rem;
  color: #555;
}

@media (max-width: 768px) {
  section.bg-light h2 {
      font-size: 1.75rem;
  }

  .card-title {
      font-size: 1rem;
  }

  .card-text {
      font-size: 0.9rem;
  }
}

.portfolio-card:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-shadow:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.object-fit-cover {
  object-fit: cover;
}

.btn-custom {
  color: #fff;
  background-color: #ed2b29;
  border: none;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background-color: #c9221f;
  color: #fff;
}


#benefits i {
  color: #ed2b29; /* use brand red for icons */
}

.card:hover {
  transform: translateY(-4px);
  transition: all 0.3s ease;
}


#approach .card {
  transition: all 0.3s ease;
}
#approach .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
#approach .card i {
  color: #0ea5e9;
}

#services .card {
  transition: all 0.3s ease;
}
#services .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
#services .card i {
  color: #0ea5e9;
}
#services .card-title {
  font-size: 1.25rem;
  font-weight: 600;
}
#services .card-text {
  font-size: 1rem;
  color: #6c757d;
}


    .wheel-container {
        position: relative;
        width: 500px;
        height: 600px;
        margin: 0 auto;
    }

    .wheel-center {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #0d6efd;
        color: #fff;
        padding: 40px;
        border-radius: 50%;
        z-index: 10;
        text-align: center;
        font-weight: bold;
        font-size: 1.2rem;
        width: 380px;
        height: 380px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
    }

    .wheel-item {
        position: absolute;
        width: 140px;
        text-align: center;
        transform-origin: center center;
        transition: transform 0.3s ease;
    }

    .wheel-item .card {
        border: none;
        padding: 10px;
        border-radius: 15px;
        background: white;
        box-shadow: 0 0 15px rgba(0,0,0,0.1);
    }

    /* Positioning the wheel items */
    .wheel-item:nth-child(1) { top: 0%; left: 50%; transform: translate(-50%, -50%) rotate(0deg); }
    .wheel-item:nth-child(2) { top: 20%; left: 85%; transform: translate(-50%, -50%) rotate(45deg); }
    .wheel-item:nth-child(3) { top: 50%; left: 100%; transform: translate(-50%, -50%) rotate(90deg); }
    .wheel-item:nth-child(4) { top: 80%; left: 85%; transform: translate(-50%, -50%) rotate(135deg); }
    .wheel-item:nth-child(5) { top: 100%; left: 50%; transform: translate(-50%, -50%) rotate(180deg); }
    .wheel-item:nth-child(6) { top: 80%; left: 15%; transform: translate(-50%, -50%) rotate(225deg); }
    .wheel-item:nth-child(7) { top: 50%; left: 0%; transform: translate(-50%, -50%) rotate(270deg); }
    .wheel-item:nth-child(8) { top: 20%; left: 15%; transform: translate(-50%, -50%) rotate(315deg); }



    .feature-card {
      transition: all 0.3s ease-in-out;
      padding: 30px;
      background-color: #fff;
      border: 2px solid #f5f5f5;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      transform: translateY(0);
  }

  .feature-card:hover {
      transform: translateY(-10px); /* Slightly lift the card on hover */
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); /* Make the shadow more pronounced */
  }

  .feature-card .icon-container {
      transition: transform 0.3s ease-in-out;
  }

  .feature-card:hover .icon-container {
      transform: scale(1.1); /* Increase the size of the icon on hover */
  }

  .feature-card .card-title {
      font-size: 1.25rem;
      margin-bottom: 15px;
      font-weight: 600;
  }

  .feature-card .card-text {
      font-size: 1rem;
      color: #666;
  }

  .feature-card i {
      transition: transform 0.3s ease-in-out;
  }

  .feature-card:hover i {
      transform: rotate(15deg); /* Rotate the icon on hover */
  }

  @media (max-width: 767px) {
      .feature-card {
          padding: 20px;
      }
  }

  #intro-cms {
    background-color: #f8f9fa;
}

#intro-cms .container {
    max-width: 1200px;
}

#intro-cms .display-4 {
    font-weight: 700;
    color: #0ea5e9;
}

#intro-cms .lead {
    font-size: 1.1rem;
    color: #6c757d;
}

#intro-cms ul {
    margin-top: 20px;
}

#intro-cms ul li {
    font-size: 1.05rem;
    color: #343a40;
    padding-left: 1.5rem;
    position: relative;
}

#intro-cms ul li::before {
    content: "\2022";
    font-size: 1.5rem;
    color: #0ea5e9;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Responsive Design */
@media (max-width: 767px) {
    #intro-cms .row {
        text-align: center;
    }

    #intro-cms .col-md-6 {
        margin-bottom: 20px;
    }

    #intro-cms img {
        margin-top: 20px;
    }
}


#cms-frameworks {
  background-color: #f8f9fa;
}

#cms-frameworks .display-4 {
  font-weight: 700;
  color: #0ea5e9;
}

#cms-frameworks .lead {
  font-size: 1.1rem;
  color: #6c757d;
}

#cms-frameworks .cms-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  border: 2px solid #ddd;
  background-color: #fff;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

#cms-frameworks .cms-logo:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#cms-frameworks img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Responsive Design */
@media (max-width: 767px) {
  #cms-frameworks .row {
      text-align: center;
  }

  #cms-frameworks .col-md-3 {
      margin-bottom: 20px;
  }
}

.hover-zoom {
  transition: transform 0.3s ease-in-out;
}
.hover-zoom:hover {
  transform: translateY(-8px) scale(1.02);
}


.approach-box {
  transition: all 0.3s ease;
  cursor: pointer;
}
.approach-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}
.icon-wrapper i {
  transition: transform 0.4s ease;
}
.approach-box:hover .icon-wrapper i {
  transform: scale(1.2) rotate(6deg);
}


.step-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.icon-circle {
  width: 60px;
  height: 60px;
  font-size: 28px;
  line-height: 60px;
  border-radius: 50%;
  background-color: #f1f5f9;
  display: inline-block;
  transition: all 0.3s ease;
}
.step-box:hover .icon-circle {
  background-color: #e0f2fe;
  transform: scale(1.1);
}

.arrow-animate {
  animation: pulseArrow 1.5s infinite ease-in-out;
}

@keyframes pulseArrow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
}


.timeline {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 100%;
  max-width: 90%;
  background-color: #e2e8f0;
  z-index: 0;
}

.timeline-step {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 240px;
}

.circle-icon {
  width: 70px;
  height: 70px;
  font-size: 32px;
  background-color: #f1f5f9;
  border-radius: 50%;
  line-height: 70px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.timeline-step:hover .circle-icon {
  background-color: #e0f2fe;
  transform: scale(1.1);
}


.accordion-button {
  font-weight: 600;
  color: #0d6efd;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-body {
  font-size: 0.95rem;
  color: #555;
}


.testimonial-box {
  border-left: 5px solid #2563eb; /* Blue left border for emphasis */
}

.testimonial-box p {
  font-style: italic;
  color: #555;
}

.testimonial-box h4 {
  font-weight: bold;
  color: #333;
}


.arrow-right {
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
}


.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.hover-effect:hover {
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}


.step-card {
  width: 260px;
  min-height: 280px;
  transition: transform 0.3s ease;
}
.step-card:hover {
  transform: translateY(-5px);
}

.arrow {
  width: 40px;
  justify-content: center;
}


.integration-step {
  width: 220px;
  transition: transform 0.3s ease;
}
.integration-step:hover {
  transform: translateY(-8px);
}

.tech-icon {
  transition: transform 0.2s cubic-bezier(.4,2,.6,1), box-shadow 0.2s;
  outline: none;
}
.tech-icon:hover, .tech-icon:focus {
  transform: scale(1.13);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.13);
  z-index: 2;
}
.tech-icon:focus {
  outline: 2px solid #0ea5e9;
  outline-offset: 2px;
}

.arrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .arrow-icon {
    display: none !important;
  }
  .integration-step {
    width: 100%;
  }
}


.tech-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.tech-icon {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.tech-card:hover .tech-icon {
  filter: grayscale(0%);
}

/* --- Training Page UI/UX Enhancements --- */

/* Enhanced Hero Section for Training */
.service-hero .hero-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Floating Shapes Animation */
.floating-shape {
    position: absolute;
    opacity: 0.1;
    animation: float-shape 15s infinite ease-in-out;
}

.shape-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #fff, transparent);
    border-radius: 50%;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fff, transparent);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(225deg, #fff, transparent);
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes float-shape {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.1;
    }
    25% {
        transform: translateY(-30px) rotate(90deg) scale(1.1);
        opacity: 0.15;
    }
    50% {
        transform: translateY(20px) rotate(180deg) scale(0.9);
        opacity: 0.1;
    }
    75% {
        transform: translateY(-15px) rotate(270deg) scale(1.05);
        opacity: 0.12;
    }
}

/* Overview Section Enhancements */
.overview-image-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.overview-image-wrapper img {
    transition: transform 0.6s ease;
}

.overview-image-wrapper:hover img {
    transform: scale(1.05);
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    animation: float-badge 3s infinite ease-in-out;
}

.floating-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.badge-1 {
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 20px;
    left: 20px;
    animation-delay: 1.5s;
}

.badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.badge-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.badge-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

@keyframes float-badge {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-item:hover {
    background: white;
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.feature-content h5 {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: 4px solid #667eea;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.timeline-item:hover .timeline-icon {
    background: #667eea;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.timeline-content {
    width: 45%;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.process-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.process-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.feature-tag {
    background: #f0f4ff;
    color: #667eea;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.feature-tag i {
    font-size: 0.75rem;
}

/* Course Cards Enhancement */
.course-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.course-card:hover::before {
    transform: scaleX(1);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.course-header {
    padding: 2rem 2rem 1rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.course-header h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.course-header i {
    width: 35px;
    height: 35px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.course-body {
    padding: 1.5rem 2rem;
}

.course-topics {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-topics li {
    padding: 0.5rem 0;
    color: #666;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.course-topics li:last-child {
    border-bottom: none;
}

.course-topics li:hover {
    color: #333;
    padding-left: 0.5rem;
}

.course-topics li i {
    color: #10b981;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.course-footer {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.course-footer .btn {
    flex: 1;
    font-weight: 500;
    border-radius: 10px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

/* Training Page Button Overrides */
.training-page .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.training-page .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.training-page .btn-outline-primary {
    border: 2px solid #667eea;
    color: #667eea;
    border-radius: 12px;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.training-page .btn-outline-primary:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

/* Mobile Responsive Enhancements for Training */
@media (max-width: 768px) {
    .process-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        justify-content: flex-start !important;
        margin-left: 60px;
    }
    
    .timeline-marker {
        left: 30px;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .stat-item:not(:last-child)::after {
        display: none;
    }
    
    .stat-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .course-footer {
        flex-direction: column;
    }
    
    .course-footer .btn {
        width: 100%;
    }
}

/* Animation Classes for Training Page */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

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

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

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


