html {
    scroll-behavior: smooth;
}

body {
    padding:0;
    margin:0;
    color:white;
    background-color: #0D1117;
    font-family: "Inter", sans-serif;
    font-style: normal;
}

.heading {
    font-family: "Montserrat", sans-serif;
}

.accent {
    color: #58A6FF;
}

.underline {
    text-decoration: underline;
}

nav {
    color:white;
    background-color: #0D1117;
    font-family: "Inter", sans-serif;
    font-style: normal;
}

/* Make the header take full viewport height */
header {
    min-height: 100vh;
    display: flex;
    align-items: center; /* Vertically centers the container */
}

/* Center the text inside its column */
.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically centers the h1 and p */
    margin-bottom:30px;
}

/* Center the image inside its column */
.hero-image {
    display: flex;
    justify-content: center; /* Horizontal centering */
    align-items: center;     /* Vertical centering */
}

.hero-image img {
    max-width: 50%; /* Makes it responsive */
    height: auto;
    border-radius: 10%;
}

.projects, .skills, .about {
    margin-bottom: 75px;
}

.projects h2, .skills h2, .about h2 {
    padding-bottom: 30px;
}

.site-footer {
    background-color: #0D1117;
}

.site-footer .btn-outline-light {
    border-color: #58A6FF;
    color: #e6edf3;
}

.site-footer .btn-outline-light:hover {
    background-color: #58A6FF;
    border-color: #58A6FF;
    color: #0D1117;
}

.card {
    background-color: #0D1117;
    color:white;
}

.card .text-secondary {
    color: #8b949e !important;
}

.btn {
    background-color: #F78166;
    color: white;
}

.btn:hover {
    background-color: #58A6FF;
    color: white;
}

.skill {
    display: flex;
    justify-content: center;
    gap: 30px; /* space between icons */
    margin-top: 20px;
}

.skill i {
    font-size: 3rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.skill i:hover {
    transform: scale(1.2);
    color: #58A6FF; /* your accent color */
}

.project-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}