/* Style for the VAT/Tax/Accounting/ESR/More Services buttons */
.service-btn {
    background: #1968B1;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 12px 24px;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(25, 104, 177, 0.07);
    margin-bottom: 8px;
}

/* Enforce the site's primary font across all viewports */
html,
body,
p,
a,
span,
li,
h1,
h2,
h3,
h4,
h5,
h6,
input,
button,
textarea,
select,
option,
label,
th,
td {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
}

@media (max-width: 767px) {

    /* Ensure mobile-specific components inherit the same font */
    html,
    body,
    main,
    header,
    footer,
    section,
    .container,
    .navbar,
    .br-footer {
        font-family: "Poppins", Arial, Helvetica, sans-serif;
    }
}

.service-btn:hover {
    background: #145a94;
    color: #fff;
}

/* Padding for duplicated service section headings */
h2.our-services-duplicate {
    padding-top: 60px;
}

.service-main-content h2,
.service-main-content h3 {
    scroll-margin-top: 100px;
    /* Accounts for fixed header height */
    margin-bottom: 20px;
    color: #04223B;
}

/* Service Button Row for Services Section */
.service-btn-row {
    margin-bottom: 24px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-btn-row {
    margin-bottom: 24px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    background: linear-gradient(90deg, #fafdff 0%, #e3f0ff 100%);
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(25, 104, 177, 0.06);
    padding: 50px 0;
    position: sticky;
    top: 90px;
    z-index: 1001;
    transition: box-shadow 0.2s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Use the site's primary font family globally so desktop and mobile match */
body {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Headings: prefer Poppins for a modern, uniform look across site */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', 'Roboto', sans-serif;
    line-height: 1.25;
    margin-bottom: 0.8rem;
    color: #04223B;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Blog-specific styles */
.blog-hero h1 {
    font-size: 32px;
    margin-bottom: 8px;
}

.blog-hero p {
    color: #51627a;
    margin: 0;
}

.posts-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    align-items: start;
}

.main-col {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.post-card {
    border: 1px solid #ebeef2;
    padding: 18px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(14, 30, 37, 0.04);
}

.post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.post-card h3 {
    margin: 10px 0 6px;
    font-size: 20px;
}

.post-card p {
    color: #555;
    line-height: 1.55;
}

.post-meta {
    color: #758199;
    font-size: 13px;
    margin-bottom: 8px
}

.btn {
    display: inline-block;
    padding: 9px 14px;
    border-radius: 8px;
    text-decoration: none;
}

.uc-btn {
    background: #1968B1;
    color: #fff;
    border: 1px solid #1968B1;
}

.uc-btn:hover {
    background: #145a94;
    border-color: #145a94
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.sidebar .widget {
    background: #fff;
    border: 1px solid #eceff4;
    padding: 14px;
    border-radius: 8px
}

.sidebar h4 {
    margin: 0 0 8px 0
}

@media (max-width: 1000px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        order: 2
    }
}

/* Improve spacing for page sections */
main section {
    padding: 18px 0;
}


.top-banner {
    background-color: #04223B;
    color: #ffffff;
    text-align: center;
    font-size: 14px;
}

.top-banner p {
    margin-bottom: 0;
}

.top-banner a {
    color: #ffffff;
    text-decoration: underline;
}

header {
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

section {
    background-color: #ffffff !important;
}

@media (max-width: 768px) {
    .banner-whtsbutton {
        display: none !important;
    }
}

.logo {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1968B1;
}

/* Site logo image sizing and alignment */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo {
    height: 78px;
    /* desired logo height */
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .site-logo {
        height: 38px;
    }
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover {
    color: #1968B1;
}

nav a.active {
    color: #1968B1;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1968B1;
}

.has-megamenu {
    position: relative;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.has-megamenu:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.megamenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 95vw;
    max-width: 1200px;
    background-color: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000 !important;
}

.has-megamenu:hover .megamenu {
    opacity: 1;
    visibility: visible;
}

.megamenu-container {
    display: flex;
    min-height: 400px;
    z-index: 1000;
}

.megamenu-sidebar {
    width: 250px;
    background-color: #e3f0ff;
    border-radius: 8px 0 0 8px;
    padding: 20px 0;
}

.megamenu-tab {
    padding: 18px 25px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.megamenu-tab:hover {
    background-color: #d0e7ff;
    color: #1968B1;
}

.megamenu-tab.active {
    background-color: #b8deff;
    color: #04223B;
    border-left-color: #1968B1;
    font-weight: 600;
}

.megamenu-content {
    flex: 1;
    padding: 30px;
    position: relative;
}

.megamenu-panel {
    display: none;
}

.megamenu-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.megamenu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Banner image used in the tax-work image card */
.banner-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .tax-work-content {
        grid-template-columns: 1fr;
    }

    .image-card {
        max-width: 100%;
        padding: 20px;
    }
}

/* Site footer styles */
.site-footer {
    background: #1968B1;
    /* primary color */
    color: #ffffff;
    padding: 48px 0 0 0;
    font-family: 'Roboto', sans-serif;
}

.site-footer .footer-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 20px 32px 20px;
}

.site-footer .footer-col h4 {
    color: #fff;
    margin-bottom: 12px;
    text-align: left;
}

.site-footer p,
.site-footer li {
    color: rgba(255, 255, 255, 0.95);
    text-align: left;
}

.site-footer .footer-logo img {
    height: 56px;
    display: block;
    margin-bottom: 12px;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
}

.site-footer a:hover {
    color: #eaf3ff;
    text-decoration: underline;
}

.site-footer .contact-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-footer .icon {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.site-footer .socials {
    margin-top: 12px;
    display: flex;
    gap: 8px;
}

.site-footer .social {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: all 0.18s ease;
}

.site-footer .social:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
}

.site-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0;
    margin-top: 18px;
}

.site-footer .footer-bottom p {
    text-align: center;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 900px) {
    .site-footer .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .site-footer .footer-inner {
        grid-template-columns: 1fr;
        padding: 0 16px 24px 16px;
    }

    .site-footer {
        padding-bottom: 24px;
    }
}

/* Countdown Timer Styles */
.countdown-section {
    background: #ffffff;
    /* white background as requested */
    padding: 36px 0 18px 0;
    border-bottom: 4px solid rgba(25, 104, 177, 0.12);
    /* subtle primary border */
}

.countdown-heading {
    font-family: 'Roboto', sans-serif;
    color: #04223B;
    /* dark blue heading for contrast */
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 18px;
}

.countdown-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.countdown-grid {
    display: flex;
    align-items: center;
    gap: 18px;
}

.countdown-item {
    display: flex;
    align-items: center;
}

.countdown-box {
    width: 110px;
    height: 110px;
    background: linear-gradient(180deg, #1968B1 0%, #145a94 100%);
    /* primary blue */
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(4, 34, 59, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.countdown-number {
    font-family: 'Roboto', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    /* white number for contrast */
}

.countdown-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000000;
    color: #ffffff;
    text-align: center;
    padding: 8px 6px;
    font-size: 13px;
    font-weight: 600;
}

.colon {
    font-size: 34px;
    font-weight: 800;
    color: #04223B;
    /* dark blue colon for visibility */
}

.countdown-message {
    margin-top: 12px;
    font-family: 'Roboto', sans-serif;
    color: #04223B;
    font-weight: 600;
    min-height: 22px;
}

/* Responsive: shrink boxes and stack */
@media (max-width: 900px) {
    .countdown-box {
        width: 92px;
        height: 92px;
    }

    .countdown-number {
        font-size: 28px;
    }

    .colon {
        font-size: 28px;
    }
}

@media (max-width: 520px) {
    .countdown-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .colon {
        display: none;
    }

    .countdown-box {
        width: 84px;
        height: 84px;
    }

    .countdown-number {
        font-size: 22px;
    }
}

/* Fade-in animation (already uses .fade-in class, add subtle animation) */
.fade-in.visible {
    animation: fadeInUp 600ms ease both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.megamenu-item {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.megamenu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #1968B1;
}

.megamenu-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.megamenu-item h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    color: #04223B;
    margin-bottom: 8px;
    font-weight: 600;
}

.megamenu-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 0 0 60px 0;
    background: white;
    overflow: visible;
}

.hero::before {
    display: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 60px 60px;
}

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background-color: #1968B1;
    /* primary */
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #04223B;
    line-height: 1.2;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 500;
}

.hero-features li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #04223B;
    /* secondary */
    color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.hero-cta:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper img {
    width: 100%;
    max-width: 550px;
    height: auto;
    display: block;
}

.hero-warning-banner {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    background-color: #04223B;
    /* changed to secondary color */
    color: #ffffff;
    padding: 18px 30px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.hero-warning-banner::before {
    content: '⚠';
    margin-right: 10px;
    font-size: 20px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background-color: #1968B1;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #145a94;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(25, 104, 177, 0.3);
}

.btn-secondary {
    background-color: #04223B;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #031829;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(4, 34, 59, 0.3);
}

.tax-work-section {
    background: linear-gradient(135deg, #e3f0ff 0%, #f8f9fa 100%);
    padding: 120px 20px 80px 20px;
}

.tax-work-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tax-work-image {
    display: flex;
    justify-content: center;
}

.image-card {
    background-color: #ffffff;
    border: 3px solid #04223B;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    width: 100%;
}

.image-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    min-height: 200px;
}

.card-tagline {
    text-align: center;
}

.card-tagline h3 {
    font-size: 20px;
    color: #04223B;
    margin-bottom: 15px;
    font-weight: 600;
}

.card-tagline p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.tax-work-text {
    padding: 20px 0;
}

.tax-work-text h2 {
    font-size: 42px;
    color: #04223B;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
}

.tax-work-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn-cta {
    background-color: #1968B1;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #1968B1;
}

.btn-cta:hover {
    background-color: #04223B;
    border-color: #04223B;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(25, 104, 177, 0.4);
}

/* CTA white variant: make heading and paragraph white */
.cta-section.cta-white h2,
.cta-section.cta-white p {
    color: #ffffff;
}

.mid-section {
    background-color: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
}

.mid-section p {
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: #555;
}

.services-summary {
    padding: 80px 20px;
}

.services-summary h2 {
    text-align: center;
    font-size: 36px;
    color: #04223B;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #1968B1;
}

.service-card h3 {
    font-size: 24px;
    color: #1968B1;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    min-height: 80px;
}

.about-snippet {
    background-color: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
}

.about-snippet p {
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: #555;
}

footer {
    background-color: #04223B;
    color: #ffffff;
    text-align: center;
    padding: 30px 20px;
    margin-top: 0px;
}

.page-header {
    position: relative;
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    background-image: url('https://img.freepik.com/free-photo/cooperation-analyst-chart-professional-paper-economics_1418-47.jpg');
    background-size: cover;
    background-position: center center;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(25, 103, 177, 0.486);
    z-index: 1;
}

.page-header h1 {
    position: relative;
    z-index: 2;
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
}

.about-content {
    padding: 80px 20px;
}

.about-section {
    margin-bottom: 50px;
}

.about-section h2 {
    font-size: 32px;
    color: #04223B;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.benefits-list {
    list-style: none;
    margin-top: 20px;
}

.benefits-list li {
    font-size: 18px;
    color: #555;
    padding: 10px 0 10px 30px;
    position: relative;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1968B1;
    font-weight: bold;
    font-size: 20px;
}

.cta-section {
    background-color: #f8f9fa;
    padding: 50px;
    text-align: center;
    border-radius: 8px;
}

.cta-section h2 {
    font-size: 32px;
    color: #04223B;
    margin-bottom: 0px;
}

.cta-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
}

.services-detailed {
    padding: 80px 20px;
}

.service-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 32px;
    color: #04223B;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #1968B1;
    display: inline-block;
}

.service-detail {
    background-color: #ffffff;
    border-left: 4px solid #1968B1;
    padding: 40px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-detail:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-detail h2 {
    font-size: 28px;
    color: #04223B;
    margin-bottom: 20px;
}

.service-detail h3 {
    font-size: 22px;
    color: #04223B;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-detail p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.services-cta {
    background-color: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
}

.services-cta h2 {
    font-size: 32px;
    color: #04223B;
    margin-bottom: 15px;
}

.services-cta p {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
}

.contact-section {
    padding: 80px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 32px;
    color: #04223B;
    margin-bottom: 20px;
}

.contact-info>p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 20px;
    color: #1968B1;
    margin-bottom: 10px;
}

.info-block p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.info-block a {
    color: #1968B1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-block a:hover {
    color: #04223B;
    text-decoration: underline;
}

.contact-form-container h2 {
    font-size: 32px;
    color: #04223B;
    margin-bottom: 30px;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: Helvetica, Arial, sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1968B1;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
}

.thankyou-section {
    padding: 100px 20px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou-content {
    text-align: center;
    max-width: 700px;
}

.thankyou-content h1 {
    font-size: 48px;
    color: #1968B1;
    margin-bottom: 20px;
}

.thankyou-message {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.thankyou-submessage {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.thankyou-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.thankyou-contact {
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.thankyou-contact p {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.thankyou-contact a {
    color: #1968B1;
    font-weight: 500;
    text-decoration: none;
    font-size: 18px;
}

.thankyou-contact a:hover {
    text-decoration: underline;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
}

.trusted-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

.trusted-section h2 {
    text-align: center;
    font-size: 36px;
    color: #04223B;
    margin-bottom: 15px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #1968B1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: #555;
    font-weight: 500;
}

.about-home {
    padding: 80px 20px;
    background-color: #ffffff;
}

.about-home h2 {
    text-align: left;
    font-size: 36px;
    color: #04223B;
    margin-bottom: 40px;
}

.about-home-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-home-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-home-text .btn {
    margin-top: 10px;
}

.about-home-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #1968B1;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-item h4 {
    font-size: 20px;
    color: #04223B;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.services-cta-link {
    text-align: center;
    margin-top: 50px;
}

.tax-help-banner {
    background: linear-gradient(135deg, #1968B1 0%, #04223B 100%);
    /* primary -> secondary */
    padding: 0;
    margin: 80px 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.tax-help-banner .container {
    max-width: 1200px;
    padding: 0;
}

.tax-help-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    align-items: flex-end;
    gap: 40px;
    position: relative;
}

.tax-help-text {
    padding: 60px 60px 60px 60px;
}

.tax-help-text h2 {
    font-size: 42px;
    color: #ffffff;
    /* white for contrast on dark banner */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.tax-help-text p {
    font-size: 18px;
    color: #ffffff;
    /* white paragraph color */
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn-whatsapp-green {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    /* WhatsApp green */
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-green:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp-green span {
    font-size: 20px;
}

.tax-help-image {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    height: 100%;
}

.tax-help-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    object-fit: contain;
}

.why-choose {
    background-color: #E4F0FF;
    padding: 80px 20px;
}

.why-choose h2 {
    text-align: center;
    font-size: 36px;
    color: #04223B;
    margin-bottom: 15px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 35px;
}

.why-item {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.why-number {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #1968B1;
    opacity: 0.3;
    margin-bottom: 15px;
}

.why-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px auto;
}

.why-item h3 {
    text-align: center;
}

.why-item p {
    text-align: center;
}

.why-item h3 {
    font-size: 24px;
    color: #04223B;
    margin-bottom: 15px;
}

.why-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.process-section {
    padding: 80px 20px;
}

.process-section h2 {
    text-align: center;
    font-size: 36px;
    color: #04223B;
    margin-bottom: 15px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 50px;
    align-items: center;
}

.process-step {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    text-align: center;
    grid-column: span 1;
    transition: all 0.3s ease;
}

.process-step:nth-child(odd) {
    grid-column: span 2;
}

.process-step:hover {
    border-color: #1968B1;
    transform: scale(1.05);
}

.step-number {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    background-color: #1968B1;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 20px;
    color: #04223B;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.process-arrow {
    display: none;
}

.testimonials {
    background-color: #E4F0FF;
    padding: 80px 20px;
    overflow: hidden;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    color: #04223B;
    margin-bottom: 15px;
}

.testimonials-carousel {
    margin-top: 50px;
    overflow: hidden;
    position: relative;
    padding: 0 60px;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid #1968B1;
    color: #1968B1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-arrow:hover {
    background-color: #1968B1;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(25, 104, 177, 0.3);
    transform: translateY(-50%) scale(1.05);
}

.carousel-arrow-left {
    left: 0;
}

.carousel-arrow-right {
    right: 0;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    animation: scroll 40s linear infinite;
    width: fit-content;
    transition: transform 0.5s ease;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    flex: 0 0 calc(50% - 15px);
    min-width: 450px;
}

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

.testimonial-text {
    margin-bottom: 25px;
}

.testimonial-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    padding-top: 20px;
    border-top: 2px solid #f8f9fa;
}

.author-name {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #04223B;
    margin-bottom: 5px;
}

.author-position {
    font-size: 14px;
    color: #1968B1;
}

.industries-section {
    padding: 80px 20px;
}

.industries-section h2 {
    text-align: center;
    font-size: 36px;
    color: #04223B;
    margin-bottom: 15px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.industry-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.industry-item:hover {
    background-color: #ffffff;
    border-color: #1968B1;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.industry-item h4 {
    font-size: 20px;
    color: #1968B1;
    margin-bottom: 10px;
}

.industry-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.cta-section {
    background: linear-gradient(135deg, #1968B1 0%, #04223B 100%);
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 0px;
}

.cta-content h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto 35px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.cta-subtext {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 20px;
    font-style: italic;
}

.value-proposition {
    padding: 80px 20px;
    background-color: #ffffff;
}

.value-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.value-left {
    position: sticky;
    top: 120px;
}

.value-left h2 {
    font-size: 42px;
    color: #04223B;
    margin-bottom: 25px;
    line-height: 1.2;
}

.value-left p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 50px;
}

.btn-whatsapp:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.value-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.value-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    transition: height 0.3s ease;
}

.value-card-yellow::before {
    background: linear-gradient(to right, #1968B1, #04223B);
}

.value-card-blue::before {
    background: linear-gradient(to right, #4FC3F7, #1968B1);
}

.value-card-cyan::before {
    background: linear-gradient(to right, #00BCD4, #0097A7);
}

.value-card-yellow-alt::before {
    background: linear-gradient(to right, rgba(25, 104, 177, 0.9), rgba(25, 104, 177, 0.6));
}

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

.value-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.value-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 20px;
    color: #04223B;
    margin-bottom: 12px;
    font-weight: 600;
}

.value-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px 80px 20px;
    }

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

    .hero-features li {
        justify-content: flex-start;
        text-align: left;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-image-wrapper {
        order: -1;
    }

    .hero-warning-banner {
        bottom: -60px;
        font-size: 14px;
        padding: 14px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .logo {
        font-size: 18px;
        text-align: center;
    }

    .tax-work-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-home-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-step {
        grid-column: span 1 !important;
    }

    .process-arrow {
        display: none;
    }

    .testimonials-carousel {
        padding: 0 50px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }

    .testimonial-card {
        flex: 0 0 90%;
        min-width: 300px;
    }

    .testimonials-track {
        animation: scroll 30s linear infinite;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }

    .value-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .value-left {
        position: static;
    }

    .value-right {
        grid-template-columns: 1fr;
    }

    .tax-help-banner {
        margin: 60px 20px;
        border-radius: 16px;
    }

    .tax-help-content {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .tax-help-text {
        padding: 40px 30px 30px 30px;
    }

    .tax-help-text h2 {
        font-size: 28px;
    }

    .tax-help-text p {
        font-size: 16px;
    }

    .tax-help-image {
        justify-content: center;
    }

    .tax-help-image img {
        max-width: 300px;
    }

    .megamenu {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        height: 100vh;
        margin: 0;
        border-radius: 0;
        overflow-y: auto;
    }

    .megamenu-container {
        flex-direction: column;
        min-height: auto;
    }

    .megamenu-sidebar {
        width: 100%;
        border-radius: 0;
    }

    .megamenu-content {
        padding: 20px;
    }

    .megamenu-grid {
        grid-template-columns: 1fr;
    }

    .has-megamenu .megamenu {
        display: none;
    }

    .has-megamenu .megamenu.mobile-open {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 480px) {
    .top-banner {
        font-size: 12px;
        padding: 8px 5px;
    }

    .hero {
        padding: 50px 20px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .services-summary h2,
    .about-section h2,
    .cta-section h2,
    .trusted-section h2,
    .about-home h2,
    .why-choose h2,
    .process-section h2,
    .testimonials h2,
    .industries-section h2 {
        font-size: 26px;
    }

    .service-card {
        padding: 20px;
    }

    .service-detail {
        padding: 25px;
    }

    .contact-form {
        padding: 25px;
    }

    .thankyou-content h1 {
        font-size: 36px;
    }

    .thankyou-message {
        font-size: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .why-number {
        font-size: 36px;
    }

    .feature-item,
    .why-item,
    .testimonial-card {
        padding: 25px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .process-step {
        padding: 20px;
    }

    .tax-work-text h2 {
        font-size: 28px;
    }

    .image-card {
        padding: 30px;
    }

    .value-left h2 {
        font-size: 28px;
    }

    .value-left p {
        font-size: 16px;
    }

    .btn-whatsapp {
        font-size: 16px;
        padding: 14px 28px;
    }

    .value-card {
        padding: 25px;
    }

    .value-icon {
        font-size: 36px;
    }
}

.pricing-hero {
    background: linear-gradient(135deg, #1968B1 0%, #04223B 100%);
    padding: 100px 20px 80px;
    text-align: center;
}

.pricing-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.pricing-hero .hero-subtext {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.pricing-table-section {
    padding: 20px 20px;
    background-color: #f8f9fa;
}

.pricing-table-section h2 {
    text-align: center;
    font-size: 36px;
    color: #04223B;
}

.pricing-table-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.plan-selector {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.plan-selector label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: #04223B;
}

.plan-selector i {
    color: #1968B1;
    font-size: 20px;
}

.plan-dropdown {
    padding: 12px 20px;
    font-size: 16px;
    border: 2px solid #1968B1;
    border-radius: 8px;
    background-color: #ffffff;
    color: #04223B;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.plan-dropdown:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(25, 104, 177, 0.2);
}

.pricing-table {
    overflow-x: auto;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    min-width: 900px;
}

.pricing-table thead {
    background-color: #04223B;
}

.pricing-table th {
    padding: 20px 15px;
    text-align: center;
    font-weight: 600;
}

.pricing-table th.feature-column {
    text-align: left;
    width: 250px;
    background-color: #04223B;
}

.pricing-table th.price-column {
    background-color: #5a6c7d;
}

.price-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.price-header .price {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.price-header .period {
    font-size: 14px;
    color: #e0e0e0;
    font-weight: 400;
}

.pricing-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.pricing-table tbody tr:hover {
    background-color: #f8f9fa;
}

.pricing-table tbody tr.highlight-row {
    background-color: #fef9e7;
}

.pricing-table tbody tr.highlight-row:hover {
    background-color: #fdf5d4;
}

.pricing-table td {
    padding: 20px 15px;
    text-align: center;
    color: #333;
    font-size: 15px;
}

.pricing-table td.feature-name {
    text-align: left;
    font-weight: 600;
    color: #04223B;
    background-color: #ffffff;
}

.pricing-table tr.highlight-row td.feature-name {
    background-color: #fef9e7;
}

.pricing-table .fas.fa-check {
    color: #1968B1;
    font-size: 18px;
}

.pricing-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #1968B1 0%, #04223B 100%);
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(25, 104, 177, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 104, 177, 0.4);
}

.btn-whatsapp i {
    font-size: 22px;
}

.pricing-faq {
    padding: 80px 20px;
    background-color: #ffffff;
}

.pricing-faq h2 {
    text-align: center;
    font-size: 36px;
    color: #04223B;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #1968B1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 18px;
    color: #04223B;
    margin-bottom: 15px;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .pricing-hero h1 {
        font-size: 32px;
    }

    .pricing-hero .hero-subtext {
        font-size: 16px;
    }

    .pricing-table-section h2 {
        font-size: 28px;
    }

    .pricing-table {
        border-radius: 0;
    }

    .pricing-table table {
        font-size: 14px;
    }

    .price-header .price {
        font-size: 16px;
    }

    .price-header .period {
        font-size: 12px;
    }

    .pricing-table td,
    .pricing-table th {
        padding: 15px 10px;
    }

    .btn-whatsapp {
        font-size: 16px;
        padding: 14px 30px;
    }

    .pricing-faq h2 {
        font-size: 28px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.service-hero {
    background-color: #ffffd1;
    /* Light yellow background from reference */
    padding: 60px 20px;
    text-align: center;
    /* Centered per user request */
}

.service-hero h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 800;
}

.text-blue {
    color: #1968B1;
}

.hero-subheading {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-trust-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    /* Centered per user request */
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.trust-item i {
    color: #28a745;
    /* Green checkmark */
    font-size: 22px;
}

.service-content-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.service-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    align-items: start;
    width: 100%;
}

.service-content-section .container {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.service-main-content {
    max-width: 100%;
    /* Increased width */
}

.service-intro-box {
    background: linear-gradient(135deg, #e3f0ff 0%, #f0f7ff 100%);
    padding: 40px 30px;
    /* Added internal horizontal padding */
    margin-bottom: 40px;
    border-radius: 0 0 36px 36px;
    /* Theme radius */
    border: none;
    border-bottom: 10px solid #1968B1;
    /* Theme color and thickness */
}

.service-intro-box h2 {
    font-size: 28px;
    color: #04223B;
    margin-bottom: 20px;
}

.service-intro-box p {
    font-size: 17px;
    color: #333;
    line-height: 1.8;
    margin: 0;
}

.service-content-box {
    background-color: #ffffff;
    padding: 40px 30px;
    /* Added internal horizontal padding */
    margin-bottom: 40px;
    border-radius: 0 0 36px 36px;
    /* Theme radius */
    border: none;
    border-bottom: 10px solid #1968B1;
    /* Theme color and thickness */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.service-layout h2 {
    font-size: 32px;
    color: #04223B;
    margin: 40px 0 20px 0;
    font-weight: 800;
}

.service-content-box h2 {
    display: none;
    /* Headings moved out of boxes in HTML */
}

.service-content-box h3 {
    font-size: 20px;
    color: #000;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.service-content-box p {
    font-size: 17px;
    color: #1a1a1a;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-content-box ul,
.service-intro-box ul {
    margin: 20px 0;
    padding-left: 25px;
    list-style: disc;
}

.service-content-box ol,
.service-intro-box ol {
    margin: 20px 0;
    padding-left: 25px;
    list-style: decimal;
}

.service-content-box li {
    font-size: 17px;
    color: #1a1a1a;
    line-height: 1.6;
    margin-bottom: 15px;
    position: relative;
}

.service-content-box strong {
    color: #000;
    font-weight: 700;
}

.service-cta-box {
    background: linear-gradient(135deg, #1968B1 0%, #04223B 100%);
    color: #ffffff;
    padding: 40px 30px;
    border-radius: 0 0 36px 36px;
    text-align: left;
    margin-top: 40px;
}

.service-cta-box h2 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 20px;
}

.service-cta-box p {
    font-size: 17px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-cta-box ul {
    text-align: left;
    max-width: 100%;
    margin: 20px 0;
    padding-left: 25px;
    list-style: disc;
}

.service-cta-box li {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 10px;
}

.service-cta-box .btn {
    margin: 10px 10px 10px 0;
}

.service-sidebar {
    position: sticky;
    top: 100px;
}

.table-of-contents {
    background-color: transparent;
    padding: 0;
    border: none;
}

/* Sidebar widget spacing and improved input/list styles */
.table-of-contents,
.sidebar .widget {
    margin-bottom: 18px;
}

.table-of-contents input[type="search"],
.sidebar input[type="search"] {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #dfe7ef;
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(16, 24, 40, 0.02);
}

.table-of-contents ul,
.sidebar ul {
    margin: 12px 0 0 0;
    padding-left: 14px;
}

.table-of-contents li,
.sidebar li {
    margin-bottom: 10px;
}

.table-of-contents a,
.sidebar a {
    display: block;
    padding: 8px 6px;
    border-radius: 6px;
    color: #1968B1;
}

.table-of-contents a:hover,
.sidebar a:hover {
    background: #eaf6ff;
    color: #04223B
}

.table-of-contents h3 {
    display: none;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-of-contents li {
    margin-bottom: 12px;
}

.table-of-contents a {
    display: block;
    padding: 16px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    background-color: #e9ecef;
    /* Light grey background */
    border: 1px solid #dee2e6;
    /* Subtle border */
    border-radius: 12px;
    margin-bottom: 15px;
}

.table-of-contents a:hover,
.table-of-contents a.active {
    background-color: #e3f0ff;
    /* Light blue on hover/active */
    color: #04223B;
    border-color: #1968B1;
    transform: none;
}

.megamenu-item {
    text-decoration: none;
    color: inherit;
    display: block;
}

@media (max-width: 1024px) {
    .service-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-sidebar {
        position: static;
        max-width: 100%;
    }

    .table-of-contents {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 32px;
    }

    .service-intro-box {
        padding: 20px;
    }

    .service-intro-box h2 {
        font-size: 24px;
    }

    .service-content-box {
        padding: 20px;
    }

    .service-content-box h2 {
        font-size: 22px;
    }

    .service-cta-box {
        padding: 25px;
    }

    .service-cta-box h2 {
        font-size: 24px;
    }
}

/* Force a plain white page background to remove any full-page tint/gradient */
html,
body,
main>section {
    background: #ffffff !important;
    background-image: none !important;
}

/* Pasted CSS Start */



* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif !important;
}

.de h2 {
    padding: 0px 0px !important;
}

@media only screen and (max-width: 1400px) and (-webkit-min-device-pixel-ratio: 2) {
    body .hde {
        top: 12% !important;
    }
}

.oer {
    object-fit: contain !important;
}

@media(min-width:320px) and (max-width:480px) {
    body {
        background: url(https://thevatconsultant.com/assets/frontend/images/home4.jpg) !important;
        background-size: cover !important;
    }

    body .se {
        padding: 0px 26px !important;
    }

    .de a {
        font-size: 13px !important;
    }

    .br-footer div {
        text-align: left !important;
    }

    .br-footer .br-list.horizontal {
        padding: 0px 23px !important;
    }

    .br-footer.content {
        padding-left: 0px !important;
    }
}

.lke img {
    width: 29px !important;
    position: relative;
    top: -3px;
}

body .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-header .ti-profile-img img {
    width: 120px !important;
    height: 120px !important;
}

body {
    font-family: "Poppins", sans-serif !important;
    background: url(https://thevatconsultant.com/assets/frontend/images/home4.jpg);
    background-size: cover;
}

header {
    background-color: #1968B1;
}

.wweqq .navbar-nav {
    padding-left: 0px !important;
}

.weimg {
    margin: 0 auto;
}

h5 {
    font-size: 23px;
    font-weight: 700;
    padding: 4px 0px;
    margin-bottom: 0px;
}

.navbar-brand img {
    width: 100%;
}

.navbar-brand {
    width: 15%;
}

.nav-item a {
    font-size: 19px;
    color: #000;
}

.navbar-nav li {
    padding: 0px 20px;
}

.navbar-nav {
    padding-left: 17px;
}

.banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.navbar-light {
    background-color: #fff;
}

.banner .boxs p {
    border: 2px solid #1968B1;
    border-radius: 28px;
    width: max-content;
    padding: 1px 16px;
    background: #1968B1;
    font-weight: 800;
    margin-bottom: 15px;
}

.banner .boxs h2 {
    font-size: 63px;
}

.banner .boxs h2 {
    font-weight: 700;
}

.banner .boxs {
    padding-top: 25px;
}

.lrw ul li {
    list-style: none;
    float: left;
}

.navbar {
    position: sticky;
    top: 0px;
    z-index: 999999;
}

ol,
ul {
    padding-left: 0px;
}

.lrw .contend {
    margin-bottom: 20px;
}

.lrw li {
    width: 5%;
}

.lrw .icon img {
    width: 20px;
    position: relative;
    top: -2px;
}

.lrw .contend {
    width: 95%;
}

.ride img {
    width: 78.7%;
}

@media (min-width: 320px) and (max-width: 480px) {
    .kkkkcard {
        height: auto;
        width: 96% !important;
    }

    .banner__strong img {
        display: none;
    }

    .dasjhdsa {
        top: 28% !important;
    }

    #cta-heading {
        padding: 0px 0px !important;
    }

    .topppa .lke img {
        display: none;
    }

    .topppa .banner {
        padding-right: 0px;
        padding-left: 0px;
    }
}

@media (min-width:320px) and(max-width:480px) {
    .ctab {
        height: max-content !important;
    }

    .lke img {
        display: block !important;
    }
}

.bitgt {
    background: url(https://thevatconsultant.com/assets/frontend/images//Groupwe.png);
    height: 158px;
    background-size: cover;
    background-position: bottom;
    padding: 30px 0px;
}

.list-ite-oe ul li {
    list-style: none;
    padding: 2px 0px;
}

.list-ite-oe ul li a {
    text-decoration: none;
    font-weight: 900;
    font-size: 20px;
}

.list-ite-oe ul {
    position: absolute;
    top: 32%;
    background-color: #fff;
    border-radius: 20px;
    padding: 10px 24px;
    margin-left: -20px;
    z-index: -1;
}

.list-ite-oe .b1 {
    color: #FA4A0C;
}

.list-ite-oe .b2 {
    color: #548163;
}

.list-ite-oe .b3 {
    color: #1968B1;
}

.list-ite-oe .b4 {
    color: #1968B1;
}

.list-ite-oe .b5 {
    color: #0F8CE9;
}

.list-ite-oe .b6 {
    color: #F96C3B;
}

.banner-whtsbutton {
    background-color: transparent;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 28px;
}

.banner-whtsbutton a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

body .dropdown-menu:before {
    border-color: transparent transparent #ccc transparent;
    display: none;
}

/* Removed empty ruleset */

.banner-whtsbutton span {
    font-size: 14px;
}

.banner-whtsbutton img {
    width: 23px;
    position: relative;
    top: -1px;
}

.header-whts {
    position: absolute;
    right: 1%;
    z-index: 111111;
}

.hfwq {
    background-color: #1968B1;
    padding: 6px;
    margin-top: 0px;
}

.hfwq .rre {
    color: #000000;
    font-size: 18px;
    font-weight: 700;
}

.lke img {
    width: 4%;
}

.service-card {
    text-align: center;
    background: #FFFFFF;
    box-shadow: rgba(0, 0, 0, 0.1)0px 10px 15px -3px, rgba(0, 0, 0, 0.05)0px 4px 6px -2px;
    padding: 18px 10px;
    border-radius: 36px;
    position: relative;
    margin: 0px 0px;
    border-bottom: 10px solid #1968B1;
}

.service-card h5 {
    font-size: 16px;
    padding: 15px 0px;
    font-weight: 700;
}

.service-card p {
    color: #5E6282;
    font-size: 13px;
}

.bge h2 {
    font-size: 30px;
    padding-bottom: 20px;
}

.bge .banner-whtsbutton span {
    font-size: 13px;
    font-weight: 500;
}

.bge .banner-whtsbutton img {
    width: 18px;
}

.bge .service-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.mdwe img {
    width: 438px;
    position: relative;
    left: -56px;
    top: 30px;
}

.col-lg-8 .row {
    position: relative;
    left: -33px;
}

.mobile-casarol {
    position: sticky;
    top: -53px;
}

.why-cs .card {
    border-radius: 30px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-bottom: 8px solid #000 !important;
    border: 2px solid;
}

.why-cs .yellow-card {
    background-color: #fee227;
}

.why-cs .card img {
    width: 94px;
}

.call-to-action .banner-container {
    display: flex;
}

.why-cs .learn-more {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.why-cs h5 {
    font-size: 21px;
    text-align: left;
    padding: 0px 25px;
}

.why-cs p {
    text-align: left !important;
    padding: 20px 23px;
    font-size: 18px;
    line-height: 1.7;
}

.why-cs .je {
    position: relative;
}

.why-cs .je img {
    position: absolute;
    bottom: 0;
    right: 0;
}

#eerw {
    background-color: #FEE227;
    background-repeat: no-repeat;
    background-size: cover;
    height: 336.4px;
    border-radius: 20px;
    width: 100%;
    border-bottom: 13px solid #000;
}

.call-to-action {
    margin-bottom: 20px;
}

.call-to-action h2 {
    font-size: 30px;
    font-weight: 700;
}

#eerw button {
    background-color: #191A23;
    color: #fff;
    font-weight: 600;
    padding: 10px 23px;
}

#eerw .banner-text {
    padding: 42px 32px;
}

.banner-image img {
    width: 77.5%;
}

.cls .hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cls .hero-text h1 {
    font-weight: bold;
    color: #1d1d1d;
}

.cls .hero-text p {
    color: #666;
    max-width: 500px;
}

.cls .btn-whatsapp {
    background-color: #1bd741;
    color: white;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 10px;
    border: none;
}

.cls .info-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: 0.3s;
}

.cls .info-card:hover {
    transform: translateY(-5px);
}

.cls .info-card img {
    width: 40px;
    margin-bottom: 10px;
}

.cls .highlight-yellow {
    border-bottom: 5px solid #ffdf60;
}

.cls .highlight-blue {
    border-bottom: 5px solid #6dd5fa;
}

.ti-widget[data-layout-id='37'][data-set-id='light-background'][data-pid='63378cd421be7020d166ea60189'] .ti-review-item>.ti-inner,
.ti-widget[data-layout-id='37'][data-set-id='light-background'][data-pid='63378cd421be7020d166ea60189'] .ti-load-more-reviews-container .ti-load-more-reviews-button {
    background-color: transparent !important;
}

.clients .review-card {
    background: url(https://thevatconsultant.com/assets/frontend/images/Group-pop.png);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    background-size: cover;
    height: 323px;
}

.clients .review-left {
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    color: black;
    width: 30%;
    position: relative;
    left: -20px;
}

.review-left h3 {
    font-size: 25px;
    font-weight: 600;
}

.clients .review-right {
    width: 70%;
}

.clients .review-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.clients .stars {
    color: #000;
}

.review-left h4 {
    font-weight: 700;
}

.review-left p {
    font-weight: 600;
    font-size: 21px;
    margin-bottom: 0px;
}

.clients .btn-google {
    background: black;
    color: white;
    border-radius: 16px;
    padding: 10px 20px;
    display: inline-block;
    border: 0px;
    font-weight: 700;
}

.btn-google img {
    width: 20px;
}

.ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-reviews-container-wrapper {
    padding-top: 0px !important;
}

.ti-profile-img {
    position: absolute;
    left: -30px !important;
    top: 106px;
}

.ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-header .ti-profile-img img {
    width: 126px !important;
    height: 126px !important;
}

.ti-platform-icon {
    top: 148px !important;
    left: 61px !important;
    z-index: 111;
}

.ti-profile-details {
    position: relative;
    top: 141px;
    left: 123px;
    text-align: left !important;
    border-left: 2px solid #000 !important;
    padding-left: 9px;
}

.ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-widget-container .ti-date {
    color: #000 !important;
    font-weight: 700;
}

.ti-review-text-container {
    text-align: left !important;
    position: relative;
    left: 122px;
    top: -8px;
    max-width: 80% !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    /* Standard property */
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    font-weight: 700;
    font-size: 20px !important;
    line-height: 1.4em !important;
    height: 57px !important;
}

.awards-section {
    padding: 50px;
    border-radius: 15px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.awards-title {
    font-size: 45px;
    font-weight: bold;
    position: relative;
    top: 100px;
}

.awards-title span {
    color: #f7c948;
}

.award-card {
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.award-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.countdown {
    display: flex;
    flex-wrap: wrap;
    gap: 74px;
    font-family: Arial, sans-serif;
    text-align: center;
    justify-content: center;
}

.time-box {
    width: 106px;
    height: 87px;
    background: #1968B1;
    border-radius: 15px 15px 0px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
    position: relative;
}

.time-box span {
    position: absolute;
    bottom: -20px;
    font-size: 14px;
    color: black;
    font-weight: normal;
}

.divider {
    font-size: 64px;
    font-weight: bold;
    align-self: center;
    border-radius: 50px !important;
}

.time-box .time-value {
    font-size: 57px;
    font-weight: bold;
}

.time-box .time-label {
    position: absolute;
    bottom: -20px;
    font-size: 14px;
    color: #fff;
    font-weight: normal;
    background-color: #000;
    width: 106px;
    padding: 3px 0px;
    border-radius: 0px 0px 15px 15px;
}

.erww h2 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 30px;
}


@media(max-width:576px) {
    .countdown {
        flex-direction: column;
        align-items: center;
    }

    .divider {
        display: none;
    }
}

.vat-section {
    background-color: #1968B1;
    padding: 53px 20px;
    color: white;
    text-align: left;
}

.vat-title {
    font-size: 42px;
    font-weight: bold;
    color: #000;
}

.vat-text {
    font-size: 16px;
    margin-bottom: 20px;
    color: #000;
    font-weight: 600;
}

.contact-box {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    cursor: pointer;
}

.contact-box:hover {
    transform: translateY(-5px);
}

.contact-box img {
    width: 50px;
    margin-bottom: 10px;
}

.contact-text {
    font-size: 14px;
    font-weight: bold;
    color: black;
}

.footer h5 {
    font-size: 22px;
    padding-bottom: 20px;
}

.footer {
    background: #1b1a14;
    color: white;
    padding-bottom: 0px !important;
    padding: 40px 0;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffc107;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.social-icons img {
    width: 27px;
    margin: 0 1px;
    border-radius: 20px;
}

.payment-methods img {
    width: 100px;
}

.footer-logo img {
    width: 219px;
}

.footer .jeh {
    font-size: 17px;
    padding-top: 10px;
}

.payment-methods {
    width: 100%;
}

.footer .list-unstyled li a {
    color: #A6A6A6;
    text-decoration: none;
    padding: 6px 0px;
    display: block;
}

.social-icons {
    margin-top: -3px;
    margin-bottom: 19px;
}

.dra {
    flex-wrap: wrap;
}

.er {
    width: 10%;
    margin-bottom: 0px;
}

.gr {
    width: 90%;
    margin-bottom: 0px;
    padding-left: 13px;
}

.er img {
    width: 20px;
}

.highlight-blue h5,
.highlight-yellow h5 {
    font-size: 15.5px !important;
}

.highlight-blue p,
.highlight-yellow p {
    color: #4F4F4F;
    font-size: 16px;
    padding-top: 10px;
    margin-bottom: 0px !important;
}

.awards-se .col-lg-8 .row {
    left: 0px !important;
}

.ti-stars {
    position: relative;
    left: 120px !important;
    top: -13px;
}

.ti-read-more-active {
    display: none !important;
}


body .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-pid='63378cd421be7020d166ea60189'] .ti-review-item>.ti-inner,
.ti-widget[data-layout-id='37'][data-set-id='light-background'][data-pid='63378cd421be7020d166ea60189'] .ti-load-more-reviews-container .ti-load-more-reviews-button {
    background-color: #ffffff00 !important;
}

.ti-inner {
    position: relative;
    top: -23px !important;
    right: -10px;
}

body .ti-review-text-container {
    font-weight: 700;
    font-size: 20px !important;
    line-height: 1.4em !important;
    height: 57px !important;
}

#menu .dropdown-menu {
    background-color: #fff !important;
}


@media (min-width:320px) and (max-width:480px) {
    .ladingpage-rt .be h5 {
        line-height: 1.7em;
    }

    body {
        background: url(https://thevatconsultant.com/assets/frontend/images/home1.jpg);
    }

    body #eerw {
        height: max-content !important;

    }

    #services-toggle-2:checked+.dropdown .dropdown-menu {
        display: block;
    }

    #service1-toggle-2:checked+.dropdown .sub-dropdown-menu {
        display: block;
    }

    #services-toggle-2,
    #service1-toggle-2 {
        display: none;
    }

    header h5 {
        font-size: 15px;
        padding: 5px 10px;

    }

    .login {
        top: 17px !important;
        right: 19px !important;
        padding: 3px 9px !important;
    }

    .nehrasjhdjasrew {
        background: #000;
        width: 24%;
        height: 64px;
        position: absolute;
        z-index: 99999999;
        right: 0px;
        top: 0px;
    }

    .variations .th.label {
        padding: 10px;
    }

    .login {
        background: #fff !important;
    }

    .col-lg-6.text-end {
        text-align: left !important;
    }

    .jeqqse {
        top: -1px !important;
        right: 98px !important;
        height: 65px;
        background: #000;
        width: 30px;
    }

    .jeqqse i {
        color: #fff !important;
    }

    .eer {
        margin: 0px auto !important;
        width: 87%;
    }

    .tes .carousel-card {
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    .tes .carousel-card video {
        width: 100%;
    }

    .tes .carousel-btn.prev {
        display: none;
    }

    .tes .carousel-btn.next {
        display: none;
    }

    .tes .carousel-container {
        padding-bottom: 0px !important;
        padding: 11px 8px !important;
    }

    .jes {
        font-size: 28px !important;
    }

    .tes div#carousel {
        transform: rotate(0deg) !important;
    }

    .navbar-brand {
        width: 40%;
    }

    .banner .ride {
        display: none;
    }

    .mb-don {
        display: none;
    }

    .banner .boxs p {
        width: 100%;
        font-size: 12px;
        padding-right: 9px !important;
    }

    .banner .boxs h2 {
        padding: 0px 0px;
        padding-bottom: 0;
        line-height: 1.1em;
        transition: none !important;
        animation: none !important;
        opacity: 1 !important;
        font-size: 1rem;
        font-weight: bold;
        padding: 0px 17p;
        color: #000;
    }

    .lke img {
        width: 10%;
    }

    .call-to-action h2 {
        font-size: 28px;
    }

    .mobile-casarol {
        display: none;
    }

    .bge .col-lg-8 .row {
        left: auto !important;
    }

    .hfwq {
        margin-top: 20px;
    }

    .service-card {
        margin: 0px 0px;
        width: 100% !important;
    }

    .why-cs h2 {
        font-size: 30px;
        line-height: 1.4em;
    }

    .bge .py-5 {
        padding-bottom: 0px !important;
    }

    .why-cs .card {
        margin: 0px 0px;
    }

    .erwa {
        background-color: #ffffff !important;
    }

    .erwwerr {
        background-color: #1968B1 !important;
    }

    #eerw .banner-text {
        padding: 20px 0px;
    }

    .call-to-action {
        margin-top: 0px !important;
        margin: 0px 18px;
    }

    #eerw {
        background: url(img/Group14.png) !important;
        background-position: center;
        background-size: cover !important;
        height: 360px;
        border-radius: 30px;
        margin-bottom: 28px;
    }

    .banner-image img {
        display: none;
    }

    .cls .hero-section {
        display: block !important;
    }

    .cls {
        margin-top: 0px !important;
        padding: 0px 15px;
    }

    .cls .hero-text h1,
    .awards-title {
        font-size: 26px;
        line-height: 1.3em;
    }

    body .cls .hero-text {
        margin-bottom: 30px;
        width: 100% !important;
        overflow-x: hidden;
    }

    .awards-title {
        top: 0px !important;
        text-align: center;
    }

    .erww h2 {
        font-size: 28px;
    }

    .countdown {
        flex-direction: row;
    }

    .vat-title {
        font-size: 30px;
    }

    .call-to-action h2 {
        color: #fff;
        padding-bottom: 10px;
    }

    #eerw p {
        color: #fff;
        margin-bottom: 30px;
    }

    .dso {
        display: block !important;
    }

    .wweqwdsa {
        display: none;
    }

    body {
        background: url(img/home4.jpg);
        background-size: cover;
    }

    .mr {
        margin-bottom: 20px !important;
    }

    .clients .review-card {
        display: block !important;
        height: 100%;
    }

    .lrw .contend {
        padding-left: 15px;
    }

    .clients .review-left {
        width: 100% !important;
        left: auto !important;
    }

    .clients .review-right {
        display: block !important;
        width: 100%;
    }

    .ti-review-text-container {
        margin-left: 122px;
        left: auto !important;
    }

    body .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-pid='63378cd421be7020d166ea60189'] .ti-review-item>.ti-inner,
    .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-pid='63378cd421be7020d166ea60189'] .ti-load-more-reviews-container .ti-load-more-reviews-button {
        position: relative;
        left: -12px;
    }

    .ti-profile-details {
        width: 60% !important;
    }

    .wewew {
        width: 68% !important;
    }

    #main-wrapper {
        display: block !important;
    }

    .ladingpage-rt .la-banner {
        margin-top: 0px !important;
    }

    .ladingpage-rt .la-banner h2 {
        font-size: 25px;
    }

    .ladingpage-rt .la-banner p {
        font-size: 16px;
    }

    .ladingpage-rt .dew p {
        margin: 0 auto;
    }

    .ladingpage-rt .dew h2 {
        font-size: 35px !important;
        text-align: center;
        margin-top: 15px;
    }

    .ladingpage-rt .dew h4 {
        font-size: 14px;
        text-align: center;
    }

    .ladingpage-rt .btn-custom {
        margin: 0 auto;
        text-align: center;
        display: block;
    }

    .ladingpage-rt .counter-container {
        margin-left: auto;
        margin-bottom: 20px;
        text-align: center;
    }

    .ladingpage-rt .be h2 {
        font-size: 25px;
    }

    .ladingpage-rt .be .card-custom {
        margin: 0px 15px;
    }

    .ladingpage-rt .be h5 {
        font-size: 17px;
    }

    .ladingpage-rt #eerw {
        height: 320px !important;
    }

    .ladingpage-rt .cls h2 {
        font-size: 25px;
    }

    .ladingpage-rt .cls .info-card {
        margin-bottom: 20px;
    }

    .ladingpage-rt .ctab h2 {
        font-size: 25px;
    }

    .ladingpage-rt .call-action {
        height: 350px !important;
        padding: 60px 0px;
    }

    .ladingpage-rt .we span {
        font-size: 23px;
    }

    .ladingpage-rt .ctab {
        height: max-content !important;
    }

    .payment-methods {
        margin-bottom: 20px;
    }

    footer .fdq {
        display: block !important;
    }

    .navbar-toggler {
        z-index: 9999;
    }

    .navbar-toggler:focus {
        box-shadow: none !important;
    }

    .burger-container {
        position: absolute;
        top: 25px;
        right: 25px;
        z-index: 1000;
        cursor: pointer;
        width: 45px;
        height: 35px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 5px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 6px;
    }

    .burger-line {
        width: 100%;
        height: 3px;
        background-color: #000;
        border-radius: 2px;
    }

    #burger-toggle {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100%;
        background: linear-gradient(135deg, #1b1a14 0%, #1b1a14 100%);
        transition: right 0.4s ease-in-out;
        box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
        padding-top: 29px;
    }

    .mon img {
        width: 67%;
        position: relative;
        top: 0px;
    }

    .nav-menu ul {
        list-style: none;
    }

    .nav-menu ul li {
        margin: 0 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
    }

    .nav-menu ul li a,
    .nav-menu ul li label {
        color: white;
        text-decoration: none;
        display: block;
        padding: 15px;
        font-weight: 500;
        cursor: pointer;
    }

    .dropdown-menu {
        display: none;
    }

    #services-toggle {
        display: none;
    }

    #services-toggle:checked+.dropdown .dropdown-menu {
        display: block;
        z-index: 99999;
        position: relative;
    }

    .sub-dropdown-menu {
        display: none;
        background: #1e2b37;
        padding-left: 15px;
    }

    #service1-toggle {
        display: none;
    }

    #service1-toggle:checked+.dropdown .sub-dropdown-menu {
        display: block;
    }

    .child-dropdown-menu {
        display: none;
        background: #16222a;
        padding-left: 15px;
    }

    #subservice1-toggle {
        display: none;
    }

    #subservice1-toggle:checked+.dropdown .child-dropdown-menu {
        display: block;
    }

    @media (min-width: 768px) {
        .dropdown:hover .dropdown-menu {
            display: block;
        }

        .dropdown:hover .sub-dropdown-menu {
            display: block;
        }

        .dropdown:hover .child-dropdown-menu {
            display: block;
        }
    }

    #burger-toggle:checked~.burger-container .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background-color: #fff !important;
    }

    #burger-toggle:checked~.burger-container .burger-line:nth-child(2) {
        opacity: 0;
    }

    #burger-toggle:checked~.nav-menu {
        right: 0;
    }

    .mon {
        display: block !important;
        position: sticky;
        z-index: 99999999999999;
        top: 3px;
    }

    wweqq .navbar-toggler {
        display: none;
    }

    body .bitgt {
        height: 206px;
        padding: 5px 0px;
    }

    .bor {
        margin-top: 0px !important;
    }

    .jr {
        display: none;
    }

    .Ser_Title1 {
        line-height: 1.5em;
    }
}

.mon {
    display: none;
}

#main-wrapper {
    position: absolute;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-left: 50px;
    z-index: 11111;
}

#main-wrapper {
    display: none;
}

#floating-snap-btn-wrapper {
    position: fixed;
    top: 20%;
    left: 30px;
    width: 50px;
    height: 50px;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: left 1s ease-in-out;
}

#main-wrapper .fab-btn {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #6B26BB;
    color: white;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0px 2px 17px -1px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    transition: transform 0.3s ease-in-out;
}

#main-wrapper .fab-rotate {
    transform: rotate(135deg);
}

#main-wrapper ul {
    position: absolute;
    left: 30px;
    width: 150px;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    pointer-events: none;
    top: 195px;
}

#main-wrapper ul li {
    padding: 10px;
    margin: 5px 0;
    background: #f7f7f7;
    list-style-type: none;
    text-align: center;
    border-radius: 5px;
    opacity: 0;
    transform: translateX(-50px);
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

#main-wrapper .fab-move-right {
    left: 167px !important;
}

#main-wrapper .show-list {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

#main-wrapper .show-list li {
    opacity: 1;
    transform: translateX(0);
}

.bg-animate {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 100vh;
    background: #000000c2;
    z-index: 1;
    transition: width 0.8s ease-in-out;
}

.dropdown-menu {
    animation: 0.5s slideup;
}

@keyframes slideup {
    from {
        transform: translateY(10%);
    }

    to {
        transform: translateY(0);
    }
}

.bge p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.dso {
    display: none;
}

.bit-gram h2 {
    font-size: 28px;
    font-weight: 800;
    padding-bottom: 0px !important;
    padding-top: 30px !important;
}

.br-footer {
    background: #000;
    display: block;
}

.br-footer.no-divider {
    border-top: none;
    padding-top: 0;
}

.br-footer .br-list.horizontal {
    display: flex;
    flex-wrap: wrap;
}

.br-footer .br-list.horizontal .header {
    width: 100%;
}

.br-footer div {
    color: #ffffff;
    text-decoration: none;
    border: 0px;
}

.br-item {
    text-decoration: none;
}

.br-footer .br-list.horizontal .col,
.br-footer .br-list.horizontal [class*=col-] {
    flex-grow: 0;
    padding: 0;
}

@media (max-width: 991px) {

    .br-footer .br-list.horizontal .col,
    .br-footer .br-list.horizontal [class*=col-] {
        flex-basis: 100% !important;
        max-width: 100%;
    }
}

.br-footer .social-network {
    border: 0;
}

.br-footer .social-network .social-network-title {
    font-size: var(--font-size-scale-up-01);
    font-weight: var(--font-weight-extra-bold);
    margin-bottom: var(--spacing-scale-3x);
    text-transform: uppercase;
}

.br-footer .social-network a:not(:last-of-type) {
    margin-right: var(--spacing-scale-2x);
}

.br-footer .social-network a:hover {
    background-image: none;
}

.br-footer .social-network img {
    max-height: var(--footer-assigns-height);
    max-width: var(--footer-assigns-height);
}

.br-footer .assigns img {
    max-height: var(--footer-assigns-height);
    max-width: var(--footer-assigns-width);
}

.br-footer .info {
    text-align: center;
}

.br-footer .br-divider {
    margin-top: 0 !important;
}

.br-footer .d-none.d-sm-block>.row.align-items-end.justify-content-between.py-5 {
    padding: var(--footer-padding-bottom) !important;
}

.br-footer .br-list {
    --background: var(--background-dark);
}

.br-footer .br-list.horizontal .br-item,
.br-footer .br-list.horizontal .br-list .br-item {
    min-height: 3em;
}

.br-footer .br-list.horizontal .br-item .content,
.br-footer .br-list.horizontal .br-list .br-item .content {
    height: auto;
    line-height: 16px;
    padding: 0 var(--spacing-scale-2x);
}

.br-footer .br-item {
    align-items: center;
    display: flex;
}

@media (min-width: 992px) {
    .br-footer .br-item.horizontal .br- {
        background-image: none;
        max-height: 200em !important;
    }
}

.content.text-down-01.text-bold.text-uppercase {
    font-size: 20px;
    font-weight: 600;
    color: #1968B1;
    margin-bottom: 20px;
    margin-top: 20px !important;
}

footer.br-footer {
    padding: 22px 0px;
    padding-top: 0;
}

.br-footer .br-item.horizontal .br-item {
    min-height: 4em;
}

.br-footer .br-item.horizontal .br-item .content {
    height: auto;
    line-height: 16px;
    padding: 0 var(--spacing-scale-2x);
}

.br-footer .br-item.horizontal .col .br-item.header.active,
.br-footer .br-item.horizontal [class*=col-] .br-item.header.active {
    border-bottom: 1px solid var(--border-color);
}

.br-footer .br-item.horizontal .col .br-item.header.active+.br-list,
.br-footer .br-item.horizontal [class*=col-] .br-item.header.active+.br-list {
    border-bottom: 1px solid var(--border-color);
}

.br-footer .br-item .content {
    flex: 1;
}

.br-footer .br-item:not(:disabled):hover {
    background-image: linear-gradient(rgba(var(--interactive-rgb), var(--hover)), rgba(var(--interactive-rgb), var(--hover)));
}

.br-footer .br-item.active {
    background: transparent;
}

@media (min-width: 992px) {
    .br-footer .br-item .support:last-child {
        display: none;
        pointer-events: none;
    }

    .br-footer .br-item .content {
        flex: 1;
    }
}

.br-footer[inverted] .br-list,
.br-footer.inverted .br-list {
    --background: var(--background-light);
}

body .vat-section .text-white {
    text-align: left !important;
}

.body .vat-section .text-end {
    text-align: right !important;
}

.tabs {
    position: sticky;
    top: 0px;
    z-index: 100;
    display: flex;
    font-weight: 600;
    background: rgb(255, 255, 255);
    gap: 20px;
    padding: 20px 13px;
    border-radius: 17px;
    border-bottom: 10px solid rgb(18, 138, 250);
    margin-bottom: 24px;
}

.services-bos .row {
    left: 0 !important;
}

.tab {
    text-align: center;
    padding: 3px 9px;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 13px;
    background-color: #ccc;
    border-radius: 35px;
    border-bottom: 3px solid #000;
}

.tab.active {
    background-color: #1968B1;
    font-weight: 600;
    color: #000;
    border-radius: 35px;
    border-bottom: 3px solid #000;
}

.block {
    padding: .0.5rem 0rem;
}

.kejr {
    font-weight: bold;
}

#main-menu .second {
    top: -41px !important;
}

#main-menu .tte {
    top: -75px;
}

#main-menu .dropdown-menu {
    z-index: 1111111;
}

#main-menu .kjw {
    top: -107px;
}

#main-menu .jhjd {
    top: -141px;
}

#main-menu .kjk {
    top: -174px;
}

#main-menu .keww {
    top: -8px;
}