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

:root {
  --clr-primary:   #245fb1;
  --clr-accent:    #e8a020;
  --clr-orange:    #f07020;
  --clr-bg:        #f9f8f6;
  --clr-surface:   #ffffff;
  --clr-text:      #1c1c1e;
  --clr-muted:     #6b7280;
  --clr-border:    #e5e7eb;
  --radius:        12px;
  --shadow:        0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:     0 12px 48px rgba(0,0,0,0.14);
  --transition:    0.25s ease;
  --font-body:     'Lato', sans-serif;
  --font-display:  'Lato', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  font-size: 1rem;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 0.75rem;
}

.eyebrow--light { color: #f0c060; }

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  box-shadow: 3px 7px 7px #00000024;
}

.btn--primary {
  background: var(--clr-orange);
  color: #fff;
}
.btn--primary:hover { background: #8e4608; transform: translateY(-2px); box-shadow: 5px 7px 7px #0000006a; }

.btn--outline {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
  background: transparent;
}
.btn--outline:hover { background: var(--clr-primary); color: #fff; }

.btn--ghost {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
  background: transparent;
}
.btn--ghost:hover { background: rgba(255,255,255,0.15); }

.btn--white {
  margin-right: -5rem;
  background: #fff;
  color: var(--clr-primary);

}
.btn--white:hover { background: var(--clr-accent); color: #fff; transform: translateY(-2px); }

.nav {
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
}

.nav__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 90px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  width: 150px;
  height: 75px;
  margin-right: auto;
}


.nav__links {
  list-style: none;
  display: flex;
  gap: 2rem;
  float: right;
  
}

.nav__links a {
  text-decoration: nne;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-muted);
  transition: color var(--transition);
  float: right;
}
.nav__links a:hover { color: var(--clr-primary); }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--clr-primary);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(232,160,32,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(255,255,255,0.04) 0%, transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  padding-top: 68px;
}

.hero__eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-weight: 1000;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}


.section {
  padding: 6rem 0;
  background: #ffffff;
}

.section--alt {
  background: var(--clr-accent);
}

.section--alt .section__title {
  color: #fff;
}

.section--alt .section__desc {
  color: rgba(255,255,255,0.8);
}

.section--alt .eyebrow {
  color: rgba(255,255,255,0.65);
}

.section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--clr-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section__title--alt{
  color: #8e4608;
}

.section__desc {
  color: var(--clr-muted);
  font-size: 1.05rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split__text .section__title { margin-top: 0.5rem; }
.split__text p { color: var(--clr-muted); margin-bottom: 1rem; }
.split__text .btn { margin-top: 0.5rem; }

.image {
  aspect-ratio: 1/1;
  background: #ffffff00;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-muted);
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  scale: 0.75;
}


.contact {
  background: linear-gradient(135deg, #1e4e9a 0%, #2a5fa8 100%);
  padding: 6rem 0;
  text-align: center;
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.contact__desc {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}


@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__inner .btn--outline { display: none; }

  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split__visual { order: -1; }

  .hero__actions { flex-direction: column; align-items: flex-start; }
}


.section--dark {
  background: var(--clr-accent);
  color: #fff;
}

.mission-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.mission-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--clr-orange);
  line-height: 1.4;
  border: none;
  margin: 1.5rem 0 2rem;
  padding: 0;
  position: relative;
}

.mission-quote::before {
  content: '\201C';
  font-size: 6rem;
  color: rgba(250, 129, 0, 0.655);
  opacity: 1;
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  font-family: var(--font-display);
}

.section--dark p {
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 1rem;
}

.section--dark .eyebrow {
  color: rgba(255,255,255,0.6);
}


.section--gradient {
  background: linear-gradient(160deg, #c9ddff 0%, #aacaff 100%);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pillar {
  background: var(--clr-surface);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pillar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--clr-accent), var(--clr-primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }


.pillar__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-primary);
  margin-bottom: 0.75rem;
}

.pillar p {
  font-size: 0.92rem;
  color: var(--clr-muted);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .pillars { grid-template-columns: 1fr; }
}


.section__contact {
  text-align: center;
  margin-top: 0.5rem;
}

.section--extra {
  background: var(--clr-surface);
}

.section--extra .section__title {
  color: var(--clr-primary);
}

.section--extra .split__text p {
  color: var(--clr-muted);
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

.btn-arrow {
  width: 300px;
  height: 300px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  pointer-events: none;
}

.btn-arrow--up {
  transform: rotate(180deg);
}

.section, .hero {
  position: relative;
}

.float-nav {
  position: fixed;
  right: 1.75rem;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  z-index: 200;
}

#scrollUp {
  position: fixed;
  right: 1.75rem;
  top: 5rem;
  z-index: 200;
  animation-delay: 0s;
  animation-direction: reverse;
}

#scrollDown {
  position: fixed;
  right: 1.75rem;
  bottom: 2rem;
  z-index: 200;
}

.float-nav__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(42, 95, 168, 0.35);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  color: var(--clr-primary);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
  box-shadow: var(--shadow);
  transition: all var(--transition), opacity 0.3s ease;
  animation: bob 2s ease-in-out infinite;
}

.float-nav__btn:last-child {
  animation-delay: 0.2s;
}

.float-nav__btn:hover {
  background: var(--clr-primary);
  color: #fff;
  border-color: var(--clr-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  animation-play-state: paused;
  
}

.back-to-top {
  color: var(--clr-surface);
  float: right;
  margin-top: 5rem;
  margin-left: 0;
}


