/* Parallax Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    height: 100%;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/* Parallax Container Specific Variables */
.parallax-container {
    --parallax-primary-color: #b52020;
    --parallax-primary-dark: #8b1818;
    --parallax-primary-darker: #6b1212;
    --parallax-primary-light: #d73030;
    --parallax-primary-lighter: #ff4040;
    --parallax-secondary-color: #2b1111;
    --parallax-secondary-light: #5d2424;
    
    position: relative;
    width: 100%;
    height: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.parallax-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.solid-section {
    background-attachment: scroll !important;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.parallax-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2rem 0;
}

/* Navigation Dots */
.parallax-nav {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 8px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.parallax-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.parallax-nav li {
    margin: 12px 0;
    position: relative;
}

.parallax-nav a {
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.parallax-nav a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: #b52020;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.parallax-nav a::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(181, 32, 32, 0.3), transparent);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.6s ease;
}

.parallax-nav a:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: #b52020;
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(181, 32, 32, 0.4);
}

.parallax-nav a:hover::after {
    opacity: 1;
    transform: scale(1);
}

.parallax-nav a.active {
    background: #b52020;
    border-color: #b52020;
    transform: scale(1.3);
    box-shadow: 0 0 25px rgba(181, 32, 32, 0.8);
}

.parallax-nav a.active::before {
    width: 6px;
    height: 6px;
    background: white;
}

.parallax-nav a.active::after {
    opacity: 1;
    transform: scale(1.2);
    background: radial-gradient(circle, rgba(181, 32, 32, 0.5), transparent);
}

/* Add section labels on hover */
.parallax-nav li::before {
    content: attr(data-label);
    position: absolute;
    left: 35px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(20, 20, 20, 0.9));
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    z-index: 1001;
}

/* Arrow pointer for labels */
.parallax-nav li::after {
    content: '';
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 8px solid rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1002;
}

.parallax-nav li:hover::before {
    opacity: 1;
    visibility: visible;
    left: 40px;
    transform: translateY(-50%) scale(1.02);
}

.parallax-nav li:hover::after {
    opacity: 1;
    visibility: visible;
    left: 32px;
}

/* Animated connection line for active state */
.parallax-nav::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(181, 32, 32, 0.3) 20%, 
        rgba(181, 32, 32, 0.6) 50%, 
        rgba(181, 32, 32, 0.3) 80%, 
        transparent 100%);
    transform: translateX(-50%);
    z-index: -1;
    opacity: 0.5;
}

/* Progress indicator */
.parallax-nav .progress-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 0%;
    background: linear-gradient(to bottom, #b52020, #ff4040);
    transform: translateX(-50%);
    transition: height 0.3s ease;
    z-index: -1;
    border-radius: 2px;
}

/* Feature and Service Boxes */
.feature-box,
.service-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.parallax-container .feature-icon,
.parallax-container .service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--parallax-primary-color), var(--parallax-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(181, 32, 32, 0.3);
}

.feature-content,
.service-content {
    flex: 1;
    padding-top: 8px;
}

/* Stats Section */
.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Testimonials Slider */
.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 400px;
    overflow: hidden;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 40px 20px;
    opacity: 0;
    transform: translateX(100%) scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    pointer-events: none;
}

.testimonial-item.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 3;
    pointer-events: auto;
}

.testimonial-item.prev {
    opacity: 0;
    transform: translateX(-100%) scale(0.9);
    z-index: 2;
}

.testimonial-item.next {
    opacity: 0;
    transform: translateX(100%) scale(0.9);
    z-index: 2;
}

/* Enhanced testimonial content animations */
.testimonial-item.active .testimonial-avatar {
    animation: testimonialFadeIn 0.8s ease-out 0.2s both;
}

.testimonial-item.active .testimonial-content {
    animation: testimonialSlideUp 0.8s ease-out 0.4s both;
}

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

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

.testimonial-avatar {
    margin-bottom: 30px;
}

.testimonial-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.testimonial-avatar img:hover {
    transform: scale(1.05);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 20px;
    font-style: italic;
}

.testimonial-content h5 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.testimonial-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.testimonial-nav.prev {
    left: 0;
}

.testimonial-nav.next {
    right: 0;
}

.testimonial-dots {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: white;
    transform: scale(1.2);
}

/* Tech Items */
.tech-item {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
}

.tech-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 15px;
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 500;
    margin: 0 auto 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Success Cards Enhanced */
.success-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.success-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;
}

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

.success-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.success-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.success-card p {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.success-card small {
    font-size: 0.8rem;
}

.success-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.2rem;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.success-card:hover .success-icon {
    transform: scale(1.1) rotateY(360deg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.3));
    border-color: rgba(255, 255, 255, 0.6);
}

/* Contact Info Cards */
.contact-info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-info-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;
}

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

.contact-info-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #b52020, #8b1818);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(181, 32, 32, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1) rotateY(360deg);
    box-shadow: 0 10px 30px rgba(181, 32, 32, 0.6);
}

.contact-info-card:hover .contact-icon::before {
    width: 100%;
    height: 100%;
}

/* Creative Contact Form */
.creative-contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-wrapper {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(181, 32, 32, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(181, 32, 32, 0.1) 100%);
    opacity: 0.5;
    z-index: -1;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.form-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #b52020, #ff4040);
    border-radius: 2px;
}

.form-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Modern Form Inputs */
.input-group-modern {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #b52020;
    font-size: 1.1rem;
    z-index: 10;
    transition: all 0.3s ease;
}

.textarea-icon {
    top: 20px;
    transform: none;
}

.form-control-modern {
    width: 100%;
    padding: 18px 20px 18px 55px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-control-modern:focus {
    outline: none;
    border-color: #b52020;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 25px rgba(181, 32, 32, 0.2);
    transform: translateY(-2px);
}

.form-control-modern:focus + .input-icon {
    color: #b52020;
    transform: translateY(-50%) scale(1.1);
}

.textarea-modern {
    resize: vertical;
    min-height: 120px;
    padding-top: 18px;
}

.form-control-modern::placeholder {
    color: #666;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.form-control-modern:focus::placeholder {
    opacity: 0.5;
    transform: translateX(5px);
}

/* Select Styling */
select.form-control-modern {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23b52020' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 20px center;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    appearance: none;
}

select.form-control-modern option {
    background: white;
    color: #333;
    padding: 10px;
}

/* Modern Submit Button */
.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.btn-submit-modern {
    background: linear-gradient(135deg, #b52020, #8b1818);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(181, 32, 32, 0.3);
    min-width: 160px;
    justify-content: center;
}

.btn-submit-modern::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.6s;
}

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

.btn-submit-modern:hover {
    background: linear-gradient(135deg, #d73030, #b52020);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(181, 32, 32, 0.4);
}

.btn-submit-modern:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(181, 32, 32, 0.4);
}

.btn-text {
    transition: all 0.3s ease;
}

.btn-icon {
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-submit-modern:hover .btn-text {
    transform: translateX(-3px);
}

.btn-submit-modern:hover .btn-icon {
    transform: translateX(3px) scale(1.1);
}

/* Input Animations */
@keyframes inputFocus {
    0% {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    100% {
        box-shadow: 0 8px 25px rgba(181, 32, 32, 0.2);
    }
}

.form-control-modern:focus {
    animation: inputFocus 0.3s ease-out;
}

/* Floating Label Effect */
.input-group-modern input:focus,
.input-group-modern textarea:focus,
.input-group-modern select:focus {
    padding-left: 65px;
}

.input-group-modern input:focus + .input-icon,
.input-group-modern textarea:focus + .input-icon,
.input-group-modern select:focus + .input-icon {
    left: 25px;
    color: #b52020;
}

/* Security Notice Styling */
.form-actions p {
    max-width: 400px;
    margin: 1rem auto 0;
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.4;
}

.form-actions .fas.fa-shield-alt {
    color: #4ade80;
    margin-right: 0.5rem;
}

/* Responsive Design for Contact Form */
@media (max-width: 768px) {
    .form-wrapper {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .contact-info-card {
        margin-bottom: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-control-modern {
        padding: 15px 18px 15px 50px;
        font-size: 0.95rem;
    }
    
    .input-icon {
        left: 18px;
        font-size: 1rem;
    }
    
    .btn-submit-modern {
        padding: 10px 25px;
        font-size: 0.9rem;
        min-width: 140px;
    }
    
    .form-actions p {
        font-size: 0.8rem;
    }
}

/* Smooth Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info-card {
    animation: slideInUp 0.6s ease-out;
}

.form-wrapper {
    animation: slideInUp 0.8s ease-out;
}

/* Hover Effects for Form */
.form-wrapper:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Input Group Hover Effect */
.input-group-modern:hover .form-control-modern {
    border-color: rgba(181, 32, 32, 0.5);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.input-group-modern:hover .input-icon {
    color: #d73030;
    transform: translateY(-50%) scale(1.05);
}

/* Enhanced Contact Form */

/* Contact Badges */
.contact-badge-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.contact-badge::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.6s;
}

.contact-badge:hover::before {
    left: 100%;
}

.contact-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.contact-badge i {
    color: #b52020;
    margin-right: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-badge:hover i {
    color: #ff4040;
    transform: scale(1.1);
}

/* Responsive for contact badges */
@media (max-width: 768px) {
    .contact-badge-row {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .contact-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .contact-badge i {
        font-size: 0.9rem;
        margin-right: 0.4rem;
    }
}

/* Button Styles */
.parallax-container .btn {
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.parallax-container .btn::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;
}

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

.parallax-container .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.parallax-container .btn-primary {
    background: linear-gradient(135deg, var(--parallax-primary-color), var(--parallax-primary-dark));
    border-color: var(--parallax-primary-color);
    color: white;
}

.parallax-container .btn-primary:hover {
    background: linear-gradient(135deg, var(--parallax-primary-light), var(--parallax-primary-color));
    border-color: var(--parallax-primary-light);
    color: white;
}

.parallax-container .btn-secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.25));
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-width: 1px;
}

.parallax-container .btn-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.35));
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* Minimal button size for section2 */
.parallax-container .template_3_section .btn {
    font-size: 14px;
    padding: 10px 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.parallax-container .btn-outline-light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.parallax-container .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
}

.parallax-container .btn-hero {
    background: linear-gradient(135deg, var(--parallax-primary-color), var(--parallax-primary-dark));
    border: none;
    color: white !important;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(181, 32, 32, 0.3);
}

.parallax-container .btn-hero::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;
}

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

.parallax-container .btn-hero:hover {
    background: linear-gradient(135deg, var(--parallax-primary-light), var(--parallax-primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(181, 32, 32, 0.4);
    color: white !important;
}

.parallax-container .btn-hero:focus,
.parallax-container .btn-hero:active {
    color: white !important;
    box-shadow: 0 6px 20px rgba(181, 32, 32, 0.4);
}

/* Primary Text Color */
.parallax-container .text-primary {
    color: #ff4040 !important;
}

.parallax-container .text-danger {
    color: #ff4040 !important;
}

/* Font Weight Updates */
.parallax-container .fw-bold {
    font-weight: 500 !important;
}

.parallax-container .fw-medium {
    font-weight: 500 !important;
}

.parallax-container h1,
.parallax-container h2,
.parallax-container h3,
.parallax-container h4,
.parallax-container h5,
.parallax-container h6 {
    font-weight: 500 !important;
}

.parallax-container .lead {
    font-weight: 500 !important;
}

/* Section4 specific button styling */
.parallax-container .template_7_section .btn {
    font-size: 14px;
    padding: 10px 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 25px;
}

.parallax-container .template_7_section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* Service boxes enhanced styling */
.parallax-container .template_7_section .service-box {
    padding: 1rem 0;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.parallax-container .template_7_section .service-box:hover {
    border-left-color: rgba(255, 255, 255, 0.5);
    padding-left: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.parallax-container .template_7_section .service-content p {
    font-size: 1rem !important;
    line-height: 1.6;
    font-weight: 400;
}

.parallax-container .template_7_section .service-content strong {
    font-weight: 500 !important;
    color: #fff;
}

.parallax-container .template_7_section h1 {
    font-size: 2.2rem;
    font-weight: 500 !important;
}

/* Enhanced service icons */
.parallax-container .template_7_section .service-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 20px;
    transition: all 0.3s ease;
}

.parallax-container .template_7_section .service-icon:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

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

.section-content {
    animation: fadeInUp 1s ease-out;
}

/* Background Blur Effect */
.backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Custom Scrollbar */
.parallax-container::-webkit-scrollbar {
    width: 8px;
}

.parallax-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.parallax-container::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #b52020, #8b1818);
    border-radius: 4px;
}

.parallax-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #8b1818, #6b1212);
}

/* Loading Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.parallax-container .feature-icon:hover,
.parallax-container .service-icon:hover {
    animation: pulse 1s infinite;
}

/* Hover effects for interactive elements */
.tech-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transition: background 0.3s ease;
}

.step-number:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

/* Minimal button size for section2-alt */
.parallax-container .template_4_section .btn {
    font-size: 14px !important;
    padding: 10px 24px !important;
    font-weight: 400;
    letter-spacing: 0.5px;
    border-radius: 25px;
}

.parallax-container .template_4_section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* Tech item styling improvements */
.tech-item h5 {
    font-weight: 400 !important;
    font-size: 1.1rem;
}

.tech-item {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Responsive grid adjustments */
@media (max-width: 991px) {
    .tech-item {
        margin-bottom: 1rem;
    }
}

/* Mobile responsive for section4 service boxes */
@media (max-width: 768px) {
    .parallax-container .template_7_section .service-box {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem 0;
        border-left: none;
        border-bottom: 2px solid transparent;
        margin-bottom: 1.5rem;
    }
    
    .parallax-container .template_7_section .service-box:hover {
        border-left: none;
        border-bottom-color: rgba(255, 255, 255, 0.5);
        padding-left: 0;
        padding-bottom: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
    }
    
    .parallax-container .template_7_section .service-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
        margin: 0 auto 0.75rem;
        align-self: center;
    }
    
    .parallax-container .template_7_section .service-content {
        padding-top: 0;
        text-align: center;
    }
    
    .parallax-container .template_7_section .service-content p {
        font-size: 0.9rem !important;
        line-height: 1.5;
        margin: 0 auto;
        max-width: 280px;
    }
    
    .parallax-container .template_7_section h1 {
        font-size: 1.8rem !important;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .parallax-container .template_7_section .section-content {
        text-align: center;
    }
}

/* Extra small mobile devices for section4 */
@media (max-width: 576px) {
    .parallax-container .template_7_section .service-box {
        padding: 1.25rem 0;
        margin-bottom: 1.25rem;
    }
    
    .parallax-container .template_7_section .service-icon {
        width: 45px;
        height: 45px;
        font-size: 16px;
        margin-bottom: 0.5rem;
    }
    
    .parallax-container .template_7_section .service-content p {
        font-size: 0.95rem !important;
        line-height: 1.4;
        width: 100%;
        max-width: 100%;
    }
    
    .parallax-container .template_7_section h1 {
        font-size: 1.6rem !important;
        margin-bottom: 1.5rem;
    }
}

/* Section5 Font Size Adjustments */
.parallax-container #section5 h1.display-4 {
    font-size: 2.5rem !important;
    line-height: 1.2;
}

.parallax-container #section5 .lead {
    font-size: 1rem !important;
    line-height: 1.5;
}

/* Responsive font adjustments for section5 */
@media (max-width: 768px) {
    .parallax-container #section5 h1.display-4 {
        font-size: 2rem !important;
    }
    
    .parallax-container #section5 .lead {
        font-size: 0.95rem !important;
    }
}

@media (max-width: 576px) {
    .parallax-container #section5 h1.display-4 {
        font-size: 1.8rem !important;
    }
    
    .parallax-container #section5 .lead {
        font-size: 0.9rem !important;
    }
}

/* Section1-alt button (Testimonials section) - make smaller */
.parallax-container .template_2_section .btn.btn-outline-light.btn-lg {
    font-size: 13px !important;
    padding: 8px 20px !important;
    font-weight: 400;
    letter-spacing: 0.5px;
    border-radius: 25px;
}

.parallax-container .template_2_section .btn.btn-outline-light.btn-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* Section2-alt button (Technology section) - normal size */
.parallax-container .template_4_section .btn.btn-outline-light {
    font-size: 14px !important;
    padding: 10px 24px !important;
    font-weight: 400;
    letter-spacing: 0.5px;
    border-radius: 25px;
}

.parallax-container .template_4_section .btn.btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* Section3 feature boxes alignment improvements */
.parallax-container .template_5_section .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 5px;
}

.parallax-container .template_5_section .feature-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.parallax-container .template_5_section .feature-content {
    flex: 1;
    padding-top: 0;
}

.parallax-container .template_5_section .feature-content p {
    font-size: 1rem !important;
    line-height: 1.5;
    margin-bottom: 0;
}

.parallax-container .template_5_section .feature-content strong {
    font-weight: 500 !important;
    color: #fff;
    display: inline-block;
    margin-bottom: 0.25rem;
}

/* Mobile responsive for section3 feature boxes */
@media (max-width: 768px) {
    .parallax-container .template_5_section .feature-box {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 0.75rem 0;
    }
    
    .parallax-container .template_5_section .feature-icon {
        margin: 0 auto;
        margin-top: 0;
    }
    
    .parallax-container .template_5_section .feature-content p {
        font-size: 0.9rem !important;
        line-height: 1.4;
    }
    
    .parallax-container .template_5_section h1 {
        font-size: 1.8rem !important;
    }
}

/* Mobile responsive for section3-alt process steps */
@media (max-width: 768px) {
    .parallax-container .template_6_section .process-step {
        padding: 1.5rem 1rem;
        margin-bottom: 0.75rem;
    }
    
    .parallax-container .template_6_section .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .parallax-container .template_6_section .process-step h5 {
        font-size: 1rem !important;
        margin-bottom: 0.5rem;
    }
    
    .parallax-container .template_6_section .process-step p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .parallax-container .template_6_section h2.display-5 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .parallax-container .template_6_section .lead {
        font-size: 1rem !important;
        margin-bottom: 2rem;
    }
}

/* Extra small mobile devices for section3-alt */
@media (max-width: 576px) {
    .parallax-container .template_6_section .process-step {
        padding: 1rem 0.5rem;
    }
    
    .parallax-container .template_6_section .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .parallax-container .template_6_section .process-step h5 {
        font-size: 0.9rem !important;
        margin-bottom: 0.25rem;
    }
    
    .parallax-container .template_6_section .process-step p {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .parallax-container .template_6_section h2.display-5 {
        font-size: 1.4rem;
    }
}

/* Mobile responsive for section2-alt */
@media (max-width: 768px) {
    .parallax-container .template_4_section .tech-item {
        padding: 1rem 0.5rem;
        margin-bottom: 0.75rem;
    }
    
    .parallax-container .template_4_section .tech-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin: 0 auto 0.75rem;
    }
    
    .parallax-container .template_4_section .tech-item h5 {
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem;
    }
    
    .parallax-container .template_4_section .tech-item p {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 0;
    }
    
    .parallax-container .template_4_section h2.display-5 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
}

/* Extra small mobile devices for section2-alt */
@media (max-width: 576px) {
    .parallax-container .template_4_section .tech-item {
        padding: 0.75rem 0.25rem;
    }
    
    .parallax-container .template_4_section .tech-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 0.5rem;
    }
    
    .parallax-container .template_4_section .tech-item h5 {
        font-size: 0.85rem !important;
        margin-bottom: 0.25rem;
    }
    
    .parallax-container .template_4_section .tech-item p {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .parallax-container .template_4_section h2.display-5 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
}

/* Minimal button size for section3 */
.parallax-container .template_5_section .btn {
    font-size: 14px;
    padding: 10px 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
    border-radius: 25px;
}

.parallax-container .template_5_section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(181, 32, 32, 0.4);
}

/* Enhanced feature content styling */
.parallax-container .template_5_section .feature-content p {
    font-size: 1.1rem !important;
    line-height: 1.6;
}

.parallax-container .template_5_section .feature-content strong {
    font-weight: 500 !important;
    color: #fff;
}

/* Section3 heading improvements */
.parallax-container .template_5_section h1 {
    font-weight: 500 !important;
    font-size: 2.2rem;
    text-align: center;
}

/* Feature boxes enhanced styling */
.parallax-container .template_5_section .feature-box {
    padding: 1rem 0;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.parallax-container .template_5_section .feature-box:hover {
    border-left-color: #b52020;
    padding-left: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

/* Process Flow Styles */
.process-flow {
    position: relative;
    margin: 3rem 0;
}

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

.process-step:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
}

/* Stats Section Styles */
.stats-section {
    margin: 3rem 0;
}

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

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    color: #065f46;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotateY(360deg);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.stat-card h3 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Tech Badges Styles */
.tech-badges {
    margin: 3rem 0;
}

.tech-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    margin: 0.25rem;
}

.tech-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* CTA Section Styles */
.cta-section {
    margin-top: 3rem;
}

.btn-light-filled {
    background: rgba(255, 255, 255, 0.95);
    color: #065f46;
    border: 2px solid rgba(255, 255, 255, 0.8);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(10px);
}

.btn-light-filled:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 1);
    color: #047857;
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Responsive Design for Section 3-Alt */
@media (max-width: 768px) {
    .process-step,
    .stat-card {
        margin-bottom: 1.5rem;
    }
    
    .step-number,
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .stat-card h3 {
        font-size: 2rem;
    }
    
    .tech-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .cta-section .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .cta-section .btn:last-child {
        margin-bottom: 0;
    }
}

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

.stat-card.animate {
    animation: countUp 0.6s ease-out;
}

/* Pulse animation for stats */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.stat-icon.pulse {
    animation: pulse 2s infinite;
}

/* Initial state for animated elements */
.process-step,
.tech-badge {
    opacity: 0;
    transform: translateY(30px);
}

/* Shimmer effect for tech badges */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.tech-badge::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: all 0.5s;
    animation: shimmer 3s infinite;
}

.tech-badge {
    position: relative;
    overflow: hidden;
}

/* Glow effect for process steps */
.process-step::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #10b981, #059669, #047857);
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step:hover::after {
    opacity: 0.3;
}

/* Fade in up animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stat Highlights */
.stat-highlight {
    text-align: center;
    padding: 1rem 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-highlight:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.stat-highlight h3 {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.stat-highlight p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Section4-alt specific button styling */
.parallax-container .template_8_section .btn {
    font-size: 14px;
    padding: 10px 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 25px;
    margin-top: 1rem;
}

.parallax-container .template_8_section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Responsive improvements for section4-alt */
@media (max-width: 768px) {
    .success-card {
        margin-bottom: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .success-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .stat-highlight {
        margin-bottom: 1rem;
        padding: 1rem;
    }
    
    .stat-highlight h3 {
        font-size: 1.5rem;
    }
}

/* Enhanced animations for section4-alt */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-card.animate {
    animation: slideInUp 0.6s ease-out;
}

.stat-highlight.animate {
    animation: slideInUp 0.4s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hide parallax navigation on mobile */
    .parallax-nav {
        display: none;
    }
    
    /* Fix parallax on mobile devices */
    .parallax-section {
        background-attachment: scroll;
        height: auto;
        padding: 4rem 0;
    }

    /* Disable min-vh-100 on mobile */
    .min-vh-100 {
        min-height: auto !important;
        height: auto !important;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.8rem;
    }
    
    .feature-box,
    .service-box {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .tech-item,
    .success-card {
        margin-bottom: 20px;
    }

    .testimonials-slider {
        min-height: 300px;
    }

    .testimonial-nav {
        display: none;
    }

    .testimonial-avatar img {
        width: 80px;
        height: 80px;
    }

    .testimonial-content p {
        font-size: 1rem;
    }
}

/* Desktop min-vh-100 */
@media (min-width: 769px) {
    .min-vh-100 {
        min-height: 100vh !important;
    }
}

/* Mobile responsive for section4-alt success cards */
@media (max-width: 768px) {
    .parallax-container .template_8_section .success-card {
        padding: 1rem 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .parallax-container .template_8_section .success-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .parallax-container .template_8_section .success-card h4 {
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem;
    }
    
    .parallax-container .template_8_section .success-card p {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 0.25rem;
    }
    
    .parallax-container .template_8_section .success-card small {
        font-size: 0.7rem;
    }
    
    .parallax-container .template_8_section h2.display-5 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .parallax-container .template_8_section .lead {
        font-size: 1rem !important;
        margin-bottom: 2rem;
    }
}

/* Extra small mobile devices for section4-alt */
@media (max-width: 576px) {
    .parallax-container .template_8_section .success-card {
        padding: 0.75rem 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .parallax-container .template_8_section .success-icon {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .parallax-container .template_8_section .success-card h4 {
        font-size: 0.85rem !important;
        margin-bottom: 0.25rem;
    }
    
    .parallax-container .template_8_section .success-card p {
        font-size: 0.75rem;
        line-height: 1.2;
        margin-bottom: 0.2rem;
    }
    
    .parallax-container .template_8_section .success-card small {
        font-size: 0.65rem;
    }
    
    .parallax-container .template_8_section h2.display-5 {
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
    }
}

/* Mobile responsive for section4-alt stat-highlight boxes - REMOVED - Using slider instead */
@media (max-width: 768px) {
    .parallax-container .template_8_section .stat-highlight {
        padding: 0.75rem 0.5rem;
        margin-bottom: 0.75rem;
    }
    
    .parallax-container .template_8_section .stat-highlight h3 {
        font-size: 1.4rem !important;
        margin-bottom: 0.25rem;
    }
    
    .parallax-container .template_8_section .stat-highlight p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}

/* Extra small mobile devices for section4-alt stat-highlight */
@media (max-width: 576px) {
    .parallax-container .template_8_section .stat-highlight {
        padding: 0.5rem 0.25rem;
        margin-bottom: 0.5rem;
    }
    
    .parallax-container .template_8_section .stat-highlight h3 {
        font-size: 1.2rem !important;
        margin-bottom: 0.2rem;
    }
    
    .parallax-container .template_8_section .stat-highlight p {
        font-size: 0.75rem;
        line-height: 1.2;
    }
}

/* Stats Slider Styles for Mobile */
.stats-container {
    margin-bottom: 2rem;
}

.stats-slider-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 1rem;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.stats-slider::-webkit-scrollbar {
    display: none;
}

.stat-slide {
    min-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: center;
}

.stat-slide .stat-highlight {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-slide .stat-highlight:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.stat-slide .stat-highlight h3 {
    font-size: 2rem !important;
    background: linear-gradient(135deg, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.stat-slide .stat-highlight p {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Stats Navigation */
.stats-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 1rem;
}

.stats-nav-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stats-nav-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.stats-nav-btn:active {
    transform: scale(0.95);
}

.stats-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.stats-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-dot.active {
    background: white;
    transform: scale(1.4);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.stats-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

/* Touch/Swipe indicator */
.stats-slider-wrapper::before {
    content: '← Kaydırın →';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* Responsive adjustments for stats slider */
@media (max-width: 576px) {
    .stats-slider-wrapper {
        padding: 0 10px;
    }
    
    .stat-slide {
        min-width: 240px;
    }
    
    .stat-slide .stat-highlight {
        padding: 1rem 0.75rem;
    }
    
    .stat-slide .stat-highlight h3 {
        font-size: 1.6rem !important;
    }
    
    .stat-slide .stat-highlight p {
        font-size: 0.8rem;
    }
    
    .stats-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .stats-dots {
        gap: 0.4rem;
    }
    
    .stats-dot {
        width: 6px;
        height: 6px;
    }
}

/* Mobile responsive for testimonials */
@media (max-width: 768px) {
    .testimonials-slider {
        min-height: 350px;
        padding: 0 20px;
    }
    
    .testimonial-nav {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .testimonial-nav.prev {
        left: -60px;
    }
    
    .testimonial-nav.next {
        right: -60px;
    }
    
    .testimonial-dots {
        bottom: -50px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
    
    .testimonial-avatar img {
        width: 80px;
        height: 80px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .testimonial-content h5 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-content {
        margin-left: 2rem;
    }
    .testimonials-slider {
        min-height: 320px;
        padding: 0 15px;
    }
    
    .testimonial-nav.prev {
        left: -50px;
    }
    
    .testimonial-nav.next {
        right: -50px;
    }
    
    .testimonial-item {
        padding: 30px 15px;
    }
}

/* Tech Slider Styles */
.tech-slider-container {
    position: relative;
    overflow: hidden;
    padding: 0 20px;
    margin: 0 -20px;
}

.tech-slider {
    display: flex;
    transition: transform 0.3s ease;
}

.tech-slide {
    min-width: 100%;
    flex-shrink: 0;
    padding: 0 20px;
}

/* Tech Navigation */
.tech-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    gap: 1rem;
}

.tech-nav-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tech-nav-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.tech-nav-btn:active {
    transform: scale(0.95);
}

.tech-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.tech-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tech-dot.active {
    background: white;
    transform: scale(1.4);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.tech-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}


/* Responsive adjustments for tech slider */
@media (max-width: 576px) {
    .tech-slider-container {
        padding: 0 10px;
    }
    
    .tech-slide {
        padding: 0 10px;
    }
    
    .tech-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .tech-dots {
        gap: 0.4rem;
    }
    
    .tech-dot {
        width: 6px;
        height: 6px;
    }
}

/* Hero Image Slider - Mobile Only */
.hero-image-slider {
    display: none; /* Hidden by default on desktop */
}

/* Mobile only display for hero slider */
@media (max-width: 768px) {
    .hero-image-slider {
        display: block;
        position: relative;
        width: 100%;
        height: 70vh;
        overflow: hidden;
        z-index: 999;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .slider-nav.prev {
        left: 15px;
    }
    
    .slider-nav.next {
        right: 15px;
    }
    
    .slider-dots {
        bottom: 15px;
        gap: 8px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 576px) {
    .hero-image-slider {
        height: 60vh;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 10px;
        gap: 6px;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 3;
}

.slide.prev {
    opacity: 0;
    transform: translateX(-100%);
    z-index: 2;
}

.slide.next {
    opacity: 0;
    transform: translateX(100%);
    z-index: 2;
}

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    z-index: 2;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-dot.active,
.slider-dot:hover {
    background: white;
    border-color: white;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

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

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

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

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

/* Mobile Only Welcome Section */
.mobile-welcome-section {
    display: none; /* Hidden by default on desktop */
}

/* Mobile only display for welcome section */
@media (max-width: 768px) {
    .mobile-welcome-section {
        display: block;
        background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        padding: 3rem 0;
        text-align: center;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    }
    
    .mobile-welcome-content {
        max-width: 400px;
        margin: 0 auto;
        padding: 0 1rem;
    }
    
    .mobile-welcome-title {
        font-size: 1.8rem;
        font-weight: 600;
        color: #b52020;
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    .mobile-welcome-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(135deg, #b52020, #8b1818);
        border-radius: 2px;
    }
    
    .mobile-welcome-text {
        font-size: 1rem;
        line-height: 1.6;
        color: #495057;
        margin-bottom: 0;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .mobile-welcome-section {
        padding: 2.5rem 0;
    }
    
    .mobile-welcome-content {
        padding: 0 0.75rem;
    }
    
    .mobile-welcome-title {
        font-size: 1.6rem;
        margin-bottom: 1.25rem;
    }
    
    .mobile-welcome-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* End of file */