:root {
    --a-blue: #0D3B66;
    --a-orange: #F77F00;
    --a-text: #475569;
    --a-bg-light: #f8fafc;
}

body {
    margin: 0;
    font-family: 'Jost', sans-serif;
    background: #ffffff;
}

.premium-about-section {
    padding: 120px 5%;
    background: #ffffff;
    overflow: hidden;
}

.about-container {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

/* --- LEFT: IMAGE CLUSTER --- */
.about-image-cluster {
    position: relative;
    z-index: 1;
}

.image-backdrop {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 80%;
    height: 90%;
    background: var(--a-bg-light);
    border-radius: 40px;
    z-index: -1;
}

.main-about-img {
    width: 100%;
    height: auto;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(13, 59, 102, 0.15);
    display: block;
    object-fit: cover;
}

.floating-experience-pill {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 15px 30px 15px 15px;
    border-radius: 50px;
    /* Pill Shape */
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(13, 59, 102, 0.05);
    animation: float 4s ease-in-out infinite;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: var(--a-orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.exp-text strong {
    display: block;
    color: var(--a-blue);
    font-size: 18px;
    font-weight: 800;
}

.exp-text span {
    color: var(--a-text);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* --- RIGHT: CONTENT --- */
.bubble-tag {
    background: rgba(247, 127, 0, 0.1);
    color: var(--a-orange);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 25px;
}

.about-heading h2 {
    font-size: 52px;
    font-weight: 800;
    color: var(--a-blue);
    line-height: 1.1;
    margin: 0 0 25px 0;
}

.about-heading span {
    color: var(--a-orange);
}

.lead-text {
    font-size: 20px;
    color: var(--a-blue);
    margin-bottom: 40px;
    font-weight: 500;
    line-height: 1.6;
}

/* TEXT GRID */
.about-grid-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.text-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.block-icon {
    width: 40px;
    height: 40px;
    background: var(--a-bg-light);
    color: var(--a-orange);
    border-radius: 50%;
    /* Tiny bubbles for icons */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.text-block p {
    color: var(--a-text);
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

/* QUOTE BUBBLE */
.about-quote-bubble {
    background: var(--a-bg-light);
    padding: 25px 35px;
    border-radius: 0 30px 30px 30px;
    /* Chat bubble shape */
    border-left: 5px solid var(--a-orange);
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 20px rgba(13, 59, 102, 0.03);
}

.quote-icon {
    font-size: 30px;
    color: rgba(247, 127, 0, 0.2);
}

.about-quote-bubble p {
    font-style: italic;
    color: var(--a-blue);
    font-weight: 600;
    font-size: 18px;
    margin: 0;
    line-height: 1.5;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image-cluster {
        max-width: 700px;
        margin: 0 auto;
    }

    .about-heading h2 {
        font-size: 42px;
    }

    .image-backdrop {
        top: -20px;
        left: -20px;
    }
}

@media (max-width: 600px) {
    .premium-about-section {
        padding: 80px 20px;
    }

    .about-grid-text {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-heading h2 {
        font-size: 36px;
    }

    .floating-experience-pill {
        bottom: -15px;
        right: 0;
        left: 0;
        margin: auto;
        width: max-content;
    }

    .about-quote-bubble {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        border-radius: 20px;
    }
}


/* mission & vision */


:root {
    --p-blue: #0D3B66;
    --p-orange: #F77F00;
    --p-bg: #fdfdfe;
    --p-border: #eef2f6;
}

.clean-mv-section {
    padding: 100px 5%;
    background-color: var(--p-bg);
}

.clean-container {
    max-width: 1000px;
    /* Narrower for better readability */
    margin: 0 auto;
}

/* --- HEADER --- */
.clean-header {
    margin-bottom: 60px;
}

.mini-tag {
    color: var(--p-orange);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.clean-header h2 {
    font-size: 48px;
    line-height: 1.1;
    color: var(--p-blue);
    font-weight: 800;
    margin: 0;
}

.clean-header h2 span {
    color: var(--p-orange);
}

/* --- WIDE PILL CARDS --- */
.wide-pill-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.wide-pill {
    background: #ffffff;
    border: 1px solid #F77F00;
    padding: 40px;
    border-radius: 40px;
    /* Deep rounded corners */
    display: flex;
    align-items: center;
    gap: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(13, 59, 102, 0.02);
}

.wide-pill.orange-accent {
    border-color: var(--p-blue);
}

.wide-pill:hover {
    transform: scale(1.02);
    border-color: var(--p-blue);
    box-shadow: 0 20px 40px rgba(13, 59, 102, 0.08);
}

.wide-pill.orange-accent:hover {
    border-color: var(--p-orange);
}

/* Left side of Pill */
.pill-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.pill-number {
    font-size: 12px;
    font-weight: 900;
    color: #cbd5e1;
}

.pill-icon-box {
    width: 60px;
    height: 60px;
    background: var(--p-bg);
    color: var(--p-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 1px solid var(--p-border);
}

.orange-accent .pill-icon-box {
    color: var(--p-orange);
}

/* Center of Pill (The Content) */
.pill-center {
    flex: 1;
}

.pill-center h3 {
    font-size: 24px;
    margin: 0 0 10px 0;
    color: var(--p-blue);
    font-weight: 800;
}

.orange-accent-h3 {
    color: var(--a-orange) !important;
}

.pill-center p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Right side of Pill */
.status-indicator {
    font-size: 10px;
    font-weight: 900;
    background: var(--p-blue);
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
    letter-spacing: 1px;
}

.orange-accent .status-indicator {
    background: var(--p-orange);
}

/* --- BOTTOM MINI BUBBLES --- */
.mini-bubble-row {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.mini-bubble {
    background: #fff;
    border: 1px solid #475569;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: var(--p-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.mini-bubble i {
    color: var(--p-orange);
}

/* --- RESPONSIVE --- */
@media (max-width: 800px) {
    .wide-pill {
        flex-direction: column;
        text-align: center;
        padding: 40px 25px;
        gap: 20px;
    }

    .clean-header h2 {
        font-size: 32px;
    }

    .pill-left {
        flex-direction: row;
    }
}


/* Achievement Section */


:root {
    --ac-blue: #0D3B66;
    --ac-orange: #F77F00;
    --ac-bg: #f8fafc;
}

.achievement-elite {
    padding: 100px 5%;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Background Decorative Glow */
.achieve-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(247, 127, 0, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.achievement-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* THE STAT CARD */
.achievement-item {
    background: #ffffff;
    padding: 50px 30px;
    border-radius: 40px;
    /* Bubble theme */
    text-align: center;
    border: 1px solid #eef2f6;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 10px 30px rgba(13, 59, 102, 0.02);
}

.achievement-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(13, 59, 102, 0.08);
    border-color: var(--ac-blue);
}

/* Special Glow for the "Hero" Stat */
.active-glow {
    border-color: rgba(247, 127, 0, 0.3);
    box-shadow: 0 20px 40px rgba(247, 127, 0, 0.1);
}

/* FLOATING ICON */
.achieve-icon {
    width: 70px;
    height: 70px;
    background: #ffffff;
    color: var(--ac-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border-radius: 24px;
    /* Soft bubble square */
    margin: 0 auto 25px auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    transition: 0.3s;
}

.achievement-item:hover .achieve-icon {
    background: var(--ac-orange);
    color: #ffffff;
    transform: rotateY(180deg);
    /* Modern flip effect */
}

/* CONTENT */
.achievement-item h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--ac-blue);
    margin: 0 0 15px 0;
    letter-spacing: -1px;
}

.achieve-line {
    width: 40px;
    height: 4px;
    background: var(--ac-orange);
    margin: 0 auto 20px auto;
    border-radius: 50px;
    opacity: 0.3;
    transition: 0.3s;
}

.achievement-item:hover .achieve-line {
    width: 60px;
    opacity: 1;
}

.achievement-item p {
    font-size: 15px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .achievement-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .achievement-container {
        grid-template-columns: 1fr;
    }

    .achievement-item {
        padding: 40px 20px;
    }

    .achievement-item h2 {
        font-size: 36px;
    }
}

.achieve-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px auto;
    /* Space between header and the stat cards */
    position: relative;
    z-index: 5;
}

/* THE MINI PILL TAG */
.achieve-badge {
    display: inline-block;
    background: rgba(247, 127, 0, 0.1);
    /* Soft Orange Glow */
    color: #F77F00;
    padding: 8px 24px;
    border-radius: 50px;
    /* Bubble Pill Shape */
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 20px;
    border: 1px solid rgba(247, 127, 0, 0.2);
}

/* MAIN TITLE */
.achieve-header h2 {
    font-size: 48px;
    color: #0D3B66;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 20px 0;
}

.achieve-header h2 span {
    color: #F77F00;
}

/* DECORATIVE DIVIDER */
.header-divider {
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #F77F00, #0D3B66);
    margin: 0 auto 25px auto;
    border-radius: 50px;
}

/* SUBTEXT */
.achieve-header p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .achieve-header h2 {
        font-size: 32px;
    }

    .achieve-header p {
        font-size: 16px;
        padding: 0 15px;
    }
}