body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #212529;
    margin: 0;
    line-height: 1.7;
    overflow-y: auto; 
    overflow-x: hidden; 
}
body::-webkit-scrollbar {
    width: 0;
    background: transparent;
}
.navbar-glass {
    backdrop-filter: blur(12px);
    background-color: rgba(0, 0, 0, 0.9) !important;
}
.navbar-nav .nav-link {
    font-weight: 500;
    position: relative;
    padding: 8px 15px;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #0d6efd;
    transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover::after { width: 100%; }
.hero {
    position: relative;
    height: 100vh;
    background: url("/assets/hero-image.png") no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: #fff;
    padding-left: 5%;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.4));
}
.hero-content { position: relative; z-index: 2; max-width: 650px; }
.hero-content h1 { 
    font-size: 3.5rem; 
    font-weight: 700; 
    margin-bottom: 15px; 
}
.hero-content p { 
    font-size: 1.3rem; 
    color: #e9ecef; 
    font-weight: 400; 
    display: inline-block;
}
.cursor {
    border-right: .15em solid #0d6efd;
    animation: blink 0.7s step-end infinite;
}
@keyframes blink {
    from, to { border-color: transparent }
    50% { border-color: #0d6efd; }
}
.hero-content .btn {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.4);
}
.highlights { margin: 60px 0; }
.highlights .col-md-3 { margin-bottom: 20px; }
.highlights i { font-size: 2rem; color: #0d6efd; margin-bottom: 10px; }
.skills-section h2 {
    font-weight: 600;
    margin-bottom: 30px;
    border-bottom: 3px solid #0d6efd;
    display: inline-block;
    padding-bottom: 5px;
}
.skills-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.skill-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #0d6efd;
}
.skill-card h5 { font-size: 1.2rem; font-weight: 600; margin-bottom: 12px; }
.skill-card ul { list-style: none; padding: 0; margin: 0; }
.skill-card ul li { margin-bottom: 6px; font-size: 1rem; color: #495057; }

.hobbies-section h2 {
    font-weight: 600;
    margin-top: 50px;
    margin-bottom: 30px;
    border-bottom: 3px solid #0d6efd;
    display: inline-block;
    padding-bottom: 5px;
}
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { font-size: 1rem; }
}