/* --- GLOBAL UTILS --- */
.section-padding { padding: 100px 20px; }
.hero-container { max-width: 1200px; margin: 0 auto; width: 100%; }
.light-bg { background-color: #f8fafc; }
.sub-heading { color: #0ca395; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; display: block; margin-bottom: 10px; }
.text-center { text-align: center; }

/* --- PAGE HERO BANNER --- */
.page-hero {
    position: relative;
    padding: 180px 20px 140px;
    background: linear-gradient(135deg, #0b2239 0%, #0ca395 100%);
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.2;
}

.relative-z {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Angled Divider */
.custom-shape-divider-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
}
.custom-shape-divider-bottom svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}
.custom-shape-divider-bottom .shape-fill {
    fill: #ffffff;
}

/* --- OUR STORY SECTION --- */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -1px;
    right: -1px;
    background: #0ca395;
    color: white;
    padding: 30px;
    border-radius: 40px 0 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.experience-badge .years {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
}

.story-text h2 {
    font-size: 2.4rem;
    color: #0b2239;
    margin-bottom: 25px;
    line-height: 1.2;
}

.story-text p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-text strong {
    color: #0ca395;
}

.story-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0b2239;
}

.feature-item i {
    color: #0ca395;
    font-size: 1.3rem;
}

/* --- MISSION & VISION --- */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border-top: 5px solid #0ca395;
    transition: transform 0.3s;
}

.mv-card:hover {
    transform: translateY(-5px);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: #e6f7f5;
    color: #0ca395;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
}

.mv-card h3 {
    font-size: 1.8rem;
    color: #0b2239;
    margin-bottom: 15px;
}

.mv-card p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* --- CORE VALUES --- */
.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #0b2239;
    margin-bottom: 15px;
}

.section-header p {
    color: #64748b;
    font-size: 1.1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: #ffffff;
    border: 1px solid #eaedf3;
    padding: 40px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    border-color: #0ca395;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: #f8fafc;
    color: #1b84f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: 0.3s;
}

.value-card:hover .value-icon {
    background: #1b84f5;
    color: white;
}

.value-card h4 {
    font-size: 1.15rem;
    color: #0b2239;
    margin-bottom: 15px;
}

.value-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- BOTTOM CTA --- */
.bottom-cta {
    background: #0ca395;
    padding: 80px 20px;
    text-align: center;
    color: white;
    margin: 40px 20px;
    border-radius: 24px;
}

.bottom-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.bottom-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-large, .btn-secondary-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary-large {
    background: white;
    color: #0ca395;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.btn-primary-large:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0,0,0,0.2); }

.btn-secondary-large {
    background: transparent;
    color: white;
    border: 2px solid white;
}
.btn-secondary-large:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }


/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 1024px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .story-grid { grid-template-columns: 1fr; }
    .story-image { order: 2; margin-top: 30px; }
    .story-text { order: 1; text-align: center; }
    .story-features { align-items: center; }
    .mv-grid { grid-template-columns: 1fr; }
    .experience-badge { padding: 20px; }
    .experience-badge .years { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .page-hero h1 { font-size: 2.5rem; }
    .story-text h2 { font-size: 2rem; }
    .values-grid { grid-template-columns: 1fr; }
    .bottom-cta { margin: 20px; padding: 60px 20px; }
    .cta-buttons { flex-direction: column; }
    .btn-primary-large, .btn-secondary-large { justify-content: center; width: 100%; }
}