/* General Page Styling */
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f6f9;
    color: #333;
}

/* Navbar Customization */
.navbar-brand {
    font-weight: bold;
    font-size: 1.4rem;
}

.navbar-nav .nav-link {
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #0d6efd;
}

/* Page Title */
h1 {
    font-weight: bold;
    color: #222;
}

/* Skills Section */
.row div {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

/* Hover effect for skill cards */
.row div:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(0,0,0,0.15);
}

/* Skill Headings */ 
h4 {
    color: #0d6efd;
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background-color: #212529;
    color: white;
    padding: 15px;
    margin-top: 40px;
}
