/* ==========================================================================
ABOUT US LAYOUT ENGINE (about.css)
========================================================================== */

/* STREAMING_CHUNK: Declaring typographic base utilities and colors */
.section-subtitle {
display: block;
font-size: 13px;
font-weight: 700;
color: var(--gold);
letter-spacing: 1.5px;
text-transform: uppercase;
margin-bottom: 12px;
}

.gold-text {
color: var(--gold) !important;
}

.about-section-title {
font-size: 38px;
font-weight: 800;
line-height: 1.25;
color: var(--text-dark);
margin-bottom: 24px;
letter-spacing: -0.5px;
}

/* STREAMING_CHUNK: Designing the cityscape about-hero block overlay style /
/ 1. About Hero Section (Cityscape Background Masked Overlay) */
.about-hero {
position: relative;
background: linear-gradient(rgba(17, 24, 39, 0.88), rgba(17, 24, 39, 0.88)),
url('https://images.unsplash.com/photo-1519501025264-65ba15a82390?auto=format&fit=crop&w=1600&q=80') no-repeat center center / cover;
padding: 130px 0 110px;
color: var(--white);
}

.about-hero-content {
max-width: 680px;
}

.about-hero-content .hero-title {
font-size: 46px;
font-weight: 800;
line-height: 1.15;
color: var(--white);
margin-bottom: 24px;
letter-spacing: -1px;
}

.about-hero-content .hero-desc {
font-size: 16.5px;
color: #E5E7EB;
line-height: 1.65;
font-weight: 400;
}

/* STREAMING_CHUNK: Creating the structural Story block grids /
/ 2. About Our Story Section Grid Layout */
.about-story {
padding: 100px 0;
background-color: var(--white);
}

.about-story-grid {
display: grid;
grid-template-columns: 1.1fr 0.9fr;
gap: 70px;
align-items: center;
}

.about-story-content p {
color: var(--text-gray);
margin-bottom: 24px;
font-size: 16px;
line-height: 1.7;
}

.about-story-media {
position: relative;
border-radius: 28px;
overflow: hidden;
box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.rounded-media-img {
width: 100%;
height: 480px;
object-fit: cover;
display: block;
border-radius: 28px;
}

.media-play-overlay {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 76px;
height: 76px;
background-color: rgba(255, 255, 255, 0.95);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
box-shadow: 0 12px 30px rgba(0,0,0,0.18);
transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.media-play-overlay i {
color: var(--navy);
font-size: 22px;
margin-left: 5px;
}

.media-play-overlay:hover {
transform: translate(-50%, -50%) scale(1.1);
}

/* STREAMING_CHUNK: Laying out the responsive team sliders and grids /
/ 3. Team Section Layout Engine */
.team-section {
padding: 95px 0;
background-color: #F9FAFB;
}

.team-header-row {
display: flex;
justify-content: space-between;
align-items: flex-end;
margin-bottom: 54px;
}

.slider-arrows {
display: flex;
gap: 14px;
margin-bottom: 12px;
}

.arrow-btn {
width: 46px;
height: 46px;
border-radius: 50%;
border: 1px solid var(--border-light);
background-color: var(--white);
color: var(--text-dark);
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
transition: all 0.25s ease;
}

.arrow-btn:hover {
background-color: var(--navy);
color: var(--white);
border-color: var(--navy);
}

.team-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.team-card {
border-radius: 20px;
overflow: hidden;
background-color: var(--white);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
border: 1px solid rgba(0, 0, 0, 0.03);
}

.team-img-wrapper {
position: relative;
width: 100%;
height: 400px;
overflow: hidden;
}

.team-card img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.4s ease;
}

.team-card:hover img {
transform: scale(1.04);
}

/* STREAMING_CHUNK: Designing values section grid layout /
/ 4. Values Section */
.values-section {
padding: 100px 0;
background-color: var(--white);
}

.values-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 75px;
align-items: center;
}

.values-media-card {
position: relative;
border-radius: 28px;
overflow: hidden;
height: 520px;
box-shadow: 0 20px 45px rgba(0,0,0,0.07);
}

.values-bg-img {
width: 100%;
height: 100%;
object-fit: cover;
}

.values-overlay-text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 250px;
height: 250px;
border: 1px solid rgba(255, 255, 255, 0.35);
background: rgba(17, 24, 39, 0.25);
backdrop-filter: blur(10px);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}

.orb-content {
font-family: var(--font-heading);
color: var(--white);
font-size: 32px;
font-weight: 700;
}

.value-item-box {
background-color: var(--white);
padding: 24px 28px;
border-radius: 16px;
box-shadow: 0 6px 24px rgba(0, 0, 0, 0.02);
border: 1px solid #F3F4F6;
margin-bottom: 20px;
transition: transform 0.3s ease, border-color 0.3s ease;
}

.value-item-box:hover {
transform: translateY(-2px);
border-color: rgba(194, 155, 98, 0.3);
}

.value-item-box:last-child {
margin-bottom: 0;
}

.value-item-box h3 {
font-size: 19px;
color: var(--text-dark);
font-weight: 700;
margin-bottom: 8px;
}

.value-item-box p {
font-size: 15px;
color: var(--text-gray);
line-height: 1.6;
}

/* STREAMING_CHUNK: Drafting Vision and Mission content stack styles /
/ 5. Vision and Mission Layout */
.vision-mission-section {
padding: 60px 0 110px;
background-color: var(--white);
}

.vision-mission-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 75px;
align-items: center;
}

.cards-stack {
display: flex;
flex-direction: column;
gap: 28px;
}

.info-card {
background-color: var(--white);
padding: 40px;
border-radius: 20px;
border: 1px solid var(--border-light);
box-shadow: 0 10px 35px rgba(0,0,0,0.015);
}

.info-card-badge {
display: inline-block;
font-family: var(--font-heading);
font-size: 22px;
font-weight: 700;
color: var(--gold);
margin-bottom: 16px;
}

.info-card p {
font-size: 15.5px;
color: var(--text-gray);
line-height: 1.7;
}

.vision-media-card .rounded-media-img {
height: 480px;
}

/* STREAMING_CHUNK: Detailing the CTA container and dark banners /
/ 6. Isolated Embedded Rounded CTA Block Section */
.cta-banner-wrapper {
padding: 40px 0 100px;
background-color: var(--white);
}

.embedded-cta-block {
background: linear-gradient(rgba(17, 21, 31, 0.9), rgba(17, 21, 31, 0.9)),
url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1600&q=80') no-repeat center center / cover;
border-radius: 28px;
padding: 70px 90px;
color: var(--white);
}

.cta-inner-content {
max-width: 640px;
}

.embedded-cta-block h2 {
font-size: 38px;
font-weight: 800;
line-height: 1.25;
color: var(--white);
margin-bottom: 20px;
}

.embedded-cta-block p {
color: #D1D5DB;
font-size: 16px;
line-height: 1.65;
margin-bottom: 36px;
}

.cta-actions-row {
display: flex;
gap: 16px;
}

/* STREAMING_CHUNK: Enhancing footer logos */
.footer-logo {
font-size: 32px;
font-weight: 800;
color: var(--gold);
letter-spacing: 1px;
display: flex;
align-items: center;
gap: 12px;
}

.footer-logo img {
height: 44px;
width: auto;
}

.logo-text-footer {
color: var(--white);
}

/* STREAMING_CHUNK: Media query styles for responsive responsiveness overrides /
/ ==========================================================================
RESPONSIVE SYSTEMS
========================================================================== */
@media (max-width: 991px) {
.about-story-grid,
.values-grid,
.vision-mission-grid {
grid-template-columns: 1fr;
gap: 50px;
}

.about-story-media {
    order: -1;
}

.rounded-media-img {
    height: 380px;
}

.values-media-card {
    height: 400px;
}

.embedded-cta-block {
    padding: 50px 40px;
}


}

@media (max-width: 768px) {
.about-hero {
padding: 90px 0;
}
.about-hero-content .hero-title {
font-size: 34px;
}
.about-section-title {
font-size: 30px;
}
.team-grid {
grid-template-columns: 1fr;
gap: 30px;
}
.team-img-wrapper {
height: 350px;
}
.team-header-row {
flex-direction: column;
align-items: flex-start;
gap: 20px;
}
.embedded-cta-block h2 {
font-size: 30px;
}
.cta-actions-row {
flex-direction: column;
gap: 12px;
}
.cta-actions-row button {
width: 100%;
text-align: center;
}
}