/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Skip to main content - accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0.5rem;
    z-index: 10000;
    padding: 0.75rem 1rem;
    background: #334e5d;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 4px 0;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 0;
    outline: 3px solid #fff;
    outline-offset: 2px;
}

/* Focus visible for keyboard users */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #334e5d;
    outline-offset: 2px;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-purple);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-purple);
}

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

/* Color Variables */
:root {
    --primary-purple: #334e5d;
    --dark-purple: #334e5d;
    --light-purple: #e9d8fd;
    --pink: #ec4899;
    --light-pink: #fce7f3;
    --white: #ffffff;
    --gray: #f8f9fa;
    --dark-gray: #6c757d;
    --black: #000000;
}

/* Header */
.header {
    background: var(--white);
    padding: 1.5rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    top: 0;
    width: 100%;
    z-index: 1000;
    position: -webkit-sticky;
    position: sticky !important;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    /* background: var(--primary-purple); */
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    animation: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-left: 10px;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 600;
    color: #334e5d;
    text-transform: none !important;
    margin-bottom: 4px;
}

.logo-sub {
    font-size: 0.9rem;
    font-weight: 500;
    color: #375664;
    text-transform: none !important;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.whitec{
    color: white !important;
}
    
.nav a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav a:hover {
    color: var(--primary-purple);
}

.nav a i {
    font-size: 0.8rem;
}

/* Buttons */
.btn-primary {
    background: #334e5d;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    animation: none !important;
}

.btn-primary:hover {
    background: #20343e;
}

.btn-secondary {
    background: var(--primary-purple);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #6d28d9;
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.head-grey {
    color: #334e5d !important;
}


.value-icon {
    animation: none !important;
}

.hero-content {
    background: #ffffffd6;
    padding: 4rem;
    border-radius: 0px;
    max-width: 800px;
    color: var(--white);
    margin-left: 0;
    animation: fadeInLeft 1s ease-out;
}

.hero-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hero-logo .logo-icon {
    background: var(--white);
    color: var(--primary-purple);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
}

.hero-logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.hero-logo .logo-main {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    text-transform: lowercase;
}

.hero-logo .logo-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: lowercase;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Trusted Provider Section */
.trusted-provider {
    padding: 80px 0;
    background: var(--white);
}

.trusted-provider h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--black);
    animation: fadeInUp 1s ease-out;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.text-column p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.cta-container {
    text-align: right;
}

/* Leaders Section */
.leaders {
    padding: 80px 0;
    background: var(--white);
}

.leaders h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--black);
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.leader-card {
    text-align: center;
    background: var(--white);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: scaleIn 0.8s ease-out;
    margin-bottom: 20px;
}

.leader-card:nth-child(1) {
    animation-delay: 0.1s;
}

.leader-card:nth-child(2) {
    animation-delay: 0.3s;
}

.leader-card:nth-child(3) {
    animation-delay: 0.5s;
}

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

.leader-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.leader-card p {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.leader-card p i {
    font-size: 0.8rem;
    color: var(--primary-purple);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.leader-card p i:hover {
    transform: rotate(180deg);
}

.linkedin-link {
    color: var(--primary-purple);
    font-size: 1.5rem;
    text-decoration: none;
}

/* Mission Vision Section */
.mission-vision {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.mission h3,
.vision h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.mission p,
.vision p {
    font-size: 1.1rem;
    line-height: 1.8;
    display: block;
}

/* Values Section */
.values {
    padding: 80px 0;
    background: var(--white);
}

.values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--black);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    place-items: center;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    flex-direction: column;
    animation: fadeInUp 0.8s ease-out;
}

.value-item:nth-child(1) {
    animation-delay: 0.1s;
}

.value-item:nth-child(2) {
    animation-delay: 0.2s;
}

.value-item:nth-child(3) {
    animation-delay: 0.3s;
}

.value-item:nth-child(4) {
    animation-delay: 0.4s;
}

.value-item:nth-child(5) {
    animation-delay: 0.5s;
}

.value-item:nth-child(6) {
    animation-delay: 0.6s;
}



.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #334e5d, #334e5d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgb(51 78 93 / 39%);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.value-item span {
    font-size: 1.1rem;
    font-weight: 500;
}

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

.value-item:hover .value-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px #334e5d63;
}

/* We Add Value Section */
.we-add-value {
    padding: 80px 0;
    background: #5b8392;
    color: var(--white);
}

.value-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.value-header h2 {
    font-size: 2.5rem;
    margin: 0;
    max-width: 60%;
}

.explore-link {
    color: var(--pink);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.explore-link:hover {
    transform: translateY(-2px);
}

.explore-link i {
    font-size: 0.9rem;
}

.value-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.value-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--pink);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.service-link:hover {
    transform: translateX(10px);
    border-bottom: 1px solid var(--pink);
}

.service-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translate(3px, -3px);
}

/* Ready to Outsource Section */
.ready-outsource {
    padding: 80px 0;
    background: #9f2063;
    color: var(--white);
}

.outsource-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 3rem;
    align-items: center;
}

.outsource-icon i {
    font-size: 4rem;
    color: var(--primary-purple);
}

.outsource-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.outsource-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.outsource-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.outsource-cta .btn-secondary {
    background: var(--white);
    color: var(--pink);
    border: 2px solid var(--white);
}

.outsource-cta .btn-secondary:hover {
    background: transparent;
    color: var(--white);
}

/* Industries Section */
.industries {
    padding: 80px 0;
    background: var(--gray);
}

.industries h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--black);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.industry-item i {
    color: var(--primary-purple);
    font-size: 1.2rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--white);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.faq>.container>p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--dark-gray);
}

.faq-item {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--black);
}

.faq-question i {
    color: var(--primary-purple);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    line-height: 1.8;
}

/* Local Accounting Section */



.local-accounting {
    background: linear-gradient(rgb(0 0 0 / 8%), rgb(0 0 0 / 23%)), url(https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80);
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: var(--white);
}

.local-content {
    background: #5b8392de;
    padding: 3rem;
    border-radius: 15px;
    max-width: 100%;
}

.local-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

/* Client Stories Section */
.client-stories {
    padding: 80px 0;
    background: var(--white);
}

.client-stories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.client-stories>.container>p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--dark-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideInFromBottom 0.8s ease-out;
}

.testimonial:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonial:nth-child(2) {
    animation-delay: 0.3s;
}

.testimonial:nth-child(3) {
    animation-delay: 0.5s;
}

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

.testimonial .logo h3 {
    color: var(--primary-purple);
    font-size: 1.2rem;
    white-space: normal;
}

.stars {
    color: #334e5d;
}

.testimonial h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.testimonial p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.client-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.client-info strong {
    color: var(--black);
}

.client-info span {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* Five Pillars Section */
.five-pillars {
    padding: 80px 0;
    background: #b32571;
    color: var(--white);
}

.five-pillars h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.pillar {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: fadeInUp 0.8s ease-out;
}

.pillar:nth-child(1) {
    animation-delay: 0.1s;
}

.pillar:nth-child(2) {
    animation-delay: 0.2s;
}

.pillar:nth-child(3) {
    animation-delay: 0.3s;
}

.pillar:nth-child(4) {
    animation-delay: 0.4s;
}

.pillar:nth-child(5) {
    animation-delay: 0.5s;
}

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

.pillar-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.pillar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pillar:hover .pillar-image img {
    transform: scale(1.05);
}

.pillar-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.pillar-overlay h3 {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
    color: var(--white);
}

.pillar-overlay i {
    font-size: 1.2rem;
    color: var(--white);
    transition: transform 0.3s ease;
    transform: rotate(45deg);
}

.pillar:hover .pillar-overlay i {
    transform: rotate(45deg) translate(3px, 3px);
}

/* Footer */
.footer {
    background: var(--gray);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr;

    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    color: var(--black);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-column p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--primary-purple);
    text-decoration: none;
}

.accreditations {
    border-top: 1px solid #dee2e6;
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.accreditation-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.accreditation-logos span {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid #dee2e6;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    color: var(--dark-gray);
    font-size: 0.9rem;
}




.finance-cta-container {
    margin-top: 3rem;
    margin-bottom: 0;
    text-align: center;
    background: #edf1f3;
    padding: 2.6rem;
    border-radius: 10px;
}

.finance-cta-heading {
    margin-bottom: 1rem;
}

.finance-cta-text {
    text-align: left;
    margin-bottom: 1.5rem;
}

.finance-cta-actions {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.finance-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
    cursor: pointer;
}

/* Email Button */
.finance-cta-email {
    background: #0073e6;
    color: #fff;
}

.finance-cta-email:hover {
    background: #005bb5;
}

/* Call Button */
.finance-cta-call {
    background: #28a745;
    color: #fff;
}

.finance-cta-call:hover {
    background: #1e7e34;
}

.finance-cta-icon {
    width: 18px;
    height: 18px;
}





.services-ul li {
    color: #6c757d;
    ;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
    }

    .hero-content {
        margin: 2rem;
        border-radius: 20px;
        padding: 2rem;
    }

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

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

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        place-items: center;
    }

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

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

    .outsource-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav ul {
        flex-direction: column;
        gap: 1rem;
        color: white !important;
    }

    .nav ul a {

        color: white !important;
    }

    .header .container {
        flex-direction: row;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h2,
    .trusted-provider h2,
    .leaders h2,
    .values h2,
    .we-add-value h2,
    .industries h2,
    .faq h2,
    .local-text h2,
    .client-stories h2,
    .five-pillars h2 {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        place-items: center;
    }

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

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


.linkedin-link i {
    margin: 0 06px;
}



@media screen and (min-device-width: 10px) and (max-device-width: 767px) {
    .value-header a {
        font-size: 12px;
        margin-top: 20px;
    }

    .finance-cta-container {
        padding: 2rem;
    }


    .local-content {
        display: flex;
        flex-direction: column;
    }

    .local-text.right {
        width: 100% !important;
        margin: 20px 0;

    }


    .local-content {

        padding: 1.5rem;

    }


    .local-text.left {
        width: 100% !important;

    }

    .font-14 {
        font-size: 14px !important;
    }


    .aga-bottomp {
        padding-bottom: 10px !important;
    }

    .infocard {

        margin-bottom: 30px;
    }

    .leader-card {
        padding: 16px;
    }


}






@media screen and (min-device-width: 767px) and (max-device-width: 1023px) {


    .infocard {

        margin-bottom: 30px;
    }

    .leader-card {
        padding: 20px;
    }

    .local-content {

        padding: 1.5rem;

    }

}



.mission * {
    text-align: left;
}

.mb-0 {
    margin-bottom: 0 !important;
}


.flag-style {
    margin-bottom: 0;
    font-size: 2rem;
    text-align: center;
    display: block;
}


.back-to-top {
    background: rgb(51 78 93) !important;
}

.main-slider .testimonial {
    width: 600px;
    cursor: default;
}

.main-slider {
    padding-bottom: 30px !important;
    overflow-y: hidden !important;
}

/* Horizontal scrollbar thin banane ke liye */
#slider::-webkit-scrollbar {
    height: 10px;
    /* 🔥 height yaha control hogi */
}






@media screen and (min-device-width: 768px) and (max-device-width: 1025px) {

    .hero {
        height: 50vh !important;
        padding: 20px !important;
        min-height: 50vh !important;
    }

}



.cal-icon {
    height: 24px;
    width: 24px;
}




.infographic-section {
    background: white;
    padding: 90px 20px;
    font-family: inherit;
}

.infographic-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.infocard {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 20px 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;

}

.infocard:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

/* Top Tab */
.tab {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    padding: 4px 20px;
    border-radius: 8px;
}

.tab2 {
    position: absolute;
    right: -9%;
    transform: translateY(39%);
    color: #334e5d;
    font-weight: bold;
    font-size: 0px;
    padding: 0;
    background: #ffffff;
    z-index: 100 !important;
    pointer-events: none;

}


.block-button {
    display: block !important;
    text-align: center !important;
    font-weight: 500 !important;
    color: #051722 !important;
}

.wwu-intro2 {
    font-size: 1.05rem;
    color: white;

    margin: 0 auto 50px;
    text-align: left;
}


.about-us-h3 {

    text-align: left;
    color: white;
}

.t2font {
    font-size: 45px;
}

.tab::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
}

/* Colors for each card */
.c1 .tab {
    background: #334e5d;
}

.c1 .tab::after {
    border-top: 12px solid #334e5d;
}

.c1 .icon i {
    color: #334e5d;
}

.c2 .tab {
    background: #334e5d;
}

.c2 .tab::after {
    border-top: 12px solid #334e5d;
}

.c2 .icon i {
    color: #334e5d;
}

.c3 .tab {
    background: #334e5d;
}

.c3 .tab::after {
    border-top: 12px solid #334e5d;
}

.c3 .icon i {
    color: #334e5d;
}



.c4 .tab {
    background: #334e5d;
}

.c4 .tab::after {
    border-top: 12px solid #334e5d;
}

.c4 .icon i {
    color: #334e5d;
}

.content {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.divider {
    width: 1px;
    background: #ddd;
    height: 60px;
    margin: 0 10px;
}

.text {
    flex: 1;
}

/*
.text h3 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

 .text p {
  margin: 5px 0 0;
  font-size: 13px;
  color: #777;
  line-height: 1.4;
} */

/* Responsive */
@media (max-width: 900px) {
    .infographic-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .infographic-container {
        grid-template-columns: 1fr;
    }
}



.accreditation-logos span img {
    display: block;
    height: 44px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    vertical-align: middle;
}

/* Safari: accreditation logos (SVG scaling & flex) */
@supports (-webkit-hyphens: none) or (-webkit-appearance: none) {
    .accreditation-logos {
        align-items: center;
        -webkit-box-align: center;
    }
    .accreditation-logos span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
    }
    .accreditation-logos span img {
        max-height: 44px;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

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

/* ========== Cross-Browser: Firefox & Safari ========== */

/* --- Firefox: Custom scrollbar (scrollbar-width/color only in Firefox; WebKit uses ::-webkit-scrollbar above) --- */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-purple) #f1f1f1;
}

/* Smooth scroll (Firefox, Safari, Chrome) */
html {
    scroll-behavior: smooth;
}

/* Anchor scroll offset for sticky header (mobile + desktop) */
#what-we-do,
#about-us,
#countries,
#why-works,
#contact {
    scroll-margin-top: 100px;
}

/* --- Safari: Keyframes with -webkit- prefix (older Safari) --- */
@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes scaleIn {
    from {
        opacity: 0;
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes slideInFromBottom {
    from {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes pulse {
    0%, 100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
}

@-webkit-keyframes float {
    0%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    60% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

/* --- Safari: Flexbox / Grid fallbacks & fixes --- */
@supports (-webkit-touch-callout: none) {
    /* Safari-only: fix min-height 100vh on iOS */
    .hero {
        min-height: -webkit-fill-available;
        min-height: 90vh;
    }
    /* Smooth scrolling on iOS */
    .hero,
    .hero-content,
    .value-item,
    .btn-primary {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

/* --- Firefox: Box-sizing (legacy) --- */
*,
*::before,
*::after {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* --- Safari: Transform GPU layer (smoother animations) --- */
.hero-content,
.value-item,
.btn-primary:hover,
.nav a,
.faq-question,
.testimonial,
.pillar,
.industry-card {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* --- Firefox: Focus outline (accessibility) --- */
a:focus,
button:focus {
    outline: 0;
    outline-offset: 0px;
}

/* Form elements: optional - uncomment if you use custom-styled inputs
input, button, select, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
*/

/* --- Mobile: content-visibility disabled so anchor scroll (#contact etc) works correctly --- */

/* ========== Mobile & Tablet: overflow-x hidden, no zoom, fixed header ========== */
/* Tablet: typically 768px–1024px */
@media screen and (max-width: 1024px) {
    html,
    body {
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch;
    }

    /* Fixed header so it stays on top when scrolling (sticky breaks with overflow-x: hidden on mobile) */
    .header {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1000;
    }

    body {
        padding-top: 70px; /* space for fixed header */
    }
}

/* Mobile: typically up to 768px */
@media screen and (max-width: 768px) {
    html,
    body {
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch;
    }
}