body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: linear-gradient(180deg, #071324 0%, #0c1f38 100%);
    color: #ffffff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

header {
    padding: 25px 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    height: 75px;
}

.login-btn {
    background: transparent;
    border: 1px solid #ffffff30;
    color: white;
    padding: 8px 15px;
    cursor: pointer;
    transition: 0.3s;
}

.login-btn:hover {
    background: #ffffff10;
}

.lang-switch button {
    background: transparent;
    border: 1px solid #ffffff30;
    color: white;
    padding: 6px 12px;
    cursor: pointer;
}

.hero {
    position: relative;
    padding: 160px 0;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, #12233f 0%, transparent 70%);
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 25px;
    font-weight: 600;
}

.hero p {
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 40px;
}

.btn {
    background: #ff2d2d;
    padding: 14px 30px;
    text-decoration: none;
    color: white;
    border-radius: 6px;
    font-weight: 500;
    transition: 0.3s;
}

.btn:hover {
    background: #ff4a4a;
}

.section {
    padding: 100px 0;
}

.dark {
    background: #0e1d34;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.card {
    background: #12233f;
    padding: 35px;
    border-radius: 12px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* TRACK RECORD */

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.kpi {
    background: #12233f;
    padding: 40px;
    border-radius: 12px;
}

.kpi h3 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #ff2d2d;
}

/* MODAL LOGIN */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #0e1d34;
    padding: 40px;
    border-radius: 12px;
    width: 350px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-content input {
    padding: 10px;
    border-radius: 6px;
    border: none;
}

.full {
    width: 100%;
}

.close {
    text-align: right;
    cursor: pointer;
}

/* MOBILE OPTIMIZATION */

@media(max-width: 768px){
    .hero h1 {
        font-size: 36px;
    }

    .logo {
        height: 55px;
    }

    .section {
        padding: 70px 0;
    }
}

footer {
    padding: 40px 0;
    background: #081423;
    font-size: 14px;
    opacity: 0.7;
}

.contact-link {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 500;
}

.contact-link:hover {
  text-decoration: underline;
  color: #60a5fa;
}

.navbar {
  display:flex;
  justify-content:space-between;
  padding:20px 40px;
  background:#0b1220;
}

.navbar a {
  margin-left:20px;
  color:white;
  text-decoration:none;
}

.hero {
  text-align:center;
  padding:120px 20px;
  background:linear-gradient(135deg,#0f172a,#0b1220);
}

.section {
  padding:80px 40px;
  text-align:center;
}

.section.dark {
  background:#111827;
}

.grid-3 {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
  margin-top:40px;
}

.card {
  background:#1e293b;
  padding:30px;
  border-radius:12px;
}

.btn {
  display:inline-block;
  margin-top:20px;
  padding:12px 25px;
  background:#ef4444;
  color:white;
  text-decoration:none;
  border-radius:6px;
}

.contact-link {
  color:#38bdf8;
  text-decoration:none;
}

footer {
  text-align:center;
  padding:40px;
  background:#0b1220;
}

body {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    letter-spacing: 0.3px;
}

h1, h2, h3 {
    font-weight: 600;
}

.hero h1 {
    font-size: 54px;
    font-weight: 600;
}

.btn {
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,45,45,0.3);
}


/* =========================
   CAPITAL PAGE IMPROVEMENTS
========================= */

.section-center {
    text-align: center;
}

.section-center p {
    max-width: 800px;
    margin: 0 auto 20px auto;
    line-height: 1.7;
    opacity: 0.9;
}

.grid-3-centered {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 900px){
    .grid-3-centered{
        grid-template-columns: 1fr;
    }
}

/* Soft institutional animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.logo-text{
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main{
    font-weight: 700;
    font-size: 26px;
    letter-spacing: 0.5px;
}

.logo-highlight{
    background: #ef4444;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
}

.logo-sub{
    font-size: 12px;
    letter-spacing: 4px;
    align-self: flex-end;
    margin-top: 2px;
    opacity: 0.7;
}
