/* Parallax Sections Styles */
.parallax-section {
    position: relative;
    min-height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: inherit;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: translateZ(0);
    will-change: transform;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.85) 0%, rgba(25, 135, 84, 0.85) 100%);
    z-index: 1;
}

.parallax-section .container {
    position: relative;
    z-index: 2;
}

.parallax-section .tj-section-title,
.parallax-section .tj-section-subtitle,
.parallax-section .tj-section-paragraph {
    color: #ffffff;
}

.parallax-section .tj-section-subtitle span.one {
    color: #ffffff;
}

.parallax-section .tj-arrow-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #ffffff;
    color: #ffffff;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.parallax-section .tj-arrow-btn:hover {
    background: #ffffff;
    color: #0d6efd;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll;
        min-height: 80vh;
    }
    
    .parallax-section::before {
        background-attachment: scroll;
    }
}

/* Animation for parallax effect */
@media (prefers-reduced-motion: no-preference) {
    .parallax-section {
        transform: translateZ(0);
    }
}

/* Different overlay colors for variety */
.parallax-section:nth-child(odd) .parallax-overlay {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.85) 0%, rgba(25, 135, 84, 0.85) 100%);
}

.parallax-section:nth-child(even) .parallax-overlay {
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.85) 0%, rgba(13, 110, 253, 0.85) 100%);
}

/* Text center alignment for parallax sections */
.parallax-section .text-center {
    text-align: center;
}

.parallax-section .tj-section-wrapper {
    padding: 60px 0;
}

/* Enhanced button styles for parallax sections */
.parallax-section .tj-arrow-btn .icon_box {
    background: rgba(255, 255, 255, 0.2);
}

.parallax-section .tj-arrow-btn:hover .icon_box {
    background: rgba(13, 110, 253, 0.2);
}