@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500;700&display=swap');

body {
    background: #eef2f7;
    font-family: 'Quicksand', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.card-container {
    background: white;
    width: 480px;
    border-radius: 45px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    border: 5px solid #fff;
}

.card-header {
    background: #FFEB3B;
    padding: 45px 20px 30px;
    text-align: center;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    position: relative;
}

.teacher-image-wrapper {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 15px;
}

.teacher-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.online-status {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF5722;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    border: 2px solid white;
}

.card-header h1 {
    font-size: 24px;
    margin: 15px 0 5px;
    color: #333;
}

.card-header h1 span {
    color: #E91E63;
    font-weight: 800;
    font-size: 32px;
}

.teacher-name {
    font-size: 15px;
    color: #555;
    font-weight: 600;
}

.card-body {
    padding: 30px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item {
    padding: 15px;
    border-radius: 20px;
}

.info-item h3 {
    font-size: 12px;
    margin: 0 0 5px 0;
    color: #666;
    text-transform: uppercase;
}

.info-item p {
    font-size: 14px;
    margin: 0;
    font-weight: 700;
    color: #222;
}

.blue {
    background: #E3F2FD;
}

.yellow {
    background: #FFF9C4;
}

.green {
    background: #E8F5E9;
}

.pink {
    background: #FCE4EC;
}

.maps-link {
    display: block;
    text-align: center;
    background: #f0f0f0;
    color: #555;
    text-decoration: none;
    padding: 10px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
}

.maps-link:hover {
    background: #e0e0e0;
    color: #000;
}

.card-footer {
    padding: 0 30px 40px;
    text-align: center;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 18px;
    border-radius: 25px;
    font-size: 19px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.phone-display {
    margin-top: 15px;
    font-size: 15px;
    color: #444;
    font-weight: 700;
}