/* About Page Specific Styles */

:root {
    --primary-orange: #FF5E00;
    --dark-blue: #003366;
    --light-grey: #f8f9fa;
    --text-muted: #6c757d;
}

/* Breadcrumbs */
.breadcrumb-section {
    background: #fdfdfd;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb-item a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: var(--dark-blue);
    font-weight: 700;
}

/* About Hero */
.about-hero {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: var(--primary-orange);
    font-weight: 700;
    margin-bottom: 40px;
}

.vertical-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.tall img {
    height: 415px;
}

/* Introduction */
.intro-section {
    padding: 80px 0;
    background: #fcfcfc;
}

.vision-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    border-left: 5px solid var(--primary-orange);
}

.vision-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.vision-list li {
    padding: 10px 0;
    font-weight: 700;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.vision-list li::before {
    content: "→";
    color: var(--primary-orange);
}

/* Core Values */
.values-section {
    padding: 80px 0;
    background: var(--dark-blue);
    color: white;
}

.value-item {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    height: 100%;
    transition: 0.3s;
}

.value-item:hover {
    background: rgba(255,255,255,0.1);
    transform: scale(1.02);
}

.value-item i {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
    display: block;
}

/* Journey Section */
.journey-section {
    padding: 100px 0;
}

.timeline-box {
    padding-left: 30px;
    border-left: 3px solid var(--primary-orange);
    position: relative;
}

.timeline-box::before {
    content: "";
    position: absolute;
    left: -11px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-orange);
    border-radius: 50%;
}

.product-tag {
    display: inline-block;
    padding: 8px 16px;
    background: #fff0e6;
    color: var(--primary-orange);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin: 5px;
}

/* Team Section */
.team-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
    border: 1px solid rgba(0, 51, 102, 0.05);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 51, 102, 0.1);
    border-color: var(--primary-orange);
}

.team-header {
    background: var(--dark-blue);
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-header::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: white;
    opacity: 0.05;
    border-radius: 50%;
}

.team-img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
    transition: 0.4s;
}

.team-card:hover .team-img {
    transform: scale(1.05);
    border-color: var(--primary-orange);
}

.team-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-orange);
    color: white;
    padding: 4px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.team-info {
    padding: 35px 30px;
    text-align: center;
    flex-grow: 1;
}

.team-name {
    font-weight: 900;
    color: var(--dark-blue);
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.team-role {
    color: var(--primary-orange);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

.team-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

.team-footer {
    padding: 20px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    text-align: center;
}

.team-footer .badge {
    background: white !important;
    color: var(--dark-blue) !important;
    border: 1px solid #ddd !important;
    padding: 8px 15px !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    margin: 3px;
}

.team-card:hover .team-footer .badge {
    border-color: var(--primary-orange) !important;
    color: var(--primary-orange) !important;
}

.work-exp {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
}

.work-exp span {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 5px;
}

/* Trust Section */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.trust-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--dark-blue);
    transition: 0.3s;
}

.trust-item:hover {
    background: var(--primary-orange);
    color: white;
}

.trust-item i {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.trust-item:hover i {
    color: white;
}

/* Mid Page CTA */
.mid-cta {
    background: linear-gradient(rgba(0,51,102,0.9), rgba(0,51,102,0.9)), url('../images/Executed Work_JES/22.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    color: white;
}

@media (max-width: 991px) {
    .about-hero-title { font-size: 2.5rem; }
    .vertical-gallery { margin-top: 50px; }
}
