/* CTA section styles */
.cta-overlay {
    background: linear-gradient(to right, rgba(255, 153, 51, 0.8), rgba(255, 178, 102, 0.8));
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-gst {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-gst::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/patterns/pattern-dots.png');
    background-size: 20px;
    opacity: 0.1;
    z-index: 1;
}

.cta-gst .container {
    position: relative;
    z-index: 3;
}

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

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

/* GST-specific styles */
.bg-gst-primary {
    background-color: #FF9933 !important;
}

.text-gst-primary {
    color: #FF9933 !important;
}

.border-gst {
    border-color: #FF9933 !important;
}

/* GST FAQ section */
.faq-section {
    position: relative;
    padding: 80px 0;
    background-color: #ffffff;
}

.faq-section::before {
    content: '%';
    position: absolute;
    font-size: 400px;
    font-weight: bold;
    color: rgba(255, 153, 51, 0.03);
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.custom-accordion {
    position: relative;
    z-index: 1;
}

.custom-accordion .accordion-button {
    background-color: white;
    font-size: 1.1rem;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: #FF9933;
    background-color: #fff8f0;
    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: #fff8f0;
}

.custom-accordion .accordion-item {
    margin-bottom: 1rem;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.custom-accordion .accordion-item:hover {
    box-shadow: 0 10px 20px rgba(255, 153, 51, 0.1);
    transform: translateY(-5px);
}

/* E-way bill process styling */
.e-way-bill-process {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    border-left: 4px solid #FF9933;
}

.process-step {
    position: relative;
    margin-bottom: 20px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: -20px;
    width: 2px;
    background-color: rgba(255, 153, 51, 0.2);
    z-index: 0;
}

.process-step:last-child::before {
    display: none;
}

.step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 1;
}

.step-content {
    padding-left: 10px;
}

.e-way-bill-note {
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #0d6efd;
}

/* ITC cards styling */
.card-header.bg-light {
    background-color: #f8f9fa !important;
    border-bottom: 2px solid #FF9933;
}

/* Calendar cards styling */
.calendar-container {
    padding: 30px;
    position: relative;
}

.calendar-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/patterns/pattern-calendar.png');
    background-size: 100px;
    opacity: 0.03;
    z-index: 0;
}

.calendar-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.calendar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 153, 51, 0.15) !important;
}

.calendar-header {
    margin-bottom: 15px;
}

.calendar-date h2 {
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.calendar-card:hover .calendar-date h2 {
    transform: scale(1.1);
}

.calendar-disclaimer {
    position: relative;
    z-index: 1;
    font-style: italic;
}

/* Service category styling */
.service-category-title {
    display: inline-block;
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 10px;
}

.category-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #FF9933, rgba(255, 153, 51, 0.1));
}

/* Benefits section styling */
.benefits-section {
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(255, 153, 51, 0.05);
    z-index: 0;
}

.benefits-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(255, 153, 51, 0.05);
    z-index: 0;
}

.benefit-card {
    position: relative;
    z-index: 1;
    background-color: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #FF9933;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

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

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

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

/* Testimonials section styling */
.testimonials-section {
    position: relative;
}

.testimonial-card {
    position: relative;
    transition: all 0.3s ease;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
}

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

.testimonial-card .bi-quote {
    position: absolute;
    top: -10px;
    right: -10px;
    opacity: 0.1;
    transform: rotate(10deg);
    transition: all 0.3s ease;
}

.testimonial-card:hover .bi-quote {
    transform: rotate(0deg) scale(1.1);
    opacity: 0.15;
}

.author-avatar img {
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar img {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Media queries for responsive design */
@media (max-width: 992px) {
    .service-category-title {
        font-size: 1.5rem;
    }
    
    .calendar-card {
        margin-bottom: 20px;
    }
    
    .process-step::before {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .hero-gst-audit {
        height: 70vh;
    }
    
    .floating-badge, .experience-badge {
        position: relative;
        display: inline-block;
        margin: 10px auto;
        top: 0;
        right: 0;
        left: 0;
    }
    
    .intro-image-container {
        margin-top: 50px;
        text-align: center;
    }
    
    .service-category {
        margin-bottom: 40px;
    }
    
    .calendar-container {
        padding: 15px;
    }
    
    .calendar-card {
        margin-bottom: 15px;
    }
    
    .testimonial-card {
        margin-bottom: 20px;
    }
    
    .cta-gst {
        padding: 50px 0;
    }
    
    .custom-accordion .accordion-button {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .custom-accordion .accordion-body {
        padding: 1rem;
    }
    
    .faq-section::before {
        font-size: 200px;
        right: 0;
    }
    
    .e-way-bill-process {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .divider {
        width: 60px;
    }
    
    .service-category-title {
        font-size: 1.3rem;
    }
    
    .cta-gst .display-4 {
        font-size: 2rem;
    }
    
    .process-step .step-content h5 {
        font-size: 1rem;
    }
    
    .calendar-card {
        padding: 15px !important;
    }
    
    .calendar-date h2 {
        font-size: 1.5rem;
    }
    
    .calendar-header h4 {
        font-size: 1.1rem;
    }
}
/* Income Tax Services Page Styles */

/* Hero section styles */
.hero-income-tax {
    background: linear-gradient(rgba(19, 136, 8, 0.8), rgba(43, 175, 43, 0.8)), url('../images/services/income-tax-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, #138808, rgba(19, 136, 8, 0.5), #138808);
    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;
}

/* Service Category Styles */
.service-category {
    position: relative;
    margin-bottom: 60px;
}

.service-category-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
}

.category-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #138808, rgba(19, 136, 8, 0.1));
}

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

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

/* Calendar card styles */
.calendar-container {
    padding: 30px;
    position: relative;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.calendar-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/patterns/pattern-calendar.png');
    background-size: 100px;
    opacity: 0.03;
    z-index: 0;
    border-radius: 10px;
}

.calendar-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.calendar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(19, 136, 8, 0.15) !important;
    border-width: 2px !important;
}

.calendar-header {
    margin-bottom: 15px;
}

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

.calendar-date h2 {
    margin-bottom: 0;
    color: #138808;
    font-weight: 700;
    transition: all 0.3s ease;
}

.calendar-card:hover .calendar-date h2 {
    transform: scale(1.1);
}

.calendar-disclaimer {
    position: relative;
    z-index: 1;
    font-style: italic;
}

/* Benefits card styles */
.benefit-card {
    transition: all 0.3s ease;
    background-color: white;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #138808;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

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

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

.benefit-card:hover .benefit-icon i {
    transform: scale(1.1) rotate(5deg);
    transition: all 0.3s ease;
}

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

.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: #138808;
    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;
    border-radius: 10px;
}

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

.testimonial-card .bi-quote {
    position: absolute;
    top: -10px;
    right: -10px;
    opacity: 0.1;
    transform: rotate(10deg);
    transition: all 0.3s ease;
}

.testimonial-card:hover .bi-quote {
    transform: rotate(0deg) scale(1.1);
    opacity: 0.15;
}

.author-avatar img {
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar img {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* FAQ accordion styles */
.faq-section {
    position: relative;
    padding: 80px 0;
    background-color: #ffffff;
}

.faq-section::before {
    content: '₹';
    position: absolute;
    font-size: 400px;
    font-weight: bold;
    color: rgba(19, 136, 8, 0.03);
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.custom-accordion {
    position: relative;
    z-index: 1;
}

.custom-accordion .accordion-button {
    background-color: white;
    font-size: 1.1rem;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: #138808;
    background-color: #f2f9f2;
    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: #f2f9f2;
}

.custom-accordion .accordion-item {
    margin-bottom: 1rem;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.custom-accordion .accordion-item:hover {
    box-shadow: 0 10px 20px rgba(19, 136, 8, 0.1);
    transform: translateY(-5px);
}

/* Notice steps styling */
.notice-steps {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    border-left: 4px solid #138808;
}

.process-step {
    position: relative;
    margin-bottom: 20px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: -20px;
    width: 2px;
    background-color: rgba(19, 136, 8, 0.2);
    z-index: 0;
}

.process-step:last-child::before {
    display: none;
}

.step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 1;
}

/* Note styling */
.tax-note, .tax-tip, .notice-note, .penalty-note {
    border-left: 4px solid #138808;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 0 10px 10px 0;
}

/* Card header styling for tax regimes */
.card-header.bg-light {
    background-color: #f8f9fa !important;
    border-bottom: 2px solid #138808;
}

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

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

/* Income Tax color overrides */
.text-success {
    color: #138808 !important;
}

.bg-success {
    background-color: #138808 !important;
}

/* CTA section styles */
.cta-income-tax {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-overlay {
    background: linear-gradient(to right, rgba(19, 136, 8, 0.8), rgba(43, 175, 43, 0.8));
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-income-tax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/patterns/pattern-dots.png');
    background-size: 20px;
    opacity: 0.1;
    z-index: 1;
}

.cta-income-tax .container {
    position: relative;
    z-index: 3;
}

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

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

/* 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;
}

/* Benefits section styling */
.benefits-section {
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(19, 136, 8, 0.05);
    z-index: 0;
}

.benefits-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(19, 136, 8, 0.05);
    z-index: 0;
}

/* Media queries for responsive design */
@media (max-width: 992px) {
    .service-category-title {
        font-size: 1.5rem;
    }
    
    .calendar-card {
        margin-bottom: 20px;
    }
    
    .process-step::before {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .hero-income-tax {
        height: 70vh;
    }
    
    .floating-badge, .experience-badge {
        position: relative;
        display: inline-block;
        margin: 10px auto;
        top: 0;
        right: 0;
        left: 0;
    }
    
    .intro-image-container {
        margin-top: 50px;
        text-align: center;
    }
    
    .service-category {
        margin-bottom: 40px;
    }
    
    .calendar-container {
        padding: 15px;
    }
    
    .calendar-card {
        margin-bottom: 15px;
    }
    
    .testimonial-card {
        margin-bottom: 20px;
    }
    
    .cta-income-tax {
        padding: 50px 0;
    }
    
    .custom-accordion .accordion-button {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .custom-accordion .accordion-body {
        padding: 1rem;
    }
    
    .faq-section::before {
        font-size: 200px;
        right: 0;
    }
    
    .notice-steps {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .divider {
        width: 60px;
    }
    
    .service-category-title {
        font-size: 1.3rem;
    }
    
    .cta-income-tax .display-4 {
        font-size: 2rem;
    }
    
    .process-step .step-content h5 {
        font-size: 1rem;
    }
    
    .calendar-card {
        padding: 15px !important;
    }
    
    .calendar-date h2 {
        font-size: 1.5rem;
    }
    
    .calendar-header h4 {
        font-size: 1.1rem;
    }
}