@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* Global Color Variables */
:root {
    --primary-green: #2ecc71;
    --secondary-green: #27ae60;
    --light-green: #f0fdf6;
    --primary-dark-blue: #273563;
    --secondary-dark-blue: #2c3e50;
    --light-blue: #1e2e5c;
    --accent-blue: #2c3e50;

    --white: #FFFFFF;
    --light-gray: #F9FAFB;
    --medium-gray: #E2E6EB;
    --dark-gray: #878C91;
    --text-gray: #D9D9D9;
    --background-gray: #f3f4f6;
}

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 li:nth-child(1) a:before {
    background-image: url('../images/icons/about_us_icon.svg');
}

.nav-links li.has-bg a {
    background: #f3f4f6;
    color: #374151;
}

.nav-links a:hover {
    color: #333;
}


.nav-links li {
    position: relative;
}

.nav-links li.has-sub-menu > a::after {
    content: "▾";
    margin-left: 8px;
    display: inline-block;
    font-size: 0.7rem;
    vertical-align: middle;
    color: #9ca3af;
}

.nav-links li .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    padding: 12px 0;
    z-index: 50;
    list-style: none;
    margin: 0;
}

.nav-links li:hover > .sub-menu,
.nav-links li:focus-within > .sub-menu {
    display: block;
}

.nav-links li .sub-menu li {
    margin: 0;
}

.nav-links li .sub-menu li a {
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
    color: #475569;
    display: block;
    border-radius: 12px;
    background: transparent;
    text-transform: capitalize;
}

.nav-links li .sub-menu li a:hover {
    background: #f8fafc;
    color: #111827;
}

.nav-links li .sub-menu li a:before {
    display: none;
}

@media (max-width: 991px) {
    .nav-links li .sub-menu {
        position: relative;
        box-shadow: none;
        background: transparent;
        top: auto;
        left: auto;
        min-width: auto;
        padding: 0;
    }

    .nav-links li:hover > .sub-menu,
    .nav-links li:focus-within > .sub-menu {
        display: none;
    }
}


.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 {
    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-white {
    color: #fff !important;
}

.color-green {
    color: #00D19D !important;
}

.color-grey-one {
    color: #878C91 !important;
}

.color-grey-two {
    color: #D9D9D9 !important;
}

.color-dblue {
    color: #273563 !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: #2ecc71;
    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: #27ae60;
}

.cta-btn.bg-white {
    background-color: #fff;
    color: #27ae60;
    border: 1px solid #27ae60;
}

.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: #273563;
    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: #27ae60;
    margin: 0 auto;
    margin-top: 20px;
}

.stat-value {
    font-size: 3.1rem;
    font-weight: 700;
    color: #273563;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 18px;
    line-height: 1.2;
    text-align: left;
}

.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: #d5f5e3;
    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: rgba(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: rgba(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: #27ae60;
    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: #f0fdf6;
    color: #000;
    border-bottom: 1px solid #00d084;
}

.accordion-item:has(.collapse.show) {
    background-color: #f0fdf6;
}

.accordion-body {
    background-color: #f0fdf6;
    color: #333;
}

.accordion-button::after {
    content: '+';
    font-size: 1.5rem;
    color: #00d084;
    background-image: none !important;
}

.accordion-button:not(.collapsed)::after {
    content: '−';
}

.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, #2ecc71, #27ae60);
    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(46, 204, 113, 0.3);
    text-transform: capitalize;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
    color: white;
}

.cta-button:active {
    transform: translateY(0);
}

.banner .container .row {
    background-repeat: no-repeat;
    text-align: left;
}

.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 #3498db;
}

.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: #2ecc71 !important;
    color: white !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4) !important;
}

.day-cell.selected:hover {
    background: #27ae60;
    transform: scale(1.05);
}

.day-cell.today {
    background: rgba(52, 152, 219, 0.3);
    border: 2px solid #3498db;
}

.day-cell.today:hover {
    background: rgba(52, 152, 219, 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: #28a745;
    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: #28a745;
    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);
}

.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: #1CC978;
}

.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: #00D19D;
    font-size: 36px;
}

.pricing_banner_heading {
    font-size: 44px;
    font-weight: 900;
}

.testimonial-container {
    background: url("../../assets/images/blur.png");
    margin: 100px auto;
    position: relative;
    overflow: hidden;
}

.quote-icon {
    width: 50px;
    height: 50px;
    background-color: #1e2e5c;
    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: #1e2e5c;
    color: white;
}

.pagination {
    font-size: 14px;
    color: #333;
}

.green-box {
    background-color: #00C47A;
    border-radius: 20px;
    padding: 30px;
    color: white;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-section {
    background-color: #1A2450;
    color: white;
    padding: 60px 30px;
    border-radius: 20px;
    margin-top: -20px;
    z-index: 2;
}

.green-highlight {
    color: #00C47A;
}

.btn-green {
    background-color: #00C47A;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
}

.btn-green:hover {
    background-color: #00b06d;
}

.tick-icon {
    width: 20px;
    margin-right: 8px;
}

.img-fluid.rounded-start {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 0;
}

.save-badge {
    background: #00c851;
    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, #010205 5.52%, #273563 50.51%, #041E72 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, #010205 78.45%, #273563 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, #1CC978 50.35%, #18AC77 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: #6c63ff;
    position: relative;
}

.pricing_plans .pricing-card.popular::before {
    content: "Most Popular";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #6c63ff;
    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: #00c851;
    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: #6c63ff;
    margin-right: 10px;
}

.pricing_plans .tax-section {
    background: linear-gradient(114.42deg, #1CC978 5.52%, #041E72 82.71%, #273563 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: #00c851;
}

.pricing_plans .tax-section .btn-choose:hover {
    background: #00a13f;
}

.pricing_plans .tax-section .btn-talk {
    color: #00c851;
    border-color: #00c851;
}

.pricing_plans .tax-section .btn-talk:hover {
    background: #00c851;
    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%, #16A077 0deg, #FFFFFF 72.69deg, rgba(91, 222, 205, 0.94) 114.23deg, #FFFFFF 204.23deg, #0FCBB7 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: #1CC978;
    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: #007bff;
}

.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; }
}

@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;
    }
}
