* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, 
    
    
    #667eead0 0%, #764ba2d3 100%);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

.card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.heading {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 5px;

}

.section {
    width: 100%;
    display: flex;
    
    gap: 20px;
}

.DegreeSection, .TypeSection {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.degree, .unit {
    padding: 8px 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
   
}

.inputValue, .select-dropdown {
    padding: 12px 15px;
    outline: none;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    font-size: 1rem;
    color: #fff;
    transition: all 0.3s ease;
     width: 100%;
}

.inputValue::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.inputValue:focus, .select-dropdown:focus {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
    background-color: rgba(0, 0, 255, 0.521);
}

.select-dropdown {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

.result-section {
    margin-top: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.result-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-weight: 500;
}

.Result {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    min-height: 30px;
}
.divider{
    padding: 15px;
    color: #fff;
   
    

}


.btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 8px;
    padding: 14px;
    width: 100%;
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

@media (max-width: 480px) {
    .card {
        padding: 20px;
    }
    
    .heading {
        font-size: 1.5rem;
    }
}