/* ============================================================
   ABOUT PAGE - MAIN CONTENT STYLES
   ============================================================ */

/* Reusing shared UI from common_header.css */

/* ===================== PROFILE SECTION ===================== */

.profile-container {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.profile-card-wrap {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.profile-photo-area {
    flex: 0 0 450px;
    position: sticky;
    top: 100px;
}

.photo-frame {
    position: relative;
    z-index: 2;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(10, 36, 114, 0.15);
    border: 15px solid #fff;
}

.photo-frame img {
    width: 100%;
    transition: transform 0.8s ease;
}

.profile-photo-area:hover .photo-frame img {
    transform: scale(1.05);
}

.experience-float-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #0a2472;
    color: #fff;
    padding: 30px;
    border-radius: 30px;
    z-index: 3;
    text-align: center;
    box-shadow: 0 15px 35px rgba(10, 36, 114, 0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

.experience-float-badge .num {
    display: block;
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1;
    color: #0cacee;
}

.experience-float-badge .txt {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Content Side */
.profile-content-area {
    flex: 1;
}

.profile-content-area .signature-name {
    font-family: 'Dancing Script', cursive;
    font-size: 36px;
    color: #c9a84c;
    margin-bottom: 5px;
}

.profile-content-area h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: #0a2472;
    margin-bottom: 25px;
    line-height: 1.1;
    position: relative;
    display: block;
}

.profile-content-area h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #c9a84c;
    border-radius: 2px;
}

.detail-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.detail-pill {
    background: #fff;
    color: #0a2472;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(10, 36, 114, 0.1);
    box-shadow: 0 4px 10px rgba(10, 36, 114, 0.04);
}

.detail-pill i {
    color: #0cacee;
}

.bio-main-text {
    font-family: 'Poppins', sans-serif;
    font-size: 16.5px;
    line-height: 1.9;
    color: #475569;
}

.bio-main-text p:first-of-type::first-letter {
    float: left;
    font-size: 52px;
    line-height: 0.8;
    font-weight: 700;
    padding-right: 12px;
    margin-top: 5px;
    color: #0cacee;
    font-family: 'Playfair Display', serif;
}

.special-intro-box {
    margin-top: 40px;
    padding: 30px;
    background: #fff;
    border-left: 5px solid #0cacee;
    border-radius: 0 20px 20px 0;
    box-shadow: 0 10px 30px rgba(10, 36, 114, 0.04);
}

.cta-group {
    margin-top: 50px;
    display: flex;
    gap: 20px;
}

/* ===================== ACHIEVEMENTS SECTION ===================== */

.achievements-grid-section {
    padding: 100px 0;
    background: #f4f7fe;
    position: relative;
    z-index: 1;
}

.achievements-grid-section .title-area {
    text-align: center;
    margin-bottom: 70px;
}

.achievements-grid-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #0a2472;
}

.luxury-card {
    background: #fff;
    border-radius: 30px;
    padding: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.8);
}

.luxury-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(10, 36, 114, 0.15);
}

.lux-img-box {
    border-radius: 20px;
    overflow: hidden;
    height: 260px;
    position: relative;
}

.lux-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.luxury-card:hover .lux-img-box img {
    transform: scale(1.15);
}

.lux-content {
    padding: 25px 15px 15px;
    text-align: center;
}

.lux-content h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #0a2472;
    margin: 0;
    letter-spacing: 0.5px;
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 1200px) {
    .profile-photo-area { flex: 0 0 380px; }
}

@media (max-width: 991px) {
    .profile-photo-area { position: relative; top: 0; flex: 0 1 auto; max-width: 450px; margin: 0 auto 40px; }
    .profile-card-wrap { flex-direction: column; align-items: center; text-align: center; }
    .profile-content-area .detail-pills { justify-content: center; }
    .special-intro-box { border-left: none; border-top: 5px solid #0cacee; border-radius: 0 0 20px 20px; }
    .cta-group { justify-content: center; }
}

@media (max-width: 576px) {
    .experience-float-badge { right: 0; bottom: -20px; padding: 20px; }
    .experience-float-badge .num { font-size: 32px; }
    .profile-content-area h2 { font-size: 32px; }
}

@media (max-width: 768px) {
.profile-content-area .signature-name {
    font-size: 23px;
}
.profile-container {
    padding: 30px 0;
}
.achievements-grid-section h3 {
    font-size: 25px;
  
}
.profile-card-wrap {    
    gap: 10px;
}
}
