/* ===== ABOUT US HERO ===== */
.abt-hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #f0f4ff 0%, #fff 40%, #f8f0ff 100%);
    position: relative;
    overflow: hidden;
}
.abt-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(102,126,234,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.abt-hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(192,36,122,0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.abt-hero-container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}
.abt-hero-left {
    flex: 1;
}
.abt-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
}
.abt-title-dark {
    color: #1a1a2e;
}
.abt-title-blue {
    color: #3b82f6;
}
.abt-hero-line {
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #3b82f6, #667eea);
    border-radius: 3px;
    margin-bottom: 24px;
}
.abt-hero-subtitle {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #1565c0, #6a1b9a, #c0247a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.abt-hero-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    max-width: 520px;
}
.abt-highlight {
    color: #c0247a;
    font-weight: 700;
}
.abt-hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}
.abt-hero-img {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: 0 120px 0 0;
    overflow: visible;
}
.abt-hero-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0 120px 0 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.abt-hero-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 0 120px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(255,255,255,0.3);
}
.abt-hero-float-badges {
    position: absolute;
    top: 10px;
    right: -20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.abt-float-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    animation: floatBadge 3s ease-in-out infinite;
}
.abt-fb-1 { color: #3b82f6; animation-delay: 0s; }
.abt-fb-2 { color: #10b981; animation-delay: 0.5s; }
.abt-fb-3 { color: #e67e22; animation-delay: 1s; }
.abt-float-badge i { font-size: 14px; }
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ===== WHO WE ARE ===== */
.abt-whoweare {
    padding: 50px 0 60px;
    background: #fff;
    position: relative;
}
.abt-whoweare::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ddd, transparent);
}
.abt-whoweare-container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}
.abt-wwa-badge {
    display: inline-block;
    margin-bottom: 20px;
}
.abt-wwa-badge span {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #e67e22);
    color: #fff;
    padding: 10px 32px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
}
.abt-wwa-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto 45px;
}
.abt-wwa-text strong {
    color: #1a1a2e;
    font-weight: 700;
}
.abt-underline {
    text-decoration: underline;
    text-decoration-color: #e67e22;
    text-underline-offset: 3px;
}
.abt-wwa-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.abt-wwa-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 28px 18px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}
.abt-wwa-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}
.abt-wwa-card-highlight {
    background: #fff8f0;
    border-color: #fde8d0;
}
.abt-wwa-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 14px;
    transition: transform 0.4s;
}
.abt-wwa-card:hover .abt-wwa-icon {
    transform: scale(1.15) rotate(-8deg);
}
.abt-wwa-icon-1 { background: linear-gradient(135deg, #e3f2fd, #bbdefb); color: #1565c0; }
.abt-wwa-icon-2 { background: linear-gradient(135deg, #f3e5f5, #e1bee7); color: #6a1b9a; }
.abt-wwa-icon-3 { background: linear-gradient(135deg, #fce4ec, #f8bbd0); color: #c0247a; }
.abt-wwa-icon-4 { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); color: #2e7d32; }
.abt-wwa-icon-5 { background: linear-gradient(135deg, #fff3e0, #ffe0b2); color: #e65100; }
.abt-wwa-card-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.abt-wwa-card p {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
}
.abt-values-list {
    list-style: none;
    padding: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.abt-values-list li {
    font-size: 13px;
    color: #555;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.abt-values-list li i {
    color: #10b981;
    font-size: 14px;
}

/* ===== STATS BAR ===== */
.abt-stats-bar {
    padding: 0;
    margin: 0 auto;
    max-width: 95%;
    padding: 0 30px;
}
.abt-stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: linear-gradient(135deg, #4a5fd7, #6366f1, #7c3aed, #9333ea);
    border-radius: 20px;
    overflow: hidden;
}
.abt-stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 28px 24px;
    border-right: 1px solid rgba(255,255,255,0.15);
    transition: background 0.3s;
}
.abt-stat-item:last-child {
    border-right: none;
}
.abt-stat-item:hover {
    background: rgba(255,255,255,0.08);
}
.abt-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
}
.abt-stat-icon i {
    animation: none !important;
    transform: none !important;
}
.abt-stat-info h3 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}
.abt-stat-info p {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}

/* ===== PARTNERSHIP QUOTE ===== */
.abt-partnership {
    padding: 50px 0 60px;
    background: #fff;
}
.abt-partnership-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}
.abt-partnership-container > p {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin-bottom: 12px;
}
.abt-partnership-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.abt-pline {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 3px;
}
.abt-partnership-line h3 {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(90deg, #6366f1, #c0247a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .abt-hero-container {
        flex-direction: column;
        text-align: center;
    }
    .abt-hero-title { font-size: 42px; }
    .abt-hero-line { margin: 0 auto 24px; }
    .abt-hero-desc { max-width: 100%; }
    .abt-hero-float-badges { right: 10px; }
    .abt-wwa-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    .abt-stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .abt-stat-item:nth-child(2) { border-right: none; }
}
@media (max-width: 768px) {
    .abt-hero { padding: 40px 0 30px; }
    .abt-hero-title { font-size: 36px; }
    .abt-hero-subtitle { font-size: 20px; }
    .abt-hero-img img, .abt-hero-placeholder { height: 280px; }
    .abt-hero-float-badges { right: 5px; top: auto; bottom: 10px; gap: 8px; }
    .abt-float-badge { padding: 6px 12px; font-size: 10px; letter-spacing: 0.5px; }
    .abt-wwa-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .abt-stats-container {
        grid-template-columns: 1fr 1fr;
        border-radius: 16px;
    }
    .abt-stat-item { padding: 20px 16px; gap: 10px; }
    .abt-stat-info h3 { font-size: 22px; }
    .abt-partnership-container > p { font-size: 16px; }
    .abt-partnership-line h3 { font-size: 18px; }
}
@media (max-width: 480px) {
    .abt-hero-title { font-size: 30px; }
    .abt-wwa-cards { grid-template-columns: 1fr; }
    .abt-stats-container { grid-template-columns: 1fr; }
    .abt-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
    .abt-stat-item:last-child { border-bottom: none; }
}


/* ===== OUR VISION SECTION ===== */
.abt-vision {
    padding: 70px 0 60px;
    background: linear-gradient(180deg, #f4f6ff 0%, #fff 50%, #f8f4ff 100%);
    position: relative;
    overflow: hidden;
}
.abt-vision::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(102,126,234,0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.abt-vision::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(192,36,122,0.05) 0%, transparent 70%);
    border-radius: 50%;
}
.abt-vision-container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}
.abt-vision-top {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}
.abt-vision-left {
    flex: 0.9;
}
.abt-vision-pre {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
    margin-bottom: 0;
}
.abt-vision-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #1565c0, #3b82f6, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.abt-vision-line {
    width: 70px;
    height: 5px;
    background: linear-gradient(90deg, #3b82f6, #667eea);
    border-radius: 3px;
    margin-bottom: 24px;
}
.abt-vision-desc {
    font-size: 17px;
    color: #444;
    line-height: 1.8;
    max-width: 440px;
}
.abt-vision-desc strong {
    color: #1a1a2e;
}

/* Vision Right - City/Business Visual */
.abt-vision-right {
    flex: 1.1;
    position: relative;
}
.abt-vision-img {
    position: relative;
    width: 100%;
    min-height: 380px;
}
.abt-vision-placeholder {
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, #1a1a3e 0%, #2d1b69 30%, #1565c0 60%, #0288d1 80%, #4fc3f7 100%);
    border-radius: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(21,101,192,0.2);
}
.abt-vision-placeholder > i {
    position: absolute;
    bottom: 30px;
    font-size: 120px;
    color: rgba(255,255,255,0.08);
    left: 50%;
    transform: translateX(-50%);
}
.abt-vision-silhouette {
    position: relative;
    z-index: 2;
    font-size: 140px;
    color: rgba(255,255,255,0.15);
    margin-bottom: -5px;
}
/* Floating tech icons around vision image */
.abt-vision-float-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}
.abt-vf-icon {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    animation: floatBadge 3s ease-in-out infinite;
}
.abt-vf-icon i { animation: none !important; transform: none !important; }
.abt-vf-1 { background: linear-gradient(135deg, #667eea, #764ba2); top: -10px; right: 30%; animation-delay: 0s; }
.abt-vf-2 { background: linear-gradient(135deg, #f59e0b, #e67e22); top: 15%; right: -5px; animation-delay: 0.4s; }
.abt-vf-3 { background: linear-gradient(135deg, #ef4444, #ec4899); top: 5%; right: 10%; animation-delay: 0.8s; }
.abt-vf-4 { background: linear-gradient(135deg, #10b981, #059669); top: 30%; right: -10px; animation-delay: 1.2s; }
.abt-vf-5 { background: linear-gradient(135deg, #6366f1, #8b5cf6); top: 50%; right: 5%; animation-delay: 1.6s; }

/* Vision Quote Box */
.abt-vision-quote {
    position: absolute;
    bottom: 30px;
    right: 20px;
    background: linear-gradient(135deg, #c0247a, #e8654a);
    color: #fff;
    padding: 20px 28px;
    border-radius: 16px;
    max-width: 320px;
    box-shadow: 0 10px 30px rgba(192,36,122,0.3);
    z-index: 3;
}
.abt-vq-open, .abt-vq-close {
    font-size: 36px;
    font-weight: 900;
    line-height: 0;
    opacity: 0.5;
    font-family: Georgia, serif;
}
.abt-vq-open { position: absolute; top: 14px; left: 12px; }
.abt-vq-close { position: absolute; bottom: 20px; right: 12px; }
.abt-vision-quote p {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    margin: 0;
    padding: 0 10px;
}

/* Vision Value Cards */
.abt-vision-values {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.abt-vv-card {
    text-align: center;
    padding: 24px 16px 20px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.abt-vv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}
.abt-vv-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 14px;
    color: #fff;
    transition: transform 0.4s;
}
.abt-vv-card:hover .abt-vv-icon {
    transform: scale(1.15) rotate(-8deg);
}
.abt-vv-icon i { animation: none !important; transform: none !important; }
.abt-vv-icon-1 { background: linear-gradient(135deg, #9575cd, #7e57c2); }
.abt-vv-icon-2 { background: linear-gradient(135deg, #ec407a, #c0247a); }
.abt-vv-icon-3 { background: linear-gradient(135deg, #29b6f6, #0288d1); }
.abt-vv-icon-4 { background: linear-gradient(135deg, #ab47bc, #7b1fa2); }
.abt-vv-icon-5 { background: linear-gradient(135deg, #ec407a, #e91e63); }
.abt-vv-card h4 {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.abt-vv-card p {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
}

/* Vision Responsive */
@media (max-width: 992px) {
    .abt-vision-top {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .abt-vision-desc { max-width: 100%; }
    .abt-vision-line { margin: 0 auto 24px; }
    .abt-vision-values {
        grid-template-columns: repeat(3, 1fr);
    }
    .abt-vision-quote { right: 10px; bottom: 20px; max-width: 280px; }
}
@media (max-width: 768px) {
    .abt-vision { padding: 50px 0 40px; }
    .abt-vision-title { font-size: 40px; }
    .abt-vision-pre { font-size: 24px; }
    .abt-vision-placeholder { height: 300px; }
    .abt-vision-silhouette { font-size: 100px; }
    .abt-vision-float-icons { display: flex; position: relative; top: auto; left: auto; right: auto; bottom: auto; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 12px; }
    .abt-vf-icon { position: relative; top: auto !important; right: auto !important; left: auto !important; bottom: auto !important; width: 36px; height: 36px; font-size: 14px; }
    .abt-vision-values {
        grid-template-columns: repeat(2, 1fr);
    }
    .abt-vision-quote { position: relative; bottom: auto; right: auto; margin: -30px auto 0; max-width: 100%; border-radius: 12px; }
}
@media (max-width: 480px) {
    .abt-vision-title { font-size: 32px; }
    .abt-vision-values { grid-template-columns: 1fr; }
}


/* ===== OUR MISSION SECTION ===== */
.abt-mission {
    padding: 70px 0 60px;
    background: linear-gradient(180deg, #f8f9ff 0%, #eef1fa 50%, #f8f9ff 100%);
    position: relative;
    overflow: hidden;
}
.abt-mission::before {
    content: '';
    position: absolute;
    top: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(102,126,234,0.15) 0%, transparent 70%);
    border-radius: 4px;
    background-image: radial-gradient(circle, #c5cae9 1px, transparent 1px);
    background-size: 8px 8px;
}
.abt-mission-container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}
.abt-mission-top {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}
.abt-mission-left {
    flex: 0.9;
}
.abt-mission-pre {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
    margin-bottom: 0;
}
.abt-mission-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #c0247a, #e8654a, #e67e22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.abt-mission-line {
    width: 70px;
    height: 5px;
    background: linear-gradient(90deg, #c0247a, #e67e22);
    border-radius: 3px;
    margin-bottom: 24px;
}
.abt-mission-desc {
    font-size: 17px;
    color: #444;
    line-height: 1.8;
    max-width: 440px;
}
.abt-highlight-blue {
    color: #3b82f6;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #3b82f6;
    text-underline-offset: 3px;
}

/* Mission Right - Target Visual */
.abt-mission-right {
    flex: 1.1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.abt-mission-target {
    position: relative;
    width: 340px;
    height: 340px;
}
.abt-target-rings {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.abt-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(200,200,220,0.3);
}
.abt-ring-1 { width: 320px; height: 320px; border-color: rgba(200,200,220,0.2); }
.abt-ring-2 { width: 240px; height: 240px; border-color: rgba(192,36,122,0.15); }
.abt-ring-3 { width: 170px; height: 170px; background: linear-gradient(135deg, #fff, #f0f0ff); border: 3px solid #e0e0ee; box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.abt-ring-4 { width: 110px; height: 110px; background: #fff; border: 4px solid #e74c3c; box-shadow: 0 4px 20px rgba(231,76,60,0.15); }
.abt-target-center {
    position: relative;
    z-index: 3;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 6px 20px rgba(231,76,60,0.4);
}
.abt-target-center i { animation: none !important; transform: none !important; }
.abt-target-arrow {
    position: absolute;
    top: 25%;
    right: 28%;
    z-index: 4;
    font-size: 32px;
    color: #e74c3c;
    transform: rotate(-45deg);
    animation: arrowPulse 2s ease-in-out infinite;
}
.abt-target-arrow i { animation: none !important; transform: none !important; }
@keyframes arrowPulse {
    0%, 100% { transform: rotate(-45deg) scale(1); }
    50% { transform: rotate(-45deg) scale(1.15); }
}

/* Orbit Icons around target */
.abt-mission-orbit-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.abt-mo-icon {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: floatBadge 3s ease-in-out infinite;
}
.abt-mo-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.abt-mo-circle i { animation: none !important; transform: none !important; }
.abt-mo-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #555;
}
.abt-mo-1 { left: -10px; top: 40%; animation-delay: 0s; }
.abt-mo-1 .abt-mo-circle { background: linear-gradient(135deg, #667eea, #764ba2); }
.abt-mo-2 { top: -20px; left: 40%; animation-delay: 0.5s; }
.abt-mo-2 .abt-mo-circle { background: linear-gradient(135deg, #3b82f6, #0288d1); }
.abt-mo-3 { right: -20px; top: 35%; animation-delay: 1s; }
.abt-mo-3 .abt-mo-circle { background: linear-gradient(135deg, #ec407a, #c0247a); }
.abt-mo-4 { bottom: -10px; left: 45%; animation-delay: 1.5s; }
.abt-mo-4 .abt-mo-circle { background: linear-gradient(135deg, #7c3aed, #8b5cf6); }

/* Mission Badge */
.abt-mission-badge-wrap {
    text-align: center;
    margin-bottom: 40px;
}
.abt-mission-badge span {
    display: inline-block;
    background: linear-gradient(135deg, #c0247a, #e8654a);
    color: #fff;
    padding: 12px 36px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
}

/* Mission Cards */
.abt-mission-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-bottom: 50px;
}
.abt-mc-card {
    text-align: center;
    padding: 28px 16px 24px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.abt-mc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}
.abt-mc-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 6px;
    color: #fff;
    position: relative;
    transition: transform 0.4s;
}
.abt-mc-card:hover .abt-mc-icon {
    transform: scale(1.15) rotate(-8deg);
}
.abt-mc-icon i { animation: none !important; transform: none !important; }
.abt-mc-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid;
    opacity: 0.3;
}
.abt-mc-icon-1 { background: linear-gradient(135deg, #42a5f5, #1e88e5); }
.abt-mc-icon-1::after { border-color: #1e88e5; }
.abt-mc-icon-2 { background: linear-gradient(135deg, #7e57c2, #5e35b1); }
.abt-mc-icon-2::after { border-color: #5e35b1; }
.abt-mc-icon-3 { background: linear-gradient(135deg, #ec407a, #c0247a); }
.abt-mc-icon-3::after { border-color: #c0247a; }
.abt-mc-icon-4 { background: linear-gradient(135deg, #29b6f6, #0288d1); }
.abt-mc-icon-4::after { border-color: #0288d1; }
.abt-mc-icon-5 { background: linear-gradient(135deg, #ab47bc, #7b1fa2); }
.abt-mc-icon-5::after { border-color: #7b1fa2; }
.abt-mc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 auto 12px;
}
.abt-mc-card h4 {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    line-height: 1.4;
}
.abt-mc-card p {
    font-size: 12px;
    color: #777;
    line-height: 1.6;
}

/* Mission Bottom Quote */
.abt-mission-bottom-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    padding: 30px 0 0;
    border-top: 1px solid #e8e8ee;
}
.abt-mbq-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 3px;
    flex-shrink: 0;
}
.abt-mission-bottom-quote p {
    font-size: 17px;
    color: #333;
    font-weight: 600;
    max-width: 600px;
    line-height: 1.6;
}

/* Mission Responsive */
@media (max-width: 992px) {
    .abt-mission-top {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .abt-mission-desc { max-width: 100%; }
    .abt-mission-line { margin: 0 auto 24px; }
    .abt-mission-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .abt-mission { padding: 50px 0 40px; }
    .abt-mission-title { font-size: 40px; }
    .abt-mission-pre { font-size: 24px; }
    .abt-mission-target { width: 280px; height: 280px; }
    .abt-ring-1 { width: 260px; height: 260px; }
    .abt-ring-2 { width: 200px; height: 200px; }
    .abt-ring-3 { width: 140px; height: 140px; }
    .abt-ring-4 { width: 90px; height: 90px; }
    .abt-target-center { width: 50px; height: 50px; font-size: 20px; }
    .abt-mo-icon { transform: scale(0.7); }
    .abt-mo-1 { left: -5px; top: 30%; }
    .abt-mo-2 { top: -15px; left: 35%; }
    .abt-mo-3 { right: -5px; top: 30%; }
    .abt-mo-4 { bottom: -5px; left: 40%; }
    .abt-mission-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .abt-mission-bottom-quote {
        flex-direction: column;
        gap: 12px;
    }
    .abt-mbq-line { width: 40px; }
}
@media (max-width: 480px) {
    .abt-mission-title { font-size: 32px; }
    .abt-mission-cards { grid-template-columns: 1fr; }
    .abt-mission-target { width: 220px; height: 220px; }
    .abt-ring-1 { width: 210px; height: 210px; }
    .abt-ring-2 { width: 160px; height: 160px; }
    .abt-ring-3 { width: 110px; height: 110px; }
    .abt-ring-4 { width: 70px; height: 70px; }
}


/* ===== OUR COMMITMENT SECTION ===== */
.cmt-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f0f4ff 0%, #fff 30%, #f8f4ff 60%, #eef1fa 100%);
}

/* --- Hero Top --- */
.cmt-hero {
    padding: 60px 0 40px;
}
.cmt-hero-container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 40px;
}
.cmt-hero-left {
    flex: 1;
}
.cmt-pre {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
    margin-bottom: 0;
}
.cmt-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(90deg, #3b82f6, #667eea, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cmt-title-line {
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #3b82f6, #667eea);
    border-radius: 3px;
    margin-bottom: 20px;
}
.cmt-tagline {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.4;
    margin-bottom: 16px;
}
.cmt-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    max-width: 480px;
}
.cmt-hero-right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}
.cmt-hero-img {
    width: 100%;
    max-width: 440px;
    border-radius: 0 80px 0 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.cmt-hero-img img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}
.cmt-hero-placeholder {
    width: 100%;
    height: 340px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(255,255,255,0.3);
}
.cmt-hero-float {
    position: absolute;
    right: -10px;
    bottom: 40%;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    box-shadow: 0 8px 25px rgba(102,126,234,0.4);
    animation: floatBadge 3s ease-in-out infinite;
}
.cmt-hero-float i { animation: none !important; transform: none !important; }

/* --- Cards Section --- */
.cmt-cards-section {
    padding: 10px 0 40px;
}
.cmt-cards-container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 30px;
}
.cmt-badge-center {
    text-align: center;
    margin-bottom: 30px;
}
.cmt-badge-center span {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    padding: 10px 32px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
}
.cmt-cards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}
.cmt-card {
    text-align: center;
    padding: 24px 14px 20px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.cmt-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    border-color: transparent;
}
.cmt-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 14px;
    color: #fff;
    transition: transform 0.4s;
}
.cmt-card:hover .cmt-card-icon {
    transform: scale(1.12) rotate(-6deg);
}
.cmt-card-icon i { animation: none !important; transform: none !important; }
.cmt-icon-1 { background: linear-gradient(135deg, #42a5f5, #1e88e5); box-shadow: 0 6px 20px rgba(30,136,229,0.3); }
.cmt-icon-2 { background: linear-gradient(135deg, #ce93d8, #ab47bc); box-shadow: 0 6px 20px rgba(171,71,188,0.3); }
.cmt-icon-3 { background: linear-gradient(135deg, #ff8a65, #e65100); box-shadow: 0 6px 20px rgba(230,81,0,0.3); }
.cmt-icon-4 { background: linear-gradient(135deg, #66bb6a, #2e7d32); box-shadow: 0 6px 20px rgba(46,125,50,0.3); }
.cmt-icon-5 { background: linear-gradient(135deg, #ef5350, #c62828); box-shadow: 0 6px 20px rgba(198,40,40,0.3); }
.cmt-icon-6 { background: linear-gradient(135deg, #42a5f5, #1565c0); box-shadow: 0 6px 20px rgba(21,101,192,0.3); }
.cmt-card-title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    line-height: 1.4;
}
.cmt-card p {
    font-size: 12px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 14px;
}
.cmt-card-line {
    width: 35px;
    height: 3px;
    border-radius: 3px;
    margin: 0 auto;
}
.cmt-line-1 { background: #1565c0; }
.cmt-line-2 { background: #7b1fa2; }
.cmt-line-3 { background: #e65100; }
.cmt-line-4 { background: #2e7d32; }
.cmt-line-5 { background: #d32f2f; }
.cmt-line-6 { background: #1565c0; }

/* --- Bottom Quote --- */
.cmt-bottom-quote {
    padding: 30px 0 20px;
}
.cmt-bq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 30px;
}
.cmt-bq-text {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}
.cmt-bq-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.cmt-bq-highlight p {
    font-size: 22px;
    font-weight: 800;
    font-style: italic;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #c0247a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}
.cmt-bq-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 3px;
    flex-shrink: 0;
}

/* --- Bottom Bar --- */
.cmt-bottom-bar {
    padding: 20px 0 0;
}
.cmt-bar-container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
}
.cmt-bar-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 20px;
    color: #fff;
}
.cmt-bar-1 { background: linear-gradient(135deg, #667eea, #764ba2); }
.cmt-bar-2 { background: linear-gradient(135deg, #ec4899, #be185d); }
.cmt-bar-3 { background: linear-gradient(135deg, #f59e0b, #e67e22); }
.cmt-bar-4 { background: linear-gradient(135deg, #ef4444, #ec4899); }
.cmt-bar-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.cmt-bar-icon i { animation: none !important; transform: none !important; }
.cmt-bar-text h5 {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.cmt-bar-text p {
    font-size: 12px;
    opacity: 0.85;
    line-height: 1.4;
    margin: 0;
}

/* --- Commitment Responsive --- */
@media (max-width: 992px) {
    .cmt-hero-container { flex-direction: column; text-align: center; }
    .cmt-desc { max-width: 100%; }
    .cmt-title-line { margin: 0 auto 20px; }
    .cmt-cards-grid { grid-template-columns: repeat(3, 1fr); }
    .cmt-bar-container { grid-template-columns: repeat(2, 1fr); border-radius: 16px; }
    .cmt-hero-float { right: 10px; }
}
@media (max-width: 768px) {
    .cmt-hero { padding: 40px 0 30px; }
    .cmt-title { font-size: 40px; }
    .cmt-pre { font-size: 24px; }
    .cmt-tagline { font-size: 18px; }
    .cmt-hero-img img, .cmt-hero-placeholder { height: 260px; }
    .cmt-hero-float { right: 5px; bottom: 30%; width: 45px; height: 45px; font-size: 20px; }
    .cmt-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .cmt-bq-text { font-size: 16px; }
    .cmt-bq-highlight p { font-size: 18px; }
    .cmt-bq-highlight { flex-direction: column; gap: 8px; }
    .cmt-bar-container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .cmt-title { font-size: 32px; }
    .cmt-cards-grid { grid-template-columns: 1fr; }
    .cmt-bar-container { grid-template-columns: 1fr; border-radius: 12px; }
}
.cmt-cards-vision{grid-template-columns:repeat(5,1fr)}
@media(max-width:992px){.cmt-cards-vision{grid-template-columns:repeat(3,1fr)}}
@media(max-width:768px){.cmt-cards-vision{grid-template-columns:repeat(2,1fr)}}
@media(max-width:480px){.cmt-cards-vision{grid-template-columns:1fr}}


/* ===== ABOUT PAGE MOBILE FULL WIDTH ===== */
@media (max-width: 768px) {
    .abt-hero-container,
    .abt-whoweare-container,
    .abt-stats-container,
    .abt-partnership-container,
    .abt-mission-container {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
    .cmt-hero-container,
    .cmt-cards-container,
    .cmt-bq-container,
    .cmt-bar-container {
        max-width: 100% !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
}
