
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: white;
    overflow-x: hidden;
}

.container {
    position: relative;
    width: 100vw;
    min-height: 220.208vw;
}

/* Header */
.header {
    position: fixed;
    background: white;
    box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
    left: 0;
    top: 0;
    width: 100%;
    height: 5.469vw;
    z-index: 50;
}

.logo {
    position: absolute;
    height: 3.594vw;
    left: 20.833vw;
    top: 0.885vw;
    width: 17.760vw;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    font-weight: bold;
    justify-content: center;
    color: #216185;
    text-align: center;
    transform: translate(-50%, -50%);
    height: 3.385vw;
    font-size: 1.042vw;
    top: 2.734vw;
    width: 6.510vw;
}

.nav-item a {
    color: #216185;
    text-decoration: none;
}

/* Hero */
.hero {
    position: absolute;
    left: 0;
    width: 100%;
    height: 39.063vw;
    top: 5.469vw;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section backgrounds */
.blue-divider-1 {
    position: absolute;
    background: #216185;
    left: 0;
    width: 100%;
    height: 6.510vw;
    top: 42.083vw;
}

.about-bg {
    position: absolute;
    background: white;
    left: 0;
    width: 100%;
    height: 28.021vw;
    top: 48.594vw;
}

.innovations-bg {
    position: absolute;
    background: #216185;
    left: 0;
    width: 100%;
    height: 33.854vw;
    top: 76.615vw;
}

.building-bg {
    position: absolute;
    background: white;
    left: 0;
    width: 100%;
    height: 30.833vw;
    top: 110.469vw;
}

.contact-bg {
    position: absolute;
    background: #216185;
    left: 0;
    width: 100%;
    height: 52.083vw;
    top: 141.302vw;
}

.footer-links-bg {
    position: absolute;
    background: #0d4d71;
    left: 0;
    width: 100%;
    height: 26.823vw;
    top: 193.385vw;
}

.footer-copyright-bg {
    position: absolute;
    background: #0d4d71;
    left: 0;
    width: 100%;
    height: 6.510vw;
    top: 213.698vw;
}

/* About section */
.about-image {
    position: absolute;
    border-radius: 5px;
    height: 15.625vw;
    left: 50.521vw;
    top: 52.917vw;
    width: 28.646vw;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.section-title {
    position: absolute;
    display: flex;
    flex-direction: column;
    font-weight: bold;
    justify-content: center;
    text-align: center;
    transform: translate(-50%, -50%);
}

.text-content {
    position: absolute;
    display: flex;
    flex-direction: column;
    font-weight: bold;
    justify-content: center;
    text-align: center;
    transform: translate(-50%, -50%);
}

/* Carousel dots */
.carousel-dot {
    position: absolute;
    border-radius: 90px;
    width: 0.781vw;
    height: 0.781vw;
}

.carousel-dot.active {
    background: #216185;
}

.carousel-dot.inactive {
    background: rgba(33,97,133,0.75);
}

/* Innovation cards */
.innovation-card {
    position: absolute;
    background: white;
    border-radius: 10px;
    height: 23.438vw;
    top: 84.115vw;
    width: 15.625vw;
}

.card-image {
    position: absolute;
    border-radius: 8px;
    width: 6.510vw;
    height: 6.510vw;
    top: 0.521vw;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Building section */
.building-image {
    position: absolute;
    border-radius: 5px;
    height: 15.625vw;
    left: 20.833vw;
    top: 118.646vw;
    width: 28.646vw;
}

.building-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.arrow-btn {
    position: absolute;
    background: #216185;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.604vw;
    top: 125.156vw;
    width: 1.823vw;
    cursor: pointer;
}
.arrow-btn2 {
    position: absolute;
    background: #216185;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.604vw;
    top: 59.717vw;
    width: 1.823vw;
    cursor: pointer;
}
.arrow-btn img {
    width: 1.563vw;
    height: 1.563vw;
    object-fit: cover;
}
.arrow-btn2 img {
    width: 1.563vw;
    height: 1.563vw;
    object-fit: cover;
}

/* Contact form */
.contact-form {
    position: absolute;
    background: white;
    border-radius: 10px;
    height: 40.365vw;
    left: 32.552vw;
    top: 147.969vw;
    width: 33.854vw;
    padding: 2.604vw;
}

.form-input {
    background: white;
    border: 3px solid #216185;
    border-radius: 10px;
    height: 3.333vw;
    width: 28.646vw;
    margin-bottom: 1.406vw;
    padding: 0 12px;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    color: rgba(33,97,133,0.75);
    font-size: 1.042vw;
    outline: none;
}

.form-textarea {
    background: white;
    border: 3px solid #216185;
    border-radius: 10px;
    height: 8.073vw;
    width: 28.646vw;
    margin-bottom: 1.458vw;
    padding: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    color: rgba(33,97,133,0.75);
    font-size: 1.042vw;
    resize: none;
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(33,97,133,0.75);
}

.submit-btn {
    background: #0d4d71;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    font-weight: bold;
    justify-content: center;
    color: white;
    text-align: center;
    cursor: pointer;
    height: 4.167vw;
    font-size: 1.042vw;
    width: 23.438vw;
    margin: 0 auto;
    border: none;
}

/* Footer */
.footer-column {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    text-align: center;
    transform: translate(-50%, -50%);
}

.footer-column a {
    color: white;
    text-decoration: none;
}