/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    width: 100%;
    height: 100%;
    --s: 500px; /* control the size */
    --c1: #83aaff;
    --c2: #acb9ff;
    --c3: #95b1ff;

    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    background-color: #a9b6f0;
    background: repeating-conic-gradient(
        from 30deg,
        #0000 0 120deg,
        var(--c3) 0 180deg
      )
      calc(0.5 * var(--s)) calc(0.5 * var(--s) * 0.577),
    repeating-conic-gradient(
      from 30deg,
      var(--c1) 0 60deg,
      var(--c2) 0 120deg,
      var(--c3) 0 180deg
    );
    background-size: var(--s) calc(var(--s) * 0.577);
}

/* Header Styling */
header {
    background: linear-gradient(135deg, #4051b5, #7986CB);
    color: #fff;
    font-family: 'Roboto', Arial, sans-serif;
    text-align: center;
    padding: 30px 20px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid #303F9F;
}

header h1 {
    font-size: 5em;
    margin: 0;
}

header p {
    margin-top: 10px;
    font-size: 1.2em;
}

/* Logo Styling */
.logo {
    position: absolute;
    top: 50px;
    left: -70px;
    width: 400px; /* Increased size */
    height: auto;
}

/* Main Content */
main {
    margin: 20px auto;
    padding: 20px;
    width: 90%;
    max-width: 1800px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    margin-bottom: 15px;
    color: #3F51B5;
    font-size: 2em;
}

/* Form Section */
.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 30px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

input, select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #3F51B5;
    border-radius: 5px;
    background-color: #f0f0f0;
    color: #333;
}

button {
    width: 100%;
    background-color: #3F51B5;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

button:hover {
    background-color: #303F9F;
    transform: translateY(-2px);
}

button:active {
    background-color: #1C276D;
    transform: translateY(0);
}

button:hover {
    background-color: #303F9F;
}

/* Results Section */
.results-container {
    width: 90%;
    margin: 0 auto;
    display: none; /* Initially hidden until results are shown */
}

.info-box, .horizontal-boxes > div {
    border: 1px solid #3F51B5; /* Changed from green to blue */
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
    background-color: #f0f0f0;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    padding: 10px;
    margin-bottom: 10px;
    background-color: #fff;
    border: 1px solid #3F51B5;
    border-radius: 5px;
}

/* Footer */
footer {
    background-color: #3F51B5;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 0.8em;
}
footer {
    width: 100%;
    margin: 0 auto;
}
