:root {
--bg-dark: #0d1b2e;
--bg-mid: #0f1f35;
--bg-card: #0f1829;
--bg-white: #ffffff;
--blue-neon: #4a9eda;
--blue-mid: #2271b3;
--blue-deep: #0d2a4a;
--blue-panel: #0d2744;
--red-accent: #c0392b;
--red-dark: #8b1a1a;
--red-panel: #6e1515;
--white: #ffffff;
--text-dark: #1a2332;
--text-mid: #4a5568;
--gray: rgba(255, 255, 255, 0.55);
--nav-h: 68px;
--font: 'Inter', sans-serif;
--glass: rgba(255, 255, 255, 0.06);
--shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
--radius: 14px;
}
html {
scroll-behavior: smooth;
}
body {
font-family: var(--font);
background: #0d1b2e;
color: var(--white);
overflow-x: hidden;
padding-bottom: 0;
}
.navbar {
display: block;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 999;
height: var(--nav-h);
padding: 0;
}
.nav-link {
display: inline-flex;
align-items: center;
gap: 5px;
padding: 8px 16px;
border-radius: 8px;
font-size: 14px;
font-weight: 500;
color: rgba(255, 255, 255, 0.85) !important;
text-decoration: none;
white-space: nowrap;
transition: color 0.2s, background 0.2s;
cursor: pointer;
background: transparent;
}
.lang-switcher {
display: flex;
align-items: center;
gap: 7px;
padding: 7px 14px;
border-radius: 20px;
border: 1.5px solid rgba(255, 255, 255, 0.2);
font-size: 13px;
font-weight: 600;
color: rgba(255, 255, 255, 0.8);
cursor: pointer;
transition: border-color 0.2s, color 0.2s;
}
@media (max-width: 768px) {
.nav-container {
padding: 0 24px;
}
.nav-links {
display: none;
}
.nav-links.open {
display: flex;
flex-direction: column;
align-items: flex-start;
position: fixed;
inset: var(--nav-h) 0 0 0;
background: rgba(10, 16, 30, 0.98);
padding: 28px 24px;
gap: 4px;
z-index: 998;
overflow-y: auto;
}
.hamburger {
display: flex;
}
.has-dropdown .dropdown {
position: static;
transform: none;
opacity: 0;
pointer-events: none;
max-height: 0;
overflow: hidden;
background: transparent;
border: none;
box-shadow: none;
padding: 0 0 0 16px;
margin-top: 0;
width: 100%;
min-width: unset;
transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
}
.has-dropdown.dropdown-open .dropdown {
opacity: 1;
pointer-events: all;
max-height: 350px;
margin-top: 8px;
}
.has-dropdown .dropdown a {
padding: 8px 12px;
}
}
.section {
padding: 80px 0;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 40px;
}
@media (max-width: 768px) {
.container {
padding: 0 24px;
}
.section {
padding: 60px 0;
}
}
.section-title-dark {
font-size: clamp(22px, 3vw, 34px);
font-weight: 800;
color: #1a2332;
margin-bottom: 12px;
letter-spacing: -0.3px;
text-align: center;
}
.section-desc-dark {
font-size: 14px;
color: #6b7a8d;
max-width: 580px;
line-height: 1.75;
margin: 0 auto;
text-align: center;
}
.section-title-white {
font-size: clamp(22px, 3vw, 34px);
font-weight: 800;
color: #ffffff;
margin-bottom: 12px;
letter-spacing: -0.3px;
text-align: center;
}
.section-desc-white {
font-size: 14px;
color: rgba(255, 255, 255, 0.65);
max-width: 580px;
line-height: 1.75;
margin: 0 auto;
text-align: center;
}
.section-header-center {
text-align: center;
margin-bottom: 56px;
}
.reveal {
opacity: 0;
transform: translateY(28px);
transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
will-change: transform, opacity;
}
.footer {
background: #0a0a0a;
padding: 44px 0 0;
}
.footer-top>div {
max-width: 100% !important;
flex: none !important;
}
@media (max-width: 1100px) {
.footer-top {
grid-template-columns: auto auto auto;
gap: 32px;
}
.footer-contact {
grid-column: span 3;
text-align: left;
justify-self: start;
min-width: unset;
}
.footer-contact h5 {
text-align: left;
}
.footer-contact-list li {
justify-content: flex-start;
}
}
@media (max-width: 900px) {
.footer-top {
grid-template-columns: 1fr 1fr;
gap: 28px;
}
.footer-contact {
grid-column: span 2;
text-align: left;
justify-self: start;
}
.footer-contact h5 {
text-align: left;
}
.footer-contact-list li {
justify-content: flex-start;
}
}
@media (max-width: 576px) {
.footer-top {
grid-template-columns: 1fr;
gap: 24px;
}
.footer-contact {
grid-column: span 1;
}
}
@keyframes heroFadeIn {
from {
opacity: 0;
transform: translateY(22px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes dividerGlow {
0%,
100% {
box-shadow: 0 0 8px rgba(74, 158, 218, 0.5);
width: 60px;
}
50% {
box-shadow: 0 0 18px rgba(74, 158, 218, 0.9);
width: 80px;
}
}
:root {
--bg-dark: #0d1b2e;
--bg-mid: #0f1f35;
--bg-card: #0f1829;
--bg-white: #ffffff;
--blue-neon: #4a9eda;
--blue-mid: #2271b3;
--blue-deep: #0d2a4a;
--blue-panel: #0d2744;
--white: #ffffff;
--text-dark: #1a2332;
--text-mid: #4a5568;
--gray: rgba(255, 255, 255, 0.55);
--nav-h: 68px;
--font: 'Inter', sans-serif;
--glass: rgba(255, 255, 255, 0.06);
--shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
--radius: 14px;
}
html {
background: #ffffff;
}
body {
background: #ffffff;
color: var(--text-dark);
}
.nav-link {
display: inline-flex;
align-items: center;
gap: 5px;
padding: 8px 16px;
border-radius: 8px;
font-size: 14px;
font-weight: 500;
color: rgba(255, 255, 255, 0.85);
text-decoration: none;
white-space: nowrap;
transition: color 0.2s, background 0.2s;
cursor: pointer;
}
.hero {
position: relative;
width: 100%;
height: 100vh;
min-height: 600px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.hero-bg {
position: absolute;
inset: 0;
}
.hero-bg-img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center 40%;
display: block;
}
.hero-overlay {
position: absolute;
inset: 0;
z-index: 1;
background: linear-gradient(180deg,
rgba(10, 16, 30, 0.72) 0%,
rgba(10, 16, 30, 0.30) 35%,
rgba(10, 16, 30, 0.38) 65%,
rgba(10, 16, 30, 0.75) 100%);
}
.hero-content {
position: relative;
z-index: 5;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
animation: heroFadeIn 0.9s ease 0.15s both;
padding: 0 20px;
margin-top: -60px;
}
.hero-brand-row {
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
margin-bottom: 14px;
}
.hero-brand-logo {
height: 80px;
width: auto;
object-fit: contain;
filter: drop-shadow(0 2px 16px rgba(255, 255, 255, 0.25));
}
.hero-title {
font-size: clamp(48px, 7.5vw, 86px);
font-weight: 800;
letter-spacing: 2px;
color: #fff;
line-height: 1;
text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 0 60px rgba(255, 255, 255, 0.08);
margin: 0;
}
.hero-divider {
width: 60px;
height: 2.5px;
background: linear-gradient(90deg, transparent, var(--blue-neon), transparent);
border-radius: 2px;
margin: 0 auto 16px;
box-shadow: 0 0 10px rgba(74, 158, 218, 0.7);
animation: dividerGlow 2.5s ease-in-out infinite;
}
.hero-subtitle {
font-size: clamp(15px, 2vw, 19px);
font-weight: 300;
letter-spacing: 4px;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.70);
margin: 0;
}
.main-wrapper {
position: relative;
background: #ffffff;
z-index: 5;
}
.container {
max-width: 1278px;
margin: 0 auto;
padding: 0 40px;
}
.im-intro-section {
background-color: #EFF3FF;
padding: 80px 0;
border-bottom: 1px solid rgba(34, 113, 179, 0.08);
}
.im-intro-title {
font-size: 28px;
font-weight: 700;
color: #000000;
line-height: 1.45;
text-align: center;
max-width: 880px;
margin: 0 auto 36px;
}
.im-intro-desc-wrap {
display: flex;
flex-direction: column;
gap: 20px;
max-width: 820px;
margin: 0 auto;
}
.im-intro-desc {
font-size: 15.5px;
font-weight: 400;
color: var(--text-mid);
line-height: 1.7;
text-align: center;
}
.im-details-section {
background: #ffffff;
padding: 90px 0;
}
.im-card-row {
display: flex;
background-color: #F4F4F4;
border-radius: 14px;
overflow: hidden;
margin: 0 auto 40px;
max-width: 1198px;
height: 335px;
align-items: stretch;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.im-card-row:hover {
transform: translateY(-4px);
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.im-card-row:last-of-type {
margin-bottom: 30px;
}
.im-card-img-col {
flex: 0 0 48.58%;
width: 48.58%;
min-width: 0;
}
.im-card-img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.im-card-content-col {
flex: 0 0 51.42%;
width: 51.42%;
min-width: 0;
padding: 28px 36px;
display: flex;
flex-direction: column;
justify-content: center;
}
.im-card-title {
font-size: 21px;
font-weight: 750;
color: #000000;
margin-bottom: 12px;
}
.im-card-journey-title {
font-size: 18px;
font-weight: 700;
color: #000000;
line-height: 1.5;
margin-bottom: 12px;
}
.im-card-title-sub {
font-size: 16px;
font-weight: 700;
color: #000000;
margin-bottom: 12px;
}
.im-card-desc {
font-size: 13.5px;
color: var(--text-mid);
line-height: 1.55;
margin-bottom: 16px;
}
.im-card-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 8px;
}
.im-card-list li {
display: flex;
align-items: flex-start;
gap: 10px;
font-size: 13.5px;
color: var(--text-dark);
line-height: 1.45;
}
.bullet-dot {
width: 6px;
height: 6px;
background-color: #000000;
border-radius: 50%;
flex-shrink: 0;
margin-top: 7px;
}
.im-card-more {
font-size: 13.5px;
color: var(--text-dark);
margin-top: 10px;
font-weight: 500;
line-height: 1.45;
}
.im-info-banner {
margin-top: 70px;
display: flex;
justify-content: center;
}
.im-info-banner-inner {
display: flex;
align-items: center;
gap: 16px;
background-color: #EFF3FF;
border: 1px solid rgba(34, 113, 179, 0.16);
padding: 16px 28px;
border-radius: 8px;
width: 100%;
max-width: 920px;
box-shadow: 0 4px 16px rgba(34, 113, 179, 0.04);
}
.im-info-icon-wrap {
font-size: 18px;
color: var(--text-dark);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.im-info-text {
font-size: 14.5px;
font-weight: 500;
color: var(--text-dark);
line-height: 1.45;
margin: 0;
}
.reveal {
opacity: 0;
transform: translateY(25px);
transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
will-change: transform, opacity;
}
@media (max-width: 992px) {
.im-hero-title {
font-size: 44px;
}
.im-card-row {
flex-direction: column;
margin-bottom: 40px;
align-items: stretch;
height: auto;
}
.im-card-img-col {
flex: 0 0 auto;
width: 100%;
height: 260px;
}
.im-card-img {
width: 100%;
height: 100%;
object-fit: cover;
}
.im-card-content-col {
flex: 0 0 auto;
width: 100%;
height: auto;
padding: 24px 20px;
}
.im-info-banner-inner {
border-radius: 20px;
padding: 16px 20px;
align-items: flex-start;
}
}
@media (max-width: 768px) {
.nav-links.open {
display: flex;
flex-direction: column;
align-items: flex-start;
position: fixed;
inset: var(--nav-h) 0 0 0;
background: rgba(10, 16, 30, 0.98);
padding: 28px 24px;
gap: 4px;
z-index: 998;
}
.has-dropdown .dropdown {
position: static;
transform: none;
opacity: 0;
pointer-events: none;
max-height: 0;
overflow: hidden;
background: transparent;
border: none;
box-shadow: none;
padding: 0 0 0 16px;
margin-top: 0;
width: 100%;
min-width: unset;
transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
}
.has-dropdown.dropdown-open .dropdown {
opacity: 1;
pointer-events: all;
max-height: 350px;
margin-top: 8px;
}
.has-dropdown .dropdown a {
padding: 8px 12px;
}
.container {
padding: 0 24px;
}
.im-intro-section {
padding: 60px 0;
}
.im-intro-title {
font-size: 22px;
margin-bottom: 24px;
}
.im-details-section {
padding: 60px 0;
}
.im-card-title {
font-size: 22px;
}
.im-card-journey-title {
font-size: 17px;
padding-left: 14px;
margin-bottom: 20px;
}
}
@media (max-width: 540px) {
.im-hero-title {
font-size: 36px;
letter-spacing: 2px;
}
.im-hero-subtitle {
font-size: 15px;
}
.im-info-banner-inner {
flex-direction: column;
gap: 10px;
border-radius: 16px;
}
}