/*!
Theme Name: book-keeping
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: book-keeping
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

book-keeping is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
:root {
    --primary-color: #2CB34A;
    --secondary-color: #006CB7;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Raleway', sans-serif;
    overflow-x: hidden;
}

.py-10 {
    padding-top: 12rem !important;
    padding-bottom: 5rem !important;
}

/* Navigation Styles */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    color: var(--secondary-color);
    font-weight: 700;
    padding: 0.5rem 1rem;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: bold
}

/* Common Styles */
.clr-primary {
    color: var(--primary-color) !important;
}

.clr-secondary {
    color: var(--secondary-color) !important;
}

.fw-900 {
    font-weight: 900 !important;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: darken(var(--secondary-color), 10%);
    border-color: darken(var(--secondary-color), 10%);
    transform: translateY(-2px);
}

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* About */

.experience-badge {
    bottom: -20px;
    right: 40px;
    min-width: 120px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
}

.mission-card .mission-content {
    transition: all 0.4s ease;
    border: none;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(170deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.icon-circle i {
    color: white;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(var(--secondary-color), 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(var(--secondary-color), 0);
    }

    100% {
        transform: scale(1);
    }
}

.mission-content {
    text-align: center;
}

.lead {
    font-size: 1.15rem;
    line-height: 1.8;
}

.team-member {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.social-links a {
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #0d6efd;
    transform: scale(1.2);
}

.feature-card {
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0;
    }

    .team-member img {
        height: 250px;
    }
}

/* Services Section */
.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

.service-card:hover::before {
    opacity: 1;
}

.service-card .icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

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

.service-card .icon-box::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.4;
    animation: pulse 2s infinite;
}

.service-card .icon-box i {
    font-size: 2.2rem;
    color: white;
    transition: all 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 0.8rem;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.service-card:hover h3::after {
    width: 80px;
}

.service-image img {
    width: 100%;
    height: 250px;
}

.step-card h4 {
    font-weight: 700;
    color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Projects Section */
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

.project-card img {
    transition: all 0.5s ease;
    border-radius: 10px;
    width: 100%;
    height: 300px;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-card:hover .project-overlay {
    opacity: 1;
    transform: translateY(0);
}

.project-overlay h4 {
    margin: 0;
    font-size: 1.5rem;
}

.project-overlay p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Consultation Section */
.consultation-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.consultation-form .form-control,
.consultation-form .form-select {
    padding: 0.8rem 1.2rem;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 1rem;
}

.consultation-form .form-control:focus,
.consultation-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 179, 74, 0.25);
}

/* Blog Section */
.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-meta span {
    margin-right: 1rem;
}

.blog-meta i {
    margin-right: 5px;
}

.blog-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.blog-card p {
    color: #666;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonial-item {
    padding: 2rem;
}

.testimonial-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    margin: 1.5rem 0;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: -50px;
}

.carousel-control-next {
    right: -50px;
}

/* Counter Section */
.counter-section {
    background-color: var(--secondary-color);
    color: white;
}

.counter-item i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.counter-item h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 15px 0;
}

.counter-item p {
    font-size: 1.1rem;
    margin: 0;
}

/* About Section */
.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.feature-list li i {
    margin-right: 10px;
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95));
    padding-top: 80px;
    position: relative;
}

.hero-section h1 {
    color: var(--primary-color);
    line-height: 1.2;
}

.hero-section .lead {
    color: #666;
    font-size: 1.2rem;
}

.hero-buttons {
    margin-top: 2rem;
}

.btn-outline-secondary {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

/* Contact Section */
.contact-form .form-control {
    padding: 0.8rem 1.2rem;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 1rem;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 179, 74, 0.25);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
}

.footer-padding {
    padding: 100px 0;
}

.footer h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact li i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Animation Styles */
[data-aos] {
    opacity: 0;
    transition-duration: 1s;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

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

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    .navbar-nav {
        padding: 1rem 0;
    }

    .section-padding {
        padding: 60px 0;
    }

    .footer-padding {
        padding: 30px 30px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .counter-item {
        margin-bottom: 30px;
    }

    .hero-section {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        text-align: center;
        margin-top: 2rem;
    }

    .feature-list {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 575.98px) {
    .section-title h2 {
        font-size: 1.8rem;
    }

    .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .hero-buttons .btn {
        margin: 0.5rem 0;
    }
}

.typing {
    border-right: 3px solid #006CB7;
    /* cursor */
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    animation: blink 0.7s infinite;
    color: var(--secondary-color);
}

@keyframes blink {

    0%,
    50% {
        border-color: #006CB7;
    }

    51%,
    100% {
        border-color: transparent;
    }
}

.page-header {
    position: relative;
    padding: 10rem 0;
    /* equivalent to py-10 */
    margin-bottom: 3rem;
    /* equivalent to mb-5 */
    background: linear-gradient(rgba(44, 179, 74, 0.9),
            rgba(0, 108, 183, 0.9)),
        url('https://mapleleap.online/bookkeeping/wp-content/themes/book-keeping/assets/img/hero.jpg') center center no-repeat;
    background-size: cover;
    color: #fff;
    text-align: center;
}

#back-top {
    background: var(--primary-color);
    height: 50px;
    width: 50px;
    right: 31px;
    bottom: 18px;
    position: fixed;
    color: #fff;
    font-size: 20px;
    text-align: center;
    border-radius: 50%;
    line-height: 48px;
    border: 2px solid transparent;
    box-shadow: 0 0 10px 3px rgba(108, 98, 98, 0.2)
}

@media (max-width: 575px) {
    #back-top {
        right: 16px
    }
}

#back-top a i {
    line-height: 50px;
    color: #fff;
}

/* Call button */

#call {
    position: fixed;
    z-index: 99;
    left: 10px;
    bottom: 2px;
}

@media screen and (max-width:1920px) {
    .div-only-mobile {
        visibility: hidden
    }
}

@media screen and (max-width:906px) {
    .div-only-mobile {
        visibility: visible
    }
}


/* Trust Cards */
.trust-card {
    background: white;
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2CB34A, #2CB34A);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-card:hover::before {
    opacity: 1;
}

/* Trust Badge Styles */
.trust-badge {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Trust Images */
.trust-image {
    max-width: 120px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.trust-card:hover .trust-image {
    transform: scale(1.05);
}

/* Trust Title */
.trust-title {
    color: #1f2937;
    font-weight: 600;
    font-size: 18px;
    margin: 0;
}

/* Trust Arrow */
.trust-arrow {
    color: #6b7280;
    font-size: 18px;
    transition: all 0.3s ease;
}

.trust-card:hover .trust-arrow {
    color: #374151;
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .trust-card {
        margin-bottom: 1rem;
    }

    .bbb-badge,
    .homestars-badge {
        padding: 10px 16px;
        font-size: 14px;
    }

    .google-text {
        font-size: 20px;
    }

    .trust-title {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 2rem 1rem;
    }

    .trust-badge {
        height: 70px;
    }

    .bbb-badge,
    .homestars-badge {
        padding: 8px 12px;
    }

    .google-text {
        font-size: 18px;
    }
}

/* Process Section Styles */
.process-timeline {
    position: relative;
}

.process-timeline::after {
    content: '';
    position: absolute;
    top: 100px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: #e9ecef;
    z-index: 0;
}

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    position: relative;
    transition: all 0.3s ease;
}


.process-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.process-icon-item {
    font-size: 2.5rem;
    color: white;
}

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

.process-step h4 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (max-width: 991px) {
    .process-timeline::after {
        display: none;
    }
}

/* Animation for page load */
.trust-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.trust-card:nth-child(1) {
    animation-delay: 0.1s;
}

.trust-card:nth-child(2) {
    animation-delay: 0.2s;
}

.trust-card:nth-child(3) {
    animation-delay: 0.3s;
}

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


/*  */


.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    line-height: 1.7;
}

.process-container {
    position: relative;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Connecting line */
.process-line {
    position: absolute;
    top: 120px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    z-index: 1;
    border-radius: 10px;
}

.step {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 16px;
    padding: 40px 30px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s ease;
    border-top: 5px solid var(--primary-color);
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step:nth-child(2) {
    border-top-color: var(--secondary-color);
}

.step:nth-child(3) {
    border-top-color: var(--accent-color);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.step-number-process {
    position: absolute;
    top: -30px;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 3;
    border: 3px solid;
    transition: all 0.3s ease;
}

.step:nth-child(1) .step-number-process {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.step:nth-child(2) .step-number-process {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.step:nth-child(3) .step-number-process {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

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

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.step:nth-child(1) .step-icon {
    background: rgba(44, 179, 74, 0.1);
    color: var(--primary-color);
}

.step:nth-child(2) .step-icon {
    background: rgba(0, 108, 183, 0.1);
    color: var(--secondary-color);
}

.step:nth-child(3) .step-icon {
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent-color);
}

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

.step h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 600;
}

.step p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
}

/* Animation for steps */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.step {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.step:nth-child(1) {
    animation-delay: 0.2s;
}

.step:nth-child(2) {
    animation-delay: 0.4s;
}

.step:nth-child(3) {
    animation-delay: 0.6s;
}

/* Stats section */
.stats-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 100px;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Responsive design */
@media (max-width: 992px) {
    .process-line {
        display: none;
    }

    .step {
        min-width: 100%;
    }

    .stats-section {
        margin-top: 60px;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }

    .step {
        padding: 30px 20px 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* CTA Button */
.cta-container {
    text-align: center;
    margin-top: 60px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(44, 179, 74, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(44, 179, 74, 0.4);
}

.cta-button:active {
    transform: translateY(1px);
}


/* FAQ Section */
.faq-section {
    margin-top: 100px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.faq-item:nth-child(2) {
    border-left-color: var(--secondary-color);
}

.faq-item:nth-child(3) {
    border-left-color: var(--accent-color);
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(44, 179, 74, 0.03);
}

.faq-question h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

.faq-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: #666;
    line-height: 1.7;
}

.faq-answer p {
    padding-bottom: 25px;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-answer {
        padding: 0 20px;
    }
}
