* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', sans-serif; color: #1a1a2e; background: #f9f9fb; }
/* SCROLL ANIMATIONS */
.scroll-reveal {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal.revealed {
opacity: 1;
transform: translateY(0);
}
.scroll-reveal-left {
opacity: 0;
transform: translateX(-30px);
transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal-left.revealed {
opacity: 1;
transform: translateX(0);
}
.scroll-reveal-right {
opacity: 0;
transform: translateX(30px);
transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal-right.revealed {
opacity: 1;
transform: translateX(0);
}
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
/* NAV */
nav {
display: flex; justify-content: space-between; align-items: center;
padding: 1.2rem 4rem; background: #000;
position: fixed;
top: 0; left: 0; right: 0; z-index: 100;
}
a.nav-logo { display: inline-flex; align-items: center; text-decoration: none; cursor: pointer; }
a.nav-logo img { height: 40px; width: auto; object-fit: contain; display: block; }
nav ul { list-style: none; display: flex; gap: 2rem; }
nav ul li a { text-decoration: none; color: rgba(255,255,255,0.85); font-size: 0.95rem; font-weight: 500; transition: color 0.2s; }
nav ul li a:hover, nav ul li a.active { color: #1a8cff; }
.nav-cta { background: #1a8cff; color: #fff !important; padding: 0.5rem 1.2rem; border-radius: 6px; }
.nav-cta:hover { background: #0a6cd4 !important; color: #fff !important; }
/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
display: none; flex-direction: column; background: #000;
position: fixed; top: 60px; left: 0; right: 0;
padding: 1.5rem 2rem; z-index: 99; gap: 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 1rem; font-weight: 500; padding: 0.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); transition: color 0.2s; }
.mobile-menu a:hover { color: #1a8cff; }
.mobile-menu .nav-cta { background: #1a8cff; color: #fff; padding: 0.6rem 1.2rem; border-radius: 6px; text-align: center; border-bottom: none; }
/* HERO */
.hero { position: relative; width: 100%; height: 100vh; overflow: hidden; display: flex; align-items: center; justify-content: center; background: #000; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; pointer-events: none; }
.hero-overlay-dim { position: absolute; inset: 0; background: rgba(0,0,10,0.0); z-index: 1; pointer-events: none; }
.hero-overlay { position: relative; z-index: 10; text-align: center; color: #fff; padding: 0 1.5rem; width: 100%; }
.hero h1 { font-size: 5.2rem; font-weight: 800; line-height: 1.2; margin-bottom: 1.2rem; text-shadow: 0 2px 30px rgba(0,0,0,0.9); }
.hero h1 span { color: #ffffff; }
.hero p { font-size: 1.1rem; font-weight: 800; max-width: 580px; margin: 0 auto 2.5rem; opacity: 0.9; line-height: 1.7; text-shadow: 0 1px 12px rgba(0,0,0,0.9); }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: #1a8cff; color: #fff; padding: 0.85rem 2rem; border-radius: 8px; font-weight: 700; text-decoration: none; font-size: 1rem; transition: background 0.2s, transform 0.2s; }
.btn-primary:hover { background: #0a6cd4; transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); padding: 0.85rem 2rem; border-radius: 8px; font-weight: 600; text-decoration: none; font-size: 1rem; transition: background 0.2s, transform 0.2s; }
.btn-outline:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.4); font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase; z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.scroll-arrow { width: 18px; height: 18px; border-right: 2px solid rgba(255,255,255,0.35); border-bottom: 2px solid rgba(255,255,255,0.35); transform: rotate(45deg); animation: bounce 1.6s infinite; }
@keyframes bounce { 0%,100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(5px); } }
/* PARTNERS */
.partners-section { background: #fff; padding: 2rem 4rem; text-align: center; border-bottom: 1px solid #eee; }
.partners-section > p { font-size: 0.85rem; color: #888; margin-bottom: 1.2rem; text-transform: uppercase; letter-spacing: 1px; }
.partners-ticker { overflow: hidden; white-space: nowrap; }
.partners-track {
display: flex; gap: 6rem; align-items: center;
justify-content: center; animation: none; width: 100%;
}
.partners-track.scrolling {
display: inline-flex; justify-content: flex-start;
width: auto; animation: ticker 20s linear infinite;
}
.partner-item {
display: inline-flex; align-items: center;
gap: 0; opacity: 0.5; transition: opacity 0.2s; white-space: nowrap;
}
.partner-item:hover { opacity: 0.85; }
.partner-item img { height: 24px; width: auto; filter: grayscale(100%); object-fit: contain; display: block; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
/* STATS */
.stats { display: flex; justify-content: center; gap: 4rem; padding: 3rem 4rem; background: linear-gradient(135deg, #0a3d6b 0%, #1a8cff 100%); color: #fff; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-item .num { font-size: 2.5rem; font-weight: 800; color: #fff; }
.stat-item .label { font-size: 0.9rem; opacity: 0.9; margin-top: 0.3rem; }
/* SECTIONS */
section { padding: 5rem 4rem; }
.section-label { font-size: 0.8rem; font-weight: 700; color: #1a8cff; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.6rem; }
.section-title { font-size: 2rem; font-weight: 800; color: #0a3d6b; margin-bottom: 1rem; line-height: 1.2; }
.section-subtitle { font-size: 1rem; color: #555; max-width: 560px; line-height: 1.7; }
/* ABOUT */
.about {
position: relative;
overflow: hidden;
padding: 0;
min-height: 560px;
background: linear-gradient(160deg, #eef4ff 0%, #f0f6ff 50%, #e8f0ff 100%);
display: flex;
align-items: stretch;
}
.about::before {
content: ''; position: absolute; width: 340px; height: 340px; border-radius: 50%;
background: rgba(26,140,255,0.07); bottom: -80px; left: -80px; pointer-events: none; z-index: 1;
}
.about::after {
content: ''; position: absolute; width: 200px; height: 200px; border-radius: 50%;
background: rgba(26,140,255,0.06); top: 40px; right: 30%; pointer-events: none; z-index: 1;
}
.about-inner {
position: relative;
z-index: 2;
width: 100%;
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: 42% 58%;
align-items: center;
min-height: 560px;
}
.about-text {
padding: 5rem 3rem 5rem 4rem;
}
.about-text .section-title { font-size: 2.8rem; font-weight: 900; color: #0a1f4e; line-height: 1.15; margin-bottom: 1.5rem; }
.about-text p { color: #4a5568; line-height: 1.8; margin-bottom: 1.1rem; font-size: 1rem; }
.about-btn { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.8rem; background: #1a8cff; color: #fff; padding: 0.85rem 1.8rem; border-radius: 10px; text-decoration: none; font-weight: 700; font-size: 1rem; transition: background 0.2s, transform 0.2s; width: fit-content; }
.about-btn:hover { background: #0a6cd4; transform: translateY(-2px); }
/* MAP visual column */
.about-visual {
position: relative;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem 2rem 2rem 0;
overflow: hidden;
}
#chartdiv {
width: 100%;
height: 480px;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 8px 32px rgba(10,61,107,0.13);
background: #eef4ff;
}
/* FAIR */
.fair { background: #fff; }
.fair-inner { max-width: 1100px; margin: 0 auto; }
.fair-header { text-align: center; margin-bottom: 3rem; }
.fair-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.fair-card { border-radius: 12px; padding: 2rem 1.5rem; background: #f0f6ff; border-top: 4px solid #1a8cff; transition: transform 0.2s, box-shadow 0.2s; }
.fair-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(26,140,255,0.12); }
.fair-card .letter { font-size: 2.5rem; font-weight: 900; color: #1a8cff; line-height: 1; margin-bottom: 0.5rem; }
.fair-card h4 { font-size: 1rem; font-weight: 700; color: #0a3d6b; margin-bottom: 0.6rem; }
.fair-card p { font-size: 0.88rem; color: #555; line-height: 1.6; }
/* PLATFORM */
.platform { background: #f9f9fb; }
.platform-inner { max-width: 1100px; margin: 0 auto; }
.platform-header { text-align: center; margin-bottom: 3rem; }
.platform-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.platform-card { background: #fff; border-radius: 12px; padding: 2rem; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: all 0.3s ease; }
.platform-card:hover { transform: translateY(-4px); background: #1a8cff; }
.platform-card .icon { font-size: 2rem; margin-bottom: 1rem; transition: all 0.3s ease; }
.platform-card h3 { font-size: 1.1rem; font-weight: 700; color: #0a3d6b; margin-bottom: 0.6rem; transition: color 0.3s ease; }
.platform-card p { font-size: 0.9rem; color: #666; line-height: 1.6; transition: color 0.3s ease; }
.platform-card a { display: inline-block; margin-top: 1rem; color: #1a8cff; font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: color 0.3s ease; }
.platform-card:hover h3 { color: #fff; }
.platform-card:hover p { color: #fff; }
.platform-card:hover a { color: #fff; text-decoration: underline; }
/* NEWS */
.news { background: #fff; }
.news-inner { max-width: 1100px; margin: 0 auto; }
.news-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; }
.news-header a { color: #1a8cff; text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.news-card { border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.07); background: #f9f9fb; transition: transform 0.2s; }
.news-card:hover { transform: translateY(-4px); }

/* Base card-top (no image fallback) */
.news-card-top {
  padding: 1.5rem;
  background: linear-gradient(135deg, #0a3d6b, #1a8cff);
  color: #fff;
}

/* Card-top WITH background image */
.news-card-top.news-card-img {
  position: relative;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Blue gradient overlay for readability */
.news-card-top.news-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 61, 107, 0.35) 0%,
    rgba(10, 61, 107, 0.75) 100%
  );
  z-index: 0;
}

/* Keep tag and title above overlay */
.news-card-top.news-card-img .news-tag,
.news-card-top.news-card-img h3 {
  position: relative;
  z-index: 1;
}

.news-tag { display: inline-block; background: rgba(255,255,255,0.2); border-radius: 4px; padding: 0.2rem 0.6rem; font-size: 0.75rem; font-weight: 600; margin-bottom: 0.6rem; text-transform: uppercase; }
.news-card-top h3 { font-size: 1rem; line-height: 1.4; color: #fff; }
.news-card-body { padding: 1rem 1.5rem; }
.news-date { font-size: 0.8rem; color: #888; }
/* CTA */
.cta-banner { background: linear-gradient(135deg, #0a3d6b 0%, #1a8cff 100%); color: #fff; text-align: center; padding: 5rem 2rem; }
.cta-banner h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem; }
.cta-banner p { opacity: 0.9; font-size: 1.05rem; max-width: 520px; margin: 0 auto 2rem; line-height: 1.7; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
/* FOOTER */
footer { background: #0a1628; color: #fff; padding: 3rem 4rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; max-width: 1100px; margin: 0 auto 2rem; }
a.footer-logo { display: inline-block; margin-bottom: 0.8rem; text-decoration: none; }
a.footer-logo img { height: 40px; width: auto; object-fit: contain; }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; color: #fff; opacity: 0.85; margin-top: 0.5rem; }
footer h4 { color: #fff; font-size: 0.9rem; font-weight: 700; margin-bottom: 1rem; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.5rem; }
footer ul li a { color: #fff; opacity: 0.85; text-decoration: none; font-size: 0.88rem; transition: opacity 0.2s; }
footer ul li a:hover { opacity: 1; }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1rem; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 8px; color: #fff; transition: background 0.2s, color 0.2s; text-decoration: none; }
.footer-social a:hover { background: #1a8cff; color: #fff; }
.footer-bottom { border-top: 1px solid #1e2d42; padding-top: 1.5rem; text-align: center; font-size: 0.82rem; color: #fff; opacity: 0.85; max-width: 1100px; margin: 0 auto; }
/* RESPONSIVE: TABLET */
@media (max-width: 1024px) {
nav { padding: 1.2rem 2rem; } nav ul { gap: 1.2rem; } nav ul li a { font-size: 0.85rem; }
.hero h1 { font-size: 3.8rem; }
section { padding: 4rem 2rem; }
.stats { gap: 2.5rem; padding: 2.5rem 2rem; }
.about-text .section-title { font-size: 2.2rem; }
.about-text { padding: 4rem 2rem 4rem 2rem; }
.about-inner { grid-template-columns: 48% 52%; }
#chartdiv { height: 380px; }
.fair-grid { grid-template-columns: repeat(2, 1fr); }
.footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
.partners-section { padding: 2rem 2rem; }
footer { padding: 3rem 2rem; }
}
/* RESPONSIVE: MOBILE */
@media (max-width: 768px) {
nav { padding: 1rem 1.5rem; } nav ul { display: none; } .hamburger { display: flex; }
a.nav-logo img { height: 32px; }
.hero { height: 100svh; }
.hero h1 { font-size: 2.2rem; }
.hero p { font-size: 0.95rem; font-weight: 800; max-width: 100%; }
.hero-btns { flex-direction: column; align-items: center; }
.btn-primary, .btn-outline { width: 100%; max-width: 280px; text-align: center; }
.partners-section { padding: 1.5rem 1rem; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; padding: 2rem 1.5rem; }
.stat-item .num { font-size: 2rem; }
section { padding: 3rem 1.5rem; }
.section-title { font-size: 1.6rem; }
.about { min-height: auto; }
.about-inner { grid-template-columns: 1fr; }
.about-text { padding: 3rem 1.5rem 1rem; }
.about-text .section-title { font-size: 2rem; }
.about-visual { padding: 0 1.5rem 2rem; justify-content: center; }
#chartdiv { height: 300px; }
.fair-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
.platform-grid { grid-template-columns: 1fr; }
.news-grid { grid-template-columns: 1fr; }
.news-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
.cta-banner { padding: 3.5rem 1.5rem; }
.cta-banner h2 { font-size: 1.6rem; }
.cta-btns { flex-direction: column; align-items: center; }
.cta-btns a { width: 100%; max-width: 280px; text-align: center; }
.footer-grid { grid-template-columns: 1fr; gap: 2rem; }
footer { padding: 2.5rem 1.5rem; }
}
/* RESPONSIVE: SMALL MOBILE */
@media (max-width: 480px) {
nav { padding: 1rem; } a.nav-logo img { height: 28px; }
.hero h1 { font-size: 1.8rem; } .hero p { font-size: 0.9rem; font-weight: 800; }
.stats { grid-template-columns: 1fr 1fr; gap: 1rem; padding: 1.5rem 1rem; }
.stat-item .num { font-size: 1.7rem; } .stat-item .label { font-size: 0.78rem; }
.section-title { font-size: 1.4rem; }
.about-text .section-title { font-size: 1.7rem; }
#chartdiv { height: 240px; }
.fair-grid { grid-template-columns: 1fr; }
.cta-banner h2 { font-size: 1.4rem; } .cta-banner p { font-size: 0.92rem; }
}