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

:root {
    --color-teal: #1a2332;          /* Rich Navy Blue - sophisticated, professional, less generic than pure teal/black */
    --color-purple: #673c8f;         /* Purple - kept as preferred */
    --color-white: #ffffff;
}

body {
    font-family: Roboto, sans-serif;
    line-height: 1.6;
    color: var(--color-teal);
    font-weight: 400;
}

.hero {
    display: flex;
    align-items: center;
    background: var(--color-white);
    padding: 2rem;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-accent {
    position: absolute;
    top: 0;
    left: -2rem;
    right: -6rem;
    bottom: 0;
    background: var(--color-purple);
    z-index: -1;
    height: 100%;
    width: 150%;
    border-radius: 0 0 80px 0;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 3rem 2.5rem;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-teal);
    margin-bottom: 0.5rem;
}

.brand-name {
    color: var(--color-teal);
    font-size: 3.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-white);
    line-height: 1.5;
}

.hero-description {
    font-size: 1rem;
    color: var(--color-teal);
    line-height: 1.7;
    opacity: 0.9;
}

.hero-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--color-teal);
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px 8px 50px 8px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, background 0.3s ease;
    margin-top: 1rem;
    align-self: flex-start;
    box-shadow: 0 6px 20px rgba(26, 35, 50, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}




.hero-cta:active {
    transform: translateY(-2px) scale(1.02);
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    z-index: 2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px 0 0 120px;
    box-shadow: -15px 15px 50px rgba(26, 35, 50, 0.2), 0 0 0 8px rgba(103, 60, 143, 0.1);
    position: relative;
    z-index: 2;
    transform: scale(0.9) rotate(-1deg);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}


/* Responsive Design */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image-wrapper {
        order: -1;
        min-height: 400px;
    }

    .hero-accent {
        left: -1.5rem;
        right: -1.5rem;
    }

    .hero-text-content {
        padding: 2.5rem 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .brand-name {
        font-size: 2.75rem;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 1.5rem;
    }

    .hero-container {
        gap: 2rem;
    }

    .hero-accent {
        left: -1rem;
        right: -1rem;
    }

    .hero-text-content {
        padding: 2rem 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .brand-name {
        font-size: 2.25rem;
        display: block;
        margin-bottom: 0.25rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
}

/* Stats Section */
.stats-section {
    padding: 6rem 2rem;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stats-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: var(--color-teal);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    letter-spacing: -0.02em;
}

.stats-title.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.stats-intro {
    max-width: 800px;
    margin: 0 auto 5rem;
    text-align: center;
}

.stats-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-teal);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.stats-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(103, 60, 143, 0.05) 0%, rgba(26, 35, 50, 0.05) 100%);
    border-radius: 24px 0px 24px 0px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border 0.3s ease;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(103, 60, 143, 0.1), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
    opacity: 0;
}


.stat-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-card:nth-child(1).visible {
    transition-delay: 0.1s;
}

.stat-card:nth-child(2).visible {
    transition-delay: 0.2s;
}

.stat-card:nth-child(3).visible {
    transition-delay: 0.3s;
}


.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-purple);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.stat-suffix {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-purple);
    display: inline-block;
    margin-left: 0.2rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--color-teal);
    line-height: 1.6;
    margin-top: 1rem;
}

.stats-cta {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.stats-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.stats-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--color-purple);
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px 50px 8px 50px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, background 0.3s ease;
    box-shadow: 0 6px 20px rgba(103, 60, 143, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stats-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.stats-button:hover::after {
    left: 100%;
}

.stats-button:hover {
    transform: translateY(-4px) scale(1.05) rotate(-1deg);
    background: var(--color-teal);
    box-shadow: 0 10px 35px rgba(26, 35, 50, 0.4), 0 0 0 2px rgba(103, 60, 143, 0.2);
}

.stats-button:active {
    transform: translateY(-2px) scale(1.02);
}

/* Responsive Stats Section */
@media (max-width: 968px) {
    .stats-section {
        padding: 4rem 1.5rem;
    }

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

    .stat-card {
        padding: 2rem 1.5rem;
    }

    .stat-number,
    .stat-suffix {
        font-size: 3rem;
    }

    .stats-text {
        font-size: 1.1rem;
    }

    .stats-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .stats-section {
        padding: 3rem 1rem;
    }

    .stats-intro {
        margin-bottom: 3rem;
    }

    .stat-number,
    .stat-suffix {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    .stats-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .stats-button {
        padding: 0.875rem 2.5rem;
        font-size: 1rem;
    }
}

/* Services Section */
.services-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(103, 60, 143, 0.03) 0%, rgba(26, 35, 50, 0.03) 100%);
    position: relative;
}

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

.services-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: var(--color-teal);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px) rotateX(10deg);
    transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    letter-spacing: -0.02em;
}

.services-title.visible {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
}

.services-intro {
    font-size: 1.25rem;
    text-align: center;
    color: var(--color-teal);
    max-width: 900px;
    margin: 0 auto 1rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.services-intro.visible {
    opacity: 1;
    transform: translateY(0);
}

.services-intro-text {
    font-size: 1.1rem;
    text-align: center;
    color: var(--color-teal);
    max-width: 900px;
    margin: 0 auto 4rem;
    line-height: 1.7;
    opacity: 0.9;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.services-intro-text.visible {
    opacity: 0.9;
    transform: translateY(0);
}

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

.service-card {
    background: var(--color-white);
    padding: 3rem 2.5rem;
    border-radius: 0px 32px 0px 32px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(50px) rotateX(10deg);
    box-shadow: 0 8px 30px rgba(26, 35, 50, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(26, 35, 50, 0.08);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(103, 60, 143, 0.05), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::after {
    left: 100%;
}



.service-card.visible {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
    transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:nth-child(odd) {
    border-radius: 32px 0px 32px 0px;
}

.service-card:nth-child(even).visible {
    transform: translateY(0) rotateX(0deg) rotateY(-2deg);
}

.service-card:nth-child(even):hover {
    transform: translateY(-10px) rotateX(0deg) rotateY(-4deg);
}

.service-icon {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    height: 60px;
}

.service-icon svg {
    width: auto;
    height: 50px;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-teal);
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1rem;
    color: var(--color-teal);
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.85;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-purple);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    padding: 0.5rem 0;
}

.service-link::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
    font-size: 1.2em;
}

.service-link:hover {
    color: var(--color-teal);
    transform: translateX(8px) scale(1.05);
}

.service-link:hover::after {
    transform: translateX(8px) scale(1.2);
}

/* Responsive Services Section */
@media (max-width: 968px) {
    .services-section {
        padding: 4rem 1.5rem;
    }

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

    .services-title {
        font-size: 2.5rem;
    }

    .services-intro {
        font-size: 1.1rem;
    }

    .services-intro-text {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 640px) {
    .services-section {
        padding: 3rem 1rem;
    }

    .services-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .services-intro {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .services-intro-text {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-name {
        font-size: 1.25rem;
    }

    .service-description {
        font-size: 0.95rem;
    }
}

/* Excellence Section */
.excellence-section {
    padding: 6rem 2rem;
    background: var(--color-white);
    position: relative;
}

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

.excellence-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: var(--color-teal);
    margin-bottom: 2rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.excellence-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.excellence-intro {
    font-size: 1.25rem;
    text-align: center;
    color: var(--color-teal);
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.excellence-intro.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.excellence-card {
    background: linear-gradient(135deg, rgba(103, 60, 143, 0.05) 0%, rgba(26, 35, 50, 0.05) 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px 8px 20px 8px;
    transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    border: 1px solid rgba(26, 35, 50, 0.06);
    position: relative;
}

.excellence-card:nth-child(3n+1) {
    border-radius: 0px 20px 0px 20px;
}

.excellence-card:nth-child(3n+2) {
    border-radius: 20px 20px 8px 8px;
}


.excellence-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.excellence-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-teal);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.excellence-card-description {
    font-size: 1rem;
    color: var(--color-teal);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.excellence-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-purple);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.excellence-link::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.excellence-link:hover {
    color: var(--color-teal);
    transform: translateX(5px);
}

.excellence-link:hover::after {
    transform: translateX(5px);
}

/* Responsive Excellence Section */
@media (max-width: 968px) {
    .excellence-section {
        padding: 4rem 1.5rem;
    }

    .excellence-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .excellence-title {
        font-size: 3rem;
    }

    .excellence-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 640px) {
    .excellence-section {
        padding: 3rem 1rem;
    }

    .excellence-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .excellence-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .excellence-intro {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .excellence-card {
        padding: 2rem 1.5rem;
    }

    .excellence-card-title {
        font-size: 1.25rem;
    }

    .excellence-card-description {
        font-size: 0.95rem;
    }
}

/* Skillset Section */
.skillset-section {
    padding: 6rem 2rem;
    background: var(--color-white);
    position: relative;
}

.skillset-container {
    max-width: 1400px;
    margin: 0 auto;
}

.skillset-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.skillset-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    z-index: 2;
}

.skillset-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 120px 0 40px;
    box-shadow: 15px 15px 50px rgba(26, 35, 50, 0.2), 0 0 0 8px rgba(103, 60, 143, 0.1);
    position: relative;
    z-index: 2;
    transform: rotate(1deg);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.skillset-image-wrapper:hover .skillset-image {
    transform: rotate(-0.5deg) scale(1.02);
}

.skillset-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skillset-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-teal);
    line-height: 1.2;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.skillset-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.skillset-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-purple);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.skillset-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

.skillset-text {
    font-size: 1.1rem;
    color: var(--color-teal);
    line-height: 1.7;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.skillset-text.visible {
    opacity: 0.9;
    transform: translateY(0);
}

.skillset-text-highlight {
    font-size: 1.1rem;
    color: var(--color-teal);
    line-height: 1.7;
    font-weight: 600;
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.skillset-text-highlight.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Timeline Section */
.skillset-timeline {
    margin-top: 4rem;
}

.timeline-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: var(--color-teal);
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.timeline-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

.skill-category {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    display: flex;
    gap: 2rem;
}

.skill-category.visible {
    opacity: 1;
    transform: translateY(0);
}

.skill-category-header {
    margin-bottom: 2rem;
}

.skill-category-label {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-purple);
}

.skill-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.skill-item {
    padding-right: 2rem;
    border-right: 1px solid rgba(26, 35, 50, 0.1);
}

.skill-item:last-child {
    border-right: none;
    padding-right: 0;
}

.skill-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-teal);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.skill-item-description {
    font-size: 0.95rem;
    color: var(--color-teal);
    line-height: 1.6;
    opacity: 0.85;
}

/* Responsive Skillset Section */
@media (max-width: 968px) {
    .skillset-section {
        padding: 4rem 1.5rem;
    }

    .skillset-intro {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .skillset-image-wrapper {
        order: -1;
        min-height: 400px;
    }

    .skillset-title {
        font-size: 2.5rem;
    }

    .skillset-subtitle {
        font-size: 1.25rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .skill-items {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .skill-item {
        border-right: none;
        border-bottom: 1px solid rgba(26, 35, 50, 0.1);
        padding-right: 0;
        padding-bottom: 2rem;
    }

    .skill-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .skill-category-label {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .skillset-section {
        padding: 3rem 1rem;
    }

    .skillset-intro {
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .skillset-title {
        font-size: 2rem;
    }

    .skillset-subtitle {
        font-size: 1.1rem;
    }

    .skillset-text,
    .skillset-text-highlight {
        font-size: 1rem;
    }

    .timeline-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .skills-grid {
        gap: 2.5rem;
    }

    .skill-category-label {
        font-size: 2rem;
    }

    .skill-item-title {
        font-size: 1.1rem;
    }

    .skill-item-description {
        font-size: 0.9rem;
    }

    .skill-items {
        gap: 1.5rem;
    }

    .skill-item {
        padding-bottom: 1.5rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .skill-items {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .skill-item {
        border-right: none;
        border-bottom: 1px solid rgba(26, 35, 50, 0.1);
        padding-right: 0;
        padding-bottom: 2rem;
    }

    .skill-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .skill-category-label {
        font-size: 2.5rem;
    }
}

/* Expertise Section */
.expertise-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(103, 60, 143, 0.03) 0%, rgba(26, 35, 50, 0.03) 100%);
    position: relative;
}

.expertise-container {
    max-width: 1400px;
    margin: 0 auto;
}

.expertise-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: var(--color-teal);
    margin-bottom: 2rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.expertise-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.expertise-intro {
    font-size: 1.25rem;
    text-align: center;
    color: var(--color-teal);
    max-width: 900px;
    margin: 0 auto 4rem;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.expertise-intro.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.expertise-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 12px 24px 12px 24px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    box-shadow: 0 8px 25px rgba(26, 35, 50, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(26, 35, 50, 0.08);
    position: relative;
}

.expertise-card:nth-child(3n+2) {
    border-radius: 24px 12px 24px 12px;
}

.expertise-card:nth-child(4n+3) {
    border-radius: 16px 16px 24px 24px;
}

.expertise-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.expertise-card:hover {
    transform: translateY(-8px) scale(1.03) rotate(0.5deg);
    box-shadow: 0 15px 40px rgba(103, 60, 143, 0.2), 0 0 0 2px rgba(103, 60, 143, 0.1);
}

.expertise-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-teal);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.expertise-card-description {
    font-size: 1rem;
    color: var(--color-teal);
    line-height: 1.6;
    opacity: 0.85;
}

/* Responsive Expertise Section */
@media (max-width: 968px) {
    .expertise-section {
        padding: 4rem 1.5rem;
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .expertise-title {
        font-size: 3rem;
    }

    .expertise-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 640px) {
    .expertise-section {
        padding: 3rem 1rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .expertise-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .expertise-intro {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .expertise-card {
        padding: 2rem 1.5rem;
    }

    .expertise-card-title {
        font-size: 1.25rem;
    }

    .expertise-card-description {
        font-size: 0.95rem;
    }
}


/* Solutions Section */
.solutions-section {
    padding: 6rem 2rem;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.solutions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(103, 60, 143, 0.05) 0%, rgba(26, 35, 50, 0.05) 100%);
    z-index: 0;
    border-radius: 0 100px 0 0;
}

.solutions-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.solutions-text-wrapper {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.solutions-text-wrapper.visible {
    opacity: 1;
    transform: translateX(0);
}

.solutions-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-teal);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.solutions-description {
    font-size: 1.1rem;
    color: var(--color-teal);
    line-height: 1.8;
    opacity: 0.9;
}

.solutions-image-wrapper {
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.solutions-image-wrapper.visible {
    opacity: 1;
    transform: translateX(0);
}

.solutions-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 0 100px;
    box-shadow: 0 15px 50px rgba(26, 35, 50, 0.2);
    min-height: 500px;
}

/* Hires Section */
.hires-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(103, 60, 143, 0.03) 0%, rgba(26, 35, 50, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.hires-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.05) 0%, rgba(103, 60, 143, 0.05) 100%);
    z-index: 0;
    border-radius: 100px 0 0 0;
}

.hires-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.hires-image-wrapper {
    order: -1;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hires-image-wrapper.visible {
    opacity: 1;
    transform: translateX(0);
}

.hires-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100px 0 0 0;
    box-shadow: 0 15px 50px rgba(26, 35, 50, 0.2);
    min-height: 500px;
}

.hires-text-wrapper {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hires-text-wrapper.visible {
    opacity: 1;
    transform: translateX(0);
}

.hires-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-teal);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hires-description {
    font-size: 1.1rem;
    color: var(--color-teal);
    line-height: 1.8;
    opacity: 0.9;
}

/* Responsive Solutions & Hires Sections */
@media (max-width: 968px) {
    .solutions-section,
    .hires-section {
        padding: 4rem 1.5rem;
    }

    .solutions-content,
    .hires-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .solutions-section::before,
    .hires-section::after {
        display: none;
    }

    .solutions-image-wrapper,
    .hires-image-wrapper {
        order: -1;
    }

    .solutions-title,
    .hires-title {
        font-size: 3rem;
    }

    .solutions-description,
    .hires-description {
        font-size: 1rem;
    }

    .solutions-image,
    .hires-image {
        border-radius: 20px;
        min-height: 400px;
    }
}

@media (max-width: 640px) {
    .solutions-section,
    .hires-section {
        padding: 3rem 1rem;
    }

    .solutions-content,
    .hires-content {
        gap: 2rem;
    }

    .solutions-title,
    .hires-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .solutions-description,
    .hires-description {
        font-size: 0.95rem;
    }

    .solutions-image,
    .hires-image {
        min-height: 300px;
    }
}


/* How We Work Section */
.how-we-work-section {
    padding: 6rem 2rem;
    background: var(--color-white);
    position: relative;
}

.how-we-work-container {
    max-width: 1400px;
    margin: 0 auto;
}

.how-we-work-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: var(--color-teal);
    margin-bottom: 2rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.how-we-work-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.how-we-work-intro {
    font-size: 1.25rem;
    text-align: center;
    color: var(--color-teal);
    max-width: 800px;
    margin: 0 auto 5rem;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.how-we-work-intro.visible {
    opacity: 1;
    transform: translateY(0);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 120px;
    left: 60px;
    right: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-purple) 0%, var(--color-teal) 100%);
    z-index: 0;
    opacity: 0.2;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.step-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-teal) 100%);
    border-radius: 50%;
    opacity: 0.1;
    transform: scale(1);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.step-card:hover .step-number-bg {
    transform: scale(1.1);
    opacity: 0.15;
}

.step-number {
    position: relative;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-purple);
    z-index: 2;
    line-height: 1;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-teal);
    margin-bottom: 1rem;
}

.step-description {
    font-size: 1rem;
    color: var(--color-teal);
    line-height: 1.7;
    opacity: 0.85;
}

/* Responsive How We Work Section */
@media (max-width: 968px) {
    .how-we-work-section {
        padding: 4rem 1.5rem;
    }

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

    .steps-container::before {
        display: none;
    }

    .how-we-work-title {
        font-size: 3rem;
    }

    .how-we-work-intro {
        font-size: 1.1rem;
        margin-bottom: 4rem;
    }

    .step-number-wrapper {
        width: 100px;
        height: 100px;
    }

    .step-number {
        font-size: 3rem;
    }

    .step-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .how-we-work-section {
        padding: 3rem 1rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .how-we-work-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .how-we-work-intro {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .step-number-wrapper {
        width: 90px;
        height: 90px;
        margin-bottom: 1.5rem;
    }

    .step-number {
        font-size: 2.5rem;
    }

    .step-title {
        font-size: 1.25rem;
    }

    .step-description {
        font-size: 0.95rem;
    }
}


/* Solutions Section */
.solutions-section {
    padding: 6rem 2rem;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.solutions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(103, 60, 143, 0.05) 0%, rgba(26, 35, 50, 0.05) 100%);
    z-index: 0;
    border-radius: 0 100px 0 0;
}

.solutions-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.solutions-text-wrapper {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.solutions-text-wrapper.visible {
    opacity: 1;
    transform: translateX(0);
}

.solutions-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-teal);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.solutions-description {
    font-size: 1.1rem;
    color: var(--color-teal);
    line-height: 1.8;
    opacity: 0.9;
}

.solutions-image-wrapper {
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.solutions-image-wrapper.visible {
    opacity: 1;
    transform: translateX(0);
}

.solutions-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 0 100px;
    box-shadow: 0 15px 50px rgba(26, 35, 50, 0.2);
    min-height: 500px;
}

/* Hires Section */
.hires-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(103, 60, 143, 0.03) 0%, rgba(26, 35, 50, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.hires-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.05) 0%, rgba(103, 60, 143, 0.05) 100%);
    z-index: 0;
    border-radius: 100px 0 0 0;
}

.hires-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.hires-image-wrapper {
    order: -1;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hires-image-wrapper.visible {
    opacity: 1;
    transform: translateX(0);
}

.hires-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100px 0 0 0;
    box-shadow: 0 15px 50px rgba(26, 35, 50, 0.2);
    min-height: 500px;
}

.hires-text-wrapper {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hires-text-wrapper.visible {
    opacity: 1;
    transform: translateX(0);
}

.hires-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-teal);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hires-description {
    font-size: 1.1rem;
    color: var(--color-teal);
    line-height: 1.8;
    opacity: 0.9;
}

/* Responsive Solutions & Hires Sections */
@media (max-width: 968px) {
    .solutions-section,
    .hires-section {
        padding: 4rem 1.5rem;
    }

    .solutions-content,
    .hires-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .solutions-section::before,
    .hires-section::after {
        display: none;
    }

    .solutions-image-wrapper,
    .hires-image-wrapper {
        order: -1;
    }

    .solutions-title,
    .hires-title {
        font-size: 3rem;
    }

    .solutions-description,
    .hires-description {
        font-size: 1rem;
    }

    .solutions-image,
    .hires-image {
        border-radius: 20px;
        min-height: 400px;
    }
}

@media (max-width: 640px) {
    .solutions-section,
    .hires-section {
        padding: 3rem 1rem;
    }

    .solutions-content,
    .hires-content {
        gap: 2rem;
    }

    .solutions-title,
    .hires-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .solutions-description,
    .hires-description {
        font-size: 0.95rem;
    }

    .solutions-image,
    .hires-image {
        min-height: 300px;
    }
}

/* Expertise Section */
.expertise-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(103, 60, 143, 0.03) 0%, rgba(26, 35, 50, 0.03) 100%);
    position: relative;
}

.expertise-container {
    max-width: 1400px;
    margin: 0 auto;
}

.expertise-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: var(--color-teal);
    margin-bottom: 2rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.expertise-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.expertise-intro {
    font-size: 1.25rem;
    text-align: center;
    color: var(--color-teal);
    max-width: 900px;
    margin: 0 auto 4rem;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.expertise-intro.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.expertise-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 12px 24px 12px 24px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    box-shadow: 0 8px 25px rgba(26, 35, 50, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(26, 35, 50, 0.08);
    position: relative;
}

.expertise-card:nth-child(3n+2) {
    border-radius: 24px 12px 24px 12px;
}

.expertise-card:nth-child(4n+3) {
    border-radius: 16px 16px 24px 24px;
}

.expertise-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.expertise-card:hover {
    transform: translateY(-8px) scale(1.03) rotate(0.5deg);
    box-shadow: 0 15px 40px rgba(103, 60, 143, 0.2), 0 0 0 2px rgba(103, 60, 143, 0.1);
}

.expertise-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-teal);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.expertise-card-description {
    font-size: 1rem;
    color: var(--color-teal);
    line-height: 1.6;
    opacity: 0.85;
}

/* Responsive Expertise Section */
@media (max-width: 968px) {
    .expertise-section {
        padding: 4rem 1.5rem;
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .expertise-title {
        font-size: 3rem;
    }

    .expertise-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 640px) {
    .expertise-section {
        padding: 3rem 1rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .expertise-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .expertise-intro {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .expertise-card {
        padding: 2rem 1.5rem;
    }

    .expertise-card-title {
        font-size: 1.25rem;
    }

    .expertise-card-description {
        font-size: 0.95rem;
    }
}


/* How We Work Section */
.how-we-work-section {
    padding: 6rem 2rem;
    background: var(--color-white);
    position: relative;
}

.how-we-work-container {
    max-width: 1400px;
    margin: 0 auto;
}

.how-we-work-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: var(--color-teal);
    margin-bottom: 2rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.how-we-work-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.how-we-work-intro {
    font-size: 1.25rem;
    text-align: center;
    color: var(--color-teal);
    max-width: 800px;
    margin: 0 auto 5rem;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.how-we-work-intro.visible {
    opacity: 1;
    transform: translateY(0);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 120px;
    left: 60px;
    right: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-purple) 0%, var(--color-teal) 100%);
    z-index: 0;
    opacity: 0.2;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.step-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-teal) 100%);
    border-radius: 50%;
    opacity: 0.1;
    transform: scale(1);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.step-card:hover .step-number-bg {
    transform: scale(1.1);
    opacity: 0.15;
}

.step-number {
    position: relative;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-purple);
    z-index: 2;
    line-height: 1;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-teal);
    margin-bottom: 1rem;
}

.step-description {
    font-size: 1rem;
    color: var(--color-teal);
    line-height: 1.7;
    opacity: 0.85;
}

/* Responsive How We Work Section */
@media (max-width: 968px) {
    .how-we-work-section {
        padding: 4rem 1.5rem;
    }

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

    .steps-container::before {
        display: none;
    }

    .how-we-work-title {
        font-size: 3rem;
    }

    .how-we-work-intro {
        font-size: 1.1rem;
        margin-bottom: 4rem;
    }

    .step-number-wrapper {
        width: 100px;
        height: 100px;
    }

    .step-number {
        font-size: 3rem;
    }

    .step-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .how-we-work-section {
        padding: 3rem 1rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .how-we-work-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .how-we-work-intro {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .step-number-wrapper {
        width: 90px;
        height: 90px;
        margin-bottom: 1.5rem;
    }

    .step-number {
        font-size: 2.5rem;
    }

    .step-title {
        font-size: 1.25rem;
    }

    .step-description {
        font-size: 0.95rem;
    }
}


/* Industries Section */
.industries-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(103, 60, 143, 0.03) 0%, rgba(26, 35, 50, 0.03) 100%);
    position: relative;
}

.industries-container {
    max-width: 1400px;
    margin: 0 auto;
}

.industries-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: var(--color-teal);
    margin-bottom: 2rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.industries-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.industries-intro {
    font-size: 1.25rem;
    text-align: center;
    color: var(--color-teal);
    max-width: 900px;
    margin: 0 auto 4rem;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.industries-intro.visible {
    opacity: 1;
    transform: translateY(0);
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: flex-start;
}

.industry-card {
    flex: 0 0 calc(25% - 1.5rem);
    min-width: 250px;
}

@media (min-width: 969px) {
    .industry-card:nth-child(5) {
        margin-left: auto;
    }
    
    .industry-card:nth-child(7) {
        margin-right: auto;
    }
}

.industry-card {
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    opacity: 0;
    cursor: pointer;
}

.industry-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.industry-icon {
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.industry-icon svg {
    width: auto;
    height: 50px;
    transition: transform 0.3s ease;
}

.industry-icon svg path,
.industry-icon svg g {
    transition: fill 0.3s ease, stroke 0.3s ease;
}

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

.industry-card:hover .industry-icon svg path,
.industry-card:hover .industry-icon svg g {
    fill: var(--color-teal);
    stroke: var(--color-teal);
}

.industry-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-teal);
    line-height: 1.4;
}

/* Responsive Industries Section */
@media (max-width: 968px) {
    .industries-section {
        padding: 4rem 1.5rem;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industry-card {
        grid-column: auto;
        padding: 2.5rem 1.5rem;
    }

    .industries-title {
        font-size: 3rem;
    }

    .industries-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .industry-icon {
        height: 50px;
    }
    
    .industry-icon svg {
        height: 45px;
    }
}

@media (max-width: 640px) {
    .industries-section {
        padding: 3rem 1rem;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .industry-card {
        grid-column: auto;
    }

    .industries-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .industries-intro {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .industry-card {
        padding: 2rem 1.5rem;
    }

    .industry-icon {
        height: 45px;
        margin-bottom: 1rem;
    }
    
    .industry-icon svg {
        height: 40px;
    }

    .industry-name {
        font-size: 1.1rem;
    }
}


/* Testimonials Section */
.testimonials-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(103, 60, 143, 0.05) 0%, rgba(26, 35, 50, 0.05) 100%);
    position: relative;
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: var(--color-teal);
    margin-bottom: 4rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.testimonials-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonials-slider {
    position: relative;
    margin-bottom: 3rem;
}

.testimonials-track {
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 2rem 0;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-body {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--color-teal);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 1.1rem;
    color: var(--color-purple);
    margin: 0;
}

.testimonial-author b {
    font-weight: 600;
}

.testimonials-prev,
.testimonials-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-white);
    border: 2px solid var(--color-purple);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--color-purple);
    font-size: 1.5rem;
}

.testimonials-prev {
    left: -80px;
}

.testimonials-next {
    right: -80px;
}

.testimonials-prev:hover,
.testimonials-next:hover {
    background: var(--color-purple);
    color: var(--color-white);
    transform: translateY(-50%) scale(1.1);
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--color-purple);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dot.active {
    background: var(--color-purple);
    transform: scale(1.2);
}

.testimonial-dot:hover {
    background: var(--color-teal);
    border-color: var(--color-teal);
}

/* Responsive Testimonials Section */
@media (max-width: 968px) {
    .testimonials-section {
        padding: 4rem 1.5rem;
    }

    .testimonials-title {
        font-size: 3rem;
        margin-bottom: 3rem;
    }

    .testimonial-body {
        font-size: 1.25rem;
    }

    .testimonials-prev {
        left: -20px;
    }

    .testimonials-next {
        right: -20px;
    }
}

@media (max-width: 640px) {
    .testimonials-section {
        padding: 3rem 1rem;
    }

    .testimonials-title {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .testimonial-body {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .testimonial-author {
        font-size: 1rem;
    }

    .testimonials-prev,
    .testimonials-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .testimonials-prev {
        left: -10px;
    }

    .testimonials-next {
        right: -10px;
    }
}

/* Clients/Logos Section */
.clients-section {
    padding: 6rem 2rem;
    background: var(--color-white);
    position: relative;
}

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

.clients-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: var(--color-teal);
    margin-bottom: 4rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.clients-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.clients-logos {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.client-logo {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    flex: 0 0 auto;
}

.client-logo.visible {
    opacity: 1;
    transform: translateY(0);
}
.logo-link img {
    scale: 2;
    filter: brightness(0) invert(1);
}
.logo-img {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Responsive Clients Section */
@media (max-width: 968px) {
    .clients-section {
        padding: 4rem 1.5rem;
    }

    .clients-title {
        font-size: 3rem;
        margin-bottom: 3rem;
    }

    .clients-logos {
        gap: 2.5rem;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 1rem 0;
    }

    .logo-img {
        max-width: 100px;
        max-height: 50px;
    }
}

@media (max-width: 640px) {
    .clients-section {
        padding: 3rem 1rem;
    }

    .clients-title {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .clients-logos {
        gap: 2rem;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 1rem 0;
    }

    .logo-img {
        max-width: 80px;
        max-height: 40px;
    }
}

/* Contact Section */
.contact-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(103, 60, 143, 0.03) 0%, rgba(26, 35, 50, 0.03) 100%);
    position: relative;
}

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

.contact-header {
    text-align: center;
    margin-bottom: 5rem;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-teal);
    margin-bottom: 3rem;
    line-height: 1.3;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-info {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact-info.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-text {
    font-size: 1.25rem;
    color: var(--color-teal);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.contact-link {
    color: var(--color-purple);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--color-teal);
    text-decoration: underline;
}

.contact-note {
    font-size: 1rem;
    color: var(--color-teal);
    opacity: 0.8;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.contact-links {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(19, 52, 54, 0.1);
}

.contact-subtext {
    font-size: 1rem;
    color: var(--color-teal);
    margin-bottom: 0.5rem;
}

.contact-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(26, 35, 50, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact-form-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-teal);
    margin-bottom: 2.5rem;
    text-align: center;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-teal);
    margin-bottom: 0.5rem;
}

.required {
    color: var(--color-purple);
}

.form-input {
    padding: 1rem 1.25rem;
    border: 2px solid rgba(26, 35, 50, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--color-teal);
    background: var(--color-white);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-purple);
    box-shadow: 0 0 0 3px rgba(103, 60, 143, 0.1);
}

.form-input::placeholder {
    color: rgba(26, 35, 50, 0.5);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.form-actions {
    margin-top: 2.5rem;
    text-align: center;
}

.form-submit {
    padding: 1rem 3rem;
    background: var(--color-purple);
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(103, 60, 143, 0.2);
}

.form-submit:hover {
    background: var(--color-teal);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 35, 50, 0.3);
}

.form-submit:active {
    transform: translateY(0);
}

/* Responsive Contact Section */
@media (max-width: 968px) {
    .contact-section {
        padding: 4rem 1.5rem;
    }

    .contact-title {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .contact-text {
        font-size: 1.1rem;
    }

    .contact-form-wrapper {
        padding: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group {
        margin-bottom: 2rem;
    }
}

@media (max-width: 640px) {
    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .contact-text {
        font-size: 1rem;
    }

    .contact-note {
        font-size: 0.95rem;
    }

    .contact-links {
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .form-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .form-submit {
        width: 100%;
        padding: 1rem 2rem;
    }
}

/* Header Navigation */
.main-header {
    background: var(--color-teal);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(26, 35, 50, 0.2);
}

.main-nav {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    flex-shrink: 0;
}

.logo-link {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    text-decoration: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.logo-link:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
    position: relative;
}

.nav-link:hover {
    opacity: 0.8;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-white);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.25rem;
}

.nav-toggle-bar {
    width: 25px;
    height: 3px;
    background: var(--color-white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Footer */
.main-footer {
    background: var(--color-teal);
    color: var(--color-white);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo-section {
    max-width: 100%;
}

.footer-logo {
    max-width: 100px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.footer-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--color-white);
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Responsive Navigation and Footer */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: var(--color-teal);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .nav-toggle-bar:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active .nav-toggle-bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .nav-toggle-bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-logo-section {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .logo-link {
        font-size: 1rem;
    }

    .main-footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer-text,
    .footer-link {
        font-size: 0.95rem;
    }
}

/* About Page Styles */
.about-hero-section {
    padding: 8rem 2rem 6rem;
    background: linear-gradient(135deg, rgba(103, 60, 143, 0.05) 0%, rgba(26, 35, 50, 0.05) 100%);
    text-align: center;
}

.about-hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--color-teal);
    margin-bottom: 2rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-hero-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-purple);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-hero-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-content-section {
    padding: 6rem 2rem;
    background: var(--color-white);
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-intro,
.about-values,
.about-approach,
.about-network,
.about-cta {
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-intro.visible,
.about-values.visible,
.about-approach.visible,
.about-network.visible,
.about-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-teal);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-teal);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.about-text strong {
    color: var(--color-purple);
    font-weight: 600;
}

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

.value-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(103, 60, 143, 0.03) 0%, rgba(4, 21, 22, 0.03) 100%);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 35, 50, 0.1);
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-purple);
    margin-bottom: 1rem;
}

.value-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-teal);
    opacity: 0.85;
}

.about-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(103, 60, 143, 0.05) 0%, rgba(26, 35, 50, 0.05) 100%);
    border-radius: 20px;
}

.about-cta-button {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--color-purple);
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(103, 60, 143, 0.2);
    margin-top: 2rem;
}

.about-cta-button:hover {
    background: var(--color-teal);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 35, 50, 0.3);
}

/* Responsive About Page */
@media (max-width: 968px) {
    .about-hero-section {
        padding: 6rem 1.5rem 4rem;
    }

    .about-hero-title {
        font-size: 3rem;
    }

    .about-hero-subtitle {
        font-size: 1.25rem;
    }

    .about-content-section {
        padding: 4rem 1.5rem;
    }

    .about-section-title {
        font-size: 2rem;
    }

    .about-text {
        font-size: 1.05rem;
    }

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

    .about-intro,
    .about-values,
    .about-approach,
    .about-network,
    .about-cta {
        margin-bottom: 4rem;
    }
}

@media (max-width: 640px) {
    .about-hero-section {
        padding: 5rem 1rem 3rem;
    }

    .about-hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .about-hero-subtitle {
        font-size: 1.1rem;
    }

    .about-content-section {
        padding: 3rem 1rem;
    }

    .about-section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .about-text {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .value-card {
        padding: 2rem 1.5rem;
    }

    .value-title {
        font-size: 1.25rem;
    }

    .about-cta {
        padding: 3rem 1.5rem;
    }

    .about-cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

/* Contact Page Styles */
.contact-hero-section {
    padding: 8rem 2rem 6rem;
    background: linear-gradient(135deg, rgba(103, 60, 143, 0.05) 0%, rgba(26, 35, 50, 0.05) 100%);
    text-align: center;
}

.contact-hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--color-teal);
    margin-bottom: 2rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact-hero-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-purple);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact-hero-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-page-section {
    padding: 6rem 2rem;
    background: var(--color-white);
}

.contact-page-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-section,
.contact-form-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact-form-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-teal);
    margin-bottom: 2.5rem;
    line-height: 1.3;
    text-align: center;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--color-purple);
    margin-top: 0.25rem;
    min-width: 24px;
}

.contact-detail-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-teal);
    margin-bottom: 0.5rem;
}

.contact-detail-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-teal);
    opacity: 0.85;
}

.contact-link {
    color: var(--color-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--color-teal);
    text-decoration: underline;
}

.contact-note {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-teal);
    opacity: 0.8;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(103, 60, 143, 0.05) 0%, rgba(26, 35, 50, 0.05) 100%);
    border-radius: 12px;
    margin-bottom: 3rem;
}

.contact-links-section {
    padding-top: 2rem;
    border-top: 1px solid rgba(26, 35, 50, 0.1);
}

.contact-links-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-teal);
    margin-bottom: 1rem;
}

.contact-subtext {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-teal);
    opacity: 0.85;
    margin-bottom: 0.75rem;
}

.contact-page-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-page-form .form-group.full-width {
    grid-column: 1;
}

.contact-page-form label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-teal);
    margin-bottom: 0.5rem;
}

.contact-page-form .required {
    color: var(--color-purple);
}

.contact-page-form input,
.contact-page-form textarea,
.contact-page-form select {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    border: 2px solid rgba(4, 21, 22, 0.2);
    border-radius: 8px;
    background: var(--color-white);
    color: var(--color-teal);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.contact-page-form input:focus,
.contact-page-form textarea:focus,
.contact-page-form select:focus {
    outline: none;
    border-color: var(--color-purple);
    box-shadow: 0 0 0 3px rgba(103, 60, 143, 0.1);
}

.contact-page-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-page-form .honeypot {
    display: none;
}

.contact-page-form .form-actions {
    grid-column: 1 / -1;
    margin-top: 1rem;
}

.contact-page-form .form-submit {
    padding: 1.25rem 3rem;
    background: var(--color-purple);
    color: var(--color-white);
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(103, 60, 143, 0.2);
}

.contact-page-form .form-submit:hover {
    background: var(--color-teal);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 35, 50, 0.3);
}

.contact-page-form .form-submit:active {
    transform: translateY(0);
}

/* Responsive Contact Page */
@media (max-width: 968px) {
    .contact-hero-section {
        padding: 6rem 1.5rem 4rem;
    }

    .contact-hero-title {
        font-size: 3rem;
    }

    .contact-hero-subtitle {
        font-size: 1.25rem;
    }

    .contact-page-section {
        padding: 4rem 1.5rem;
    }

    .contact-page-container {
        max-width: 100%;
    }

    .contact-page-title {
        font-size: 2rem;
    }

    .contact-detail-item {
        margin-bottom: 2rem;
    }
}

@media (max-width: 640px) {
    .contact-hero-section {
        padding: 5rem 1rem 3rem;
    }

    .contact-hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-hero-subtitle {
        font-size: 1.1rem;
    }

    .contact-page-section {
        padding: 3rem 1rem;
    }

    .contact-page-container {
        gap: 2.5rem;
    }

    .contact-page-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .contact-page-form {
        grid-template-columns: 1fr;
    }

    .contact-detail-item {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .contact-icon {
        margin-top: 0;
    }

    .contact-note {
        padding: 1.25rem;
        font-size: 0.95rem;
    }

    .contact-page-form .form-submit {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Policy Pages Styles (Privacy Policy & Terms) */
.policy-hero-section {
    padding: 8rem 2rem 6rem;
    background: linear-gradient(135deg, rgba(103, 60, 143, 0.05) 0%, rgba(26, 35, 50, 0.05) 100%);
    text-align: center;
}

.policy-hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.policy-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--color-teal);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.policy-hero-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.policy-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-purple);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.policy-hero-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

.policy-content-section {
    padding: 6rem 2rem;
    background: var(--color-white);
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.policy-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.policy-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-teal);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.policy-section-title:first-of-type {
    margin-top: 0;
}

.policy-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-teal);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.policy-text strong {
    color: var(--color-teal);
    font-weight: 600;
}

.policy-list {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-teal);
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    opacity: 0.9;
}

.policy-list li {
    margin-bottom: 1rem;
}

.policy-list strong {
    color: var(--color-purple);
    font-weight: 600;
}

.policy-contact {
    background: linear-gradient(135deg, rgba(103, 60, 143, 0.05) 0%, rgba(26, 35, 50, 0.05) 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.policy-link {
    color: var(--color-purple);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.policy-link:hover {
    color: var(--color-teal);
    text-decoration: underline;
}

/* Responsive Policy Pages */
@media (max-width: 968px) {
    .policy-hero-section {
        padding: 6rem 1.5rem 4rem;
    }

    .policy-hero-title {
        font-size: 3rem;
    }

    .policy-content-section {
        padding: 4rem 1.5rem;
    }

    .policy-section-title {
        font-size: 1.75rem;
        margin-top: 2.5rem;
    }

    .policy-text,
    .policy-list {
        font-size: 1.05rem;
    }
}

@media (max-width: 640px) {
    .policy-hero-section {
        padding: 5rem 1rem 3rem;
    }

    .policy-hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .policy-hero-subtitle {
        font-size: 1.1rem;
    }

    .policy-content-section {
        padding: 3rem 1rem;
    }

    .policy-section-title {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 1.25rem;
    }

    .policy-text,
    .policy-list {
        font-size: 1rem;
    }

    .policy-list {
        padding-left: 1.5rem;
    }

    .policy-contact {
        padding: 1.5rem;
    }
}
