
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}
/*Header*/
.main-header {
    background-color: rgba(255, 255, 255, 0.9);
    /* Slight transparency */
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #ddd;
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(1px);
    /* optional: adds blur behind for depth */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        /* light drop shadow */
}
.header-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
}

.left {
    font-size: 3.2rem; 
    font-weight: 700;
    letter-spacing: -.05px;
    color: #004080;
}

.center-nav {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
}

.center-nav a {
    text-decoration: none;
    font-weight: 600;
    color: #004080;
    font-size: 2rem;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.center-nav a:hover {
    color: #007bff;
}

.right {
    justify-self: end;
}

.right img {
    height: 42px;
    width: auto;
}
/*End of header*/
/*Banner*/

.hero-banner {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-image: url('img/handshake-banner.jpg');
        background-attachment: fixed;
        background-size: cover;
     background-position: center;
     
}

.hero-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 40% 60%;
    z-index: -1;
    background-attachment: fixed;
    /* Parallax scroll effect */
        /* Hides the <img> tag and uses background instead */
}

.banner-overlay {
    position: relative;
    z-index: 2;
    background: rgba(0, 64, 128, 0.4);
    color: white;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 2rem;
}

.banner-overlay h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.banner-overlay p {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.start-button {
    padding: 0.75rem 2rem;
    background-color: white;
    color: #004080;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
    font-size: 2rem;
}

.start-button:hover {
    background-color: #f0f0f0;
}

/*End of Banner*/

/*finance*/

.finance-section {
    background-color: rgba(0, 64, 128, 0.9);
    /* same tint as banner */
    color: white;
    text-align: center;
    padding: .2rem .3rem;
}

.finance-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.finance-section p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding: 0rem 15rem;
    
}

.download-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.download-buttons a {

    background-color: white;
    color: #004080;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.5rem;

    font-weight: 600;
    transition: background 0.3s ease;
}

.download-buttons a:hover {
    background-color: #e0e0e0;
}
/*end of finance*/
.resources-section {
    background-color: #ffffff;
    padding: .5rem 1rem;
}

.resources-title {
    color: #004080;
    font-size:4rem;
    text-align: center;
    margin-bottom: .2rem;
}

.resource-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.resource-text,
.resource-image {
    flex: 1 1 450px;
    padding: 2rem;
}

.resource-text h3 {
    font-size: 3rem;
    color: #004080;
    margin-bottom: 1rem;
    text-align: center;
}

.resource-text ul {
    list-style: none;
    padding: 1;
    text-align: center;
}

.resource-text li {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.resource-text a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.resource-text a:hover {
    color: #007bff;
}

.resource-image img {
    width: 70%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}






/* Form Styling */
.form-wrapper {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: fadeIn 0.4s ease-in-out;
}

.question-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #222;
}

.option-button {
    font-size: 1.5rem;
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.option-button:hover {
    background: #eef6ff;
}

.option-button.selected {

    background: #cce5ff;
    border-color: #191b1c;
    font-size: 2rem;
}

textarea,
input[type="number"],
input[type="text"] {
    width: 100%;
    padding: 0.75rem;
    font-size: 1.5rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 1rem;
}

.nav-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 1rem;
}
label{
    font-size: 1.5rem;
}
button.primary,
button.secondary {
    padding: 0.75rem 1.25rem;
    font-size: 1.5rem;
    cursor: pointer;
    border: none;
    border-radius: 8px;
    transition: background 0.3s ease;
}

button.primary {
    background-color: #007bff;
    color: white;
}

button.primary:hover {
    background-color: #0056b3;
}

button.secondary {
    background-color: #e0e0e0;
    color: #333;
}

button.secondary:hover {
    background-color: #cacaca;
}

/* Progress Bar */
.progress-bar {
    height: 10px;
    background: #ddd;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: #4caf50;
    width: 0%;
    transition: width 0.3s ease;
}

/* Summary */
.container {
    max-width: 800px;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.container h1 {
    margin-bottom: 1rem;
    color: #222;
}

.container ul {
    margin-top: 1rem;
}

.container li {
    margin-bottom: 0.5rem;
}

.skipped {
    color: red;
    font-weight: bold;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.banner img {
    width: 100%;
    height: 700px;
    /* Adjust as needed */
    object-fit: cover;
    
}

.download-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0rem;
    align-items: flex-start;
}

.download-links a {
    display: inline-block;
    padding: 12px 20px;
    background-color: #0056b3;
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0, 255, 255, 0.3);
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.5rem;
}

.download-links a:hover {
    background-color: #0056b3;
    transform: scale(1.03);
}

/* Center contents of the pre-question card */
.centered-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 2rem;
}

/* Styled download bubbles */
.download-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 10px 0;
}

.download-links a {
    display: inline-block;
    padding: 12px 20px;
    background-color: #0056b3;
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0, 255, 255, 0.3);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.download-links a:hover {
    background-color: #0056b3;
    transform: scale(1.03);
}