/* Modern About Us Page Styles */

/* Hero Section */
.about-hero-section {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(1, 192, 87, 0.95) 0%, rgba(96, 202, 249, 0.95) 100%);
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/slider/abc.jpg') center/cover;
    opacity: 0.2;
    z-index: 0;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.about-hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.about-hero-content p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.6;
}

/* Breadcrumb */
.about-breadcrumb {
    margin-top: 30px;
    text-align: center;
}

.about-breadcrumb ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.about-breadcrumb li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

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

.about-breadcrumb li a:hover {
    color: white;
}

.about-breadcrumb li.active {
    color: white;
    font-weight: 600;
}

.about-breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    opacity: 0.7;
}

/* Introduction Section */
.about-intro-section {
    padding: 80px 0;
    background: #ffffff;
}

.about-intro-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-intro-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-intro-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Values Section */
.about-values-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.about-value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #01c057 0%, #60caf9 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.about-value-card:hover::before {
    transform: scaleX(1);
}

.about-value-number {
    font-size: 48px;
    font-weight: 700;
    color: #01c057;
    margin-bottom: 15px;
    line-height: 1;
}

.about-value-title {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.about-value-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Us Section */
.about-why-section {
    padding: 80px 0;
    background: #ffffff;
}

.about-why-content {
    margin-bottom: 50px;
}

.about-why-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
}

.about-why-content p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.about-feature-card {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.about-feature-content {
    padding: 30px;
}

.about-feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.about-feature-text {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Stats Section */
.about-stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.about-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/bg/bg-header.jpg') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

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

.about-stat-icon {
    font-size: 48px;
    color: #01c057;
    margin-bottom: 20px;
}

.about-stat-number {
    font-size: 56px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1;
}

.about-stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Skills Section */
.about-skills-section {
    padding: 80px 0;
    background: #ffffff;
}

.about-skills-content h4 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #01c057;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-skills-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.about-skills-content p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-skills-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-skill-item {
    margin-bottom: 25px;
}

.about-skill-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.about-skill-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.about-skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #01c057 0%, #60caf9 100%);
    border-radius: 4px;
    transition: width 1s ease;
}

/* Aspiration Section */
.about-aspiration-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(1, 192, 87, 0.95) 0%, rgba(96, 202, 249, 0.95) 100%);
    color: white;
    position: relative;
}

.about-aspiration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/bg/bg-header.jpg') center/cover;
    opacity: 0.15;
    z-index: 0;
}

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

.about-aspiration-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
}

.about-aspiration-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 0;
}

.about-aspiration-skills {
    margin-top: 40px;
}

.about-aspiration-skill-item {
    margin-bottom: 25px;
}

.about-aspiration-skill-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.about-aspiration-skill-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.about-aspiration-skill-progress {
    height: 100%;
    background: white;
    border-radius: 4px;
    transition: width 1s ease;
}

/* CTA Section */
.about-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #01c057 0%, #00a048 100%);
    color: white;
}

/* Portfolio CTA Section (used in about-us page) */
.portfolio-cta-section {
    padding: 80px 0 !important;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%) !important;
    position: relative;
    overflow: hidden;
    margin-bottom: 0 !important;
}

.portfolio-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/slider/abc.jpg') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.portfolio-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
}

.portfolio-cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.portfolio-cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
}

.portfolio-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: linear-gradient(135deg, #01c057 0%, #00a045 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #01c057;
    box-shadow: 0 4px 15px rgba(1, 192, 87, 0.3);
}

.portfolio-cta-button:hover {
    background: linear-gradient(135deg, #00a045 0%, #01c057 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(1, 192, 87, 0.5);
    color: #ffffff;
}

.portfolio-cta-button i {
    font-size: 22px;
}

.about-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.about-cta-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.about-cta-text p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.about-cta-button {
    flex-shrink: 0;
}

.about-cta-button .btn-default {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.about-cta-button .btn-default.white {
    background: white;
    color: #01c057;
    border: 2px solid white;
}

.about-cta-button .btn-default.white:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 991px) {
    .about-hero-content h1 {
        font-size: 48px;
    }
    
    .about-hero-content p {
        font-size: 18px;
    }
    
    .about-intro-content h2 {
        font-size: 36px;
    }
    
    .about-values-grid,
    .about-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .about-skills-list {
        grid-template-columns: 1fr;
    }
    
    .about-cta-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .about-hero-section {
        padding: 100px 0 60px;
    }
    
    .about-hero-content h1 {
        font-size: 36px;
    }
    
    .about-hero-content p {
        font-size: 16px;
    }
    
    .about-intro-section,
    .about-values-section,
    .about-why-section,
    .about-stats-section,
    .about-skills-section,
    .about-aspiration-section {
        padding: 60px 0;
    }
    
    .about-intro-content h2,
    .about-why-content h1,
    .about-skills-content h1,
    .about-aspiration-content h1 {
        font-size: 32px;
    }
    
    .about-values-grid,
    .about-features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stat-number {
        font-size: 48px;
    }
    
    .about-cta-text h2 {
        font-size: 28px;
    }
}

