:root {
    --primary-color: #293857;
    --secondary-color: #f4d03f;
    --accent-color: #2c3e50;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
}

body {
    font-family: "Source Sans Pro", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #ebebeb;
}
html {
    scroll-padding-top: 100px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
    font-weight: 900;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3)),
        url("../images/JoinAMCOBBannerWebsite.webp") center/cover no-repeat;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    position: relative;
}
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #00000070;
    z-index: 1;
}
.hero-section .container {
    z-index: 2;
}
.hero-image-container {
    position: relative;
    height: 100%;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2d3c69;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    /* font-size: 3rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #fff; */
    font-size: 4.6rem;
    font-family: "Playfair Display";
    letter-spacing: 1px;
    color: #d5c28b;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.subHeading {
    font-size: 24px;
    font-family: "poppins";
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 30px;
}

/* #pgSec1 .container h1 {
    font-size: 3.6rem;
    font-family: 'Playfair Display';
    letter-spacing: 1px;
    color: #2d3c69;
    text-align: left;
    text-transform: uppercase;
    margin-top: 2em;
}

#pgSec1 .container p.lead {
    font-size: 1rem;
    max-width: 900px;
    line-height: 1.6;
    font-weight: 600;
} */

h1 span,
h2 span {
    color: #d5c28b;
}

.container {
    max-width: 86%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

#pgSec1 {
    font-weight: 700;
}

/* expand cards */

.cards-container {
    max-width: 86%;
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
    display: flex;
    flex: 0 0 250px;
    flex-direction: row;
    padding-top: 100px;
}

.card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    height: fit-content;
    border: solid #dadada;
    border-width: 6px 1px 6px 1px;
    min-height: 385px;
}

.card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: solid #d5c28b;
    border-width: 6px 1px 6px 1px;
}

.card-content {
    padding: 2rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border: 0;
    background: #fff;
    padding: 0;
}

.card-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: #2d3c69;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.card-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffbf00;
    font-family: "Playfair Display";
    font-variant: lining-nums;
}

.card-tagline {
    color: #2d3c69;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-family: "poppins";
}

.card-collapsed {
    color: #2d3c69;
    margin-bottom: 1rem;
    font-family: poppins;
}

.expand-btn,
.collapse-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 0;
}

.expand-btn {
    padding: 10px 25px;
    background: #d5c28b;
    border-radius: 25px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.expand-btn:hover {
    color: #d5c28b;
    background-color: #2d3c69;
}

.collapse-btn {
    padding: 10px 25px;
    color: #2d3c69;
    background-color: #f1f1f1;
    border-radius: 25px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.collapse-btn:hover {
    color: #2d3c69;
    background-color: #dfdfdf;
}

.expanded-content {
    display: none;
}

.expanded-content.active {
    display: block;
}

.expanded-description {
    color: rgb(45, 60, 105);
    margin-bottom: 1rem;
    font-family: "poppins";
    margin-bottom: 1rem;
}

.benefits-section {
    margin-bottom: 1rem;
}

.benefits-title {
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 20px;
    color: #2d3c69;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

svg.u-display--inline-block {
    background-color: #00be3b;
    padding: 0px 3px;
    border-radius: 50px;
    fill: #fff;
}

.benefit-text {
    color: #2d3c69;
    margin-bottom: 1rem;
    font-family: poppins;
}

.button-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
}

.cta-button {
    padding: 10px 25px;
    color: #2d3c69;
    background-color: #d5c28b;
    border-radius: 25px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    border: 0;
}

.cta-button:hover {
    color: #d5c28b;
    background-color: #2d3c69;
}

#amcobTogglebtn a {
    padding: 10px 25px;
    color: #2d3c69;
    background-color: #d5c28b;
    border-radius: 25px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    border: 0;
}

#amcobTogglebtn a:hover {
    color: #d5c28b;
    background-color: #2d3c69;
}

.chevron {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.collapsed-view {
    display: block;
}

.collapsed-view.hidden {
    display: none;
}

/* amcob connect toggle  */
.toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #2b3648;
    font-family: "Poppins";
    font-size: 12px;
}

.tog-switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 24px;
}

.tog-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.tog-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffbf00;
    transition: 0.3s;
    border-radius: 34px;
}

.tog-slider::before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    top: 4.2px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
}

.tog-switch input:checked + .tog-slider::before {
    transform: translateX(20px);
}

#price-heading {
    margin: 0;
}

.cardPriceParent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.toggle-wrapper span {
    color: #dbdbdb;
    font-weight: 600;
    transition: color 0.3s ease;
}

.toggle-wrapper span.active {
    color: #333;
}

/* table in peer advisory card  */
.pricing-table {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px #2d3c69;
    overflow: hidden;
    width: 100%;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 !important;
}

.table thead {
    background: #2d3c69 !important;
    color: #fff !important;
}

.table thead tr th {
    background: #2d3c69 !important;
    color: #fff !important;
}

th,
td {
    padding: 16px;
    text-align: left;
    vertical-align: middle;
    border: 1px solid #dee2e6;
}

th {
    font-weight: 600;
    font-size: 1rem;
}

td {
    font-size: 0.95rem;
}

.cta-btn {
    display: block;
    width: 100%;
    background: #2d3c69;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #2d3c69;
    transform: translateY(-2px);
    color: #fff;
}

ol,
ul {
    padding-left: 0 !important;
}

/* section 3 */
.comparison-section {
    max-width: 72rem;
    display: flex;
    flex-direction: column;
    margin: 60px auto 20px;
    gap: 1.5rem;
}

.section-title {
    font-size: 3.2rem;
    font-family: "Playfair Display";
    letter-spacing: 1px;
    color: #2d3c69;
    text-align: left;
    text-transform: uppercase;
    margin-top: 2em;
}

.table-wrapper {
    overflow-x: auto;
    position: relative;
    background-color: #fff;
    border-radius: 16px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table thead {
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 4px 14px #2d3c6966;
}

.comparison-table th {
    color: white;
    font-weight: 600;
    padding: 1rem;
    text-align: left;
    font-size: 1rem;
    font-family: "Playfair Display";
    border-right: 1px solid rgba(0, 0, 0, 0.479);
    background-color: #2d3c69;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.comparison-table th:last-child {
    border-right: none;
}

/* .comparison-table th:first-child {
    background: rgb(41, 56, 87);
    min-width: 250px;
} */

.comparison-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: background 0.2s ease;
}

.comparison-table tbody tr:hover {
    background: #f1f5f9;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table td {
    padding: 1rem;
    border-right: 1px solid #e2e8f0;
    color: #2d3c69;
    font-family: poppins;
}

.comparison-table td:last-child {
    border-right: none;
}

/* .comparison-table td:first-child {
    font-weight: 600;
    color: #1e293b;
    background: #f8fafc;
} */

.dash-icon {
    color: #cbd5e1;
    font-size: 1.25rem;
}

.price-cell {
    font-weight: 600;
    color: rgb(41, 56, 87);
}

.sec-cta-button {
    width: 100% !important;
    display: block;
    color: #fff;
    background-color: #2d3c69;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    text-align: center;
    padding: 10px 25px !important;
    text-decoration: none;
    font-size: 14px;
    line-height: 25px;
    border-radius: 21px;
    border: none;
    transition: background-color 0.2s ease, box-shadow 0.3s ease;
}

.sec-cta-button:hover {
    background: #d5c28b;
    color: #2d3b68 !important;
}

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

/* Sticky header on scroll */
.sticky-header-spacer {
    height: 0;
    transition: height 0.2s ease;
}

.comparison-table thead.scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* cta section  */
/* Section Styling */
.growth-section {
    background: linear-gradient(135deg, #2d3c69, #2d3c69);
    padding: 100px 20px;
    margin: 60px 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* border-radius: 30px; */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Gradient Shapes */
.shape-1 {
    position: absolute;
    top: -23%;
    left: -3%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    filter: blur(7px);
    background: rgb(255 255 255 / 7%);
    z-index: 1;
}

.shape-2 {
    position: absolute;
    bottom: -22%;
    right: -6%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(7px);
    background: rgb(255 255 255 / 7%);
    z-index: 1;
}

.growth-section h1 {
    font-size: 3rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.growth-section p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.ctaSec-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 2;
}

.ctaSec-buttons a {
    background-color: #fff;
    color: rgb(41, 56, 87);
    padding: 10px 35px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    font-family: "Poppins";
    cursor: pointer;
}

.ctaSec-buttons a:hover {
    background-color: #d5c28b;
    color: #2d3b68;
}

.modal-content {
    backdrop-filter: blur(12px);
    background-color: #ffffff85;
}

/* testimonials */
#testimonialSec {
    overflow: hidden;
}
#customers-container {
    width: 100%;
    max-width: 1100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    margin: auto;
}

div.customers-col-1 {
    width: 75%;
    align-content: center;
    padding: 0;
    text-align: center;
    margin-bottom: 40px;
}

div.customers-col-1 h1 {
    font-size: 75px;
    font-family: "Playfair Display", sans-serif;
    margin-bottom: 15px;
    color: #2d3c69;
    line-height: 5rem;
}

div.customers-col-1 p {
    line-height: 1.6;
    color: #666;
    font-weight: 400;
    margin-bottom: 100px;
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
}

div.customers-col-2 {
    width: 100%;
    position: relative;
    cursor: grab;
}

div.customers-col-2:active {
    cursor: grabbing;
}
.slider-container-outer {
    display: block;
    height: 100%;
    width: 100%;
    position: relative;
}
.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    transition: transform 0.8s ease-in-out;
    flex-direction: column;
    align-items: center;
    padding: 30px 30px;
    text-align: center;
    z-index: 98;
    display: flex;
    justify-content: space-evenly;
}

.slide::before {
    content: "";
    clip-path: polygon(0 0, 0% 100%, 100% 0);
    background-color: #ebebeb;
    width: 50px;
    height: 50px;
    position: absolute;
    top: -1px;
    left: -1px;
}

.slide.active {
    transform: translateX(0);
    z-index: 98;
    z-index: 98;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.slide.prev {
    transform: translateX(-100%);
}

.customer-image {
    /* width: 100%; */
    border-radius: 50px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    user-select: none;
    pointer-events: none;
}

.slide h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.slide p {
    font-size: 1rem;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 20px;
    font-style: italic;
}

.slide .customer-name {
    font-weight: bold;
    color: #ffffff;
    font-size: 1.1rem;
}

.slide .customer-role {
    color: #ffffff;
    font-size: 0.9rem;
    margin-top: 5px;
}

.slider-col-same-1 {
    background-color: #2d3c69;
}

.slider-col-same-2 {
    background-color: #c4a36a;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
}

.slider-arrow--prev {
    left: -60px;
}

.slider-arrow--next {
    right: -60px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    max-width: 10%;
    width: 100%;
}

.slider-dot {
    width: 80%;
    height: 4px;
    background-color: #ccc;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s, width 0.3s;
}

.slider-dot.active {
    background-color: #333;
    width: 100%;
}

/* Pricing Section */

.pricing-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0;
}

.pricing-toggle .toggle-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.pricing-toggle .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}

.pricing-toggle .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing-toggle .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 5px;
    right: 0;
    bottom: 0;
    background-color: #ffbf00;
    transition: 0.4s;
    border-radius: 34px;
}

.pricing-toggle .slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 5px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.pricing-toggle input:checked + .slider {
    background-color: var(--primary-color);
}

.pricing-toggle input:checked + .slider:before {
    transform: translateX(21px);
}

.pricing-card {
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px !important;
    min-height: 465px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-tier {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-family: "montserrat";
}

.pricing-revenue {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-family: "poppins";
}

.pricing-amount {
    color: #2d3b68;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    font-family: "Playfair Display";
    font-variant: lining-nums;
    transition: all 0.3s ease;
}

.fa-circle-check:before {
    color: #2d3b68;
}

.pricing-feature {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-family: "poppins";
}

.btn-pricing {
    background-color: #d5c28b;
    border-color: #d5c28b;
    color: #000000;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Poppins";
}

.btn-pricing:hover {
    background-color: #2d3b68;
    border-color: #2d3b68;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 208, 63, 0.4);
    color: #fff;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.payment-icon {
    width: 150px;
    height: auto;
    opacity: 0.7;
}

.cancel-note {
    color: var(--text-light);
    font-size: 12px;
    margin-bottom: 0;
    font-family: "Poppins", sans-serif;
    text-align: left;
    list-style: disc;
    display: list-item;
    margin-left: 12px;
}

button.btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
}

.modal-header {
    border: 0 !important;
}
@media (max-width: 1610px) {
    .card-title {
        font-size: 1.5rem;
    }
    .cards-container {
        max-width: 85%;
    }
    .card {
        min-height: 400px;
    }
}
@media (max-width: 1280px) {
    .card-price {
        font-size: 1.5rem;
    }
    .card-title {
        font-size: 1.3rem;
    }
    .button-group {
        align-items: stretch;
        gap: 10px;
        flex-direction: column;
    }
}
@media (max-width: 1250px) {
    #customers-container {
        max-width: 840px;
    }
}
@media (max-width: 992px) {
    .cards-container {
        flex-direction: column;
    }
    .card {
        min-height: unset;
    }
    .button-group {
        align-items: center;
        gap: 10px;
        flex-direction: row;
        padding-top: 0;
    }
    .cta-button,
    .collapse-btn {
        margin-top: 0px;
    }
    .sec-cta-button {
        padding: 5px 10px !important;
    }
    .hero-title {
        font-size: 2.6rem;
        margin-bottom: 10px;
    }
    .subHeading {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .section-title {
        font-size: 2.6rem;
        text-align: center;
    }
    #customers-container {
        max-width: 600px;
        display: flex !important;
    }
}
@media (max-width: 550px) {
    #customers-container {
        max-width: 330px;
    }
    .slide p {
        font-size: 12px;
        margin-bottom: 10px;
    }
    .slide h3 {
        font-size: 16px;
    }
    .slide .customer-name {
        font-size: 16px;
    }
    .slide .customer-role {
        font-size: 14px;
    }
}
@media (min-width: 576px) {
    .modal-dialog {
        max-width: 70% !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .growth-section h1 {
        font-size: 2.5rem;
    }

    .growth-section p {
        font-size: 1.1rem;
    }

    .ctaSec-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cards-container {
        flex-direction: column;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .container {
        max-width: 90%;
    }

    .comparison-table {
        font-size: 0.875rem;
        min-width: 950px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }

    .comparison-table th:first-child {
        min-width: 180px;
    }

    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }

    .table thead {
        display: none;
    }

    .table,
    .table tbody,
    .table tr,
    .table td {
        display: block;
        width: 100%;
    }

    .table tr {
        margin-bottom: 1rem;
        border: 1px solid #dee2e6;
        border-radius: 10px;
        padding: 10px;
        background: #fff;
    }

    .table td {
        border: none;
        position: relative;
        padding-left: 45%;
        text-align: left;
    }

    .table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        top: 10px;
        font-weight: 600;
        color: #2d3c69;
    }

    .table-wrapper::-webkit-scrollbar {
        height: 8px;
        width: 8px;
    }

    .table-wrapper::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .table-wrapper::-webkit-scrollbar-thumb {
        background: #2d3c69;
        border-radius: 10px;
        transition: background 0.3s ease;
    }

    .table-wrapper::-webkit-scrollbar-thumb:hover {
        background: #2d3c69;
    }
    .hero-title {
        font-size: 2.6rem;
        margin-bottom: 10px;
    }
    .subHeading {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .hero-sub-title {
        font-size: 16px;
    }
    #customers-container {
        max-width: 400px;
        display: flex !important;
    }
}

@media (max-width: 480px) {
    .growth-section {
        padding: 60px 10px;
    }

    .ctaSec-buttons a {
        font-size: 1rem;
        padding: 12px 25px;
    }

    .section-title {
        font-size: 1.25rem;
        padding: 0.875rem;
    }

    .comparison-table {
        font-size: 0.8125rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.625rem 0.375rem;
    }

    .comparison-table th:first-child {
        min-width: 150px;
    }

    .cta-button {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    .hero-section {
        min-height: 470px;
    }
    .hero-title {
        font-size: 1.5rem;
    }
    .subHeading {
        font-size: 16px;
    }
    .hero-sub-title {
        font-size: 14px;
        margin: 0;
    }
}
