:root {
    --blue-primary: #00557a;
    --green-primary: #0b284b;
    --purple-light: #e0d3f5;
    --blue-gradient: linear-gradient(135deg, #00557a 0%, #49c6f5 100%);
    --brand-light: #e4f2ef;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff;
    color: #333;
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-link-hover:hover {
    text-decoration: underline;
    color: #592ea0;
}


.text-blue {
    color: var(--blue-primary);
}

.business {
    /* background: linear-gradient(135deg, #072475 0%, #49f5bc 100%); */
    background: linear-gradient(135deg, #234975 30%, #0bf186 100%);
    padding: 120px 0px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.business::before {
    background-image: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f');
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background-size: cover;
    background-position: center;
    z-index: 0;
    content: "";
    top: 0;
    left: 0;
}

.btn-blue {
    position: relative;
    background: var(--green-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-blue:hover {
    /* background: #00557a; */
    background: #015072;
    color: white;
}

.business h1 {
    font-size: 3rem;
    font-weight: 700;
}

.bg-light-green {
    background-color: var(--brand-light);
}

.section-title {
    font-size: 2rem;
    color: var(--green-primary);
    font-weight: bold;
    margin-bottom: 1rem;
}

.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transfom.3s;
}
 .contacts {
   background: #000000;
    padding: 120px 0px;
    text-align: center;
    position: relative;
    overflow: hidden;
 }
 .contacts::before {
    background-image: url('https://images.unsplash.com/photo-1515378960530-7c0da6231fb1?q=80&w=870&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.25;
    background-size: cover;
    background-position: center;
    z-index: 0;
    content: "";
    top: 0;
    left: 0;
}
.form-container {
    background-color: #a9a9a9;
    opacity: 60%;
    width: 340px;
    max-width: 450px;
    height: 450px;
    position: relative;
    left: 58px;
    padding: 30px;
    z-index: 1;
}

.form-heading {
    font-size: 2rem;
    color: black;
    font-weight: bold;
    margin-bottom: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.contact-input {
    border: 1px solid #0b284b;
    padding: 8px;
    padding-right: 48px;
    font-size: 15px;
    width: 100%;
    max-width: 100%;
    transition: all 0.3s ease;
    background: #a9a9a9;
    color: #0b284b;
    margin-bottom: 15px;
}

.contact-input::placeholder {
    color: #0b284b;
    opacity: 0.8;
}

.contact-input:focus,
.contact-input:hover {
    border-color: #0b284b;
    background-color: #a9a9a9;
    color: #0b284b;
    box-shadow: none;
    outline: none;
}

.contact-text h2 {
  line-height: 1.5;
  text-align: center;
}