body {
    font-family: "Anta", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* Navbar */
.nav-link {
    font-weight: bold;
    color: black !important;
}

.nav-link:hover {
    font-weight: bold;
    color: #27ae60 !important;
}

/* upload */
main {
    max-width: 100%;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-right: 20px;
}

.upload-section {
    border: 2px dashed #aaa;
    padding: 40px;
    cursor: pointer;
    transition: border-color 0.3s ease;
    border-radius: 10px;
    background-color: #f8f8f8;
    text-align: center;
    height: 295px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-direction: column;
}

/* convert panel */
.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 2px solid #e3e4e5;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}

.keyword-box {
    margin: 10px 0 0 0;
}

.panel-default {
    border-color: #ddd;
}

.panel-default>.panel-heading {
    color: #fff;
    background-color: #27ae60;
    border-color: #ddd;
}

h3 {
    font-size: 22px;
    line-height: 21px;
}

.format-select label,
.compression-slider label {
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
    margin-top: 30px;
}

/* Styling for Convert button */
#convertBtn {
    display: block;
    width: 60%;
    margin: 0 auto;
    padding: 12px 24px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    margin-bottom: 30px;
}


/* Styling for download button */
.download-button {
    padding: 10px 20px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    margin-top: 10px;
    display: inline-block;
    transition: background-color 0.3s;
}

.download-button:hover {
    background-color: #219a52;
}

/* how to use card */
.card-body {
    background-color: #219a52;
    color: #fff;
}

/* Footer */
.bg-footer {
    background-color: #219a52;
    color: white;
}

a {
    text-decoration: none;
    color: white;
}

/* ABout Page css */
.features {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.feature {
    width: 300px;
    margin: 20px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature h2 {
    font-size: 24px;
}

button {
    margin-top: 10px;
    background-color: #219a52;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
}

