:root {
    --primary-color: #1a2b48;
    --accent-color: #c59a6d;
    --text-color: #343a40;
    --white-color: #ffffff;
    --border-color: #dee2e6;
    --background-color: #f8f9fa;
}

.site-section { padding: 6rem 0; }

/* Mobile responsive improvements for site sections */
@media (max-width: 768px) {
    .site-section { 
        padding: 4rem 0; 
    }
    
    .container.site-section {
        padding: 2rem 1rem;
    }
    
    .container.site-section .row {
        margin: 0;
    }
    
    .container.site-section .col-lg-6 {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .container.site-section .col-lg-6:last-child {
        margin-bottom: 0;
    }
    
    .container.site-section .row .col-lg-6 p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding: 0;
    text-align: left;
    color: var(--text-color);
    font-weight: 400;
    letter-spacing: 0.2px;
}

.container.site-section .row .col-lg-6 p:first-of-type {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 2rem;
}
    
    .container.site-section .row .col-lg-6 img.img-fluid {
    max-height: 400px;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.container.site-section .row .col-lg-6 img.img-fluid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(197, 154, 109, 0.1) 0%, rgba(26, 43, 72, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.container.site-section .row .col-lg-6 img.img-fluid:hover::before {
    opacity: 1;
}

.container.site-section .row .col-lg-6 img.img-fluid:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}
}
.section-title { 
    font-weight: 700; 
    margin-bottom: 2rem; 
    position: relative; 
    padding-bottom: 1rem; 
    display: block; 
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    line-height: 1.2;
}
.section-title::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 50%; 
    transform: translateX(-50%);
    width: 80px; 
    height: 4px; 
    background: linear-gradient(90deg, var(--accent-color) 0%, #e6c08a 100%);
    border-radius: 2px;
}
.section-title.mx-auto::after { 
    left: 50%; 
    transform: translateX(-50%); 
}

/* Left-aligned section title for "SCK Grup'un Hikayesi" */
.section-title.text-start {
    text-align: left;
}

.section-title.text-start::after {
    left: 0;
    transform: none;
}

/* Mobile responsive - center the title on mobile devices */
@media (max-width: 768px) {
    .section-title.text-start {
        text-align: center !important;
    }

    .section-title.text-start::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}

/* Extra specific mobile rule to ensure centering works */
@media (max-width: 768px) {
    h2.section-title.text-start {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    h2.section-title.text-start::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}

/* Mobile centering for specific title */
@media (max-width: 768px) {
    .mobile-center {
        text-align: center !important;
    }

    .mobile-center::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}



/* === MODERN STATS SECTION === */
.modern-stats-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.modern-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c59a6d' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

/* Stats Header */
.stats-header {
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.stats-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(197, 154, 109, 0.1);
    color: #c59a6d;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(197, 154, 109, 0.2);
}

.stats-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a2b48;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.stats-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(197, 154, 109, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c59a6d, transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #c59a6d;
}

/* Stat Icon */
.stat-icon-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.projects-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.experience-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.clients-icon {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.satisfaction-icon {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.stat-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.stat-card:hover .stat-glow {
    opacity: 0.3;
    animation: glowPulse 2s ease-in-out infinite;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Stat Content */
.stat-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1a2b48;
    margin-bottom: 0.8rem;
    line-height: 1;
    background: linear-gradient(135deg, #1a2b48, #c59a6d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a2b48;
    margin-bottom: 0.8rem;
}

.stat-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 0;
}





/* Animations */
@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(197, 154, 109, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(197, 154, 109, 0.6);
    }
}



/* Mobile Responsive */
@media (max-width: 768px) {
    .modern-stats-section {
        padding: 5rem 0;
    }

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

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .stat-card {
        padding: 2rem;
    }

    .stat-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

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

    .stat-card {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .site-section { 
        padding: 3rem 0; 
    }
    
    .container.site-section {
        padding: 1.5rem 0.8rem;
    }
    
    .container.site-section .col-lg-6 {
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .container.site-section .row .col-lg-6 p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.3rem;
        padding: 0;
        text-align: left;
    }
    
    .container.site-section .row .col-lg-6 p:first-of-type {
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--primary-color);
        margin-bottom: 1.8rem;
    }
    
    .container.site-section .row .col-lg-6 img.img-fluid {
        max-height: 350px;
        margin-bottom: 1.5rem;
        border-radius: 16px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    }
    
    .stats-header {
        margin-bottom: 3rem;
    }

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

    .stats-description {
        font-size: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

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

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

    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* === CLEAN ABOUT HERO === */
.clean-about-hero {
    background: linear-gradient(135deg, var(--primary-color), #2c4a85);
    padding: 6rem 0;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.clean-about-hero .hero-content {
    position: relative;
}

/* Company Badge */
.clean-about-hero .company-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(197, 154, 109, 0.3);
    border-radius: 25px;
    padding: 0.6rem 1.2rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.clean-about-hero .company-badge i {
    font-size: 1rem;
}

/* Hero Title */
.clean-about-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.clean-about-hero .title-accent {
    color: var(--accent-color);
    display: block;
}

/* Hero Description */
.clean-about-hero .hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 90%;
}

/* Hero Stats */
.clean-about-hero .hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.clean-about-hero .stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 1.5rem 1rem;
    min-width: 140px;
    max-width: 160px;
    flex: 1;
    transition: all 0.3s ease;
}

.clean-about-hero .stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.clean-about-hero .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
}

.clean-about-hero .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Hero Actions */
.clean-about-hero .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.clean-about-hero .btn-primary-hero,
.clean-about-hero .btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.clean-about-hero .btn-primary-hero {
    background: var(--accent-color);
    color: var(--primary-color);
}

.clean-about-hero .btn-primary-hero:hover {
    background: #d4a574;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 154, 109, 0.4);
    color: var(--primary-color);
    text-decoration: none;
}

.clean-about-hero .btn-secondary-hero {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.clean-about-hero .btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-3px);
    text-decoration: none;
}

/* Building Visual */
.clean-about-hero .hero-visual {
    position: relative;
}

.clean-about-hero .building-visual {
    position: relative;
}

.clean-about-hero .building-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.clean-about-hero .building-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.clean-about-hero .building-image:hover img {
    transform: scale(1.05);
}

.clean-about-hero .overlay-content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
}

.clean-about-hero .value-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.clean-about-hero .value-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.clean-about-hero .value-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.clean-about-hero .value-badge i {
    font-size: 1rem;
    color: var(--accent-color);
}

/* Simple Vision & Mission Cards */
.simple-vision-mission-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.simple-vision-mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-color);
}

.simple-vision-mission-card .card-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.simple-vision-mission-card .card-icon i {
    font-size: 1.5rem;
    color: white;
}

.simple-vision-mission-card:hover .card-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(197, 154, 109, 0.3);
}

.simple-vision-mission-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.simple-vision-mission-card:hover h3 {
    color: var(--accent-color);
}

.simple-vision-mission-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Mission Card Specific */
.mission-card .card-icon {
    background: #4CAF50;
}

/* Vision Card Specific */
.vision-card .card-icon {
    background: #2196F3;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .simple-vision-mission-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .simple-vision-mission-card .card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .simple-vision-mission-card .card-icon i {
        font-size: 1.3rem;
    }

    .simple-vision-mission-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .simple-vision-mission-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .simple-vision-mission-card {
        padding: 1.2rem;
    }

    .simple-vision-mission-card .card-icon {
        width: 45px;
        height: 45px;
    }

    .simple-vision-mission-card .card-icon i {
        font-size: 1.2rem;
    }

    .simple-vision-mission-card h3 {
        font-size: 1.2rem;
    }

    .simple-vision-mission-card p {
        font-size: 0.9rem;
    }
}


.timeline-section { 
    position: relative; 
    padding: 2rem 0;
}

.timeline-section::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 50%; 
    width: 3px; 
    height: 100%; 
    background: linear-gradient(180deg, var(--accent-color) 0%, rgba(197, 154, 109, 0.3) 50%, var(--accent-color) 100%);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(197, 154, 109, 0.2);
}

.timeline-item { 
    position: relative; 
    width: 50%; 
    padding: 2.5rem 0; 
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-2px);
}

.timeline-item:nth-child(odd) { 
    left: 0; 
    text-align: right; 
    padding-right: 5rem; 
}

.timeline-item:nth-child(even) { 
    left: 50%; 
    padding-left: 5rem; 
}

.timeline-dot { 
    position: absolute; 
    top: 50%; 
    width: 20px; 
    height: 20px; 
    background: linear-gradient(135deg, var(--accent-color), #d4a574);
    border: 4px solid var(--white-color);
    border-radius: 50%; 
    z-index: 2;
    box-shadow: 0 0 0 3px rgba(197, 154, 109, 0.2), 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.2);
    box-shadow: 0 0 0 4px rgba(197, 154, 109, 0.3), 0 6px 12px rgba(0, 0, 0, 0.15);
}

.timeline-item:nth-child(odd) .timeline-dot { 
    right: -10px; 
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-dot { 
    left: -10px; 
    transform: translateY(-50%);
}

.timeline-content { 
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(197, 154, 109, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.timeline-item:hover .timeline-content {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.timeline-content h5 { 
    color: var(--primary-color); 
    font-weight: 700; 
    margin-bottom: 0.8rem; 
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.timeline-content p { 
    margin-bottom: 0; 
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}
/* Service Cards */
.service-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-color);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.service-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}
.service-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Value Cards */
.value-card {
    padding: 2rem 1rem;
    transition: all 0.3s ease;
}
.value-card:hover {
    transform: translateY(-5px);
}
.value-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}
.value-card h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* SCK Grup'un Hikayesi section image styling */
.container.site-section .row .col-lg-6 img.img-fluid {
    max-height: 520px;
    width: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 3px solid rgba(197, 154, 109, 0.2);
    transition: all 0.3s ease;
}

.container.site-section .row .col-lg-6 img.img-fluid:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    transform: translateY(-5px);
}



/* Mobile Responsive */
@media (max-width: 992px) {
    .clean-about-hero {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .clean-about-hero .hero-title {
        font-size: 3rem;
    }
    
    .clean-about-hero .hero-description {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .clean-about-hero .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .clean-about-hero .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .clean-about-hero .btn-primary-hero,
    .clean-about-hero .btn-secondary-hero {
        justify-content: center;
    }
    
    .clean-about-hero .building-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .clean-about-hero {
        padding: 3rem 0;
        min-height: auto;
    }
    
    .clean-about-hero .hero-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .clean-about-hero .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .clean-about-hero .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .clean-about-hero .hero-stats {
        gap: 0.8rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .clean-about-hero .stat-item {
        min-width: 120px;
        padding: 1.2rem 1rem;
        flex: 1;
        max-width: 150px;
        margin: 0.3rem;
    }
    
    .clean-about-hero .stat-number {
        font-size: 1.8rem;
        margin-bottom: 0.4rem;
    }
    
    .clean-about-hero .stat-label {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .clean-about-hero .hero-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .clean-about-hero .btn-primary-hero,
    .clean-about-hero .btn-secondary-hero {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .clean-about-hero .building-image img {
        height: 300px;
        border-radius: 12px;
    }
    
    .clean-about-hero .value-badges {
        gap: 0.4rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .clean-about-hero .value-badge {
        padding: 0.5rem 0.7rem;
        font-size: 0.75rem;
        flex-shrink: 0;
    }
    
    .clean-about-hero .value-badge i {
        font-size: 0.9rem;
    }
    
    /* Section title improvements for mobile */
    .section-title {
        display: block;
        text-align: center;
        width: 100%;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 70px;
    }
    
    /* Timeline improvements */
    .timeline-section {
        padding: 2rem 0;
        margin: 0 1rem;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left;
        padding: 1.5rem 1rem 1.5rem 2.5rem;
        margin-bottom: 1rem;
        position: relative;
        display: flex;
        align-items: center;
    }
    
    .timeline-section::before {
        left: 15px;
        width: 3px;
        background: linear-gradient(180deg, var(--accent-color) 0%, rgba(197, 154, 109, 0.3) 50%, var(--accent-color) 100%);
        box-shadow: 0 0 8px rgba(197, 154, 109, 0.15);
        position: absolute;
    }
    
    .timeline-dot {
        left: 8px !important;
        right: auto !important;
        width: 16px;
        height: 16px;
        border-width: 3px;
        transform: translateY(-50%);
        position: absolute;
        top: 50%;
        z-index: 3;
    }
    
    .timeline-content {
        padding: 1.2rem;
        margin-left: 0.8rem;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        position: relative;
        z-index: 2;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .timeline-content h5 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        color: var(--primary-color);
        font-weight: 600;
    }
    
    .timeline-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        color: #555;
        margin-bottom: 0;
    }
    
    .service-card, .vision-mission-card {
        margin-bottom: 2rem;
    }
    
    .container.site-section .row .col-lg-6 img.img-fluid {
        max-height: 350px;
        margin-bottom: 2rem;
    }
    
    /* Additional timeline improvements for mobile */
    .timeline-section {
        padding: 1.5rem 0;
    }
    
    .timeline-item:hover {
        transform: none;
    }
    
    .timeline-item:hover .timeline-content {
        transform: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }
    
    .timeline-item:hover .timeline-dot {
        transform: translateY(-50%) scale(1.1);
    }
}

@media (max-width: 576px) {
    .clean-about-hero {
        padding: 2.5rem 0;
    }
    
    .clean-about-hero .hero-content {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .clean-about-hero .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .clean-about-hero .company-badge {
        margin-bottom: 1.2rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .clean-about-hero .hero-description {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .clean-about-hero .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .clean-about-hero .stat-item {
        width: 100%;
        max-width: 280px;
        padding: 1rem 0.8rem;
        margin: 0.5rem auto;
    }
    
    .clean-about-hero .stat-number {
        font-size: 1.6rem;
        margin-bottom: 0.3rem;
    }
    
    .clean-about-hero .stat-label {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .clean-about-hero .hero-actions {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .clean-about-hero .btn-primary-hero,
    .clean-about-hero .btn-secondary-hero {
        width: 100%;
        max-width: 250px;
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .clean-about-hero .building-image img {
        height: 250px;
        border-radius: 10px;
    }
    
    .clean-about-hero .overlay-content {
        bottom: 0.8rem;
        left: 0.8rem;
        right: 0.8rem;
    }
    
    .clean-about-hero .value-badges {
        gap: 0.3rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .clean-about-hero .value-badge {
        padding: 0.4rem 0.6rem;
        font-size: 0.65rem;
        flex-shrink: 0;
    }
    
    .clean-about-hero .value-badge i {
        font-size: 0.8rem;
    }
    
    /* Section title improvements for small mobile */
    .section-title {
        display: block;
        text-align: center;
        width: 100%;
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
        padding-bottom: 0.4rem;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 2px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .site-section { 
        padding: 2.5rem 0; 
    }
    
    .container.site-section {
        padding: 1rem 0.5rem;
    }
    
    .container.site-section .col-lg-6 {
        padding: 0 0.3rem;
        margin-bottom: 1rem;
    }
    
    .container.site-section .row .col-lg-6 p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
        padding: 0;
        text-align: justify;
    }
    
    .container.site-section .row .col-lg-6 img.img-fluid {
        max-height: 200px;
        margin-bottom: 0.8rem;
        border-radius: 8px;
    }
    
    .clean-about-hero {
        padding: 2rem 0;
    }
    
    .clean-about-hero .hero-content {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .clean-about-hero .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 0.6rem;
    }
    
    .clean-about-hero .company-badge {
        margin-bottom: 1rem;
        padding: 0.3rem 0.7rem;
        font-size: 0.7rem;
    }
    
    .clean-about-hero .hero-description {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: 1.2rem;
    }
    
    .clean-about-hero .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
        margin-bottom: 1.2rem;
    }
    
    .clean-about-hero .stat-item {
        width: 100%;
        max-width: 260px;
        padding: 0.8rem 0.6rem;
        margin: 0.4rem auto;
    }
    
    .clean-about-hero .stat-number {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
    }
    
    .clean-about-hero .stat-label {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .clean-about-hero .hero-actions {
        flex-direction: column;
        gap: 0.6rem;
        align-items: center;
    }
    
    .clean-about-hero .btn-primary-hero,
    .clean-about-hero .btn-secondary-hero {
        width: 100%;
        max-width: 220px;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .clean-about-hero .building-image img {
        height: 220px;
        border-radius: 8px;
    }
    
    .clean-about-hero .overlay-content {
        bottom: 0.6rem;
        left: 0.6rem;
        right: 0.6rem;
    }
    
    .clean-about-hero .value-badges {
        gap: 0.25rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .clean-about-hero .value-badge {
        padding: 0.3rem 0.5rem;
        font-size: 0.6rem;
        flex-shrink: 0;
    }
    
    .clean-about-hero .value-badge i {
        font-size: 0.75rem;
    }
    
    /* Section title improvements for extra small mobile */
    .section-title {
        display: block;
        text-align: center;
        width: 100%;
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
        padding-bottom: 0.3rem;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 35px;
        height: 2px;
    }
    
    /* Timeline improvements for small mobile */
    .timeline-section {
        padding: 1.5rem 0;
        margin: 0 0.5rem;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left;
        padding: 1.2rem 0.8rem 1.2rem 2rem;
        margin-bottom: 0.8rem;
        position: relative;
        display: flex;
        align-items: center;
    }
    
    .timeline-section::before {
        left: 12px;
        width: 2px;
        background: linear-gradient(180deg, var(--accent-color) 0%, rgba(197, 154, 109, 0.3) 50%, var(--accent-color) 100%);
        box-shadow: 0 0 6px rgba(197, 154, 109, 0.1);
        position: absolute;
    }
    
    .timeline-dot {
        left: 6px !important;
        right: auto !important;
        width: 14px;
        height: 14px;
        border-width: 2px;
        transform: translateY(-50%);
        position: absolute;
        top: 50%;
        z-index: 3;
    }
    
    .timeline-content {
        padding: 1rem;
        margin-left: 0.6rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
        position: relative;
        z-index: 2;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .timeline-content h5 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
        color: var(--primary-color);
        font-weight: 600;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
        line-height: 1.4;
        color: #555;
        margin-bottom: 0;
    }
    
    /* Story section improvements for small mobile */
    .container.site-section .row .col-lg-6 p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .container.site-section .row .col-lg-6 img.img-fluid {
        max-height: 250px;
        margin-bottom: 1.5rem;
    }
    
    /* Timeline improvements for extra small mobile */
    .timeline-section {
        padding: 1rem 0;
        margin: 0 0.3rem;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left;
        padding: 1rem 0.6rem 1rem 1.8rem;
        margin-bottom: 0.6rem;
        position: relative;
        display: flex;
        align-items: center;
    }
    
    .timeline-section::before {
        left: 10px;
        width: 2px;
        background: linear-gradient(180deg, var(--accent-color) 0%, rgba(197, 154, 109, 0.3) 50%, var(--accent-color) 100%);
        box-shadow: 0 0 4px rgba(197, 154, 109, 0.1);
        position: absolute;
    }
    
    .timeline-dot {
        left: 5px !important;
        right: auto !important;
        width: 12px;
        height: 12px;
        border-width: 2px;
        transform: translateY(-50%);
        position: absolute;
        top: 50%;
        z-index: 3;
    }
    
    .timeline-content {
        padding: 0.8rem;
        margin-left: 0.4rem;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        position: relative;
        z-index: 2;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .timeline-content h5 {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
        color: var(--primary-color);
        font-weight: 600;
    }
    
    .timeline-content p {
        font-size: 0.8rem;
        line-height: 1.3;
        color: #555;
        margin-bottom: 0;
    }
    
    /* Story section improvements for extra small mobile */
    .container.site-section .row .col-lg-6 p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
    }
    
    .container.site-section .row .col-lg-6 img.img-fluid {
        max-height: 200px;
        margin-bottom: 1rem;
    }
}
