:root {
    --black: #0b0b0b;
    --yellow: #f7c600;
    --dark: #111;
}

/* GLOBAL */


/* HERO */


.about-hero {
    width: 100%;
    overflow: hidden;
}

/* Desktop Banner */
.hero-desktop {
    display: none;
}

.hero-desktop img {
    width: 100%;
    height: auto; /* Height based on image */
    display: block;
}

/* Mobile Banner */
.hero-mobile {
    display: none;
}

.hero-mobile img {
    width: 100%;
    height: auto;
    display: block;
}

/* Show the correct image */
@media (min-width: 768px) {
    .hero-desktop {
        display: block;
        height: auto;
    }
}

@media (max-width: 767px) {
    .hero-mobile {
        display: block;
        height: auto;
    }
}


@media (min-width: 768px) {
    .hero-desktop { display: flex; }
}

@media (max-width: 767px) {
    .hero-mobile { display: flex; }
}

.hero-content h1 {
    font-size: 56px;
    color: var(--yellow);
    animation: fadeUp 1s ease forwards;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.9;
}

/* INTRO */
.about-intro {
    padding: 50px 20px;
    background: var(--dark);
    color: white;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-intro-image img {
    width: 100%;
    border-radius: 20px;
    animation: zoomFade 1.2s ease forwards;
}

.about-intro-text h2 {
    color: var(--yellow);
    font-size: 36px;
}

/* VALUES */
.about-values {
    background: var(--dark);
    color: white;
    padding: 90px 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-box {
    background: var(--black);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(247,198,0,0.2);
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.4s ease;
}

.value-box:hover {
    transform: translateY(-10px);
    border-color: var(--yellow);
}

.value-icon {
    margin-bottom: 10px;
}

.values-grid h3{
    margin-bottom:8px;  
}
.values-grid .icon-svg {
    width: 48px;
    height: 48px;
    fill: none;
    stroke: var(--yellow);
    stroke-width: 1.8;
    transition: transform 0.4s ease;
}

.value-box:hover .icon-svg {
    transform: scale(1.15);
}

.about-mvv {
    padding: 40px 20px;
    background: linear-gradient(180deg, #f9fafb, #ffffff);
}

.mvv-container {
    max-width: 1200px;
    margin: auto;
}

.mvv-header {
    max-width: 600px;
    margin:0 auto 40px auto;
    text-align: center;
}

.mvv-header h2 {
    font-size: 40px;
    margin-bottom: 4px;
}

.mvv-header p {
    color: #666;
    font-size: 18px;
}

/* GRID */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD BASE */
.mvv-card {
    position: relative;
    padding: 40px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

/* LABEL */
.mvv-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* HEADINGS */
.mvv-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

/* TEXT */
.mvv-card p,
.mvv-card li {
    color: #555;
    line-height: 1.7;
}

/* VALUES LIST */
.mvv-card ul {
    padding-left: 20px;
}

.mvv-card ul li {
    margin-bottom: 10px;
}

/* ACCENT STYLES */
.mission {
    border-left: 6px solid #6a11cb;
}

.vision {
    border-left: 6px solid #2575fc;
}

.values {
    border-left: 6px solid #ff9800;
}


@media (max-width:768px){
    .about-intro-grid {
        grid-template-columns: 1fr;
    }
    .mvv-grid {
        grid-template-columns: 1fr;
    }

    .mvv-header h2 {
        font-size: 28px;
    }
}
/* ICON STYLE */
.mvv-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 24px;
    color: #fff;
}

/* ICON COLORS */
.mission .mvv-icon {
    background: linear-gradient(135deg, #6a11cb, #8e2de2);
}

.vision .mvv-icon {
    background: linear-gradient(135deg, #2575fc, #4facfe);
}

.values .mvv-icon {
    background: linear-gradient(135deg, #ff9800, #ffc107);
}

/* SMOOTH ICON HOVER */
.mvv-card:hover .mvv-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.card-header{
    display: flex;
    align-items: center;
    gap: 10px;
}

