/* ===================================
   ABOUT US PAGE REDESIGN
   Premium Design with Modern UI/UX
   =================================== */

/* ===================================
   HERO SECTION
   =================================== */
.about-page-header {
    position: relative;
    min-height: 70vh;
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, #1a1b3c 0%, #2d2e6e 50%, #1a1b3c 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1531415074968-036ba1b575da?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.15;
    z-index: 1;
}

.about-page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--bg-color, #fff), transparent);
    z-index: 2;
}

.about-page-header .container {
    position: relative;
    z-index: 3;
}

.about-page-header .page-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.about-page-header .page-subtitle {
    font-size: clamp(1rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 1.5rem auto 0;
    line-height: 1.8;
    font-weight: 400;
}

/* Decorative floating elements */
.about-floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.about-floating-element:nth-child(1) {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: -100px;
    right: -100px;
}

.about-floating-element:nth-child(2) {
    width: 200px;
    height: 200px;
    background: var(--secondary-color, #f0c969);
    bottom: -50px;
    left: -50px;
    animation-delay: -2s;
}

.about-floating-element:nth-child(3) {
    width: 150px;
    height: 150px;
    background: white;
    top: 50%;
    left: 10%;
    animation-delay: -4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* ===================================
   STORY SECTION
   =================================== */
.about-story-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
    position: relative;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-story-content {
    padding-right: 2rem;
}

.about-story-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8a50 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.about-story-badge i {
    font-size: 0.9rem;
}

.about-story-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #2d2e6e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-story-title span {
    background: linear-gradient(135deg, var(--primary-color) 0%, #d35400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-story-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.about-story-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-story-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.about-story-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.about-story-feature i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8a50 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-story-feature span {
    font-weight: 600;
    color: #1a1b3c;
    font-size: 0.95rem;
}

.about-story-image-wrapper {
    position: relative;
}

.about-story-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

.about-story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-story-image:hover img {
    transform: scale(1.05);
}

.about-story-experience {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: linear-gradient(135deg, #2d2e6e 0%, #1a1b3c 100%);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(45, 46, 110, 0.4);
}

.about-story-experience .number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    display: block;
    background: linear-gradient(135deg, #fff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-story-experience .label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-top: 0.5rem;
    display: block;
}

/* ===================================
   VISION & MISSION SECTION
   =================================== */
.about-vm-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2d2e6e 0%, #1a1b3c 100%);
    position: relative;
    overflow: hidden;
}

.about-vm-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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='%23ffffff' fill-opacity='0.03'%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");
    opacity: 0.5;
}

.about-vm-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.about-vm-header .section-title {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.about-vm-header .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
}

.about-vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.about-vm-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 3rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ff8a50);
}

.about-vm-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.about-vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8a50 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(242, 106, 54, 0.3);
}

.about-vm-icon i {
    font-size: 2rem;
    color: white;
}

.about-vm-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.about-vm-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-vm-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.about-vm-list li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.about-vm-list li i {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* ===================================
   VALUES SECTION - BENTO GRID
   =================================== */
.about-values-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
    position: relative;
}

.about-values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-values-header .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1a1b3c;
    margin-bottom: 1rem;
}

.about-values-header .section-subtitle {
    color: #666;
    font-size: 1.15rem;
}

.about-values-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem;
}

.about-value-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8a50 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.about-value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(242, 106, 54, 0.2);
}

.about-value-card:hover::before {
    opacity: 1;
}

.about-value-card:hover * {
    position: relative;
    z-index: 1;
}

.about-value-card:hover .about-value-icon,
.about-value-card:hover h3,
.about-value-card:hover p {
    color: white;
}

.about-value-card:hover .about-value-icon {
    background: rgba(255, 255, 255, 0.2);
}

/* Featured large card */
.about-value-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    background: linear-gradient(135deg, #2d2e6e 0%, #1a1b3c 100%);
    color: white;
}

.about-value-card.featured h3 {
    color: white;
}

.about-value-card.featured p {
    color: rgba(255, 255, 255, 0.85);
}

.about-value-card.featured .about-value-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8a50 100%);
}

.about-value-card.featured .about-value-icon i {
    font-size: 2.5rem;
}

.about-value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(242, 106, 54, 0.1) 0%, rgba(242, 106, 54, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.about-value-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.about-value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1b3c;
    margin-bottom: 0.75rem;
    transition: all 0.4s ease;
}

.about-value-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    transition: all 0.4s ease;
}

/* ===================================
   EXPERTISE SECTION
   =================================== */
.about-expertise-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2d2e6e 0%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
}

.about-expertise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='0.5'/%3E%3C/svg%3E") repeat;
}

.about-expertise-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.about-expertise-header .section-title {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.about-expertise-header .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
}

.about-expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.about-expertise-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.about-expertise-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-expertise-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.about-expertise-card:hover .about-expertise-icon {
    background: var(--primary-color);
    transform: scale(1.1) rotate(5deg);
}

.about-expertise-icon i {
    font-size: 2rem;
    color: white;
}

.about-expertise-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.about-expertise-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   STATS COUNTER SECTION
   =================================== */
.about-stats-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
    position: relative;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.about-stat-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ff8a50);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.about-stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.about-stat-item:hover::before {
    transform: scaleX(1);
}

.about-stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8a50 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(242, 106, 54, 0.3);
}

.about-stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.about-stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2d2e6e 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.about-stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================
   TEAM SPOTLIGHT SECTION
   =================================== */
.about-team-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.about-team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-team-header .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #2d2e6e;
    margin-bottom: 1rem;
}

.about-team-header .section-subtitle {
    color: #666;
    font-size: 1.15rem;
}

.about-team-spotlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.about-team-card {
    display: flex;
    gap: 2rem;
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.about-team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.about-team-photo {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-team-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d2e6e;
    margin-bottom: 0.5rem;
}

.about-team-role {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8a50 100%);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-team-quote {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary-color);
}

.about-team-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-team-link:hover {
    gap: 0.75rem;
    color: #d35400;
}

/* ===================================
   PREMIUM CTA SECTION
   =================================== */
.about-cta-section {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, #2d2e6e 0%, #1a1b3c 100%);
    overflow: hidden;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.1;
}

.about-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-cta-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.about-cta-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.about-cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8a50 100%);
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(242, 106, 54, 0.4);
}

.about-cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(242, 106, 54, 0.5);
}

.about-cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.about-cta-buttons .btn-secondary:hover {
    background: white;
    color: #1a1b3c;
    border-color: white;
    transform: translateY(-3px);
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */
@media (max-width: 1200px) {
    .about-expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {

    .about-story-grid,
    .about-vm-grid,
    .about-team-spotlight {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-story-content {
        padding-right: 0;
        order: 2;
    }

    .about-story-image-wrapper {
        order: 1;
    }

    .about-story-experience {
        bottom: -20px;
        left: auto;
        right: 20px;
    }

    .about-values-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-value-card.featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .about-page-header {
        min-height: 60vh;
        padding: 8rem 0 5rem;
        background-attachment: scroll;
    }

    .about-page-header::before {
        background-attachment: scroll;
    }

    .about-story-features {
        grid-template-columns: 1fr;
    }

    .about-values-bento,
    .about-expertise-grid,
    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .about-value-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-value-card.featured .about-value-icon {
        margin: 0 auto 1.5rem;
    }

    .about-team-card {
        flex-direction: column;
        text-align: center;
    }

    .about-team-photo {
        margin: 0 auto;
    }

    .about-team-quote {
        border-left: none;
        padding-left: 0;
        border-top: 3px solid var(--primary-color);
        padding-top: 1rem;
    }

    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-vm-card {
        padding: 2rem 1.5rem;
    }

    .about-vm-icon {
        width: 60px;
        height: 60px;
    }

    .about-vm-icon i {
        font-size: 1.5rem;
    }

    .about-stat-number {
        font-size: 2.5rem;
    }
}

/* ===================================
   DARK MODE SUPPORT
   =================================== */
[data-theme="dark"] .about-story-section,
[data-theme="dark"] .about-values-section,
[data-theme="dark"] .about-stats-section,
[data-theme="dark"] .about-team-section {
    background: var(--dark-bg, #1a1b2e);
}

[data-theme="dark"] .about-story-title,
[data-theme="dark"] .about-values-header .section-title,
[data-theme="dark"] .about-team-header .section-title {
    color: white;
}

[data-theme="dark"] .about-story-text,
[data-theme="dark"] .about-values-header .section-subtitle,
[data-theme="dark"] .about-team-header .section-subtitle,
[data-theme="dark"] .about-value-card p,
[data-theme="dark"] .about-stat-label {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .about-story-feature,
[data-theme="dark"] .about-value-card,
[data-theme="dark"] .about-stat-item,
[data-theme="dark"] .about-team-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .about-story-feature span,
[data-theme="dark"] .about-value-card h3,
[data-theme="dark"] .about-team-info h3 {
    color: white;
}

[data-theme="dark"] .about-team-quote {
    color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   NEW VALUES SECTION REDESIGN
   =================================== */
.about-values-section-new {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.about-values-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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='%23f26a36' fill-opacity='0.03'%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-values-header-new {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8a50 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.about-values-header-new .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #2d2e6e;
    margin-bottom: 1rem;
}

.about-values-header-new .section-subtitle {
    color: #666;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-values-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.about-value-card-new {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about-value-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-color, var(--primary-color));
}

.about-value-card-new::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.about-value-card-new:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.about-value-card-new:hover::after {
    opacity: 0.08;
}

.value-card-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color, var(--primary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-value-card-new:hover .value-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-card-icon i {
    font-size: 2rem;
    color: white;
}

.about-value-card-new h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #2d2e6e;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.about-value-card-new p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

.value-card-number {
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-color, var(--primary-color));
    opacity: 0.1;
    line-height: 1;
    z-index: 0;
    transition: all 0.4s ease;
}

.about-value-card-new:hover .value-card-number {
    opacity: 0.2;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 991px) {
    .about-values-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-values-grid-new {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-value-card-new {
        padding: 2rem 1.5rem;
    }
}

/* Dark mode */
[data-theme="dark"] .about-values-section-new {
    background: var(--dark-bg, #1a1b2e);
}

[data-theme="dark"] .about-values-header-new .section-title {
    color: white;
}

[data-theme="dark"] .about-values-header-new .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .about-value-card-new {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .about-value-card-new h3 {
    color: white;
}

[data-theme="dark"] .about-value-card-new p {
    color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   NEW VISION & MISSION SECTION REDESIGN
   =================================== */
.about-vm-section-new {
    padding: 6rem 0;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.about-vm-header-new {
    text-align: center;
    margin-bottom: 4rem;
}

.about-vm-header-new .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #2d2e6e;
    margin-bottom: 1rem;
}

.about-vm-header-new .section-subtitle {
    color: #666;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-vm-cards-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.about-vm-card-new {
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-vm-card-new.vision-card {
    background: linear-gradient(135deg, #2d2e6e 0%, #1a1b3c 100%);
    color: white;
}

.about-vm-card-new.mission-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #d35400 100%);
    color: white;
}

.about-vm-card-new::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.about-vm-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.vm-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.vm-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.about-vm-card-new:hover .vm-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
}

.vm-card-icon i {
    font-size: 1.5rem;
    color: white;
}

.vm-card-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.vm-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.vm-card-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.vm-card-points {
    display: grid;
    gap: 0.75rem;
}

.vm-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.vm-point:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.vm-point i {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 991px) {
    .about-vm-cards-new {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-vm-card-new {
        padding: 2rem;
    }

    .vm-card-title {
        font-size: 1.5rem;
    }
}

/* Dark mode */
[data-theme="dark"] .about-vm-section-new {
    background: var(--dark-bg, #1a1b2e);
}

[data-theme="dark"] .about-vm-header-new .section-title {
    color: white;
}

[data-theme="dark"] .about-vm-header-new .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}