/* Fintech Startup Styles with Fixed Header and Hero */

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #2a2c39;
    background-color: #e8e8ef;
}

.navbar {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background-color: #003f7f;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 70px; /* Explicit height to avoid overlaps */
    z-index: 1000;
}

.text-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(to right, #00c6ff, #0056a3);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
}
.text-logo a:hover {
    background: linear-gradient(to left, #00c6ff, #0056a3);
    color: transparent;
    background-clip: text;
}

.hero {
    background: linear-gradient(135deg, #0056a3, #003f7f);
    color: white;
    text-align: center;
    padding: 100px 20px; /* Increased padding for visibility */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.hero h1 {
    font-size: 3rem;
    margin: 0;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.hero p {
    font-size: 1.4rem;
    margin: 15px 0 0;
    line-height: 1.5;
}

main {
    padding: 30px;
}

.intro,
.alert-success {
    text-align: center;
    margin: 30px auto;
    max-width: 700px;
    color: #313240;
}

.alert-success {
    padding: 20px;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

section.intro h2 {
    font-size: 2.2rem;
    background: linear-gradient(to right, #0056a3, #003f7f);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    margin-bottom: 15px;
    font-weight: 700;
}

section.intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #5b5b65;
}

section.contact {
    margin: 40px auto;
    max-width: 700px;
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

section.contact h2 {
    font-size: 2rem;
    background: linear-gradient(to right, #003f7f, #0056a3);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

label {
    font-weight: 600;
    color: #4c4c58;
}

input, textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1rem;
    background: #f9f9fb;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

button {
    padding: 15px 30px;
    background: linear-gradient(to right, #0056a3, #003f7f);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s;
}

button:hover {
    background: linear-gradient(to right, #004482, #003366);
    transform: scale(1.05);
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #2a2c39;
    color: white;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}
