.elementor-47 .elementor-element.elementor-element-6d32f3d{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-47 .elementor-element.elementor-element-5d3aeea{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-5d3aeea */:root {
    --primary-color: #0d6efd;
    --dark-color: #0f172a;
    --accent-color: #de1f26;
}

* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

body { 
    font-family: 'Hind Siliguri', sans-serif; 
    color: #334155; 
    background-color: #fafbfc; 
    line-height: 1.6; 
}

/* Navigation */
nav { 
    background: white; 
    padding: 15px 20px; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.02); 
    border-bottom: 1px solid #e2e8f0; 
}

.nav-container { 
    max-width: 1100px; 
    margin: 0 auto; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo { 
    font-size: 18px; 
    font-weight: 700; 
    color: var(--dark-color); 
    text-decoration: none; 
}

.nav-links { 
    display: flex; 
    list-style: none; 
    gap: 20px; 
}

.nav-links a { 
    text-decoration: none; 
    color: #475569; 
    font-weight: 500; 
}

.nav-links a:hover, .nav-links a.active { 
    color: var(--accent-color); 
}

/* Main Content Container */
.container { 
    max-width: 1000px; 
    margin: 50px auto; 
    padding: 0 20px; 
}

.profile-wrapper { 
    display: flex; 
    gap: 40px; 
    align-items: flex-start; 
    background: white; 
    padding: 40px; 
    border-radius: 16px; 
    border: 1px solid #e2e8f0; 
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02); 
}

.profile-img-box { 
    text-align: center; 
    width: 300px; 
}

.profile-img { 
    width: 100%; 
    border-radius: 12px; 
    border: 4px solid #f1f5f9; 
    background: #cbd5e1; 
}

.rank-badge { 
    background: #1e3a8a; 
    color: white; 
    padding: 5px 15px; 
    border-radius: 4px; 
    display: inline-block; 
    margin-top: 15px; 
    font-weight: 500; 
    font-size: 15px; 
}

/* Profile Text */
.profile-text { 
    flex: 1; 
}

.profile-text h1 { 
    font-size: 32px; 
    color: var(--dark-color); 
    margin-bottom: 5px; 
}

.profile-text .rank { 
    font-size: 18px; 
    color: var(--accent-color); 
    font-weight: 600; 
    margin-bottom: 20px; 
}

.profile-text p { 
    margin-bottom: 15px; 
    text-align: justify; 
}

/* Timeline/Education Box */
.timeline-box { 
    margin-top: 35px; 
}

.timeline-box h3 { 
    font-size: 20px; 
    color: var(--dark-color); 
    margin-bottom: 15px; 
    border-left: 4px solid var(--primary-color); 
    padding-left: 10px; 
}

.edu-list { 
    list-style: none; 
}

.edu-list li { 
    padding: 10px 0; 
    border-bottom: 1px dashed #e2e8f0; 
    display: flex; 
    justify-content: space-between; 
}

.edu-list li:last-child { 
    border-bottom: none; 
}

/* Footer */
footer { 
    background-color: var(--dark-color); 
    color: #94a3b8; 
    text-align: center; 
    padding: 30px 20px; 
    font-size: 14px; 
    margin-top: 60px; 
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-wrapper { 
        flex-direction: column; 
        align-items: center; 
        padding: 20px; 
    }
    .profile-img-box { 
        width: 100%; 
        max-width: 250px; 
    }
    .nav-container { 
        flex-direction: column; 
        gap: 10px; 
    }
}/* End custom CSS */