/* Tax Audit Services Page Styles */

/* Hero section styles */
.hero-tax-audit {
    background: linear-gradient(rgba(25, 135, 84, 0.8), rgba(32, 201, 151, 0.8)), url('../images/services/tax-audit-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates a parallax-like effect */
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Enhanced particles container with slightly increased opacity */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Enhanced hero overlay with better gradient */
.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
}

/* Enhanced typewriter text with text shadow */
.typewriter {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

/* Enhanced divider with animation */
.divider {
    height: 4px;
    width: 80px;
    background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0.5), #ffffff);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Improved scroll down indicator */
.scroll-down-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.wheel {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    animation: wheel-animation 2s infinite;
}

@keyframes wheel-animation {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

.arrow-down {
    margin-top: 15px;
    width: 15px;
    height: 15px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    animation: arrow-animation 2s infinite;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}

@keyframes arrow-animation {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Intro Section Styles */
.intro-content {
    position: relative;
    z-index: 2;
}

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

.intro-feature:hover {
    transform: translateX(5px);
}

.intro-image-container {
    position: relative;
    z-index: 1;
}

.floating-badge {
    bottom: 30px;
    left: -20px;
    z-index: 3;
    animation: float-badge 3s ease-in-out infinite;
}

.experience-badge {
    top: 30px;
    right: -20px;
    z-index: 3;
    animation: float-badge 3.5s ease-in-out infinite;
}

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

.icon-bg {
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
}

/* Requirement card styles */
.requirement-card {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.icon-rounded-bg {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.threshold-indicator {
    margin-top: 15px;
}

.progress {
    height: 6px;
    border-radius: 10px;
}

/* Service card styles */
.service-card {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

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

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

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

.icon-bg {
    width: 80px;
    height: 80px;
    transition: all 0.3s ease;
}

.service-card:hover .icon-bg {
    transform: rotate(10deg);
}

/* Audit Process Timeline Styles */
.audit-process {
    position: relative;
    overflow: hidden;
}

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

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

.process-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Timeline center styling */
.timeline-center {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    background-color: #e9e9e9;
}

.timeline-circle {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.circle-1 {
    top: 8%;
}

.circle-2 {
    top: 29%;
}

.circle-3 {
    top: 50%;
}

.circle-4 {
    top: 71%;
}

.circle-5 {
    top: 92%;
}

/* Mobile process step styling */
.step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Deadline cards styling */
.deadline-card {
    transition: all 0.3s ease;
}

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

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Benefits card styles */
.benefit-card {
    transition: all 0.3s ease;
    background-color: white;
}

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

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

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

/* Counter card styles */
.counter-card {
    transition: all 0.3s ease;
    background-color: white;
}

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

.counter-value {
    font-size: 3rem;
    font-weight: bold;
    margin: 10px 0 0 0;
    display: inline-block;
}

.counter-suffix {
    font-size: 1.5rem;
    color: var(--success);
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

.counter-title {
    font-size: 1.2rem;
    color: #666;
}

/* Testimonial card styles */
.testimonial-card {
    transition: all 0.3s ease;
    background-color: white;
}

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

/* FAQ accordion styles */
.custom-accordion .accordion-button {
    background-color: white;
    font-size: 1.1rem;
    padding: 1.25rem;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: #198754;
    background-color: #f8f9fa;
    box-shadow: none;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.custom-accordion .accordion-button::after {
    background-size: 1.25rem;
    transition: all 0.3s ease;
}

.custom-accordion .accordion-body {
    padding: 1.5rem;
    background-color: #f8f9fa;
}

.custom-accordion .accordion-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Penalty item styling */
.penalty-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CTA section styles */
.cta-overlay {
    background: linear-gradient(to right, rgba(25, 135, 84, 0.8), rgba(32, 201, 151, 0.8));
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Pulse button animation */
.pulse-button {
    position: relative;
}

.pulse-button:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Feature list styling */
.service-features {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    margin-bottom: 8px;
}

/* Shadow hover effect */
.shadow-hover {
    transition: all 0.3s ease;
}

.shadow-hover:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Badge styling */
.badge {
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Text colors for Tax Audit */
.text-success {
    color: #198754 !important;
}

/* Background colors for Tax Audit */
.bg-success {
    background-color: #198754 !important;
}

/* Media query for responsive height */
@media (max-width: 768px) {
    .hero-tax-audit {
        height: 70vh;
    }
    
    .timeline:before {
        left: 40px;
    }
    
    .timeline-badge {
        left: 40px;
        margin-left: 0;
    }
    
    .timeline-panel {
        width: calc(100% - 90px);
        float: right;
        margin-left: 90px;
    }
    
    .timeline-item:nth-child(odd) .timeline-panel {
        text-align: left;
        margin-right: 0;
    }
    
    .floating-badge, .experience-badge {
        position: relative;
        display: inline-block;
        margin: 10px 0;
        top: 0;
        right: 0;
        left: 0;
    }
    
    .intro-image-container {
        margin-top: 50px;
    }
    
    .deadline-card {
        margin-bottom: 20px;
    }
}