/* our_people.css - Compact Version */

/* === RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Read More Button */
.read-more-btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    margin: 10px 0 0 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
    align-self: flex-start;
    margin-top: auto;
}

.read-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.5);
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #d4af37 0%, #f4c542 100%);
}

.read-more-btn i {
    margin-right: 8px;
}

/* === HERO SECTION === */
.people-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(42, 52, 62, 0.75) 100%), 
    url('https://wallpaperaccess.com/full/643390.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 50px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.people-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.people-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 18px;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
}

.people-hero p {
    font-size: 17px;
    opacity: 0.95;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.breadcrumb-nav a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.breadcrumb-nav a:hover {
    color: #667eea;
}

.breadcrumb-nav span:last-child {
    color: rgba(255, 255, 255, 0.7);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === LEADERSHIP SECTION === */
.leadership-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
}

.leadership-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.leadership-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.leadership-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.leadership-icon {
    font-size: 38px;
    margin-bottom: 15px;
}

.leadership-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.leadership-card p {
    font-size: 14px;
    opacity: 0.95;
    line-height: 1.6;
}

/* === PEOPLE SECTION === */
.people-section {
    padding: 70px 0;
    background: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* ===== Partner Card Fix ===== */

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-member-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.member-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.member-photo {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-member-card:hover .member-photo {
    transform: scale(1.05);
}

.member-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    padding: 24px 22px 30px 22px;
    text-align: left;
}

.member-name {
    font-weight: 700;
    font-size: 1.15rem;
    color: #1d1d1d;
    margin-bottom: 6px;
}

.member-designation {
    font-weight: 600;
    color: #4c6ef5;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.member-description {
    flex-grow: 1;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 14px;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.skill-tag {
    background-color: #eef2ff;
    color: #4c6ef5;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: #1d3a8a;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 40px;
    font-size: 0.9rem;
    margin-top: auto;
    transition: background 0.3s ease;
}

.read-more-btn i {
    font-size: 0.95rem;
}

.read-more-btn:hover {
    background-color: #2c56d4;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .member-photo {
        height: 320px;
    }
}


/* === TEAM IMAGE SECTION === */
.team-image-section {
    padding: 70px 0;
    background: #f8f9fa;
}

.team-showcase {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.team-content-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 20px;
    line-height: 1.3;
}

.team-content-text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}
.team-content-text strong{
    color: #d4af37;
    font-weight: 700;
}
.team-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    height: 400px;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.team-image-wrapper:hover .team-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.2) 0%, rgba(102, 126, 234, 0.1) 100%);
}

/* === DEPARTMENTS SECTION === */
.departments-section {
    padding: 70px 0;
    background: white;
}


.department-item {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 4px solid #d4af37;
    transition: all 0.3s ease;
    height: 100%;
}

.department-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    border-left-width: 6px;
}

.department-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d67c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.department-icon i {
    font-size: 24px;
    color: white;
}

.department-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 12px;
}

.department-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* === CULTURE SECTION === */
.culture-section {
    padding: 70px 0;
    background: #f8f9fa;
}

.culture-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    height: 450px;
}

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

.culture-content {
    padding-left: 30px;
}

.culture-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 20px;
}

.culture-text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.culture-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 18px;
    margin-top: 10px;
}

.culture-list {
    list-style: none;
    padding: 0;
}

.culture-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.culture-list li i {
    position: absolute;
    left: 0;
    color: #667eea;
    font-size: 16px;
    top: 12px;
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.cta-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 18px;
}

.cta-content p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 42px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: #667eea;
}

/* === BOOTSTRAP GRID === */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.align-items-center {
    align-items: center;
}

.col-md-6,
.col-lg-6 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-lg-0 {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .mb-lg-0 {
        margin-bottom: 0 !important;
    }
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .team-showcase {
        padding: 40px 30px;
    }

    .team-content {
        margin-bottom: 30px;
    }

    .team-image-wrapper,
    .culture-image-wrapper {
        height: 350px;
    }

    .team-stats {
        gap: 20px;
    }

    .culture-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .people-hero h1 {
        font-size: 36px;
    }

    .people-hero p {
        font-size: 16px;
    }

    .section-title {
        font-size: 30px;
    }

    .team-content-title,
    .culture-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .people-hero {
        padding: 60px 0 50px;
    }

    .people-hero h1 {
        font-size: 30px;
    }

    .people-hero p {
        font-size: 15px;
    }

    .leadership-section {
        padding: 50px 0;
    }

    .leadership-title {
        font-size: 28px;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .people-section,
    .team-image-section,
    .departments-section,
    .culture-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .member-image-wrapper {
        height: 280px;
    }

    .member-name {
        font-size: 18px;
    }

    .member-designation {
        font-size: 14px;
    }

    .member-description {
        font-size: 13px;
        flex-grow: 1;
    }

    /* Mobile compact spacing */
    .member-info {
        padding: 20px 18px 12px 18px;
    }
    
    .member-description {
        margin-bottom: 8px;
    }
    
    .member-skills {
        margin-bottom: 8px;
    }

    .team-showcase {
        padding: 30px 20px;
    }

    .team-content-title,
    .culture-title {
        font-size: 24px;
    }

    .team-content-text,
    .culture-text {
        font-size: 14px;
    }

    .team-stats {
        flex-direction: column;
        gap: 15px;
    }

    .stat-item {
        text-align: left;
    }

    .stat-number {
        font-size: 28px;
    }

    .team-image-wrapper,
    .culture-image-wrapper {
        height: 280px;
    }

    .department-item {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .department-icon {
        width: 50px;
        height: 50px;
    }

    .department-icon i {
        font-size: 22px;
    }

    .department-item h3 {
        font-size: 18px;
    }

    .department-item p {
        font-size: 13px;
    }

    .culture-list li {
        font-size: 13px;
        padding-left: 28px;
    }

    .culture-list li i {
        font-size: 14px;
        top: 11px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 14px;
    }

    .cta-btn {
        padding: 14px 35px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .people-hero h1 {
        font-size: 26px;
    }

    .section-title {
        font-size: 24px;
    }

    .team-member-card {
        margin-bottom: 0;
    }

    .member-image-wrapper {
        height: 250px;
    }

    .member-info {
        padding: 20px 15px 10px 15px;
    }

    .team-image-wrapper,
    .culture-image-wrapper {
        height: 250px;
    }

    .team-stats {
        gap: 12px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }
}

/* === UTILITY CLASSES === */
.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}