:root {
  --sun-start: #F5B800;
  --sun-end: #F57C00;
  --ocean-1: #1B3556;
  --ocean-2: #2E7FB8;
  --ocean-3: #6EC1E4;
  --heading-font: "Poppins", "Montserrat", sans-serif;
  --body-font: "Inter", "Open Sans", sans-serif;
}

body {
  font-family: var(--body-font);
  color: #1a2b3c;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6,
.section-title {
  font-family: var(--heading-font);
}

.bg-sun {
  background: linear-gradient(135deg, var(--sun-start), var(--sun-end));
}

.bg-ocean {
  background: linear-gradient(135deg, var(--ocean-1), var(--ocean-2), var(--ocean-3));
}

.bg-ocean-soft {
  background: linear-gradient(180deg, #f4f9fc 0%, #e8f4fa 100%);
}

.ocean-card {
  background: linear-gradient(145deg, var(--ocean-1), var(--ocean-2) 55%, var(--ocean-3));
  border-radius: 1rem;
}

.hero-section {
  position: relative;
  overflow: hidden;
  background: #0f2238;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 53, 86, 0.82) 0%,
    rgba(22, 48, 79, 0.75) 50%,
    rgba(15, 34, 56, 0.85) 100%
  );
  z-index: 1;
}

.hero-glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 184, 0, 0.45) 0%, rgba(245, 124, 0, 0.15) 45%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}

.hero-section .container {
  position: relative;
  z-index: 3;
}

.hero-kicker,
.section-kicker {
  color: var(--sun-start);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.text-highlight {
  background: linear-gradient(90deg, var(--sun-start), var(--sun-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-highlights li {
  margin-bottom: 0.5rem;
}

.hero-highlights i {
  color: var(--sun-start);
}

.nav-glass {
  background: rgba(27, 53, 86, 0.85);
  backdrop-filter: blur(10px);
}

.navbar-brand {
  padding: 0;
}

.site-logo {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.footer-logo {
  height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.btn-ocean {
  background: linear-gradient(135deg, var(--ocean-1), var(--ocean-2), var(--ocean-3));
  border: none;
  color: #fff;
  font-weight: 600;
}

.btn-ocean:hover {
  filter: brightness(1.08);
  color: #fff;
}

.btn-sun {
  background: linear-gradient(135deg, var(--sun-start), var(--sun-end));
  border: none;
  color: #1b3556;
  font-weight: 700;
}

.btn-sun:hover {
  filter: brightness(1.05);
  color: #1b3556;
}

.btn-outline-ocean {
  border: 2px solid var(--ocean-2);
  color: var(--ocean-1);
  font-weight: 600;
}

.btn-outline-ocean:hover {
  background: var(--ocean-2);
  color: #fff;
}

.section-padding {
  padding: 5rem 0;
}

.section-title {
  font-weight: 800;
  margin-bottom: 1rem;
}

.service-card {
  border-radius: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1rem 2rem rgba(27, 53, 86, 0.12) !important;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--ocean-2), var(--ocean-3));
  color: #fff;
  font-size: 1.4rem;
}

.usp-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  height: 100%;
  box-shadow: 0 8px 24px rgba(27, 53, 86, 0.08);
  border-left: 4px solid var(--ocean-2);
}

.usp-card h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--ocean-1);
}

.feature-pill,
.platform-feature,
.industry-badge {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.95rem;
}

.platform-feature,
.industry-badge {
  background: linear-gradient(135deg, rgba(27, 53, 86, 0.08), rgba(46, 127, 184, 0.12));
  color: var(--ocean-1);
  font-weight: 600;
  text-align: center;
}

.partner-logo {
  padding: 2rem 1rem;
  border: 1px dashed #c5d8e8;
  border-radius: 0.75rem;
  color: #6b8299;
  font-weight: 600;
}

.global-list li {
  margin-bottom: 0.75rem;
}

.global-list i {
  color: var(--sun-start);
  margin-right: 0.5rem;
}

.footer a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
}

.footer a:hover {
  color: var(--sun-start);
}

@media (max-width: 767.98px) {
  .site-logo {
    height: 40px;
    max-width: 150px;
  }
}
