.btn--primary {
	background: var(--primary-color);
}
.btn--medium {
	padding: .5rem 1.875rem;
}

.btn--large {
	padding: .625rem 2.25rem;
	margin-top: 6vh;
}

.btn--secondary {
	text-decoration: underline;
}
@media (min-width: 768px) {
	.container {
		--defaultPadding: 0.688rem;
	}

	.image-text__image img {
		width: 120% !important;
	}
}

@keyframes slide {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-100%);
	}
}

.companies {
	overflow: hidden;
	padding: 60px 0;
	white-space: nowrap;
}

.companyList {
	display: inline-block;
	animation: 25s slide infinite linear;
}

.companyList img {
	height: 100px;
	margin: 0 40px;
}
@media (max-width: 768px){
	.wrapper1 {
		padding-inline: 0;

	} 
	.form{
		box-shadow: none;
	}
}

intro_text_wrapper li {
	margin-left: 0;
}


/* Error message styling */
.alert--error {
    background-color: #ffebee; 
    color: #d32f2f; 
    border: 1px solid #d32f2f;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
}


#errorAlert {
    display: block !important;
}

/* Error input field highlight */
input.form__input.error {
    border: 2px solid #d32f2f !important;
    background-color: #ffebee !important;
}



/* ======================
   TNAHKS MODAL
   ====================== */


.thankyou-modal {
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}

/* Modal Overlay */
.modal-overlay {
    display: none;
    /* Hidden by default */
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    /* Align center */
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-in-out;
}

.modal-overlay.active {
    display: flex;
    /* Show modal when active class is added */
}

/* Modal Content */
.modal-content-sign-up {
    background-color: #fff;
    padding: 2rem;
    font-size: 1rem;
    border-radius: 8px;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: #555;
}

a#closeModal.modal-close{
	font-size: 2rem;
}

.modal-close:hover {
    color: #007BFF;
}


@media (max-width: 600px) {
    .modal-content {
        width: 85%;
        padding: 2rem;
        max-height: 90%;
    }
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-container-sign-up {
        padding: 1rem;
    }
}
