/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #ff6b35;
    --primary-dark: #e55a2b;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --dark-color: #1a252f;
    --darker-color: #0d1419;
    --light-color: #ecf0f1;
    --white-color: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --text-muted: #95a5a6;
    --font-primary: 'Roboto', sans-serif;
    --font-heading: 'Oswald', sans-serif;

    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 5px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 10px 40px rgba(0,0,0,0.2);

    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.section-tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-tag.light {
    background: var(--white-color);
    color: var(--primary-color);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.section-title.light {
    color: var(--white-color);
}

.text-highlight {
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-subtitle.light {
    color: rgba(255,255,255,0.8);
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-light {
    background: var(--white-color);
    color: var(--primary-color);
    box-shadow: var(--shadow-medium);
}

.btn-light:hover {
    background: var(--light-color);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
}

.btn-outline:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 37, 47, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    font-size: 1.5rem;
    color: var(--white-color);
}

.logo-text h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white-color);
    margin: 0;
}

.logo-text span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--white-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white-color);
    font-weight: 500;
}

.nav-contact i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== PAGE HERO WITH UNSPLASH IMAGE ===== */
.page-hero {
    height: 50vh;
    min-height: 400px;

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 80px;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(26, 37, 47, 0.85), rgba(44, 62, 80, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white-color);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.page-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== COMPANY INTRODUCTION (OUR STORY) WITH UNSPLASH IMAGE ===== */
.company-introduction {
    padding: 6rem 0;
    background: var(--white-color);
    position: relative;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.intro-description p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.company-highlights {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-light);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.5rem;
    color: var(--white-color);
}

.highlight-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.3rem;
}

.highlight-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.intro-visual {
    position: relative;
}

.main-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.image-placeholder {
    width: 100%;
    height: 450px;
    background: url('../img/about2.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 37, 47, 0.4), rgba(44, 62, 80, 0.4));
}

.image-placeholder i {
    font-size: 6rem;
    color: var(--primary-color);
    opacity: 0.7;
    position: relative;
    z-index: 1;
}

.image-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
}

.stat-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-heading);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: var(--white-color);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite;
}

.floating-card.quality {
    top: 50px;
    left: -50px;
    animation-delay: 0s;
}

.floating-card.experience {
    bottom: 100px;
    left: -80px;
    animation-delay: 1.5s;
}

.floating-card .card-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-card .card-icon i {
    font-size: 0.9rem;
    color: var(--white-color);
}

.floating-card h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* ===== COMPANY GROWTH (OUR PROGRESS) WITH UNSPLASH IMAGE ===== */
/* ===== COMPANY GROWTH (Enhanced Design) ===== */
.company-growth {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
    color: var(--white-color);
}

.company-growth::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/growth.jpg') center/cover no-repeat;
    opacity: 0.05;
}

.section-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%233498db" fill-opacity="0.03"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
}

/* Section Header */
.company-growth .section-header {
    margin-bottom: 5rem;
}

.company-growth .section-header .section-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

/* Main Growth Content */
.growth-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

/* ===== LEFT SIDE: GROWTH VISUALIZATION ===== */
.growth-visual {
    position: relative;
}

.growth-chart-container {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Chart Header */
.chart-header {
    text-align: center;
    margin-bottom: 3rem;
}

.chart-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 0.5rem;
}

.chart-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin: 0;
}

/* Interactive Timeline */
.interactive-chart {
    margin-bottom: 3rem;
}

.chart-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.chart-timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 25px;
    bottom: 25px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), rgba(52, 152, 219, 0.3));
    z-index: 1;
}

.timeline-item {
    display: grid;
    grid-template-columns: 50px 1fr 100px;
    gap: 2rem;
    align-items: center;
    position: relative;
}

.timeline-dot {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.timeline-dot.active {
    background: linear-gradient(135deg, #27ae60, #229954);
    box-shadow: 0 0 20px rgba(39, 174, 96, 0.4);
    animation: pulse 2s infinite;
}

.timeline-dot i {
    color: var(--white-color);
    font-size: 1.2rem;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(39, 174, 96, 0.4);
    }
    50% {
        box-shadow: 0 0 30px rgba(39, 174, 96, 0.8);
    }
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition);
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.timeline-content h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white-color);
    margin: 0 0 0.5rem 0;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 0.8rem 0;
}

.timeline-date {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.progress-bar {
    width: 100px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #27ae60);
    border-radius: 4px;
    transition: width 2s ease-in-out;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Growth Stats Cards */
.growth-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.growth-stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.growth-stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.growth-stat-card .stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.growth-stat-card .stat-icon i {
    color: var(--white-color);
    font-size: 1.2rem;
}

.growth-stat-card .stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 0.3rem;
}

.growth-stat-card .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== RIGHT SIDE: CONTENT SECTION ===== */
.growth-content-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Description Cards */
.growth-description {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.description-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: var(--transition);
}

.description-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.description-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.description-card .card-icon i {
    color: var(--white-color);
    font-size: 1.5rem;
}

.description-card .card-content h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white-color);
    margin: 0 0 1rem 0;
}

.description-card .card-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

/* Core Strengths Section */
.core-strengths {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
}

.strengths-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white-color);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.strengths-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.strength-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: var(--transition);
}

.strength-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.strength-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.strength-icon i {
    color: var(--white-color);
    font-size: 1.1rem;
}

.strength-content h5 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white-color);
    margin: 0 0 0.5rem 0;
}

.strength-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Growth Highlights Section */
.growth-highlights {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
}

.highlights-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white-color);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.highlights-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #27ae60);
    border-radius: 2px;
}

.highlights-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-achievement {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: var(--transition);
}

.highlight-achievement:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.achievement-badge {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #27ae60, #229954);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.achievement-badge::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #27ae60, #229954);
    border-radius: 50%;
    opacity: 0.3;
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.achievement-badge i {
    color: var(--white-color);
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.achievement-details h5 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white-color);
    margin: 0 0 0.8rem 0;
}

.achievement-details p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .growth-content {
        gap: 4rem;
    }

    .growth-chart-container {
        padding: 2rem;
    }
}

@media (max-width: 992px) {
    .growth-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .timeline-item {
        grid-template-columns: 50px 1fr;
        gap: 1.5rem;
    }

    .progress-bar {
        display: none;
    }

    .growth-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .strengths-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .company-growth {
        padding: 5rem 0;
    }

    .company-growth .section-header .section-title {
        font-size: 2.5rem;
    }

    .growth-chart-container {
        padding: 1.5rem;
    }

    .timeline-item {
        grid-template-columns: 40px 1fr;
        gap: 1rem;
    }

    .timeline-dot {
        width: 40px;
        height: 40px;
    }

    .chart-timeline::before {
        left: 20px;
        top: 20px;
        bottom: 20px;
    }

    .growth-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .description-card,
    .highlight-achievement {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .core-strengths,
    .growth-highlights {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .timeline-content {
        padding: 1rem;
    }

    .chart-title {
        font-size: 1.5rem;
    }

    .description-card .card-icon,
    .achievement-badge {
        width: 50px;
        height: 50px;
    }

    .strength-item {
        padding: 1rem;
    }

    .highlight-achievement {
        padding: 1rem;
    }
}

/* Animation for progress bars */
@keyframes fillProgress25 {
    from { width: 0; }
    to { width: 25%; }
}

@keyframes fillProgress50 {
    from { width: 0; }
    to { width: 50%; }
}

@keyframes fillProgress75 {
    from { width: 0; }
    to { width: 75%; }
}

@keyframes fillProgress100 {
    from { width: 0; }
    to { width: 100%; }
}

.progress-fill[data-progress="25"] {
    animation: fillProgress25 2s ease-in-out forwards;
    animation-delay: 0.5s;
}

.progress-fill[data-progress="50"] {
    animation: fillProgress50 2s ease-in-out forwards;
    animation-delay: 1s;
}

.progress-fill[data-progress="75"] {
    animation: fillProgress75 2s ease-in-out forwards;
    animation-delay: 1.5s;
}

.progress-fill[data-progress="100"] {
    animation: fillProgress100 2s ease-in-out forwards;
    animation-delay: 2s;
}

/* ===== LEADERSHIP SECTION ===== */
.leadership-section {
    padding: 6rem 0;
    background: var(--light-color);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.leadership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.leader-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.leader-card.featured {
    border-top: 5px solid var(--primary-color);
}

.leader-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--dark-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.leader-image .image-placeholder {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leader-image .image-placeholder i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.leader-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leader-badge i {
    color: var(--white-color);
    font-size: 1.2rem;
}

.leader-content {
    padding: 2.5rem;
}

.leader-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.leader-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.leader-experience {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.leader-experience i {
    color: var(--primary-color);
    width: 15px;
}

.leader-description {
    margin: 2rem 0;
}

.leader-description p {
    color: var(--text-light);
    line-height: 1.7;
}

.leader-quote {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    position: relative;
    margin-top: 2rem;
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 1.5rem;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon i {
    color: var(--white-color);
    font-size: 0.9rem;
}

.leader-quote blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--dark-color);
    font-weight: 600;
    margin: 0;
}

.leader-expertise {
    margin-top: 2rem;
}

.leader-expertise h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.expertise-tag {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ===== DIFFERENTIATORS ===== */
.differentiators {
    padding: 6rem 0;
    background: var(--white-color);
}

.differentiators-content {
    max-width: 1000px;
    margin: 0 auto;
}

.diff-header {
    text-align: center;
    margin-bottom: 4rem;
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
}

.diff-card {
    background: var(--light-color);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.diff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.diff-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    background: var(--white-color);
}

.diff-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.diff-icon i {
    font-size: 2rem;
    color: var(--white-color);
}

.diff-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.diff-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.diff-highlight {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== CORE VALUES ===== */
.core-values {
    padding: 6rem 0;
    background: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.values-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(243, 156, 18, 0.1) 100%);
}

.values-content {
    position: relative;
    z-index: 1;
}

.values-header {
    text-align: center;
    margin-bottom: 5rem;
}

.values-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.value-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.15);
    box-shadow: var(--shadow-heavy);
}

.value-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
}

.value-card.integrity .value-bg-pattern {
    background: radial-gradient(circle, var(--primary-color) 2px, transparent 2px);
    background-size: 30px 30px;
}

.value-card.pride .value-bg-pattern {
    background: linear-gradient(45deg, transparent 30%, var(--accent-color) 30%, var(--accent-color) 70%, transparent 70%);
    background-size: 20px 20px;
}

.value-card.enjoyment .value-bg-pattern {
    background: conic-gradient(from 0deg, transparent, var(--primary-color), transparent);
    background-size: 40px 40px;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.value-icon i {
    font-size: 2.2rem;
    color: var(--white-color);
}

.value-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.value-card p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.value-elements {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.value-elements span {
    background: rgba(255,255,255,0.15);
    color: var(--white-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

.values-summary {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.summary-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    padding: 3rem;
}

.summary-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 1.5rem;
}

.summary-card p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.summary-card strong {
    color: var(--primary-color);
}

/* ===== COMPANY STATS ===== */
.company-stats {
    padding: 4rem 0;
    background: var(--primary-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: var(--white-color);
    text-align: left;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.stat-icon i {
    font-size: 1.8rem;
    color: var(--white-color);
}

.stat-content .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    display: block;
    line-height: 1;
}

.stat-content .stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.stat-content .stat-description {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== ABOUT CTA ===== */
.about-cta {
    padding: 5rem 0;
    background: var(--dark-color);
    position: relative;
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(243, 156, 18, 0.1) 100%);
}

.cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-text p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--darker-color);
    color: var(--white-color);
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.footer-logo h3 {
    font-size: 1.5rem;
    color: var(--white-color);
    margin: 0;
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-contact-quick {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.quick-contact-item i {
    color: var(--primary-color);
    width: 20px;
}

.footer-section h4 {
    color: var(--white-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.7);
}

.footer-contact .contact-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 3px;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.footer-tagline {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: var(--white-color);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-medium);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }

    .page-title {
        font-size: 3rem;
    }

    .intro-content,
    .growth-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(26, 37, 47, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-contact {
        display: none;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .differentiators-grid {
        grid-template-columns: 1fr;
    }

    .values-showcase {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-item {
        justify-content: center;
        text-align: center;
    }

    .company-highlights {
        gap: 1.5rem;
    }

    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .diff-card,
    .leader-content,
    .value-card {
        padding: 2rem 1.5rem;
    }

    .cta-text h2 {
        font-size: 2rem;
    }

    .chart-container {
        height: 200px;
    }

    .floating-card.quality,
    .floating-card.experience {
        position: static;
        margin: 1rem 0;
        display: inline-flex;
    }
}

/* ===== SINGLE LEADER SECTION ===== */
.leadership-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.leadership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="leaderGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(44,62,80,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23leaderGrid)"/></svg>');
    z-index: 1;
}

.leadership-section .container {
    position: relative;
    z-index: 2;
}

.single-leader-container {
    max-width: 1200px;
    margin: 0 auto;
}

.leader-profile-card {
    background: var(--white-color);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 350px 1fr;
    min-height: 700px;
    transition: var(--transition);
}

.leader-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

/* Visual Section */
.leader-visual-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-color));
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.leader-visual-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.leader-image-container {
    position: relative;
    margin-bottom: 2rem;
    z-index: 2;
}

.leader-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid rgba(255, 255, 255, 0.3);
    position: relative;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
}

.image-placeholder i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
}

.leader-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: var(--white-color);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.leader-basic-info {
    color: var(--white-color);
    z-index: 2;
}

.leader-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white-color);
}

.leader-title {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    font-weight: 500;
}

.founding-year {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    font-weight: 500;
}

/* Content Section */
.leader-content-section {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.story-header,
.journey-header,
.philosophy-header,
.highlights-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.story-header i,
.journey-header i,
.philosophy-header i,
.highlights-header i {
    font-size: 1.5rem;
    color: #3498db;
}

.story-header h4,
.journey-header h4,
.philosophy-header h4,
.highlights-header h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color: var(--dark-color);
}

.story-text,
.journey-text {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Quote Section */
.quote-container {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--secondary-color);
    position: relative;
}

.quote-mark {
    position: absolute;
    top: -10px;
    left: 20px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: var(--white-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.leader-quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0 0 1rem 0;
    font-style: italic;
}

.quote-description {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.achievement-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border-radius: 12px;
    border: 1px solid rgba(52, 152, 219, 0.1);
    transition: var(--transition);
}

.achievement-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #3498db;
}

.achievement-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: var(--white-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.achievement-content h5 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: var(--dark-color);
}

.achievement-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Leadership Stats */
.leadership-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.leadership-stats .stat-card {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white-color);
    border-radius: 15px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.leadership-stats .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.3);
}

.leadership-stats .stat-card:nth-child(2) {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-color));
}

.leadership-stats .stat-card:nth-child(2):hover {
    box-shadow: 0 15px 40px rgba(44, 62, 80, 0.3);
}

.leadership-stats .stat-card:nth-child(3) {
    background: linear-gradient(135deg, #27ae60, #229954);
}

.leadership-stats .stat-card:nth-child(3):hover {
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.3);
}
.company-intro-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.leadership-stats .stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    color: var(--white-color);
}

.leadership-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .leader-profile-card {
        grid-template-columns: 1fr;
        max-width: 800px;
    }

    .leader-visual-section {
        padding: 2rem;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .leadership-section {
        padding: 4rem 0;
    }

    .leader-content-section {
        padding: 2rem;
        gap: 2rem;
    }

    .leader-image {
        width: 150px;
        height: 150px;
    }

    .leader-name {
        font-size: 1.8rem;
    }

    .leadership-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .leader-profile-card {
        border-radius: 15px;
        margin: 0 10px;
    }

    .leader-content-section {
        padding: 1.5rem;
    }

    .quote-container {
        padding: 1.5rem;
    }

    .leader-quote {
        font-size: 1.2rem;
    }
}