.dot {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: lightgray;
    transition: background-color 0.3s;
}
.dot.active {
    background-color: #d93134;
}
.arrow {
    cursor: pointer;
    font-size: 10px;
    font-weight: bold;
    color: #d93134;
    transition: color 0.3s;
    margin-left: 5px;
    margin-right: 5px;
}

.pagination-page {
    display: none;
}

.pagination-indicators {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    margin-bottom: 5px;
}
.profile-card {
    width: 575px;
    height: 210px;
    display: flex;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #fff9f0, #ffe9cc);
}

/* Left side photo */
.profile-photo {
    flex: 0 0 45%;
    height: 100%;
    overflow: hidden;
}
.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Right side info */
.profile-info {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #b35c00;
    background: #ffe0b2;
    padding: 4px;
    border-radius: 18px;
    margin-bottom: 8px;
}
.badge2 {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #b35c00;
    background: #ffe0b2;
    padding: 4px;
    border-radius: 18px;
    margin-bottom: 8px;
}
.name {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin: 0;
}
.name span {
    font-size: 14px;
    font-weight: 400;
    color: #777;
}

.details {
    font-size: 14px;
    color: #444;
    margin: 0;
}

.edu {
    font-size: 14px;
    color: #333;
}
.view-btn {
    align-self: center;
    background: linear-gradient(135deg, #ffb347, #ff7e5f);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
