/* 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;
}

/* 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: #6b46c1;
    --dark-purple: #553c9a;
    --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;
}

.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: pulse 2s infinite;
}

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

.logo-main {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    text-transform: none !important;
}

.logo-sub {
    font-size: 0.9rem;
    color: var(--dark-gray);
    text-transform: none !important;
}

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

.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: var(--pink);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    animation: bounce 2s infinite;
}

.btn-primary:hover {
    background: #d61f69;
}

.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: 100vh;
    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;
    filter: blur(2px);
}

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

.hero-content {
    background: rgba(107, 70, 193, 0.9);
    padding: 4rem;
    border-radius: 0 50px 50px 0;
    max-width: 500px;
    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: 2rem;
    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;
}

.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;
}

/* 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;
}

.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, var(--pink), #d63384);
    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 rgba(236, 72, 153, 0.3);
    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 rgba(236, 72, 153, 0.4);
}

/* We Add Value Section */
.we-add-value {
    padding: 80px 0;
    background: #5e2363;
    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(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 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: #4a214d;
    padding: 3rem;
    border-radius: 15px;
    max-width: 100%;
}

.local-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    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;
}

.stars {
    color: var(--pink);
}

.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.7fr 1fr 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);
    font-size: 1.5rem;
    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;
}


.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);
    }

    .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;
    }

    .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;
    }


    .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;
}

}






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


    .local-content {

        padding: 1.5rem;

    }

}