@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* Global Color Variables - Updated Color Scheme */
:root {
    --primary-orange: #ff7031;       /* Main orange color (was green) */
    --secondary-orange: #e6632b;     /* Darker orange for hovers */
    --light-orange: #ffcdbb;         /* Light orange (was light green) */
    --primary-dark-blue: #011893;    /* Dark blue */
    --secondary-dark-blue: #001470;  /* Darker blue for hovers */
    --light-blue: #24305B;           /* Keep for gradients */
    --accent-blue: #001554;          /* Keep for gradients */
    
    /* Keep existing neutral colors */
    --white: #FFFFFF;
    --light-gray: #F9FAFB;
    --medium-gray: #E2E6EB;
    --dark-gray: #878C91;
    --text-gray: #D9D9D9;
    --background-gray: #f3f4f6;
}

/* Light text color for better readability on dark backgrounds */
.color-light {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Alternative: You can also use a light gray */
.color-light-gray {
    color: #e5e7eb !important;
}

/* For even lighter text */
.color-very-light {
    color: rgba(255, 255, 255, 0.6) !important;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background: linear-gradient(103.88deg, var(--white) -44.9%, var(--light-gray) -26.11%, var(--medium-gray) 115.83%);
    font-family: 'Instrument Sans', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

main {
    flex: 1 0 auto;
}

.header {
    margin-bottom: 10px;
}

.navbar-brand {
    display: inline-block;
    width: 64px;
    height: 64px;
    background: url('../images/logo.svg') no-repeat;
    background-size: contain;
    text-indent: -9999px;
    flex-shrink: 1;
    overflow: hidden;
}

.navbar-brand span {
    color: #333;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
}

.nav-links a {
    position: relative;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 24px 12px 60px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    text-transform: capitalize;
}

.nav-links li a:before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background-color: white;
    border-radius: 50%;
    background-image: url('../images/icons/world_icon.svg');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.nav-links li:nth-child(2) a:before {
    background-image: url('../images/icons/cart_icon.svg');
}

.nav-links a.has-bg {
    background: #f3f4f6;
    color: #374151;
}

.nav-links a:hover {
    color: #333;
}

.auth-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.actionBtns .btn {
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 20px;
    background: none;
    color: var(--primary-dark-blue);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 16px;
    border: 1px solid var(--primary-dark-blue);
    text-transform: capitalize;
}

.actionBtns .btn.active,
.actionBtns .btn:hover {
    background: var(--primary-dark-blue);
    color: white;
    border: 1px solid #d1d5db;
}

.container-fluid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.header-content {
    position: relative;
    width: 100%;
    height: 75px;
    margin: auto 0;
    background: #FFFFFF;
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
    box-sizing: border-box;
}

.hamburger {
    display: none;
}

/* Footer */
.footer {
    background: url("../../assets/images/blur.png") #f5f7fa;
    padding: 60px 20px;
    font-family: 'Roboto', 'Instrument Sans', 'Montserrat', sans-serif;
    font-size: 15px;
    color: #192031;
    flex-shrink: 0;
}

.footer a {
    text-decoration: none;
    color: #192031;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: -2%;
}

.footer li a {
    line-height: 300%;
}

.footer a:hover {
    color: #111827;
}

.footer .social-icons a {
    color: #111827;
    font-size: 18px;
    margin-right: 12px;
}

.footer .badges img {
    width: 60px;
    margin-right: 10px;
}

.footer .icon {
    font-size: 18px;
    margin-right: 10px;
    vertical-align: middle;
}

.footer .footer_contact {
    color: #192031;
}

h2 {
    font-weight: 900;
    font-size: 48px;
}

h4 {
    font-weight: 700;
    font-size: 32px;
}

section {
    padding: 40px 0;
}

.bg-dblue {
    background-color: var(--primary-dark-blue) !important;
}

.bg-blue-one {
    background-color: var(--primary-dark-blue) !important;
}

.bg-blue-two {
    background-color: var(--accent-blue) !important;
}

.color-orange {
    color: var(--primary-orange) !important;
}

.color-dblue {
    color: var(--primary-dark-blue) !important;
}

.font-normal {
    font-weight: 400 !important;
}

.font-500 {
    font-weight: 500 !important;
}

.font-600 {
    font-weight: 600 !important;
}

.roundBox {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 30px;
}

.content_space {
    padding: 66px 40px;
}

.cta-btn {
    background-color: var(--primary-orange);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    margin-top: auto;
    width: max-content;
    text-transform: capitalize;
}

.cta-btn:hover {
    background-color: var(--secondary-orange);
}

.cta-btn.bg-white {
    background-color: var(--white);
    color: var(--primary-orange);
    border: 1px solid var(--primary-orange);
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 724px;
}

#slider2.slideshow-container {
    height: 359px;
}

#slider2.slideshow-container img {
    max-height: 100%;
}

.fade-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    object-fit: cover;
}

.fade-slide.active {
    opacity: 1;
}

.benefits {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefits span {
    background-color: #ecf0f1;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.stats-section {
    color: var(--primary-dark-blue);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    width: 100%;
    box-sizing: border-box;
    height: 100%;
}

.stats-section > .stat {
    position: relative;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: flex-start;
    width: 33.33%;
}

.stats-section > .stat > div:has(.stat-value) {
    width: 100%
}

.stat::before {
    position: absolute;
    left: 3px;
    content: "";
    height: 100%;
    border-color: #9B9B9C;
    border-width: 1px;
    border-style: dashed;
}

.stat-bar-container {
    height: 100%;
    margin-right: 0.5rem;
}

.stat-bar {
    width: 8px;
    height: 25%;
    background-color: var(--primary-orange);
    margin: 0 auto;
    margin-top: 20px;
}

.stat-value {
    font-size: 3.1rem;
    font-weight: 700;
    color: var(--primary-dark-blue);
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 18px;
    line-height: 1.2;
    text-align: left;
}

/* Scrollbar */
.scroll-container {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    margin: 60px 0;
}

.scroll-container:active {
    cursor: grabbing;
}

.scroll-container::-webkit-scrollbar,
.testimonial-wrapper::-webkit-scrollbar {
    display: none;
}

.scroll-container,
.testimonial-wrapper {
    scrollbar-width: none;
}

.why_us .card {
    width: 150px;
    height: 150px;
    flex: 0 0 auto;
    background-color: var(--light-orange);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    color: #2c3e50;
    font-size: 0.9rem;
    font-weight: 500;
}

.why_us .card img {
    width: 50px;
    height: 50px;
    margin-bottom: 0.5rem;
}

.why_us_list .item {
    margin-bottom: 20px;
}

.how_magic {
    position: absolute;
    top: 50px;
    left: 30px;
    width: 250px;
    background-color: rgb(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 10px;
    box-shadow: #bcc4d5 0px 4px 6px -1px, #000 0px 2px 4px -1px;
}

.card.steps-card {
    background-color: rgb(0, 0, 0, 0);
    border: none;
    border-radius: 10px 0 10px 0;
    overflow: hidden;
}

.steps-header {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: #2c3e50;
    color: white;
    padding: 1rem 4.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 30px 0 30px 0;
}

.card-body {
    padding: 2rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.step-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.step-item p {
    font-size: 0.9rem;
    color: #34495e;
}

.accordion-button {
    border-radius: 30px !important;
    font-size: 1.25rem;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.accordion-item:first-of-type {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.accordion-item:last-of-type {
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.accordion-button:not(.collapsed) {
    background-color: var(--light-orange);
    color: #000;
    border-bottom: 1px solid var(--primary-orange);
}

.accordion-item:has(.collapse.show) {
    background-color: var(--light-orange);
}

.accordion-body {
    background-color: var(--light-orange);
    color: #333;
}

.accordion-button::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-orange);
    background-image: none !important;
}

.accordion-button:not(.collapsed)::after {
    content: '−';
}

/* CTA SECTION */
.hero-banner {
    border-radius: 20px;
    padding: 60px 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    background: linear-gradient(45deg, var(--primary-orange), var(--secondary-orange));
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 112, 49, 0.3);
    text-transform: capitalize;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 112, 49, 0.4);
    color: white;
}

/* Lets Talk banner */
banner .container .row {
    background-repeat: no-repeat;
    text-align: left;
}

/* DatePicker */
.date-picker {
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    color: white;
    width: 100%;
    border: 2px solid var(--primary-dark-blue);
}

.calendar-header {
    text-align: center;
    margin-bottom: 30px;
}

.calendar-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #ecf0f1;
}

.month-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.nav-button {
    background: none;
    border: none;
    color: #ecf0f1;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.current-month {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ecf0f1;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.day-header {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: #95a5a6;
    padding: 10px 0;
}

.day-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    min-height: 45px;
}

.day-cell:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.day-cell.other-month,
.day-cell.disable {
    color: #7f8c8d;
    cursor: default;
}

.day-cell.other-month:hover,
.day-cell.disable:hover {
    background: none;
    transform: none;
}

.day-cell.selected {
    background: var(--primary-orange) !important;
    color: white !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(255, 112, 49, 0.4) !important;
}

.day-cell.selected:hover {
    background: var(--secondary-orange);
    transform: scale(1.05);
}

.day-cell.today {
    background: rgba(1, 24, 147, 0.3);
    border: 2px solid var(--primary-dark-blue);
}

.day-cell.today:hover {
    background: rgba(1, 24, 147, 0.5);
}

.selected-date {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.selected-date-label {
    font-size: 0.9rem;
    color: #95a5a6;
    margin-bottom: 5px;
}

.selected-date-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ecf0f1;
}

@media (max-width: 480px) {
    .date-picker {
        padding: 20px;
        max-width: 350px;
    }

    .day-cell {
        min-height: 40px;
        font-size: 0.9rem;
    }

    .calendar-title {
        font-size: 1rem;
    }

    .current-month {
        font-size: 1.1rem;
    }
}

.meeting-selected-date {
    color: var(--primary-orange);
    font-weight: bold;
}

.time-slot {
    margin: 5px 0;
}

.time-slots {
    max-height: 300px;
    overflow: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.time-slots::-webkit-scrollbar {
    display: none;
}

.date-time {
    color: var(--primary-orange);
    font-weight: bold;
}

.required::after {
    content: "*";
    color: red;
}

.btn-custom {
    margin-right: 10px;
}

.error-message {
    display: none;
    color: #dc3545;
    font-size: 0.875em;
}

.container>.row>div:has(.meeting-container) {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* 404 Page */
.error-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.error-container .error-code {
    font-size: 120px;
    font-weight: bold;
    color: #dc3545;
}

.error-container .error-message {
    font-size: 24px;
    color: #333;
}

.btn-home {
    margin-top: 20px;
}

.business_industries {
    background-image: url('../images/bg_lines_one.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center bottom;
}

.business_industries .card-custom {
    padding: 20px;
}

.business_industries .card-custom i {
    font-size: 55px;
    color: var(--primary-orange);
}

.business_industries .card-custom p span {
    display: inline-block;
    margin-bottom: 10px;
}

.business_industries .info-text {
    padding: 20px;
}

.business_industries .more-btn {
    position: relative;
    width: 40px;
    height: 40px;
    padding: 30px;
    display: inline-block;
    border-radius: 30px;
}

.business_industries .more-btn i {
    position: absolute;
    left: 9px;
    top: -1px;
    font-size: 44px;
    color: #fff;
}

.business_industries .more-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

.trust_creatonix ul li {
    background: url("../images/icons/green_tick.png") no-repeat 0 6px;
    font-size: 21px;
    font-weight: 600;
    padding-left: 60px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.trust_creatonix ul li i {
    color: var(--primary-orange);
    font-size: 36px;
}

.pricing_banner_heading {
    font-size: 44px;
    font-weight: 900;
}

/* Testimonials */
.testimonial-container {
    background: url("../../assets/images/blur.png");
    margin: 100px auto;
    position: relative;
    overflow: hidden;
}

.quote-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-dark-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    font-size: 100px;
    line-height: 100px;
    color: white;
    margin: 0 auto 30px auto;
}

.testimonial-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.testimonial-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    transition: transform 0.3s ease-in-out;
}

.testimonial-author {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
    text-align: start;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: #000;
}

.testimonial-text strong {
    font-weight: 700;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
    margin-top: 40px;
}

.slider-controls .btn-circle {
    width: 65px;
    height: 45px;
    border-radius: 40px;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.slider-controls .btn-circle:hover {
    background-color: var(--primary-dark-blue);
    color: white;
}

.pagination {
    font-size: 14px;
    color: #333;
}

.green-box {
    background-color: var(--primary-orange);
    border-radius: 20px;
    padding: 30px;
    color: white;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-section {
    background-color: var(--primary-dark-blue);
    color: white;
    padding: 60px 30px;
    border-radius: 20px;
    margin-top: -20px;
    z-index: 2;
}

.orange-highlight {
    color: var(--primary-orange);
}

.btn-orange {
    background-color: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
}

.btn-orange:hover {
    background-color: var(--secondary-orange);
}

.tick-icon {
    width: 20px;
    margin-right: 8px;
}

.img-fluid.rounded-start {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 0;
}

.save-badge {
    background: var(--primary-orange);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-left: 10px;
}

.pricing-section {
    background: linear-gradient(114.42deg, var(--primary-orange) 5.52%, var(--primary-dark-blue) 50.51%, var(--accent-blue) 99.5%, #EAEDF1 111.58%);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pricing_plans .section-title {
    background: linear-gradient(90.26deg, var(--primary-orange) 78.45%, var(--primary-dark-blue) 114.77%);
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 -10px 0px;
    text-align: center;
    padding: 15px 30px;
    border-radius: 15px 15px 0 0;
    width: max-content;
}

.taxSectionWrapper .section-title {
    background: linear-gradient(91.09deg, var(--primary-orange) 50.35%, var(--secondary-orange) 124.81%);
}

.pricing_plans .pricing-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    justify-content: flex-end;
    display: flex;
    flex-direction: column;
}

.pricing_plans .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.pricing_plans .pricing-card.popular {
    border-color: var(--primary-orange);
    position: relative;
}

.pricing_plans .pricing-card.popular::before {
    content: "Most Popular";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.pricing_plans .plan-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.pricing_plans .plan-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.pricing_plans .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.pricing_plans .price-period {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.pricing_plans .btn-choose {
    background: #192031;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    width: 100%;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.pricing_plans .btn-choose:hover {
    background: #34495e;
    transform: translateY(-2px);
}

.pricing_plans .features-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.pricing_plans .feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.pricing_plans .feature-check {
    color: var(--primary-orange);
    margin-right: 10px;
    margin-top: 2px;
}

.pricing_plans .transaction-limit {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-top: auto;
}

.pricing_plans .transaction-icon {
    color: var(--primary-orange);
    margin-right: 10px;
}

.pricing_plans .tax-section {
    background: linear-gradient(114.42deg, var(--primary-orange) 5.52%, var(--primary-dark-blue) 82.71%, var(--light-blue) 104.41%);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pricing_plans .tax-section .section-title {
    color: white;
}

.pricing_plans .tax-section .pricing-card {
    background: white;
}

.pricing_plans .tax-section .btn-choose {
    background: var(--primary-orange);
}

.pricing_plans .tax-section .btn-choose:hover {
    background: var(--secondary-orange);
}

.pricing_plans .tax-section .btn-talk {
    color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.pricing_plans .tax-section .btn-talk:hover {
    background: var(--primary-orange);
    color: white;
}

.pricing_plans .additional-services {
    color: #000;
}

.pricing_plans .additional_tax_services .header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing_plans .additional_tax_services .card-custom {
    background: conic-gradient(from 231.37deg at 108.09% 119.89%, var(--primary-orange) 0deg, #FFFFFF 72.69deg, rgba(255, 205, 187, 0.94) 114.23deg, #FFFFFF 204.23deg, var(--secondary-orange) 360deg);
    border: none;
    border-radius: 15px;
    padding: 20px;
}

.pricing_plans .additional_tax_services .card-custom .price-tag {
    font-size: 16px;
    word-spacing: 2px;
}

.pricing_plans .additional_tax_services .card-custom .price-tag strong {
    font-size: 24px;
}

.pricing_plans .pricingPlanOptions {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.pricing_plans .region-selector {
    width: 262px;
    height: 65px;
    border-radius: 66px;
    padding-top: 12px;
    padding-right: 22px;
    padding-bottom: 12px;
    padding-left: 22px;
    border-width: 1px;
    margin: 0 auto;
}

.pricing_plans .disclaimer {
    text-align: center;
    color: #ccc;
    font-size: 0.8rem;
    margin-top: 20px;
}

.pricing_plans .toggle-container {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #f0f0f0;
    border-radius: 10px;
    font-family: Arial, sans-serif;
}

.pricing_plans .billingPeriod {
    font-style: italic;
    font-size: 1rem;
}

.pricing_plans .toggle-container::after {
    content: '10% save';
    position: absolute;
    right: 0;
    bottom: -35px;
    background: var(--primary-orange);
    padding: 5px;
    color: #fff;
    font-weight: 600
}

.pricing_plans .toggle-label {
    margin: 0 10px;
    color: #333;
}

.pricing_plans .toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.pricing_plans .toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing_plans .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.pricing_plans .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.pricing_plans input:checked+.slider {
    background-color: var(--primary-orange);
}

.pricing_plans input:checked+.slider:before {
    transform: translateX(26px);
}

.efforless_integration .col-lg-8 {
    position: relative;
}

.efforless_integration .col-lg-8 img {
    position: absolute;
    bottom: 0px;
    left: 0px;
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .stats-section {
        display: block !important;
        padding: 0 0 180px 0 !important;
        margin-top: 50px;
    }

    .stat {
        width: 72% !important;
        height: 40% !important;
        margin-bottom: 20px;
    }

    .stat-label {
        font-size: 2rem !important;
    }

    .stat-bar {
        width: 12px !important;
        margin-top: 18px !important;
    }

    .stat-value {
        font-size: 2.6rem !important;
        text-align: left !important;
        margin-top: 10px;
    }

    .stat::before {
        border-width: 2px !important;
    }

    .stat-bar-container {
        margin-right: 1rem !important;
        left: 4px !important;
    }

    .stat-label br {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
        background: none;
        border: none;
        font-size: 18px;
        color: #333;
    }

    .img-fluid.rounded-start {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 0;
    }

    .hero-banner {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .pricing_plans .pricingPlanOptions {
        display: block;
    }

    .pricing_plans .pricingPlanOptions .billing-toggle .toggle-container {
        width: 300px;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .pricing_plans .toggle-container::after {
        top: -30px !important;
        bottom: 88%;
    }
}

@media (min-width: 996px) {
    .pricing_services .relativeDiv {
        position: relative;
    }

    .pricing_services .absoluteDiv {
        position: absolute;
        left: 40%;
        top: 40%;
    }
}

@media (max-width: 996px) {
    .stat-value {
        font-size: 1.6rem !important;
    }

    .why_us .col-lg-4 {
        text-align: center;
    }

    .img-fluid {
        min-width: 100%;
    }

    .why_us_list h5 {
        font-size: 32px;
    }

    .why_us_list p {
        font-size: 24px;
    }

    .why_us_list .item img {
        width: auto
    }

    .smart_finances .why_us_list .item img {
        width: 100%
    }

    .how_magic {
        position: relative;
        top: 0px;
        left: 0px;
        width: 100%;
        background-color: #fff;
        padding: 20px;
        box-shadow: none;
    }

    .how_magical .container .col-lg-6 {
        margin-bottom: 40px;
    }

    .cta-btn {
        margin: 0 auto
    }

    .efforless_integration .col-lg-8 img {
        position: relative;
        bottom: 0px;
        left: 0px;
    }

    .efforless_integration p {
        font-size: 24px;
    }

    .faq_section .col-lg-6 {
        margin-bottom: 20px;
    }

    .slider-controls {
        justify-content: space-between;
    }

    .pricing_plans .section-title {
        font-size: 1rem !important;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .stat-value {
        font-size: 2.4rem !important;
    }
}

/* Mobile responsive */
@media (max-width: 1200px) {
    h2 {
        font-size: 32px !important;
    }
}

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1232px;
    }
}