/* ===== ABOUT US PAGE STYLES ===== */
:root {
    --primary: #E49D34; 
    --primary-dark: #D08C24;
    --secondary: #A82424; 
    --secondary-dark: #8C1C1C;
    --neutral-light: #F8F9FA;
    --neutral: #E9ECEF;
    --neutral-dark: #495057;
    --white: #FFFFFF;
    --black: #212529;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

html {
    font-size: 14px;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
}

/* --- HERO SECTION --- */
.about-hero {
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('/Images/bg2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
}

.about-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient( 45deg, rgba(228, 157, 52, 0.1) 0%, rgba(168, 36, 36, 0.1) 100% );
}
.about-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--white) 0%, transparent 100%);
    clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 0% 100%);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 70vh;
        background-attachment: scroll;
    }
    
    .about-hero::after {
        height: 100px;
    }
    
    .about-hero-subtitle {
        padding: 1.2rem;
    }
}

html {
    scroll-behavior: smooth;
}

/* --- VISION & MISSION --- */
.vision-mission-section {
    position: relative;
    padding-bottom: 5rem;
}

.vm-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--neutral);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    transition: var(--transition);
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.vm-card:hover::before {
    width: 10px;
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--neutral-light), #fff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: var(--primary);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.vm-card:hover .vm-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    transform: rotateY(180deg);
}

.vm-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.vm-text {
    font-size: 1.1rem;
    color: var(--neutral-dark);
    line-height: 1.8;
}

/* --- STORY SECTION --- */
.story-section {
    background-color: var(--neutral-light);
    position: relative;
}

.story-img-container {
    position: relative;
    padding: 1rem;
}

.story-img-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0.1;
    border-radius: var(--radius-lg);
    z-index: 0;
}

.story-img {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    width: 100%;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.story-img:hover {
    transform: scale(1.02);
}

.story-content {
    padding-right: 2rem;
}

.story-highlight {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    display: block;
}

/* --- VALUES SECTION --- */
.value-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius);
    transition: var(--transition);
    height: 100%;
    border: 1px solid transparent;
}

.value-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.value-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: currentColor;
    opacity: 0.1;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    transition: var(--transition);
}

.value-card:hover .value-icon-bg {
    transform: rotate(135deg);
    border-radius: 50%;
}

.value-icon {
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--black);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .about-hero {
        height: 50vh;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .story-content {
        padding-right: 0;
        margin-top: 2rem;
    }
    
    .vm-card {
        padding: 2rem;
    }
}
