


/* Hero Banner Section */
/* Page Title Section */
.page-title-section {
    background-color: var(--primary-color);
    padding: 40px 0;
    color: white;
    text-align: center;
    margin-bottom: 50px;
}

.page-title-section h1 {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.page-title-section h1:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
}

.breadcrumb {
    margin-top: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb i {
    margin: 0 10px;
    font-size: 0.8rem;
}

.breadcrumb span {
    color: var(--secondary-color);
}
@media (max-width: 576px) {
    .page-title-section h1 {
        font-size: 2rem;
    }
}

/* Teachers Section */
.teachers-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Our team  */
#ourteam {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.our_team {
    position: relative;
}

.team_header {
    margin-bottom: 40px;
}

.subtitle {
    color: #FF7A59;
    font-size: 16px;
    margin-bottom: 16px;
}

.title {
    font-size: 42px;
    font-weight: bold;
    max-width: 600px;
    line-height: 1.2;
}

.team_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.team_member {
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    max-width:300px;
}

.member_image {
    width: 100%;
    height: 360px;
    object-fit:cover;
}

.member_info {
    padding: 24px;
    background: #FFF3E0;
    position: relative;
}

.member_name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.member_position {
    color: #666;
    font-size: 14px;
}

.share_button {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    background: #FF7A59;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
}

.navigation {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    gap: 12px;
}

.nav_button {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav_button:hover {
    border-color: #FF7A59;
    color: #FF7A59;
}

@media (max-width: 768px) {
    .title {
        font-size: 32px;
    }

    .navigation {
        position: static;
        justify-content: center;
        margin-top: 24px;
    }

    .team_grid {
        grid-template-columns: 1fr;
    }
}
