/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(120deg, #1e293b, #0f172a);
    color: #ffffff;
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0f172a;
    padding: 15px 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .logo img {
    max-height: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: #38bdf8;
    font-weight: bold;
    font-size: 1em;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.nav-links a:hover {
    color: #0ea5e9;
}

.nav-links a.active {
    color: #4ade80;
    border-bottom: 2px solid #4ade80;
}

/* Container and Form Styles */
.container {
    max-width: 600px;
    margin: 70px auto;
    padding: 20px;
    background: #1e293b;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

h1 {
    text-align: center;
    color: #38bdf8;
    margin-bottom: 20px;
    font-size: 2.2em;
    line-height: 1.4;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Add consistent spacing between form elements */
}

label {
    font-weight: bold;
    color: #e2e8f0;
}

input, textarea, select {
    padding: 12px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    background-color: #334155;
    color: white;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

input::placeholder, textarea::placeholder {
    color: #94a3b8;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    background-color: #475569;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

textarea {
    resize: vertical;
    width: 100%;
    box-sizing: border-box; /* Ensures padding is included in width */
}

/* Ensure proper spacing and alignment for label and textarea */
label[for="additionalInfo"] {
    margin-bottom: 10px;  /* Adds space below the label */
}

textarea#additionalInfo {
    margin-top: 0;  /* Ensures there’s no additional margin above the textarea */
}

/* Button Styles */
button {
    padding: 15px;
    background: linear-gradient(90deg, #38bdf8, #0ea5e9);
    border: none;
    color: white;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background: linear-gradient(90deg, #0ea5e9, #38bdf8);
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(14, 165, 233, 0.3);
}

/* Success Message Styles */
.success-message {
    display: none;
    margin-top: 20px;
    color: #4ade80;
    text-align: center;
    font-weight: bold;
    font-size: 1.1em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .container {
        margin: 30px auto;
        padding: 15px;
    }

    h1 {
        font-size: 1.8em;
    }

    button {
        font-size: 0.9em;
    }
}

/* Logo Header Styling */
.logo-header {
    text-align: center;
    margin-bottom: 20px;
}

.logo-header img {
    max-width: 150px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-header img:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(56, 189, 248, 0.5);
}


.subheading {
    text-align: center;
    font-size: 1.2em;
    color: #e2e8f0;
    margin-top: 10px;
    margin-bottom: 20px;
}


.callback-text {
    text-align: center;
    font-size: 1em;
    color: #e2e8f0;
    margin-bottom: 20px;
}

.checkbox-container {
    display: flex;
    gap: 10px; /* Space between labels and inputs */
    align-items: center;
}


.required {
    color: red;
    margin-left: 5px; /* Optional: Adds spacing between label and asterisk */
}


.link-blue {
    color: #93c0d6; /* Light blue color */
    text-decoration: none; /* Removes underline */
}

.link-blue:hover {
    text-decoration: underline; /* Adds underline on hover */
}


.input-container {
    position: relative;
    display: inline-block;
}

.percentage-sign {
    position: absolute;
    right: 10px; /* Adjust spacing from the right */
    top: 50%;
    transform: translateY(-50%); /* Centers the percentage sign vertically */
    color: #93c0d6; /* Light blue color or customize as needed */
}


.input-container {
    position: relative;
    display: inline-block;
}

.currency-sign {
   
    transform: translateY(-50%); /* Centers the euro symbol vertically */
    color: #ffffff; /* Light blue color or customize as needed */
}



