/* General Body Styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000; /* Black background for the entire page */
    color: #fff; /* White text color for the body */
}
.skills-heading {
    text-align: center;
    font-size: 2rem;
    margin-top: 40px;
    font-size: 3rem;
}

.white-text {
    color: #fff; /* White color for "Develop Your" */
}

.red-text {
    color: #ff4500; /* Red color for "Skills" */
    font-weight: bold;
}

/* Link Styling */
a {
    margin: 15px; /* Space around the link */
    color: #ff4500; /* Highlight link with orange color */
    text-decoration: none; /* Remove underline from links */
    font-weight: bold; /* Make link text bold */
    transition: color 0.3s; /* Smooth transition for color change */
}

/* Link Hover Effect */
a:hover {
    color: #ff6347; /* Change link color to a lighter shade of orange on hover */
}

/* Skills Development Section */
.skills-development {
    padding: 40px 20px;
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    font-family: Arial, sans-serif;
}

.skills-development h2 {
    text-align: center;
    font-size: 2rem;
    color: #fff; /* White text for heading */
    margin-bottom: 20px;
}

.skills-development p {
    text-align: center;
    font-size: 1.1rem;
    color: #ccc; /* Lighter text for paragraph */
    margin-bottom: 40px;
}

.skills-categories {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

/* Category Cards */
.category-card {
    background-color: #1e1e1e; /* Dark background for cards */
    color: #fff; /* White text */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    overflow: hidden; /* Avoids content spilling out */
    max-width: 300px; /* Card width */
    text-align: left; /* Align text to the left */
    padding: 20px;
    transition: transform 0.3s; /* Smooth transition on hover */
}

.category-card h3 {
    font-size: 1.6rem;
    color: #fff; /* White text for headings */
    margin-bottom: 15px;
}

.category-card ul {
    list-style: none;
    padding: 0;
}

.category-card ul li {
    margin-bottom: 10px;
}

.category-card ul li a {
    font-size: 1.1rem;
    color: #2980b9; /* Blue links */
    text-decoration: none;
    transition: color 0.3s;
}

.category-card ul li a:hover {
    color: #16a085; /* Green on hover */
}

/* Hover effect for category cards */
.category-card:hover {
    transform: translateY(-10px); /* Slight lift on hover */
}

.learning-paths {
    margin-top: 40px;
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

/* Learning Path Cards */
.path-card {
    background-color: #1e1e1e; /* Dark background for path cards */
    color: #fff; /* White text */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    width: 45%; /* Card width */
    min-width: 300px;
    padding: 20px;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth transition */
}

.path-card h4 {
    font-size: 1.5rem;
    color: #fff; /* White text for headings */
    margin-bottom: 15px;
}

.path-card p {
    font-size: 1.1rem;
    color: #ccc; /* Lighter text for descriptions */
    margin-bottom: 20px;
}

.path-card .btn-path {
    display: inline-block;
    padding: 12px 24px;
    background-color: #2980b9; /* Blue button */
    color: #fff; /* White button text */
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.path-card .btn-path:hover {
    background-color: #16a085; /* Green on hover */
}

/* Hover effect for learning path cards */
.path-card:hover {
    transform: translateY(-10px); /* Slight lift on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}
