/* Styles for About Us page */

/* Header */
.about-header {
    text-align: center;
    background-image: url('https://drishtishares.com/wp-content/uploads/2022/01/equity-page-banner-1.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 20px;
}
.about-header h1 {
    color: #ffffff;
    font-size: 42px;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    margin: 0;
}

/* Container */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Welcome Section */
.welcome-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}
.welcome-text {
    flex: 1;
    min-width: 300px;
}
.welcome-text h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 10px;
}
.welcome-text h3 {
    color: #1e3a8a;
    font-size: 22px;
    margin-bottom: 20px;
}
.welcome-text p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}
.welcome-img-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}
.welcome-img-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Mission Section */
.mission-section {
    background-color: #f8fafc;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 60px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center;
}
.mission-section h3 {
    color: #1e3a8a;
    font-size: 24px;
    margin-bottom: 25px;
}
.mission-section p {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}
.mission-section p:last-child {
    margin-bottom: 0;
}

/* Section Common */
.section-wrapper {
    margin-bottom: 80px;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    color: #333;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}
.section-header h3 {
    color: #1e3a8a;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.section-divider {
    height: 3px;
    width: 60px;
    background: #fceb5d;
    margin: 20px auto 0;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Values */
.value-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.value-card h4 {
    color: #1e3a8a;
    font-size: 18px;
    margin-bottom: 15px;
}
.value-card p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}
.value-card.integrity { border-left: 4px solid #1e3a8a; }
.value-card.customer { border-left: 4px solid #fceb5d; }
.value-card.team { border-left: 4px solid #4caf50; }
.value-card.foresighted { border-left: 4px solid #f44336; }
.value-card.work-ethics { border-left: 4px solid #9c27b0; }

/* Team Card */
.team-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-top: 4px solid #1e3a8a;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    border-top-color: #fceb5d;
}

.team-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(30,58,138,0.05) 0%, rgba(255,255,255,0) 100%);
    border-radius: 50%;
    z-index: 0;
}

.team-card > * {
    position: relative;
    z-index: 1;
}

.team-role {
    color: #1e3a8a;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-weight: 700;
}

.team-name {
    color: #222;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.team-contact {
    color: #666;
    font-size: 14px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
