:root {
    --primary-color: #023c72;
    --primary-hover: #01284d;
    --dark-green: #0c203b;
    --darker-green: #071324;
    --light-green: #f0f5fa;
    --text-dark: #222222;
    --text-gray: #555555;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --border-color: #e5e5e5;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: var(--white);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-green);
    text-transform: uppercase;
}

.section-tag {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.section-tag .line {
    height: 1px;
    width: 40px;
    background-color: var(--primary-color);
    display: inline-block;
}

/* Top Bar */
.top-bar {
    background-color: var(--dark-green);
    color: var(--white);
    font-size: 12px;
    padding: 10px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 20px;
}

.top-info i {
    color: var(--primary-color);
    margin-right: 5px;
}

.top-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons a {
    color: var(--white);
    margin-left: 15px;
}

.social-icons a:hover {
    color: var(--primary-color);
}

/* Navbar */
.navbar.new-header {
    background-color: transparent;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: none;
    transition: all 0.3s ease;
}

.navbar.new-header.scrolled {
    background-color: #0b1f3f;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.navbar.new-header.scrolled a{
    color: white;
}
.new-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.new-logo .logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.new-logo .logo-link img {
    height: 55px;
    width: auto;
    display: block;
    object-fit: contain;
    /* background-color: #0B1F3F; */
}

.logo-box {
    background-color: var(--dark-green);
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    padding: 10px 12px;
    border-radius: 6px;
    letter-spacing: 1px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    color: var(--dark-green);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
}

.logo-subtitle {
    color: var(--text-gray);
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.new-nav-links ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

.new-nav-links a {
    color: var(--dark-green);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.new-nav-links a:hover,
.new-nav-links a.active {
    color: var(--primary-color);
    border-bottom: 2px solid #c08b47;
}

.new-nav-links i {
    font-size: 10px;
}

.btn-appointment {
    background-color: #c08b47;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-appointment:hover {
    background-color: #a8763a;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-green);
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

/* Hero Section */
.new-hero {
    background: url('New%20folder/banner.png') center / cover no-repeat;
    min-height: 110vh;
    padding: 200px 0 100px 0;
    display: flex;
    align-items: center;
}

.new-hero-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    min-height: calc(100vh - 180px);
    position: relative;
    width: 100%;
}

.hero-content {
    flex: 0 0 55%;
    max-width: 800px;
    text-align: left;
}

.hero-tag {
    color: #c08b47;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.hero-title {
    font-family: 'Merriweather', serif;
    font-size: 62px;
    color: var(--dark-green);
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    min-height: 220px;
}

.hero-title .dot {
    color: #c08b47;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 680px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.hero-buttons .btn-dark {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 14px 28px;
    font-size: 13px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #c08b47;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.hero-buttons .btn-primary {
    background-color: #c08b47;
    color: var(--white);
    padding: 14px 28px;
    font-size: 13px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.hero-features {
    display: flex;
    gap: 45px;
    justify-content: flex-start;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.hero-feature .feature-icon {
    font-size: 26px;
    color: #4a5568;
    margin-bottom: 5px;
    opacity: 0.8;
}

.hero-feature span {
    font-size: 11px;
    font-weight: 700;
    color: var(--dark-green);
    line-height: 1.3;
}

.hero-image-col {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-portrait {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.hero-name-card {
    position: absolute;
    bottom: 40px;
    right: 20px;
    background-color: rgba(7, 19, 36, 0.95);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 25px 35px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    min-width: 320px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-name-card h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--white);
}

.hero-name-card p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.hero-name-card .signature {
    font-family: 'Brush Script MT', cursive;
    color: #c08b47;
    font-size: 24px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

.services-inner {
    display: flex;
    gap: 60px;
    align-items: center;
}

.services-image {
    flex: 1;
}

.services-image img {
    border-radius: 8px;
}

.services-content {
    flex: 1.8;
}

.section-description {
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.service-card {
    text-align: center;
    transition: transform 0.3s;
}

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

.service-icon {
    width: 65px;
    height: 65px;
    background-color: var(--light-green);
    color: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-green);
}

.service-card p {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-gray);
}

/* Stats Section */
.stats-section {
    background-color: var(--dark-green);
    padding: 50px 0;
    color: var(--white);
}

.stats-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    font-size: 36px;
    color: var(--primary-color);
}

.stat-text h3 {
    color: var(--white);
    font-size: 32px;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background-color: #f9fbf9;
}

.testimonials-inner {
    display: flex;
    gap: 80px;
    align-items: center;
}

.testimonials-image {
    flex: 1;
}

.testimonials-image img {
    border-radius: 12px;
}

.testimonials-content {
    flex: 1.2;
    position: relative;
    padding-right: 80px;
}

.testimonials-content .section-title {
    color: var(--dark-green);
    font-size: 28px;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.testimonials-content .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.testimonial-quote {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.quote-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-top: 5px;
}

.testimonial-quote p {
    font-size: 16px;
    font-style: italic;
    color: var(--text-gray);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 2px;
    color: var(--dark-green);
    font-size: 15px;
}

.testimonial-author p {
    font-size: 13px;
    color: var(--text-gray);
}

.slider-wrapper {
    display: flex;
    align-items: center;
    gap: 25px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.slider-track {
    width: 10px;
    height: 160px;
    background-color: var(--primary-color);
}

.slider-controls {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.slider-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--white);
    border-bottom: 1px solid #eaeaea;
}

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

.section-subtitle {
    font-size: 14px;
    color: var(--dark-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-title-center {
    font-size: 36px;
    color: var(--dark-green);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.divider-line {
    width: 40px;
    height: 2px;
    background-color: #f16322;
    margin: 0 auto 60px auto;
}

.features-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
}

.feature-item {
    flex: 1;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 36px;
    color: #2c4251;
    flex-shrink: 0;
    margin-top: -5px;
}

.feature-text h4 {
    font-size: 15px;
    color: var(--dark-green);
    margin-bottom: 8px;
    font-weight: 700;
}

.feature-text p {
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Our Process */
.our-process-section {
    padding: 30px 0;
    background-color: var(--white);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

.process-step {
    flex: 1;
    position: relative;
    padding: 0 20px;
    text-align: center;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(50% + 45px);
    right: calc(-50% + 45px);
    border-top: 2px dotted #0c203b;
    z-index: 1;
}

.process-step:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 25px;
    right: calc(-50% + 45px - 5px);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #0c203b;
    z-index: 2;
}

.step-circle {
    width: 60px;
    height: 60px;
    background-color: #0c203b;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 20px auto;
    position: relative;
    z-index: 5;
}

.process-step h4 {
    font-size: 16px;
    color: #0c203b;
    margin-bottom: 10px;
    font-weight: 700;
}

.process-step p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* News Section */
.news-section {
    padding: 80px 0;
}

.view-all {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-all:hover {
    color: var(--dark-green);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.news-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.badge {
    background-color: var(--light-green);
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.news-card h3 {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.date {
    font-size: 12px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* CTA Banner Section */
.cta-banner-section {
    padding: 40px 0;
}

.cta-banner {
    background-color: var(--dark-green);
    border-radius: 8px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 5px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: #f9fbf9;
}

.about-inner {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
}

.about-image-wrapper .main-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(84, 153, 70, 0.3);
}

.experience-badge .exp-number {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .exp-text {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 600;
}

.about-content {
    flex: 1.2;
    padding-left: 20px;
}

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

.divider-line-left {
    width: 40px;
    height: 3px;
    background-color: #f16322;
    margin: 0 0 25px 0;
}

.about-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 30px;
}

.about-features {
    list-style: none;
    margin-bottom: 35px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

.about-features li i {
    color: var(--primary-color);
    font-size: 18px;
}

/* New Services Section */
.our-services-section {
    padding: 100px 0;
    background-color: var(--white);
}

.divider-line-blue {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto 60px auto;
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-bottom: 40px;
}

.service-card-new {
    position: relative;
    margin-bottom: 40px;
}

.service-card-new img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.service-card-content {
    background-color: var(--white);
    padding: 25px;
    width: 86%;
    margin: -40px auto 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.service-card-content h4 {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card-content p {
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: var(--darker-green);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 60px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.brand-col {
    flex: 1.5;
    padding-right: 40px;
}

.logo-light h2 {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
    margin-bottom: 20px;
}

.logo-light .logo-sub {
    color: var(--primary-color);
}

.brand-col p {
    margin-bottom: 20px;
    font-size: 14px;
}

.footer h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul a {
    font-size: 14px;
}

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

.contact-col li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 14px;
}

.contact-col i {
    color: var(--primary-color);
    margin-top: 4px;
}

.footer-bottom {
    padding: 20px 0;
    font-size: 14px;
}

.footer-links a {
    margin: 0 10px;
}

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

/* About and Services Combined Section */
.about-services-section {
    padding: 100px 0;
    background-color: var(--white);
    overflow: hidden;
}

.as-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr 2.5fr;
    gap: 40px;
    align-items: center;
}

.as-about-col {
    padding-right: 15px;
}

.as-tag {
    color: #c08b47;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.as-title {
    font-family: 'Merriweather', serif;
    color: var(--dark-green);
    font-size: 36px;
    line-height: 1.25;
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.as-desc {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 30px;
}

.as-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border: 1px solid #c08b47;
    color: var(--dark-green);
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.as-btn i {
    color: #c08b47;
}

.as-btn:hover {
    background-color: #c08b47;
    color: var(--white);
}

.as-btn:hover i {
    color: var(--white);
}

.as-image-col {
    position: relative;
    padding: 0 15px;
}

.as-team-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 60px 0 60px 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.as-dots-pattern {
    position: absolute;
    bottom: -20px;
    right: 0px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(#c08b47 2px, transparent 2px);
    background-size: 12px 12px;
    z-index: 1;
    opacity: 0.4;
}

.as-services-col {
    padding-left: 15px;
}

.as-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.as-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 25px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--dark-green);
}

.as-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
    border-color: rgba(192, 139, 71, 0.3);
}

.as-icon {
    font-size: 26px;
    color: var(--dark-green);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.as-card:hover .as-icon {
    color: #c08b47;
    opacity: 1;
}

.as-card span {
    font-size: 11.5px;
    font-weight: 700;
    line-height: 1.4;
}

.as-view-all {
    text-align: center;
}

.as-view-all a {
    color: #c08b47;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Full Combined Services Section */
.full-services-section {
    padding: 80px 0 100px 0;
    background-color: var(--white);
}

.full-serv-top {
    margin-bottom: 20px;
}

.fs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.fs-card {
    border-radius: 8px;
    position: relative;
    padding-bottom: 20px;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.fs-card:hover {
    transform: translateY(-8px);
}

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

.fs-card-content {
    background: var(--white);
    padding: 25px 20px 20px 55px;
    /* Increased left padding for large circle */
    margin: -50px 15px 0 30px;
    position: relative;
    z-index: 2;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.4s ease;
}

.fs-card:hover .fs-card-content {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.fs-icon-circle {
    width: 76px;
    height: 76px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -38px;
    top: 20px;
    color: #1b2f4a;
    font-size: 32px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.fs-card:hover .fs-icon-circle {
    background-color: #c08b47;
    color: var(--white);
    transform: scale(1.1);
}

.fs-card-content h4 {
    font-size: 14px;
    color: #1b2f4a;
    margin-bottom: 10px;
    font-weight: 700;
}

.fs-card-content p {
    font-size: 11.5px;
    color: #667;
    line-height: 1.6;
    margin: 0;
}

/* Bottom Comprehensive Box */
.full-serv-bottom-box {
    background-color: #f4f7f9;
    border-radius: 12px;
    padding: 60px 50px;
}

.fs-bottom-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.fs-bottom-left {
    padding-right: 20px;
}

.fs-bottom-tag {
    color: #c08b47;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.fs-bottom-title {
    font-family: 'Merriweather', serif;
    color: var(--dark-green);
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 900;
}

.fs-bottom-desc {
    font-size: 13px;
    color: #556;
    line-height: 1.7;
    margin-bottom: 25px;
}

.fs-bottom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fs-small-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.fs-small-icon {
    position: relative;
    color: #3b526b;
    font-size: 24px;
    margin-top: 3px;
}

.fs-small-icon::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: -4px;
    width: 8px;
    height: 8px;
    background-color: #c08b47;
    border-radius: 50%;
}

.fs-small-text h5 {
    font-size: 13px;
    color: var(--dark-green);
    font-weight: 700;
    margin-bottom: 6px;
}

.fs-small-text p {
    font-size: 11.5px;
    color: #667;
    line-height: 1.4;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--white);
    border-bottom: 1px solid #f0f4f8;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
}

.feature-icon {
    font-size: 24px;
    color: var(--dark-green);
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #f0f4f8;
    border-radius: 50%;
    z-index: -1;
    left: -5px;
    top: 5px;
}

.feature-text h4 {
    font-size: 14px;
    color: var(--dark-green);
    margin-bottom: 8px;
    font-weight: 700;
}

.feature-text p {
    font-size: 11px;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

/* Industries and Process Split Layout */
.industries-process-section {
    padding: 80px 0;
    background-color: var(--white);
}

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

.ip-col h4 {
    color: #c08b47;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

/* Industries Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.ind-card {
    background-color: var(--white);
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    padding: 20px 10px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.ind-card:hover {
    border-color: #c08b47;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
}

.ind-icon {
    font-size: 24px;
    color: var(--dark-green);
}

.ind-card span {
    font-size: 11px;
    color: var(--dark-green);
    font-weight: 700;
}

.view-all-link {
    color: #c08b47;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Process Timeline */
.ip-col h2 {
    font-family: 'Merriweather', serif;
    color: var(--dark-green);
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 900;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
    flex: 1;
    padding: 0 10px;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25px;
    left: calc(50% + 30px);
    width: calc(100% - 60px);
    height: 1.5px;
    background-image: linear-gradient(to right, var(--dark-green) 50%, transparent 50%);
    background-size: 6px 100%;
    z-index: 1;
}

.process-step:not(:last-child)::before {
    content: '\f0da';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 25px;
    right: calc(-50% + 30px);
    transform: translateY(-50%);
    color: var(--dark-green);
    z-index: 2;
    font-size: 14px;
}

.step-circle {
    width: 50px;
    height: 50px;
    background-color: var(--dark-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 20px auto;
    position: relative;
    z-index: 3;
}

.process-step h4 {
    font-size: 14px;
    color: var(--dark-green);
    margin-bottom: 10px;
    font-weight: 700;
}

.process-step p {
    font-size: 11px;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {

    .hero-inner,
    .services-inner,
    .testimonials-inner,
    .why-inner,
    .cta-banner,
    .about-inner,
    .fs-bottom-inner,
    .as-inner,
    .ip-inner {
        flex-direction: column;
    }

    .fs-bottom-inner,
    .as-inner,
    .ip-inner {
        display: flex;
        gap: 50px;
    }

    .fs-bottom-left,
    .as-about-col,
    .as-image-col,
    .as-services-col {
        padding: 0;
        width: 100%;
        text-align: center;
    }

    .fs-bottom-title,
    .as-title {
        font-size: 30px;
    }

    .as-team-img {
        height: 350px;
    }

    .fs-grid,
    .fs-bottom-grid,
    .as-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
        min-height: 130px;
    }

    .new-nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        padding: 20px;
        flex-direction: column;
        border-top: 1px solid var(--border-color);
    }

    .new-nav-links.active {
        display: flex;
    }

    .new-nav-links ul {
        flex-direction: column;
        gap: 15px;
    }

    .new-nav-links a::after {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .new-hero-inner {
        flex-direction: column;
    }

    .hero-features {
        flex-wrap: wrap;
        justify-content: center;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-timeline {
        flex-direction: column;
        gap: 30px;
    }

    .process-step:not(:last-child)::after {
        width: 2px;
        height: 30px;
        top: 100%;
        right: auto;
        left: 50%;
        background-size: 100% 8px;
    }

    .process-step:not(:last-child)::before {
        content: '\f0d7';
        top: auto;
        bottom: -20px;
        right: auto;
        left: calc(50% - 7px);
    }

    .experience-badge {
        right: 20px;
        bottom: -20px;
    }

    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {

    .services-grid,
    .features-grid,
    .stats-inner {
        grid-template-columns: 1fr;
    }

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

    .cta-banner {
        text-align: center;
    }

    .cta-content {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .testimonials-content {
        padding-right: 0;
        margin-top: 40px;
    }

    .slider-wrapper {
        position: relative;
        right: 0;
        transform: none;
        margin-top: 30px;
        justify-content: center;
    }

    .slider-track {
        transform: none;
        width: 160px;
        height: 10px;
    }

    .slider-controls {
        flex-direction: row;
    }

    .features-row {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Stats Section Light */
.stats-section-light {
    background-color: var(--white);
    padding: 50px 0;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    margin-top: -60px;
}

.stats-inner-light {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item-light {
    display: flex;
    align-items: center;
    gap: 22px;
}

.stat-icon-svg {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-text-light h3 {
    color: #1e3a5f;
    font-size: 52px;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 4px;
    font-weight: 800;
}

.stat-text-light p {
    font-size: 16px;
    color: #1e3a5f;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* New About Section */
.about-section-new {
    padding: 80px 0;
    background-color: var(--white);
}

.about-new-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-new-left {
    flex: 1.2;
    padding-right: 20px;
}

.title-underline {
    width: 60px;
    height: 3px;
    background-color: #c08b47;
    margin-bottom: 25px;
    margin-top: 15px;
}

.about-new-left .as-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #1e3a5f;
    line-height: 1.2;
    margin-top: 10px;
}

.about-new-left .as-desc {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-dark-modern {
    background-color: #0b1f3f;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s;
}

.btn-dark-modern:hover {
    background-color: #1e3a5f;
    color: white;
}

.btn-dark-modern i {
    color: #c08b47;
}

.about-new-center {
    flex: 1.5;
}

.about-office-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    object-fit: cover;
    max-height: 400px;
}

.about-new-right {
    flex: 1.3;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-left: 20px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #0b1f3f;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon i {
    color: #c08b47;
    font-size: 20px;
}

.about-feature-text h4 {
    color: #1e3a5f;
    font-size: 16px;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.about-feature-text p {
    color: #555;
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .about-new-inner {
        flex-direction: column;
    }
    .about-new-left, .about-new-center, .about-new-right {
        padding: 0;
        flex: 1;
        width: 100%;
    }
}

/* Why Banner Section */
.why-banner-section {
    display: flex;
    position: relative;
    overflow: hidden;
    background: #041022;
    align-items: stretch;
    margin: 40px 0;
}
.why-banner-left {
    flex: 0 0 70%;
    padding: 60px 5% 60px 6%;
    position: relative;
    z-index: 2;
    background: #041022;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.why-banner-left::after {
    content: '';
    position: absolute;
    top: -50px;
    bottom: -50px;
    right: -40px; 
    width: 150px;
    background: #041022;
    transform: skewX(-20deg);
    border-right: 4px solid #c08b47;
    z-index: -1;
}
.why-banner-right {
    flex: 1;
    position: relative;
    z-index: 1;
}
.why-banner-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.why-banner-title {
    font-size: 32px;
    margin-bottom: 40px;
    line-height: 1.3;
}
.why-banner-title .text-white {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 500;
}
.why-banner-title .text-gold {
    color: #c08b47;
    font-family: 'Merriweather', serif;
    font-weight: 700;
}
.why-b-features {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.why-b-feature {
    flex: 1;
    position: relative;
    padding-right: 15px;
}
.why-b-feature:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}
.why-b-icon {
    margin-bottom: 15px;
}
.why-b-icon svg {
    width: 36px;
    height: 36px;
    stroke: #c08b47;
}
.why-b-feature h4 {
    color: var(--white);
    font-size: 13px;
    margin-bottom: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
}
.why-b-feature p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 1200px) {
    .why-banner-section {
        flex-direction: column;
    }
    .why-banner-left {
        flex: 1;
        padding: 40px 5%;
    }
    .why-banner-left::after {
        display: none;
    }
    .why-banner-right {
        height: 300px;
    }
    .why-banner-right img {
        position: relative;
    }
    .why-b-features {
        flex-wrap: wrap;
    }
    .why-b-feature {
        flex: 1 1 45%;
        margin-bottom: 20px;
    }
    .why-b-feature:not(:last-child)::after {
        display: none;
    }
}

/* Helping Businesses / Industries / Who We Serve Section */
.helping-section {
    background: #ffffff;
    padding: 60px 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.helping-inner {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 0;
    align-items: start;
}

.helping-col {
    padding: 0 40px;
    position: relative;
}

.helping-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #e0e6ed;
}

.helping-left {
    padding-left: 0;
}

.helping-title {
    font-family: var(--font-heading);
    color: #0c203b;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.3;
}

.helping-desc {
    color: #556;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.helping-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.helping-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.helping-feat-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.helping-feature h5 {
    color: #0c203b;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.helping-feature p {
    color: #667;
    font-size: 11px;
    line-height: 1.5;
    margin: 0;
}

.helping-col-title {
    color: #c08b47;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.helping-col-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e6ed;
}

.helping-list-two-col {
    display: flex;
    gap: 25px;
}

.helping-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.helping-list li {
    color: #334;
    font-size: 12.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.helping-list li i {
    color: #c08b47;
    font-size: 12px;
    width: 14px;
    flex-shrink: 0;
}

.helping-list-single {
    flex-direction: column;
}

@media (max-width: 992px) {
    .helping-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .helping-col {
        padding: 0;
    }
    .helping-col:not(:last-child)::after {
        display: none;
    }
    .helping-section {
        padding: 50px 0;
    }
}

/* Locations + Why Tax Matters Section */
.locations-section {
    padding: 50px 0 40px;
    background: #ffffff;
    border-top: 1px solid #eaeaea;
}

.locations-top {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 20px;
}

.locations-top-left {
    flex: 0 0 200px;
    padding-top: 10px;
}

.locations-heading {
    font-family: var(--font-heading);
    color: #0c203b;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
}

.locations-heading span {
    color: #c08b47;
}

.locations-top-right {
    flex: 1;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-bottom: 14px;
}

.city-tile {
    text-align: center;
}

.city-tile img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    margin-bottom: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.10);
}

.city-tile:hover img {
    transform: scale(1.06);
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.city-tile span {
    font-size: 13px;
    color: #0c203b;
    font-weight: 700;
    display: block;
    letter-spacing: 0.3px;
}

.locations-note {
    font-size: 13px;
    color: #667;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.locations-note i {
    color: #c08b47;
}

.locations-divider {
    height: 1px;
    background: #eaeaea;
    margin: 20px 0;
}

/* Why Tax Section */
.why-tax-section {
    padding: 10px 0 5px;
}

.why-tax-title {
    color: #0c203b;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 22px;
}

.why-tax-features {
    display: flex;
    gap: 0;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.why-tax-feature {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 20px;
    position: relative;
    transition: background 0.3s;
}

.why-tax-feature:hover {
    background: #f8f9fb;
}

.why-tax-feature:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: #eaeaea;
}

.why-tax-icon {
    width: 36px;
    height: 36px;
    background: #f0f4f8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c08b47;
    font-size: 15px;
    flex-shrink: 0;
}

.why-tax-feature p {
    font-size: 11.5px;
    color: #445;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
    padding-top: 4px;
}

@media (max-width: 992px) {
    .locations-top {
        flex-direction: column;
    }
    .city-grid {
        overflow-x: scroll;
    }
    .why-tax-features {
        flex-wrap: wrap;
    }
    .why-tax-feature {
        flex: 1 1 45%;
    }
}

/* ===== GLOBAL FONT SIZE CORRECTIONS ===== */
/* Fix all small text across the entire site */

/* --- Stats Section Light --- */
.stat-number-light { font-size: 40px !important; }
.stat-label-light { font-size: 15px !important; }

/* --- About Section --- */
.about-new-desc, .as-desc { font-size: 15px !important; line-height: 1.8 !important; }
.about-feature-text p { font-size: 14px !important; }
.about-feature-text h4 { font-size: 15px !important; }

/* --- Services Section --- */
.service-card h3 { font-size: 16px !important; }
.service-card p { font-size: 14px !important; }
.fs-card-content h4 { font-size: 16px !important; }
.fs-card-content p { font-size: 13px !important; }
.section-tag-center { font-size: 14px !important; }
.section-title-center-large { font-size: 40px !important; }

/* --- Why Banner Section --- */
.why-b-feature h4 { font-size: 15px !important; }
.why-b-feature p { font-size: 13px !important; }
.why-banner-title { font-size: 36px !important; }

/* --- Helping Businesses Section --- */
.helping-title { font-size: 30px !important; }
.helping-desc { font-size: 15px !important; }
.helping-feature h5 { font-size: 14px !important; }
.helping-feature p { font-size: 13px !important; }
.helping-list li { font-size: 14px !important; }
.helping-col-title { font-size: 13px !important; }

/* --- Locations / City Section --- */
.locations-heading { font-size: 22px !important; }
.city-tile span { font-size: 12px !important; }
.city-tile img { height: 145px !important; }
.locations-note { font-size: 13px !important; }
.why-tax-title { font-size: 18px !important; }
.why-tax-feature p { font-size: 13px !important; }
.why-tax-icon { width: 42px !important; height: 42px !important; font-size: 18px !important; }

/* --- Full Services Section --- */
.fs-bottom-title { font-size: 32px !important; }
.fs-bottom-desc { font-size: 15px !important; }
.fs-small-text h5 { font-size: 15px !important; }
.fs-small-text p { font-size: 13px !important; }

/* --- About Section New --- */
.about-section-new .as-title { font-size: 36px !important; }

/* --- Why Choose Us (Industries Section) --- */
.ind-card span { font-size: 13px !important; }
.ind-icon { font-size: 26px !important; }

/* --- Features Row --- */
.feature-text h4 { font-size: 16px !important; }
.feature-text p { font-size: 14px !important; }

/* --- Stats Section --- */
.stat-text h3 { font-size: 52px !important; }
.stat-text p { font-size: 16px !important; }
.stat-item-light h3 { font-size: 52px !important; }
.stat-label { font-size: 16px !important; }

/* --- Hero Section --- */
.hero-title { font-size: 60px !important; }
.hero-subtitle { font-size: 17px !important; }
.hero-tag { font-size: 14px !important; }
.hero-feature span { font-size: 13px !important; }

/* --- General headings in sections --- */
.section-title { font-size: 36px !important; }
.section-title-center { font-size: 38px !important; }
.section-subtitle { font-size: 15px !important; }
.section-tag { font-size: 15px !important; }

/* --- Nav --- */
.new-nav-links a { font-size: 14px !important; }
.logo-title { font-size: 20px !important; }

/* --- Footer --- */
.footer ul a { font-size: 15px !important; }
.footer h3 { font-size: 20px !important; }
.footer p, .footer span { font-size: 14px !important; }
.brand-col p { font-size: 15px !important; }
.footer-bottom p { font-size: 14px !important; }

/* --- CTA Banner --- */
.cta-content h2 { font-size: 26px !important; }
.cta-content p { font-size: 16px !important; }

/* --- Process Steps --- */
.process-step h4 { font-size: 16px !important; }
.process-step p { font-size: 13px !important; }

/* --- As-card service items --- */
.as-card span { font-size: 13px !important; }
.as-icon { font-size: 28px !important; }

/* Responsive tweaks for OUR SERVICES section */
@media (max-width: 1200px) {
    .fs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 992px) {
    .fs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .fs-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Hero Banner Fix */
@media (max-width: 992px) {
    .new-hero {
        background-position: 80% center !important;
    }
}

@media (max-width: 768px) {
    .new-hero {
        background-size: cover !important;
        background-position: center !important;
        min-height: 48vw !important; /* Proportional height to match image aspect ratio */
        padding: 14vw 5vw 4vw 5vw !important; /* Extra top padding to clear header */
        display: flex;
        align-items: flex-end;
    }
    
    .new-hero-inner {
        flex-direction: row !important; /* Force side-by-side like laptop */
        margin-top: 0 !important;
        min-height: auto !important;
        gap: 2vw !important;
    }
    
    .hero-content {
        background: transparent !important; /* Remove white box */
        padding: 0 !important;
        box-shadow: none !important;
        text-align: left !important;
        flex: 0 0 55% !important; /* Restrict to left half */
        margin: 0 !important;
    }
    
    /* Scale fonts proportionally using vw so it perfectly matches the laptop proportions */
    .hero-title {
        font-size: 4.5vw !important; 
        line-height: 1.2 !important;
    }
    
    .hero-content h3 {
        font-size: 2.2vw !important;
        line-height: 1.3 !important;
        margin: 1.5vw 0 !important;
    }
    
    .hero-subtitle {
        font-size: 1.8vw !important;
        line-height: 1.4 !important;
        margin-bottom: 3vw !important;
    }
    
    .hero-content .btn-dark-modern {
        padding: 1.5vw 3vw !important;
        font-size: 1.8vw !important;
        border-radius: 0.8vw !important;
        margin-top: 1vw !important;
    }

    /* Scale the CA name card proportionally */
    .hero-image-col {
        flex: 0 0 45% !important;
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
    }

    .hero-name-card {
        position: relative !important;
        bottom: 0 !important;
        right: 0 !important;
        min-width: 0 !important;
        width: 100% !important;
        max-width: 35vw !important;
        padding: 2vw 2.5vw !important;
        border-radius: 1vw !important;
    }

    .hero-name-card h4 {
        font-size: 1.8vw !important;
        margin-bottom: 0.5vw !important;
    }

    .hero-name-card p {
        font-size: 1.4vw !important;
        margin-bottom: 1.5vw !important;
    }

    .hero-name-card .signature {
        font-size: 2.5vw !important;
    }
}

/* Why Tax & Compliance Support Matters */
.why-tax-section {
    background-color: #fafafa;
    padding: 60px 40px;
    margin-top: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.why-tax-title {
    text-align: center;
    color: var(--dark-green);
    font-size: 26px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 40px;
}

.why-tax-features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.why-tax-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: center;
}

.why-tax-icon {
    font-size: 32px;
    color: #c08b47;
}

.why-tax-feature p {
    font-size: 13px;
    color: var(--dark-green);
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.why-tax-divider {
    width: 1px;
    height: 40px;
    background-color: #e0e0e0;
    margin: 0 10px;
    flex-shrink: 0;
}

/* Responsive for mobile */
@media (max-width: 1200px) {
    .why-tax-features {
        flex-wrap: wrap;
        gap: 30px 10px;
        justify-content: center;
    }
    .why-tax-feature {
        min-width: 30%;
        justify-content: flex-start;
    }
    .why-tax-divider {
        display: none;
    }
}
@media (max-width: 768px) {
    .why-tax-feature {
        min-width: 45%;
    }
}
@media (max-width: 576px) {
    .why-tax-feature {
        min-width: 100%;
    }
}
