/* ========================================
   TEAM PAGE STYLES - Veridian Solutions
   ======================================== */

/* ========================================
   PAGE TITLE SECTION (Shared with Service Pages)
   ======================================== */

/* Page Title Section */
.page-title {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-green) 100%);
    padding: 80px 0 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.page-title .heading {
    position: relative;
    z-index: 2;
}

.page-title .service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-title .service-badge i {
    font-size: 16px;
}

.page-title h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
    letter-spacing: -1px;
}

.page-title p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}



/* ========================================
   ANIMATED PAGE TITLE (About Page) - REDESIGNED
   ======================================== */

/* More compact page title */
.page-title-animated {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-green) 100%);
    padding: 60px 0 45px;
    /* Reduced from 80px/60px to make it more compact */
    position: relative;
    overflow: hidden;
}

/* Animated Translation Text Background - More subtle and compact */
.page-title-animated::before {
    content: "Hello • Hola • Bonjour • こんにちは • 你好 • Ciao • Привет • مرحبا • Olá • Hallo     Translation • Traducción • Traduction • 翻訳 • 翻译 • Traduzione • Перевод • ترجمة • Tradução • Übersetzung     Language • Idioma • Langue • 言語 • 语言 • Lingua • Язык • لغة • Língua • Sprache";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 200%;
    opacity: 0.9;
    /* More subtle */
    pointer-events: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(40px, 8vw, 100px);
    /* Smaller, more compact */
    line-height: 2;
    color: rgba(255, 255, 255, 0.15);
    white-space: nowrap;
    animation: slideRightSmooth 80s linear infinite;
    z-index: 0;
}

/* Decorative Document Elements */
.page-title-animated::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 200px;
    top: 15%;
    right: 8%;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transform: rotate(12deg);
    animation: floatDocument 8s ease-in-out infinite;
    z-index: 1;
}

/* Floating Translation Icons */
.page-title-animated .heading::before {
    content: "📄";
    position: absolute;
    left: 5%;
    top: 20%;
    font-size: 60px;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.page-title-animated .heading::after {
    content: "🌐";
    position: absolute;
    right: 10%;
    bottom: 10%;
    font-size: 50px;
    opacity: 0.1;
    animation: float 7s ease-in-out infinite 2s;
    z-index: 1;
}

/* Language Symbol Decorations */
.page-title-animated .breadcrumbs::before {
    content: "A";
    position: absolute;
    left: 12%;
    top: -60px;
    font-family: 'Montserrat', sans-serif;
    font-size: 80px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    transform: rotate(-15deg);
    z-index: 1;
}

.page-title-animated .breadcrumbs::after {
    content: "語";
    position: absolute;
    right: 15%;
    top: -50px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 70px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    transform: rotate(15deg);
    z-index: 1;
}

/* Compact heading styles */
.page-title-animated h1 {
    font-size: 42px !important;
    /* Reduced from 48px */
    font-weight: 800;
    margin-bottom: 12px !important;
    /* More compact */
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.page-title-animated p {
    font-size: 16px !important;
    /* Reduced from 18px */
    margin-bottom: 0;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.page-title-animated .service-badge {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    padding: 6px 18px !important;
    /* More compact */
    font-size: 12px !important;
    margin-bottom: 14px !important;
    position: relative;
    z-index: 2;
}

/* Ensure text is white on dark background */
.page-title-animated h1,
.page-title-animated .service-badge,
.page-title-animated p {
    color: white !important;
}

.page-title-animated .breadcrumbs ol li a {
    color: rgba(255, 255, 255, 0.9);
}

.page-title-animated .breadcrumbs ol li {
    color: rgba(255, 255, 255, 0.7);
}

.page-title-animated .breadcrumbs ol li.current {
    color: rgba(255, 255, 255, 0.95);
}

/* Translation Symbols Floating Around */
.page-title-animated .container {
    position: relative;
}

.page-title-animated .container::before {
    content: "⟳";
    position: absolute;
    right: 5%;
    top: 30%;
    font-size: 45px;
    color: rgba(255, 255, 255, 0.08);
    animation: rotate360 10s linear infinite;
    z-index: 1;
}

.page-title-animated .container::after {
    content: "⇄";
    position: absolute;
    left: 8%;
    bottom: 20%;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.08);
    animation: pulse 3s ease-in-out infinite;
    z-index: 1;
}

/* Smooth Animations */
@keyframes slideRightSmooth {
    0% {
        transform: translateY(-50%) translateX(-50%);
    }

    100% {
        transform: translateY(-50%) translateX(0%);
    }
}

@keyframes floatDocument {

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

    50% {
        transform: rotate(15deg) translateY(-15px);
    }
}

@keyframes float {

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

    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

@keyframes rotate360 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

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

    50% {
        opacity: 0.12;
        transform: scale(1.1);
    }
}

/* Globe particles effect */
.page-title-animated .heading .col-lg-8::before {
    content: "●";
    position: absolute;
    left: -30px;
    top: 50%;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.3);
    animation: twinkle 2s ease-in-out infinite;
}

.page-title-animated .heading .col-lg-8::after {
    content: "●";
    position: absolute;
    right: -30px;
    top: 50%;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.3);
    animation: twinkle 2s ease-in-out infinite 1s;
}

@keyframes twinkle {

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

    50% {
        opacity: 0.8;
        transform: scale(1.5);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-title-animated {
        padding: 50px 0 40px;
    }

    .page-title-animated h1 {
        font-size: 36px !important;
    }

    .page-title-animated::after,
    .page-title-animated .heading::before,
    .page-title-animated .heading::after {
        display: none;
        /* Hide some decorations on tablets */
    }
}

@media (max-width: 768px) {
    .page-title-animated {
        padding: 45px 0 35px;
    }

    .page-title-animated::before {
        font-size: clamp(30px, 6vw, 70px);
        line-height: 1.8;
    }

    .page-title-animated h1 {
        font-size: 30px !important;
    }

    .page-title-animated p {
        font-size: 15px !important;
    }

    .page-title-animated .breadcrumbs::before,
    .page-title-animated .breadcrumbs::after {
        font-size: 50px;
        top: -40px;
    }
}

@media (max-width: 576px) {
    .page-title-animated {
        padding: 40px 0 30px;
    }

    .page-title-animated h1 {
        font-size: 26px !important;
    }

    .page-title-animated p {
        font-size: 14px !important;
    }

    /* Hide decorative elements on mobile */
    .page-title-animated .breadcrumbs::before,
    .page-title-animated .breadcrumbs::after,
    .page-title-animated .container::before,
    .page-title-animated .container::after {
        display: none;
    }
}

/* Translation Background Animation */
.translation-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.08;
    pointer-events: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(40px, 8vw, 120px);
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    overflow: hidden;
}

.translation-line {
    white-space: nowrap;
}

.translation-line-1 {
    animation: slideRight 25s linear infinite;
}

.translation-line-2 {
    animation: slideLeft 30s linear infinite;
    margin-top: 20px;
}

.translation-line-3 {
    animation: slideRight 35s linear infinite;
    margin-top: 20px;
}

/* Floating Language Icons */
.floating-icon {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.floating-icon-1 {
    top: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: rgba(76, 175, 80, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-icon-1 i {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.3);
}

.floating-icon-2 {
    top: 60%;
    right: 15%;
    width: 70px;
    height: 70px;
    background: rgba(129, 199, 132, 0.1);
    animation: float 8s ease-in-out infinite 2s;
}

.floating-icon-2 i {
    font-size: 36px;
    color: rgba(255, 255, 255, 0.3);
}

.floating-icon-3 {
    top: 35%;
    right: 8%;
    width: 65px;
    height: 65px;
    background: rgba(165, 214, 167, 0.1);
    animation: float 7s ease-in-out infinite 1s;
}

.floating-icon-3 i {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.3);
}

/* Page Title Brand Styling */
.page-title-brand {
    font-size: 56px !important;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.page-title-brand span {
    color: var(--primary-light);
}

.page-title-tagline {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 16px;
}

.page-title-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

.page-title-badge {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

/* Animations */
@keyframes slideRight {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes slideLeft {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Responsive adjustments for floating icons */
@media (max-width: 768px) {
    .page-title-brand {
        font-size: 40px !important;
    }

    .floating-icon-1 {
        width: 60px;
        height: 60px;
    }

    .floating-icon-1 i {
        font-size: 30px;
    }

    .floating-icon-2 {
        width: 50px;
        height: 50px;
    }

    .floating-icon-2 i {
        font-size: 26px;
    }

    .floating-icon-3 {
        width: 45px;
        height: 45px;
    }

    .floating-icon-3 i {
        font-size: 22px;
    }
}

/* Breadcrumbs - More compact */
.breadcrumbs {
    background: rgba(27, 94, 32, 0.95);
    padding: 14px 0;
    /* Reduced from 16px */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.breadcrumbs ol li {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs ol li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs ol li a:hover {
    color: white;
}

.breadcrumbs ol li.current {
    color: white;
}

.breadcrumbs ol li+li::before {
    content: "/";
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   TEAM PAGE SPECIFIC STYLES
   ======================================== */

/* Team Overview Section */
.team-overview {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-green);
    background: var(--accent-mint);
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-header .lead-text {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* Team Member Card */
.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(45, 106, 79, 0.15);
}

.team-member-image {
    position: relative;
    overflow: hidden;
    height: 320px;
    background: linear-gradient(135deg, var(--accent-mint) 0%, var(--accent-sage) 100%);
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-member:hover .team-member-image img {
    transform: scale(1.08);
}

.team-member-info {
    padding: 30px;
    text-align: center;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.member-role {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.member-bio {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.expertise-tag {
    font-size: 0.85rem;
    padding: 6px 14px;
    background: var(--accent-mint);
    color: var(--primary-green);
    border-radius: 20px;
    font-weight: 500;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-mint);
    color: var(--primary-green);
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.member-social a:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-3px);
}

/* Leadership Section */
.leadership-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent-mint) 0%, rgba(165, 214, 167, 0.3) 100%);
}

.leadership-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.leadership-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 0;
}

.leadership-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-green) 100%);
}

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

.leadership-details {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.leadership-header {
    margin-bottom: 30px;
}

.leadership-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.leadership-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.leadership-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.credential-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: var(--accent-mint);
    color: var(--primary-green);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.credential-badge i {
    font-size: 14px;
}

.leadership-bio {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.leadership-bio p {
    margin-bottom: 16px;
}

.leadership-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--accent-mint);
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.leadership-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.leadership-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-mint);
    color: var(--primary-green);
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.leadership-social a:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-3px);
}

/* Team Values Section */
.team-values {
    padding: 80px 0;
    background: white;
}

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

.value-card {
    background: white;
    border: 2px solid var(--accent-mint);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.value-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(45, 106, 79, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-mint) 0%, var(--accent-sage) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-green);
    font-size: 36px;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-emerald) 100%);
    color: white;
    transform: rotateY(360deg);
}

.value-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Join Team CTA Section */
.join-team-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-green) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.join-team-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.join-team-cta .cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.join-team-cta h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.join-team-cta p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.cta-feature i {
    font-size: 24px;
    color: var(--accent-sage);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-custom {
    padding: 16px 45px;
    font-size: 1.1rem;
    background: white;
    color: var(--primary-green);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-primary-custom:hover {
    background: var(--accent-sage);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-secondary-outline {
    padding: 15px 40px;
    font-size: 1.1rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-secondary-outline:hover {
    background: white;
    color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* ========================================
   ABOUT PAGE SPECIFIC STYLES
   ======================================== */

/* Company Overview */
.about-overview {
    padding: 80px 0;
    background: white;
}

.about-images-wrapper {
    position: relative;
}

.image-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.image-main img {
    width: 100%;
    height: auto;
    display: block;
}

.image-offset {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 45%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(45, 106, 79, 0.2);
    border: 6px solid white;
}

.image-offset img {
    width: 100%;
    height: auto;
    display: block;
}

.experience-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-emerald) 100%);
    color: white;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(45, 106, 79, 0.3);
}

.experience-badge .years {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.experience-badge .text {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
    opacity: 0.95;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-content .highlight-text {
    font-size: 1.3rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 2px solid var(--accent-mint);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: var(--accent-mint);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-green);
}

.trust-item i {
    font-size: 18px;
}

/* Mission & Vision Cards */
.mission-vision {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent-mint) 0%, rgba(165, 214, 167, 0.3) 100%);
}

.mission-card,
.vision-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(45, 106, 79, 0.15);
}

.mission-card .card-icon,
.vision-card .card-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-emerald) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
}

.mission-card .card-content h3,
.vision-card .card-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.mission-card .card-content p,
.vision-card .card-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

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

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent-mint) 0%, rgba(165, 214, 167, 0.3) 100%);
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-green) 0%, var(--accent-emerald) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.timeline-item.right {
    justify-content: flex-start;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-marker .year {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: white;
    border: 4px solid var(--primary-green);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-green);
    box-shadow: 0 4px 20px rgba(45, 106, 79, 0.2);
}

.timeline-content {
    width: 45%;
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s ease;
}

.timeline-item.left .timeline-content {
    margin-right: 55%;
}

.timeline-item.right .timeline-content {
    margin-left: 55%;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(45, 106, 79, 0.15);
}

.timeline-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-emerald) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
}

.timeline-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Certifications Section */
.certifications-section {
    padding: 80px 0;
    background: white;
}

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

.cert-card {
    background: white;
    border: 2px solid var(--accent-mint);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.cert-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(45, 106, 79, 0.15);
}

.cert-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-mint) 0%, var(--accent-sage) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-green);
    font-size: 36px;
    transition: all 0.4s ease;
}

.cert-card:hover .cert-icon {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-emerald) 100%);
    color: white;
    transform: rotate(360deg);
}

.cert-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.cert-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-green) 100%);
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

/* ========================================
   About Page Responsive Design
   ======================================== */

@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

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

@media (max-width: 992px) {
    .section-header h2 {
        font-size: 2rem;
    }

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

    .leadership-image {
        height: 350px;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-marker {
        left: 30px;
    }

    .timeline-marker .year {
        width: 70px;
        height: 70px;
        font-size: 1rem;
    }

    .timeline-item,
    .timeline-item.right {
        justify-content: flex-start;
    }

    .timeline-content {
        width: calc(100% - 100px);
        margin-left: 100px !important;
        margin-right: 0 !important;
    }

    .mission-card,
    .vision-card {
        flex-direction: column;
        gap: 20px;
    }

    .mission-card .card-icon,
    .vision-card .card-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}

@media (max-width: 768px) {

    .about-overview,
    .mission-vision,
    .values-section,
    .timeline-section,
    .certifications-section,
    .team-overview,
    .leadership-section,
    .team-values,
    .join-team-cta {
        padding: 60px 0;
    }

    .trust-indicators {
        gap: 12px;
        padding-top: 16px;
        margin-top: 16px;
    }

    .trust-item {
        padding: 8px 14px;
        font-size: 12px;
    }

    .trust-item i {
        font-size: 16px;
    }

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

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header .lead-text {
        font-size: 1.1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline-marker .year {
        width: 60px;
        height: 60px;
        font-size: 0.9rem;
    }

    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        padding: 25px 20px;
    }

    .timeline-content h4 {
        font-size: 1.2rem;
    }

    .mission-card,
    .vision-card {
        padding: 30px 25px;
    }

    .mission-card .card-content h3,
    .vision-card .card-content h3 {
        font-size: 1.5rem;
    }

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

    .btn-secondary-outline,
    .btn-primary-custom {
        width: 100%;
        text-align: center;
    }

    .leadership-details {
        padding: 35px 25px;
    }

    .leadership-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .join-team-cta h2 {
        font-size: 2rem;
    }

    .join-team-cta p {
        font-size: 1.1rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 20px;
    }

    .image-offset {
        display: none;
    }

    .about-content {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {

    .trust-indicators {
        gap: 8px;
    }

    .trust-item {
        font-size: 11px;
        padding: 6px 12px;
    }

    .trust-item i {
        font-size: 14px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-marker {
        left: 20px;
    }

    .timeline-marker .year {
        width: 50px;
        height: 50px;
        font-size: 0.8rem;
    }

    .timeline-content {
        width: calc(100% - 70px);
        margin-left: 70px !important;
    }

    .value-icon,
    .cert-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .mission-card .card-icon,
    .vision-card .card-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .join-team-cta {
        padding: 70px 0;
    }

    .join-team-cta h2 {
        font-size: 1.75rem;
    }

    .cta-box h2 {
        font-size: 2rem;
    }

    .cta-box p {
        font-size: 1.1rem;
    }

    .experience-badge {
        padding: 20px;
        top: 20px;
        left: 20px;
    }

    .experience-badge .years {
        font-size: 2.5rem;
    }
}