body{
    background-color: hsl(210, 14%, 7%);
    color:#fff;
}
.d-block{
    height: 300px;
}
 .hero-image {
    animation: floatAnimation 1.5s infinite alternate ease-in-out;
}

@keyframes floatAnimation {
    0% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(8px);
    }
}
.hero{
    background-color: hsl(210, 14%, 9%);
 
}


.c .container .row{
    border-radius: 10px;
    margin-top:-30px;
    z-index: 100;
    background-color: hsl(210, 14%, 7%);
  
}
.c .container .row h4{
    color:#fff;
}
@media screen and (max-width: 830px) {
    .lc-block img{
     display:none;
    }
    .c .container .row{
        margin-top: 10px;
    }
  }
  h2{
    font-weight: bolder;
  }


  .card {
    background-color: #1e1e1e;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.card-img-right {
    max-width: 250px;
    object-fit: cover;
    border-radius: 0 10px 10px 0;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    color: #ffffff;
    font-size: 1.25rem;
}

.card-text {
    color: #b0b0b0;
}

.btn-primary {
    background-color: #ff5722;
    border-color: #ff5722;
}

.btn-primary:hover {
    background-color: #e64a19;
    border-color: #e64a19;
}
.card {
    transition: transform 0.3s ease-in-out;
}

/* Apply the transform effect on hover */
.card:hover {
    transform: translateY(-10px);
}

/* Optional: Add a box shadow to enhance the effect */
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
/* Sidebar Styling */
.sidebar {
     background-color: hsl(210, 14%, 9%);
    color: #fff; /* White text color for contrast */
    padding: 1.5rem;
    
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.sidebar h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    border-bottom: 2px solid #007bff; /* Blue underline to match primary color */
    padding-bottom: 0.5rem;
    text-align: center; /* Center align the heading */
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar ul li {
    margin-bottom: 0.5rem; /* Reduced margin for a more compact look */
    border-bottom: 1px solid #444; /* Subtle border between links */
}

.sidebar ul li:last-child {
    border-bottom: none; /* Remove border from the last item */
}

.sidebar ul li a {
    color: #ffffff; /* White text color for links */
    text-decoration: none;
    font-size: 1rem;
    display: block; /* Make links block elements for better alignment */
    padding: 0.5rem; /* Add padding around links */
    text-align: center; /* Center-align text within links */
    transition: color 0.3s ease, background-color 0.3s ease; /* Smooth transition for hover effect */
}

.sidebar ul li a:hover {
    color: #007bff; /* Blue color on hover for better visibility */
    background-color: #444; /* Slightly lighter background on hover */
    text-decoration: none; /* Keep the link without underline on hover */
    border-radius: 4px; /* Rounded corners on hover background */
}.custom-list-group {
    background-color: #343a40; /* Dark background color */
    border-radius: 0.375rem; /* Rounded corners for the list group */
    border: 1px solid #495057; /* Dark border color for list group */
}

.custom-list-group .list-group-item {
    border-color: #495057; /* Dark border color for list items */
    background-color: #343a40; /* Ensure list items match background color */
    color: #f8f9fa; /* Light text color for contrast */
    padding: 1rem; /* Padding for list items */
}

.custom-list-group .list-group-item:first-child {
    border-top-left-radius: 0.375rem; /* Rounded top left corner */
    border-top-right-radius: 0.375rem; /* Rounded top right corner */
}

.custom-list-group .list-group-item:last-child {
    border-bottom-left-radius: 0.375rem; /* Rounded bottom left corner */
    border-bottom-right-radius: 0.375rem; /* Rounded bottom right corner */
}

.custom-list-group .list-group-item:hover {
    background-color: #495057; /* Slightly lighter background on hover */
    color: #ffffff; /* White text on hover */
}
