/* About Page Custom CSS */

/* Hero Section */
.about-hero-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    color: #fff;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 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='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #a5b4fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Who We Are Section */
.about-who-section {
    position: relative;
}

.experience-badge {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
}

.icon-square {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Stats Section */
.stats-section {
    background: #111827;
    color: #fff;
    padding: 80px 0;
}

.stat-item {
    position: relative;
    z-index: 2;
}

.stat-number-modern {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Mission & Vision */
.about-mission-section,
.about-vision-section {
    position: relative;
}

.mission-visual,
.vision-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mission-visual img,
.vision-visual img {
    transition: transform 0.5s ease;
}

.mission-visual:hover img,
.vision-visual:hover img {
    transform: scale(1.05);
}

.section-title-left {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1e293b;
}

.section-description {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Values Section */
.value-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

.hover-up {
    transition: all 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-5px);
}

/* CTA Section */
.about-cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    position: relative;
}

.opacity-10 {
    opacity: 0.1;
}

.ls-1 {
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2rem;
    }

    .experience-badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: -30px;
        margin-left: 20px;
        display: inline-block;
    }

    .display-4 {
        font-size: 2.5rem;
    }
}