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

/* About Hero Section */
.about-hero-section {
    position: relative;
    width: 100%;
    height: 940px;
    min-height: 940px;
    overflow: hidden;
    margin-top: -80px;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

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

.about-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    will-change: transform;
    transform: translate3d(0, 0, 0) scale(1.08);
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 75, 111, 0.75) 0%, rgba(23, 156, 216, 0.65) 100%);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    padding: clamp(2rem, 8vw, 6rem) clamp(1rem, 4vw, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-left: clamp(2rem, 5vw, 4rem);
    padding-top: clamp(10rem, 18vw, 14rem);
}

.about-hero-text {
    color: #ffffff;
    background: rgba(100, 150, 200, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: clamp(1.2rem, 2.5vw, 1.5rem) clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    max-width: min(85%, 600px);
    text-align: left;
}

.about-hero-subtitle {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: #70AEEB;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: "Inter", sans-serif;
}

.about-hero-title {
    font-size: clamp(1.5rem, 5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-family: "Inter", sans-serif;
    color: #ffffff;
}

.about-hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.about-hero-cta {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #fff;
    color: #179cd8;
    transform: translateY(-2px);
}

/* About Story Section */
.about-story-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    z-index: 10;
}

.about-story-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.about-story-header {
    text-align: left;
    margin-bottom: 30px;
}

.about-story-header h2 {
    font-family: "Inter", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.about-story-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.about-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "image header"
        "image text";
    gap: 60px;
    align-items: start;
    margin-top: 0;
}

.about-story-image {
    grid-area: image;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.about-story-header {
    grid-area: header;
}

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

.about-story-text {
    grid-area: text;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.about-story-text p {
    margin-bottom: 20px;
}

.about-story-text strong {
    color: #179cd8;
    font-weight: 600;
}

/* About Foundation Section */
.about-foundation-section {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
    z-index: 10;
}

.about-foundation-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

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

.about-foundation-header h2 {
    font-family: "Inter", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.about-foundation-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.about-foundation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    width: 100%;
}

.foundation-item {
    background: #ffffff;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 500px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.foundation-item::after {
    display: none; /* Remove triangle pointer */
}

.foundation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(135, 206, 250, 0.6) !important;
}

.foundation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: #179cd8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
}

.foundation-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.foundation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Content wrapper for text - positioned at bottom with blue background */
.foundation-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(36, 85, 117, 0.95);
    padding: 15px 25px;
    z-index: 3;
    color: #ffffff;
    max-height: 45%;
    overflow-y: hidden;
}

.foundation-content h3 {
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.foundation-content p {
    font-size: 15px;
    line-height: 1.5;
    color: #ffffff;
    margin: 0;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.values-list li {
    font-size: 15px;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.values-list li i {
    color: #ffffff;
    font-size: 14px;
}

/* About Timeline Section */
.about-timeline-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    z-index: 10;
}

.about-timeline-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

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

.about-timeline-header h2 {
    font-family: "Inter", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.about-timeline-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #179cd8;
}

.about-timeline-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.timeline-container {
    position: relative;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 106px; /* Start below first dot: 76px (dot center) + 30px (half dot height) */
    bottom: 0;
    width: 6px; /* Doubled from 3px */
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-line::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #179cd8;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 2.5s ease-out; /* Slower: increased from 1.5s to 2.5s */
}

.timeline-line.show::before {
    transform: scaleY(1);
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    align-items: flex-start;
}

/* Alternating layout: odd items on left, even items on right */
.timeline-item:nth-child(odd) {
    flex-direction: row;
    padding-right: calc(50% + 50px);
    justify-content: flex-end;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    padding-left: calc(50% + 50px);
    justify-content: flex-end;
}

/* Timeline dot - circular marker on center line, positioned independently from cards */
.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #245575;
    border: 3px solid #ffffff;
    border-radius: 50%;
    z-index: 4;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

/* Position each dot at the vertical center of its corresponding timeline item */
/* Using JavaScript will sync positions dynamically, but CSS fallback positions: */
.timeline-dot[data-year="2008"] {
    top: 40px; /* Will be adjusted by JS to match first item center */
}

.timeline-dot[data-year="2011"] {
    top: 200px; /* Will be adjusted by JS */
}

.timeline-dot[data-year="2014"] {
    top: 360px; /* Will be adjusted by JS */
}

.timeline-dot[data-year="2016"] {
    top: 520px; /* Will be adjusted by JS */
}

.timeline-dot[data-year="2019"] {
    top: 680px; /* Will be adjusted by JS */
}

.timeline-dot[data-year="2024"] {
    top: 840px; /* Will be adjusted by JS */
}

.timeline-year {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    text-align: center;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.timeline-year.show {
    opacity: 1;
    transform: translateY(0);
}

.timeline-content {
    flex: 1;
    background: #ffffff;
    padding: 30px 35px;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    max-width: 500px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 0;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(135, 206, 250, 0.6) !important;
}

.timeline-content::after {
    content: "";
    position: absolute;
    top: 40px; /* Triangle apex aligns with dot center: 40px from card top matches dot center (30px dot radius) */
    border-width: 10px;
    border-style: solid;
    transform: translateY(-10px); /* Shift triangle up by half border-width to center apex at top position */
}

/* Bubble tail points to the center line dot */
.timeline-item:nth-child(odd) .timeline-content::after {
    right: -20px;
    border-color: transparent transparent transparent #ffffff;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
}

.timeline-item:nth-child(even) .timeline-content::after {
    left: -20px;
    border-color: transparent #ffffff transparent transparent;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
}

.timeline-content h3 {
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.3;
}

.timeline-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.timeline-image {
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

/* About Leadership Section */
.about-leadership-section {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
    z-index: 10;
}

.about-leadership-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

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

.about-leadership-header h2 {
    font-family: "Inter", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.about-leadership-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.leadership-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.leadership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(23, 156, 216, 0.2);
}

.leadership-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
    background: #f0f0f0;
}

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

.leadership-img-adjust {
    object-position: center 20% !important;
}

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

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

.leadership-info h3 {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.leadership-role {
    font-size: 16px;
    font-weight: 600;
    color: #179cd8;
    margin-bottom: 15px;
}

.leadership-bio {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* About Life Section */
/* Trusted Partners Section */
.trusted-partners-section {
    padding: 100px 0;
    background: #ffffff;
}

.trusted-partners-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

/* About Metrics Section */
.about-metrics-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #014B6F 0%, #179cd8 100%);
    position: relative;
    z-index: 10;
    color: #ffffff;
}

.about-metrics-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

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

.about-metrics-header h2 {
    font-family: "Inter", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.about-metrics-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.metric-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.metric-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.metric-number {
    font-family: "Inter", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.metric-detail {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* About CTA Section */
.about-cta-section {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
    z-index: 10;
}

.about-cta-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.about-cta-wrapper h2 {
    font-family: "Inter", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.about-cta-wrapper p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

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

.about-cta-buttons .btn-secondary {
    background: #245575;
    color: #ffffff;
    border: 2px solid #245575;
    border-radius: 25px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.about-cta-buttons .btn-secondary:hover {
    background: #179cd8;
    border-color: #179cd8;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ============================================
   DIFFERENTIATORS SECTION
   ============================================ */
.about-differentiators-section {
    padding: 100px 0;
    background: #ffffff;
}

.about-differentiators-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

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

.about-differentiators-header h2 {
    font-family: "Inter", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.about-differentiators-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.differentiator-card {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.differentiator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(23, 156, 216, 0.15);
    border-color: #179cd8;
}

.differentiator-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #179cd8 0%, #245575 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
}

.differentiator-card h3 {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.differentiator-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* ============================================
   SERVICES OVERVIEW SECTION
   ============================================ */
.about-services-section {
    padding: 100px 0;
    background: #f8fafc;
}

.about-services-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

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

.about-services-header h2 {
    font-family: "Inter", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.about-services-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-overview-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #179cd8;
}

.service-overview-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #179cd8 0%, #245575 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
}

.service-overview-card h3 {
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.service-overview-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.service-link {
    color: #179cd8;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #245575;
    gap: 12px;
}

/* ============================================
   MULTI-INDUSTRY STRUCTURE SECTION
   ============================================ */
.about-structure-section {
    padding: 100px 0;
    background: #ffffff;
}

.about-structure-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

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

.about-structure-header h2 {
    font-family: "Inter", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.about-structure-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.structure-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.structure-card {
    background: #f8fafc;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.structure-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(23, 156, 216, 0.15);
    border-color: #179cd8;
    background: #ffffff;
}

.structure-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #179cd8 0%, #245575 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
}

.structure-card h3 {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.structure-cr {
    display: block;
    font-size: 12px;
    color: #179cd8;
    font-weight: 600;
    margin-bottom: 12px;
}

.structure-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 15px 0;
}

.structure-subs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.sub-service {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #179cd8;
    font-weight: 600;
    padding: 4px 10px;
    background: #f0f9ff;
    border-radius: 6px;
}

.sub-service i {
    font-size: 11px;
}

/* ============================================
   FOUNDER MESSAGE
   ============================================ */
.founder-message {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 20px;
    border-left: 5px solid #179cd8;
}

.founder-message-content {
    position: relative;
}

.founder-signature {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    margin-top: 30px;
}

.founder-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #179cd8;
    flex-shrink: 0;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.founder-name-title {
    text-align: right;
}

.founder-quote-icon {
    font-size: 48px;
    color: #179cd8;
    opacity: 0.2;
    margin-bottom: 20px;
}

.founder-quote {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    margin-bottom: 25px;
}

.founder-signature strong {
    display: block;
    font-size: 18px;
    color: #000000;
    margin-bottom: 5px;
}

.founder-signature span {
    font-size: 14px;
    color: #666;
}

/* ============================================
   PARTNERS & CLIENTS SECTION
   ============================================ */
.about-partners-section {
    padding: 100px 0;
    background: #f8fafc;
}

.about-partners-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

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

.about-partners-header h2 {
    font-family: "Inter", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.about-partners-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.partners-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.partner-logo-item {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
}

.partner-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #179cd8;
}

.partner-logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.partner-logo-placeholder i {
    font-size: 48px;
    color: #179cd8;
}

.partner-logo-placeholder span {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

.partners-note {
    text-align: center;
    font-size: 14px;
    color: #888;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   CERTIFICATIONS & AWARDS SECTION
   ============================================ */
.about-certifications-section {
    padding: 100px 0;
    background: #ffffff;
}

.about-certifications-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

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

.about-certifications-header h2 {
    font-family: "Inter", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.about-certifications-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

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

.certification-card {
    background: #f8fafc;
    padding: 40px 35px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(23, 156, 216, 0.15);
    border-color: #179cd8;
    background: #ffffff;
}

.certification-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #179cd8 0%, #245575 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
}

.certification-card h3 {
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.certification-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* ============================================
   FUTURE & VISION STATEMENT SECTION
   ============================================ */
.about-future-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.about-future-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.about-future-header h2 {
    font-family: "Inter", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.about-future-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.future-content {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.future-text h3 {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    margin-top: 30px;
}

.future-text h3:first-child {
    margin-top: 0;
}

.future-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

/* ============================================
   CSR & SUSTAINABILITY SECTION
   ============================================ */
.about-csr-section {
    padding: 100px 0;
    background: #ffffff;
}

.about-csr-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

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

.about-csr-header h2 {
    font-family: "Inter", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.about-csr-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.csr-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.csr-card {
    background: #f8fafc;
    padding: 40px 35px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.csr-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(23, 156, 216, 0.15);
    border-color: #179cd8;
    background: #ffffff;
}

.csr-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #179cd8 0%, #245575 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
}

.csr-card h3 {
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.csr-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.about-faq-section {
    padding: 100px 0;
    background: #ffffff;
}

.about-faq-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.about-faq-header h2 {
    font-family: "Inter", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background: #f8fafc;
    padding: 30px 35px;
    border-radius: 16px;
    border-left: 4px solid #179cd8;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(23, 156, 216, 0.15);
    transform: translateX(5px);
}

.faq-item h3 {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Structure Divisions Text */
.structure-divisions-text {
    margin-top: 40px;
    text-align: center;
    padding: 30px;
    background: #f8fafc;
    border-radius: 16px;
}

.structure-divisions-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.structure-divisions-text a {
    color: #179cd8;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.structure-divisions-text a:hover {
    color: #245575;
    text-decoration: underline;
}

/* Structure Card Links */
.structure-card h3 a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.structure-card h3 a:hover {
    color: #179cd8;
}

/* ============================================
   MEDIA & PRESS SECTION
   ============================================ */
.about-media-section {
    padding: 100px 0;
    background: #f8fafc;
}

.about-media-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.about-media-header h2 {
    font-family: "Inter", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.about-media-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.press-mentions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.press-mention-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    display: flex;
    flex-direction: column;
}

.press-mention-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #179cd8;
}

.press-publication {
    background: linear-gradient(135deg, #179cd8 0%, #245575 100%);
    padding: 20px 25px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.press-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.press-logo i {
    font-size: 24px;
}

.press-name {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.press-type {
    font-size: 12px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.press-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f8fafc;
}

.press-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.press-content {
    padding: 30px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.press-headline {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.4;
}

.press-summary {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
    flex: 1;
}

.press-meta {
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

.press-date {
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 8px;
}

.press-date i {
    color: #179cd8;
}

.press-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #179cd8;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border: 2px solid #179cd8;
    border-radius: 8px;
    text-align: center;
    justify-content: center;
}

.press-link:hover {
    background: #179cd8;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(23, 156, 216, 0.3);
}

.press-link.disabled {
    color: #999;
    border-color: #ddd;
    cursor: not-allowed;
    opacity: 0.6;
}

.press-link.disabled:hover {
    background: transparent;
    color: #999;
    transform: none;
    box-shadow: none;
}

/* ============================================
   GROUP COMPANIES MATRIX SECTION
   ============================================ */
.about-matrix-section {
    padding: 100px 0;
    background: #ffffff;
}

.about-matrix-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

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

.about-matrix-header h2 {
    font-family: "Inter", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.about-matrix-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.matrix-visualization {
    position: relative;
    padding: 60px 40px;
    background: #f8fafc;
    border-radius: 20px;
    margin-top: 40px;
}

.matrix-center {
    text-align: center;
    margin-bottom: 50px;
}

.matrix-main-logo {
    display: inline-block;
    background: linear-gradient(135deg, #179cd8 0%, #245575 100%);
    color: #ffffff;
    padding: 30px 50px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(23, 156, 216, 0.3);
}

.matrix-main-logo h3 {
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.matrix-main-logo p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

.matrix-companies {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.matrix-company-item {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
}

.matrix-company-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(23, 156, 216, 0.15);
    border-color: #179cd8;
}

.matrix-company-item h4 {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.matrix-cr {
    display: block;
    font-size: 11px;
    color: #179cd8;
    font-weight: 600;
    margin-bottom: 5px;
}

.matrix-sub {
    display: block;
    font-size: 10px;
    color: #666;
    font-style: italic;
    margin-top: 4px;
}

/* ============================================
   CAREERS SECTION
   ============================================ */
.about-careers-section {
    padding: 100px 0;
    background: #f8fafc;
}

.about-careers-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.about-careers-header h2 {
    font-family: "Inter", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.about-careers-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.careers-content {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.careers-text h3 {
    font-family: "Inter", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 25px;
}

.careers-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.careers-benefits li {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.careers-benefits li i {
    color: #179cd8;
    font-size: 18px;
    margin-top: 4px;
    flex-shrink: 0;
}

.careers-cta {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid #f8fafc;
}

.careers-cta p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

/* Responsive Design for About Page */
@media (max-width: 1199.98px) {
    .about-story-content {
        grid-template-columns: 1fr;
        grid-template-areas:
            "header"
            "image"
            "text";
        gap: 40px;
    }
    
    .about-foundation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-line {
        left: 60px;
    }
    
    .timeline-dot {
        left: 60px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 100px;
        padding-right: 0 !important;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: row !important;
        padding-left: 100px;
        padding-right: 0 !important;
    }
    
    .timeline-dot {
        width: 50px;
        height: 50px;
    }
    
    .timeline-year {
        font-size: 12px;
    }
    
    .timeline-content {
        padding: 30px 20px;
    }
    
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .about-hero-section {
        height: 600px;
        min-height: 600px;
    }

    .about-hero-overlay {
        /* Match desktop hero tint on mobile */
        background: linear-gradient(135deg, rgba(1, 75, 111, 0.75) 0%, rgba(23, 156, 216, 0.65) 100%);
    }
    
    .about-hero-content {
        margin-left: 15px;
        padding-top: 460px;
        justify-content: flex-start;
    }
    
    .about-hero-text {
        max-width: 90%;
    }
    
    .timeline-content {
        padding: 25px 20px;
        border-radius: 16px;
    }
    
    .timeline-content h3 {
        font-size: 20px;
    }
    
    .timeline-content p {
        font-size: 14px;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-description {
        font-size: 1rem;
    }
    
    .about-hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .about-story-section,
    .about-foundation-section,
    .about-timeline-section,
    .about-leadership-section,
    .about-metrics-section,
    .about-cta-section {
        padding: 60px 0;
    }

    .about-story-content {
        grid-template-areas:
            "header"
            "image"
            "text";
        gap: 24px;
    }

    .about-story-section .container-fluid {
        max-width: 100%;
        padding-left: 10px !important;
        padding-right: 10px !important;
        margin-left: 0;
        margin-right: 0;
    }

    .about-story-wrapper {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    
    .about-story-header h2,
    .about-foundation-header h2,
    .about-timeline-header h2,
    .about-leadership-header h2,
    .about-life-wrapper h2,
    .about-metrics-header h2,
    .about-cta-wrapper h2 {
        font-size: 32px;
    }
    
    .about-foundation-grid {
        grid-template-columns: 1fr;
    }
    
    .foundation-item {
        height: 400px;
    }
    
    .foundation-content {
        padding: 20px 25px;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-item {
        padding-left: 70px;
        padding-right: 0 !important;
    }
    
    .timeline-item:nth-child(even) {
        padding-left: 70px;
        padding-right: 0 !important;
    }
    
    .timeline-dot {
        width: 45px;
        height: 45px;
        border-width: 2px;
    }
    
    .timeline-year {
        font-size: 11px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta-buttons {
        flex-direction: column;
    }
    
    .differentiators-grid,
    .services-overview-grid {
        grid-template-columns: 1fr;
    }

    .about-differentiators-section .container-fluid {
        max-width: 100%;
        padding-left: 10px !important;
        padding-right: 10px !important;
        margin-left: 0;
        margin-right: 0;
    }

    .about-differentiators-wrapper {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .differentiators-grid {
        width: 100%;
        gap: 16px;
    }

    .differentiator-card {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
        padding: 28px 20px;
    }

    .differentiator-card h3 {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        color: #000000 !important;
        font-size: 30px !important;
        line-height: 1.3 !important;
        margin: 14px 0 10px !important;
    }

    .differentiator-card p {
        margin: 0 !important;
    }

    /* Full-width mobile layout across all About sections */
    .about-story-section .container-fluid,
    .about-foundation-section .container-fluid,
    .about-timeline-section .container-fluid,
    .about-leadership-section .container-fluid,
    .about-differentiators-section .container-fluid,
    .about-services-section .container-fluid,
    .about-structure-section .container-fluid,
    .about-partners-section .container-fluid,
    .about-certifications-section .container-fluid,
    .about-future-section .container-fluid,
    .about-csr-section .container-fluid,
    .about-faq-section .container-fluid,
    .about-media-section .container-fluid,
    .about-matrix-section .container-fluid,
    .about-careers-section .container-fluid,
    .about-metrics-section .container-fluid,
    .about-cta-section .container-fluid {
        max-width: 100% !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .about-story-wrapper,
    .about-foundation-wrapper,
    .about-timeline-wrapper,
    .about-leadership-wrapper,
    .about-differentiators-wrapper,
    .about-services-wrapper,
    .about-structure-wrapper,
    .about-partners-wrapper,
    .about-certifications-wrapper,
    .about-future-wrapper,
    .about-csr-wrapper,
    .about-faq-wrapper,
    .about-media-wrapper,
    .about-matrix-wrapper,
    .about-careers-wrapper,
    .about-metrics-wrapper,
    .about-cta-wrapper,
    .trusted-partners-wrapper {
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .structure-grid {
        grid-template-columns: 1fr;
    }
    
    .certifications-grid,
    .csr-grid {
        grid-template-columns: 1fr;
    }
    
    .press-mentions-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .matrix-companies {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .founder-message {
        padding: 30px 25px;
    }
    
    .future-content,
    .careers-content {
        padding: 35px 25px;
    }
    
    .about-faq-wrapper {
        padding: 0 25px;
    }
    
    .faq-item {
        padding: 25px 20px;
    }
    
    .faq-item h3 {
        font-size: 18px;
    }
    
    .structure-divisions-text {
        padding: 20px;
    }
}
