* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #1a3a52;
    background-color: #f8fafb;
}

h1, h2, h3, h4, h5 {
    margin-top: 0;
    margin-bottom: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.25;
}

h2 {
    font-size: calc(1.4rem + 1vw);
}

h3 {
    font-size: calc(1.3rem + .6vw);
}

h5 {
    font-size: 1.25rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    display: inline-block;
    transition: all .3s ease;
}

a:hover {
    opacity: .85;
}

img {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    border: none;
}

input, button, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.display-3 {
    font-size: calc(1.8rem + 3.5vw);
    font-weight: 700;
    line-height: 1.15;
}

.display-4 {
    font-size: calc(1.6rem + 2.8vw);
    font-weight: 700;
    line-height: 1.15;
}

.display-5 {
    font-size: calc(1.45rem + 2vw);
    font-weight: 700;
    line-height: 1.2;
}

.display-6 {
    font-size: calc(1.35rem + 1.5vw);
    font-weight: 700;
    line-height: 1.2;
}

.container {
    width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -0.75rem;
    margin-left: -0.75rem;
}

.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

.form-label {
    margin-bottom: .5rem;
    display: inline-block;
    font-weight: 500;
    color: #1a3a52;
}

.form-control, .form-select {
    display: block;
    width: 100%;
    padding: .9rem 1.2rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #1a3a52;
    background-color: #fff;
    border: 2px solid #d4e3ed;
    border-radius: .5rem;
    transition: border-color .2s ease;
}

.form-control:focus, .form-select:focus {
    outline: 0;
    border-color: #1e5a8e;
    box-shadow: 0 0 0 3px rgba(30, 90, 142, 0.1);
}

.form-select {
    padding-right: 3rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%231a3a52' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-check {
    display: flex;
    align-items: center;
    min-height: 1.5rem;
    padding-left: 0;
    margin-bottom: 0;
}

.form-check-input {
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 0;
    margin-right: .5rem;
    vertical-align: top;
    background-color: #fff;
    border: 2px solid #d4e3ed;
    appearance: none;
    cursor: pointer;
    border-radius: .25rem;
}

.form-check-input:checked {
    background-color: #1e5a8e;
    border-color: #1e5a8e;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3E%3C/svg%3E");
}

.form-check-label {
    cursor: pointer;
    color: #4a5f73;
}

.btn {
    display: inline-block;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    cursor: pointer;
    user-select: none;
    border: 2px solid transparent;
    padding: .85rem 1.8rem;
    font-size: 1rem;
    border-radius: .5rem;
    transition: all .3s ease;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-ocean {
    background-color: #1e5a8e;
    color: #fff;
    border-color: #1e5a8e;
}

.btn-ocean:hover {
    background-color: #164166;
    border-color: #164166;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 90, 142, 0.3);
}

.btn-light {
    background-color: #fff;
    color: #1e5a8e;
    border-color: #fff;
}

.btn-light:hover {
    background-color: #f0f5f9;
    border-color: #f0f5f9;
    color: #164166;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.4);
}

.btn-outline-light {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: #1e5a8e;
    border-color: #fff;
}

.bg-ocean {
    background-color: #1e5a8e;
}

.bg-ocean-deep {
    background-color: #0d2b45;
}

.bg-ocean-light {
    background-color: #e8f1f7;
}

.bg-light-ocean {
    background-color: #f0f7fb;
}

.bg-gradient-ocean {
    background: linear-gradient(135deg, #1e5a8e 0%, #2a7fb8 50%, #1e5a8e 100%);
}

.bg-gold {
    background-color: #d4a24c;
}

.bg-gold-light {
    background-color: #fef7e8;
}

.bg-coral {
    background-color: #e67e5f;
}

.text-ocean {
    color: #1e5a8e;
}

.text-ocean-deep {
    color: #0d2b45;
}

.text-gold {
    color: #d4a24c;
}

.text-muted {
    color: #5a6e7f;
}

.hero-maritime {
    background: linear-gradient(135deg, #1e5a8e 0%, #0d2b45 100%);
    position: relative;
}

.wave-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath fill='%23f8fafb' d='M0,50 C300,100 600,0 900,50 C1050,75 1125,75 1200,50 L1200,120 L0,120 Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.4;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(13, 43, 69, 0.3);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(212, 162, 76, 0.3), rgba(30, 90, 142, 0.3));
    border-radius: 1rem;
    z-index: -1;
}

.feature-card {
    transition: all .3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(13, 43, 69, 0.15);
    border-color: #d4e3ed;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card {
    border: 3px solid #d4e3ed;
}

.job-card {
    transition: all .3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(13, 43, 69, 0.15);
}

.badge {
    display: inline-block;
    padding: .4rem .8rem;
    font-size: .875rem;
    font-weight: 600;
    border-radius: .375rem;
    color: #fff;
}

.step-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.footer-links a {
    transition: all .3s ease;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: .5rem;
}

.shadow {
    box-shadow: 0 8px 20px rgba(13, 43, 69, 0.12);
}

.shadow-lg {
    box-shadow: 0 15px 40px rgba(13, 43, 69, 0.2);
}

.rounded-3 {
    border-radius: .75rem;
}

.rounded-4 {
    border-radius: 1rem;
}

.rounded-5 {
    border-radius: 1.25rem;
}

.rounded-circle {
    border-radius: 50%;
}

.opacity-75 {
    opacity: .75;
}

.opacity-85 {
    opacity: .85;
}

.opacity-90 {
    opacity: .9;
}

.d-flex {
    display: flex;
}

.d-inline-block {
    display: inline-block;
}

.align-items-center {
    align-items: center;
}

.align-items-start {
    align-items: flex-start;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.flex-column {
    flex-direction: column;
}

.text-center {
    text-align: center;
}

.text-end {
    text-align: end;
}

.fw-bold {
    font-weight: 700;
}

.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: .5rem; }
.mb-3 { margin-bottom: .75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-15 { margin-bottom: 3.75rem; }

.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-15 { margin-top: 3.75rem; }

.me-2 { margin-right: .5rem; }
.me-3 { margin-right: .75rem; }
.me-4 { margin-right: 1rem; }
.me-6 { margin-right: 1.5rem; }

.ms-5 { margin-left: 1.25rem; }

.py-3 { padding-top: .75rem; padding-bottom: .75rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-15 { padding-top: 3.75rem; padding-bottom: 3.75rem; }

.p-3 { padding: .75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }

.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }

.ps-2 { padding-left: .5rem; }

.g-4 > * { padding: 1rem; }
.g-6 > * { padding: 1.5rem; }
.g-8 > * { padding: 2rem; }

.h-100 { height: 100%; }
.w-100 { width: 100%; }

.position-relative { position: relative; }
.position-absolute { position: absolute; }

.overflow-hidden { overflow: hidden; }

.fs-1 { font-size: 1.5rem; }
.fs-2 { font-size: 1.35rem; }
.fs-3 { font-size: 1.2rem; }
.fs-4 { font-size: 1.05rem; }

.small { font-size: .875rem; }

@media (min-width: 576px) {
    .container { max-width: 540px; }
}

@media (min-width: 768px) {
    .container { max-width: 720px; }
    .col-md-6 { flex: 0 0 auto; width: 50%; }
    .order-md-1 { order: 1; }
    .order-md-2 { order: 2; }
    .p-md-8 { padding: 2rem; }
    .p-md-12 { padding: 3rem; }
}

@media (min-width: 992px) {
    .container { max-width: 960px; }
    .col-lg-4 { flex: 0 0 auto; width: 33.333%; }
    .col-lg-5 { flex: 0 0 auto; width: 41.667%; }
    .col-lg-6 { flex: 0 0 auto; width: 50%; }
    .col-lg-7 { flex: 0 0 auto; width: 58.333%; }
    .col-lg-8 { flex: 0 0 auto; width: 66.667%; }
    .col-lg-9 { flex: 0 0 auto; width: 75%; }
    .col-lg-10 { flex: 0 0 auto; width: 83.333%; }
    .order-lg-1 { order: 1; }
    .order-lg-2 { order: 2; }
    .offset-lg-1 { margin-left: 8.333%; }
    .text-lg-end { text-align: end; }
    .ps-lg-12 { padding-left: 3rem; }
    .mb-lg-0 { margin-bottom: 0; }
    .py-lg-15 { padding-top: 3.75rem; padding-bottom: 3.75rem; }
    .py-lg-20 { padding-top: 5rem; padding-bottom: 5rem; }
    .py-lg-25 { padding-top: 6.25rem; padding-bottom: 6.25rem; }
}

@media (min-width: 1200px) {
    .container { max-width: 1140px; }
    .display-3 { font-size: 4.5rem; }
    .display-4 { font-size: 3.5rem; }
    .display-5 { font-size: 3rem; }
    .display-6 { font-size: 2.5rem; }
    h2 { font-size: 2.2rem; }
    h3 { font-size: 1.85rem; }
}

.text-white{

    color: #fff;
}

section{
    overflow:hidden;
}