/* Pink & White Theme for All Sections */

/* Common Section Styling */
.content-section {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(232, 62, 140, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.content-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(232, 62, 140, 0.2);
}

.section-title {
    color: #c2185b;
    border-bottom: 2px solid #e83e8c;
    padding-bottom: 0.8rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #e83e8c, transparent);
    transition: width 0.3s ease;
}

.section-title:hover::after {
    width: 100%;
}

/* Education Section */
.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 0.5rem;
}

.education-item {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(232, 62, 140, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.education-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #e83e8c, #c2185b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.education-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(232, 62, 140, 0.18);
}

.education-item:hover::before {
    transform: scaleX(1);
}

.education-content {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.education-degree {
    font-size: 1.25rem;
    font-weight: 600;
    color: #c2185b;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.education-degree::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #e83e8c, transparent);
    transition: width 0.3s ease;
}

.education-item:hover .education-degree::after {
    width: 100%;
}

.education-school {
    font-size: 1.1rem;
    color: #e83e8c;
    margin-bottom: 1rem;
    font-weight: 500;
}

.education-year {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.education-grade {
    display: inline-block;
    background: linear-gradient(135deg, #f8d7e5, #ffffff);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: #c2185b;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(232, 62, 140, 0.15);
    transition: all 0.3s ease;
}

.education-item:hover .education-grade {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 62, 140, 0.2);
}

.gold-medal {
    color: #ffd700;
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { transform: scale(1) rotate(0deg); opacity: 0.5; }
    50% { transform: scale(1.2) rotate(15deg); opacity: 1; }
    100% { transform: scale(1) rotate(0deg); opacity: 0.5; }
}

/* Research Section */
.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.research-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border-radius: 14px;
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(232, 62, 140, 0.12);
    transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease;
    border: 1px solid rgba(232, 62, 140, 0.08);
}

.research-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #e83e8c, #c2185b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.research-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(232, 62, 140, 0.18);
}

.research-card:hover::before {
    transform: scaleX(1);
}

.research-badge {
    position: absolute;
    left: 1rem;
    top: 0.6rem;
    background: #e83e8c;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(232, 62, 140, 0.2);
    transition: transform 0.3s ease;
}

.research-card:hover .research-badge {
    transform: scale(1.1) rotate(5deg);
}

.research-title {
    margin: 0 0 0.5rem 0;
    padding-left: 56px;
    font-size: 1.05rem;
    color: #c2185b;
    font-weight: 600;
    line-height: 1.3;
}

.research-meta {
    padding-left: 56px;
    color: #555;
    font-size: 0.92rem;
    margin-bottom: 0.6rem;
}

/* Patents Section */
.research-meta strong {
    color: #c2185b;
    font-weight: 600;
}

/* Reviewer Section */
.reviewer-intro {
    background: linear-gradient(135deg, rgba(232, 62, 140, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #e83e8c;
    box-shadow: 0 5px 15px rgba(232, 62, 140, 0.1);
}

.reviewer-intro p {
    color: #444;
    line-height: 1.6;
    margin: 0;
}

.reviewer-intro strong {
    color: #c2185b;
    font-weight: 600;
}

.reviewer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.reviewer-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border-radius: 14px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(232, 62, 140, 0.12);
    transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease;
    border: 1px solid rgba(232, 62, 140, 0.08);
}

.reviewer-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #e83e8c, #c2185b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.reviewer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(232, 62, 140, 0.18);
}

.reviewer-card:hover::before {
    transform: scaleX(1);
}

.reviewer-number {
    position: absolute;
    left: 1rem;
    top: 0.6rem;
    background: #e83e8c;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(232, 62, 140, 0.2);
}

.reviewer-title {
    margin: 0 0 0.5rem 0;
    padding-left: 56px;
    font-size: 1.05rem;
    color: #c2185b;
    font-weight: 600;
    line-height: 1.3;
}

.reviewer-meta {
    padding-left: 56px;
    color: #555;
    font-size: 0.92rem;
    margin-bottom: 0.6rem;
}

.reviewer-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: #e83e8c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.reviewer-link:hover {
    color: #c2185b;
    text-decoration: underline;
}

/* Awards Section */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.award-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border-radius: 14px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(232, 62, 140, 0.12);
    transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease;
    border: 1px solid rgba(232, 62, 140, 0.08);
    display: flex;
    align-items: flex-start;
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(232, 62, 140, 0.18);
}

.award-icon {
    color: #e83e8c;
    font-size: 2rem;
    margin-right: 1rem;
    transition: transform 0.3s ease;
}

.award-card:hover .award-icon {
    transform: scale(1.1) rotate(15deg);
}

.award-content {
    flex: 1;
}

.award-title {
    color: #c2185b;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.award-meta {
    color: #555;
    font-size: 0.92rem;
    margin-bottom: 0.5rem;
}

.award-description {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Achievements Section */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.achievement-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border-radius: 14px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(232, 62, 140, 0.12);
    transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease;
    border: 1px solid rgba(232, 62, 140, 0.08);
    display: flex;
    align-items: flex-start;
}

.achievement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(232, 62, 140, 0.18);
}

.achievement-icon {
    color: #e83e8c;
    font-size: 2rem;
    margin-right: 1rem;
    transition: transform 0.3s ease;
}

.achievement-card:hover .achievement-icon {
    transform: scale(1.1) rotate(15deg);
}

.achievement-content {
    flex: 1;
}

.achievement-title {
    color: #c2185b;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.achievement-meta {
    color: #555;
    font-size: 0.92rem;
    margin-bottom: 0.5rem;
}

.achievement-description {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.contact-info-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border-radius: 14px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(232, 62, 140, 0.12);
    transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease;
    border: 1px solid rgba(232, 62, 140, 0.08);
    display: flex;
    align-items: flex-start;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(232, 62, 140, 0.18);
}

.contact-info-icon {
    color: #e83e8c;
    font-size: 2rem;
    margin-right: 1rem;
    transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1) rotate(15deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .education-grid,
    .research-grid,
    .reviewer-grid,
    .awards-grid,
    .achievements-grid,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .education-item:hover,
    .research-card:hover,
    .reviewer-card:hover,
    .award-card:hover,
    .achievement-card:hover,
    .contact-info-card:hover {
        transform: translateY(-5px);
    }
}
