* {
    padding: 0;
    margin: 0;
}

.roboto-thin {
    font-family: "Roboto", serif;
    font-weight: 100;
    font-style: normal;
}

.roboto-light {
    font-family: "Roboto", serif;
    font-weight: 300;
    font-style: normal;
}

.roboto-regular {
    font-family: "Roboto", serif;
    font-weight: 400;
    font-style: normal;
}

.roboto-medium {
    font-family: "Roboto", serif;
    font-weight: 500;
    font-style: normal;
}

.roboto-bold {
    font-family: "Roboto", serif;
    font-weight: 700;
    font-style: normal;
}

.roboto-black {
    font-family: "Roboto", serif;
    font-weight: 900;
    font-style: normal;
}

.roboto-thin-italic {
    font-family: "Roboto", serif;
    font-weight: 100;
    font-style: italic;
}

.roboto-light-italic {
    font-family: "Roboto", serif;
    font-weight: 300;
    font-style: italic;
}

.roboto-regular-italic {
    font-family: "Roboto", serif;
    font-weight: 400;
    font-style: italic;
}

.roboto-medium-italic {
    font-family: "Roboto", serif;
    font-weight: 500;
    font-style: italic;
}

.roboto-bold-italic {
    font-family: "Roboto", serif;
    font-weight: 700;
    font-style: italic;
}

.roboto-black-italic {
    font-family: "Roboto", serif;
    font-weight: 900;
    font-style: italic;
}

body {
    background-color: #f0f0f0; /* Light grey */
    color: #333;
    /* background-image: url('assets/background.png'); */
    /* Replace with the path to your image */
    background-size: cover;
    /* Scale the image to cover the entire background */
    background-repeat: repeat;
    /* Prevent the image from repeating */
    background-position: center center;
    /* Center the image */
    margin: 0;
    /* color: black; */
    /* Ensure text is visible on the background */
    height: 100vh;
    /* Make the body take the full viewport height */
    font-size: large;
    line-height: 1.6;
}

.content {
    padding: 20px;
    max-width: 800px;
    margin: auto;
    font-size: 18px;
    line-height: 1.6;
}

/* Sticky Logo */
.sticky-logo {
    position: sticky;
    top: 10px; /* Adjust to control how far down it sticks */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.8); /* Slight transparency for better visibility */
    z-index: 100;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 1em;
}

/* Logo Image */
.sticky-logo img {
    height: 100%;
    width: auto;
}

.container {
    margin: 50px auto;
    width: 80%;
}

.contact-box,.thank-you-box {
    background: none;
    display: flex;
    flex-direction: row;
    
}

.contact-left{
    background: white;
    flex-basis: 60%;
    padding: 40px 60px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 1em;
}

.contact-middle {
    background: none;
    flex-basis: 5%;
    margin: 10px;
}

.contact-right {
    background: white;
    flex-basis: 35%;
    text-align: center;
    color: black;
    padding: 40px;
    border-radius: 2em;
    height: 60%;
}

h1 {
    margin-bottom: 10px;
}

.container p {
    margin-bottom: 40px;
}

.input-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.input-row .input-group {
    flex-basis: 100%;
}

.button-row-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    /* Add spacing between buttons */
}

.button-row {
    margin: 20px;
    width: 90%;
    display: flex; 
    flex-direction: column; /* Stack elements vertically */
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
}

input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    padding-bottom: 5px;
}

textarea {
    width: 100%;
    border: 1px solid #ccc;
    outline: none;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 16px;
}

label {
    margin-bottom: 6px;
    display: block;
    color: #333;
}

h3 {
    margin-bottom: 10px;
    display: block;
}

.pill-1 {
    font-size: 12px;
    height: 40px;
    padding: 0.5em 1em;
    margin: 0.25em;
    border-radius: 1em;
    border: none;
    outline: none;
    background: #dddddd;
    cursor: pointer;
    margin-bottom: 10px;
}

.pill-1:not(.pill--selected):hover {
    background: #cccccc;
}

.pill-2 {
    font-size: 12px;
    height: 40px;
    padding: 0.5em 1em;
    margin: 0.25em;
    border-radius: 1em;
    border: none;
    outline: none;
    background: #dddddd;
    cursor: pointer;
    margin-bottom: 10px;
}

.pill-2:not(.pill--selected):hover {
    background: #cccccc;
}

.pill-multi {
    font-size: 12px;
    height: auto; /* Allow height to adjust based on content */
    min-height: 50px; /* Ensure a minimum button height */
    padding: 0.5em 1em;
    margin: 0.25em;
    border-radius: 1em;
    border: none;
    outline: none;
    background: #dddddd;
    cursor: pointer;
    margin-bottom: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    word-wrap: break-word;
    text-align: center;
}

.pill-multi:not(.pill--selected):hover {
    background: #cccccc;
}

.pill--selected {
    background: #009578;
    color: #ffffff;
}

.pill-submit {
    font-size: 16px;
    align-items: center;
    padding: 0.5em 1em;
    margin: 1em;
    border-radius: 10em;
    border: none;
    outline: none;
    background: #009578;
    cursor: pointer;
    color: white;
    height: 40px;
    width: 100%;
}

.pill-submit img {
    height: 12px;
}

.pill-submit:hover {
    background: #cccccc;
}

.pill-back {
    font-size: 16px;
    align-items: center;
    padding: 0.5em 1em;
    margin: 1em;
    border-radius: 10em;
    border: none;
    outline: none;
    background: darkgrey;
    cursor: pointer;
    color: white;
    height: 40px;
    width: 100%;
}

.pill-back img {
    height: 12px;
}

.pill-back:hover {
    background: #cccccc;
}

.social-icons {
    display: flex;
    gap: 20px;
    /* Space between icons */
    justify-content: center;
    /* Center the icons */
    align-items: center;
    /* Align icons vertically */
    background-color: #f9f9f9;
    /* Background for the div */
    padding: 20px;
    border-radius: 10px;
}

.social-icons a {
    display: inline-block;
    width: 32px;
    height: 32px;
}

.social-icons a svg {
    width: 100%;
    height: 100%;
    fill: #333;
    /* Default icon color */
    transition: fill 0.3s ease;
}

.social-icons a:hover svg {
    fill: #1DA1F2;
    /* X.com default color */
}

.social-icons a.youtube:hover svg {
    fill: #FF0000;
    /* YouTube color */
}

.social-icons a.instagram:hover svg {
    fill: #C13584;
    /* Instagram color */
}

.social-icons a.facebook:hover svg {
    fill: #1877F2;
    /* Instagram color */
}

.form-control.has-error {
    border-bottom: 1px solid red;
}

.form-control.no-error {
    border-bottom: 1px solid green;
}

.error {
    color: red;
}

.success {
    color: green;
}

.invalid-feedback {
    display: none;
    color: red;
    font-size: small;
}

/* Styles for the autocomplete container */
.suggestions-box {
    position: absolute;
    width: 100%;
    max-width: 400px; /* Adjust based on your input width */
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow: hidden;
    margin-top: 5px;
    font-family: Arial, sans-serif;
}

/* Styles for each suggestion item */
.suggestions-box p {
    padding: 10px;
    margin: 0;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #eee;
}

/* Hover effect for suggestions */
.suggestions-box p:hover {
    background: #f0f0f0;
}

/* Last item should not have a bottom border */
.suggestions-box p:last-child {
    border-bottom: none;
}

/* Error message style */
.suggestions-box .error {
    color: red;
    text-align: center;
    padding: 10px;
}

@media (max-width:800px) {

    .contact-box {
        width: 80vw;
        flex-direction: column;
    }

    .contact-left,
    .contact-middle .contact-right {
        flex-basis: 100%;
        padding: 20px;
    }

    .input-row {
        display: block;
        justify-content: space-evenly;
    }

    .input-group {
        padding: 10px;
    }

    .footer-nav {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .suggestions-box {
        width: 50vw;
        max-width: 70vw;
    }

    .sticky-logo {
        width: 80vw;
    }

    .sticky-logo img {
        width: 50vw;
    }
}

.loader {
    display: none;
    /* Initially hidden */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: #555;
    z-index: 1001;
}

/* Overlay to create blur effect */
.overlay {
    display: none;
    /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* Semi-transparent overlay */
    z-index: 1000;
    backdrop-filter: blur(5px);
    /* Apply blur effect */
}

.thank-you-left{
    background: none;
    flex-basis: 20%;
    margin: 10px;
}

.thank-you-middle {
    background: white;
    flex-basis: 60%;
    padding: 40px 60px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 1em;
    display: flex; 
    flex-direction: column; /* Stack elements vertically */
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
}

.thank-you-right {
    background: none;
    flex-basis: 20%;
    margin: 10px;
}

.footer {
    background-color: #333; /* Dark background */
    color: white;
    text-align: center;
    padding: 20px 10px;
    position: relative; /* Keeps footer at the bottom */
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: auto;
}

.footer p {
    margin: 10px 0;
    font-size: 14px;
}

/* Footer Navigation */
.footer-nav {
    margin-top: 10px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #f39c12; /* Highlight effect on hover */
}