/*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
/* particles animation css */
.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;

}

.circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}

/* animation for tax illustration */
.animated {
    position: relative;
}

.animated-info {
    display: inline-block;
    vertical-align: top;
    margin-top: 5px;
    min-width: 400px;
    position: relative;
}

@keyframes BottomTotop {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 0;
        transform: translateY(5px);
    }

    10% {
        opacity: 1;
        transform: translateY(0px);
    }

    25% {
        opacity: 1;
        transform: translateY(0px);
    }

    30% {
        opacity: 0;
        transform: translateY(5px);
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.animated-info .animated-item {
    color: var(--accent-color);
    text-transform: capitalize;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    top: -5px;
    right: 0;
    left: 0;
    animation: BottomTotop 6s linear infinite 0s;
}

.animated-info .animated-item:nth-child(2n+2) {
    animation-delay: 2s;
}

.animated-info .animated-item:nth-child(3n+3) {
    animation-delay: 4s;
}

.hero {
    width: 100%;
    overflow-x: hidden;
    position: relative;
    background: linear-gradient(0deg, var(--background-color) 0%, color-mix(in srgb, var(--background-color) 90%, white 10%) 100%);
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
}

.hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    position: relative;
    min-height: 75vh;
    padding-top: 60px;
}

.hero h2 {
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 700;
}

.hero h2 span {
    font-size: inherit;
}

.hero p {
    max-width: 80%;
    animation-delay: 0.4s;
    margin: 0 auto 30px auto;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
    width: 10%;
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    background: none;
    font-size: 48px;
    line-height: 1;
    width: auto;
    height: auto;
}

.hero .btn-get-started {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none;
    padding: 12px 32px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    animation-delay: 0.8s;
    color: var(--default-color);
    border: 2px solid var(--accent-color);
}

.hero .btn-get-started:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    text-decoration: none;
}

@media (min-width: 1024px) {
    .hero p {
        max-width: 60%;
    }

    .hero .carousel-control-prev,
    .hero .carousel-control-next {
        width: 5%;
    }
}

@media (max-width: 768px) {
    .hero .carousel-container {
        min-height: 80vh;
    }

    .hero h2 {
        font-size: 28px;
    }
}


.hero .hero-waves {
    /* display: block; */
    width: 100%;
    height: 60px;
    position: relative;
}

.hero .wave1 use {
    animation: move-forever1 10s linear infinite;
    animation-delay: -2s;
    fill: var(--default-color);
    opacity: 0.6;
}

.hero .wave2 use {
    animation: move-forever2 8s linear infinite;
    animation-delay: -2s;
    fill: var(--default-color);
    opacity: 0.4;
}

.hero .wave3 use {
    animation: move-forever3 6s linear infinite;
    animation-delay: -2s;
    fill: var(--default-color);
}

@keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }

    100% {
        transform: translate(-90px, 0%);
    }
}

@keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}


/* Default styles for larger screens */
.navbar-brand .logo-img {
    width: 55px;
    height: 35px;
}

.navbar-brand .logo-text {
    width: 250px;
    height: 50px;
}

/* Floating animation for the rating card */


.floating-card {
    animation: float 3s ease-in-out infinite;
}

/* Floating Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.float-animation {
    animation: float 4s ease-in-out infinite;
}

.testimonial-card {
    background-color: #f8f9fa;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
}

.dark .testimonial-card {
    background-color: #2d3748;
}

.testimonial-card p {
    font-size: 1.5rem;
    line-height: 1.6;
}

.testimonial-card mark {
    background-color: #e0e7ff;
    color: #3730a3;
    border-radius: 0.375rem;
    padding: 0.125rem 0.25rem;
}

.dark .testimonial-card mark {
    background-color: #3730a3;
    color: #e0e7ff;
}

.testimonial-card .avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-card .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.faq-button {
    width: 100%;
    text-align: left;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c3e50;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.faq-button:hover {
    background-color: #e9ecef;
    border-color: #ced4da;
}

.faq-button:focus {
    box-shadow: none;
}

.faq-button .arrow {
    transition: transform 0.3s ease;
}

.faq-button[aria-expanded="true"] .arrow {
    transform: rotate(180deg);
}

.faq-content {
    padding: 1rem;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.carousel-container {
    text-align: center;
    margin: 40px auto;
    max-width: 85%;
}



.carousel-item img {
    max-width: 75%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Fixed button at the bottom-left corner with better styling */
.fixed-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.fixed-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Rounded image for team members */
.team-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

/* Social media links styling */
.social-links a {
    color: #6c757d;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #0d6efd;
}

/* Offcanvas body styling */
.offcanvas-body {
    padding: 1.5rem;
}

/* Team member card styling */
.team-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.team-card:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.team-card .details {
    flex: 1;
}


@media (max-width: 1024px) {

    /* Adjust for tablets and smaller devices */
    .mobile-hide {
        display: none !important;
    }
}
@media screen and (max-width: 480px) and (max-width: 992px) {
  #one {
    transform: translateX(50px);
    width: 275px;
  }
}

@media screen and (max-width: 992px) {
  #one {
    transform: translateX(50px);
    width: 800px;
  }
}