@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --green: #1f8a55;
  --green-light: #27a96a;
  --green-dark: #145c38;
  --green-pale: #e8f5ee;
  --green-faint: #f3faf6;
  --teal-hero: #4dc8a0;
  --teal-hero-dark: #2a9e78;
  --bg: #ffffff;
  --bg-off: #f7faf8;
  --text-primary: #0f1f17;
  --text-secondary: #3a4f43;
  --text-muted: #7a9488;
  --border: rgba(31,138,85,0.15);
  --border-light: rgba(31,138,85,0.08);
  --shadow-sm: 0 2px 12px rgba(15,31,23,0.06);
  --shadow-md: 0 8px 32px rgba(15,31,23,0.10);
  --shadow-lg: 0 20px 60px rgba(15,31,23,0.12);
}

*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body { background:var(--bg); color:var(--text-primary); font-family:'Outfit',sans-serif; font-weight:300; overflow-x:hidden; line-height:1.6; }
img { max-width:100%; height:auto; display:block; }
a { color:inherit; text-decoration:none; }

/* ─────────────────────────────────────────
   NAV — top contact bar + main logo bar
───────────────────────────────────────── */
header {
  /* position: fixed; */
  top: 0; left: 0; right: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

/* Top thin bar: contact info + social */
.nav-top-bar {
  background: #fff;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 3rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.nav-contact-info {
  display: flex;
  gap: 2rem;
}
.nav-contact-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 400;
}
.nav-contact-item svg {
  color: var(--green);
  flex-shrink: 0;
}
.nav-social-icons {
  display: flex;
  gap: 0.5rem;
}
.nav-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  color: var(--text-secondary);
  transition: all 0.25s;
}
.nav-social-icon:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-faint);
}

/* Main logo + links bar */
.nav-main-bar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 3rem;
  border-bottom: 1px solid var(--border-light);
  transition: padding 0.3s;
}
nav.scrolled .nav-main-bar { padding: 0.4rem 3rem; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.nav-logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: all 0.25s;
}
.nav-links a:hover,
.nav-links a.nav-active {
  color: var(--text-primary);
  border-bottom-color: var(--green);
}
.nav-links .nav-active { font-weight: 700; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media(max-width: 768px) {
  .nav-top-bar { padding: 0.4rem 1.2rem; font-size: 0.72rem; }
  .nav-contact-info { gap: 1rem; }
  .nav-main-bar { padding: 0.6rem 1.2rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: white;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-top: 1px solid var(--border-light); }
  .nav-links a { display: block; padding: 1rem 1.5rem; font-size: 0.9rem; border-bottom: none; }
}
@media(max-width: 480px) {
  .nav-contact-info { gap: 0.6rem; font-size: 0.65rem; }
  .nav-social-icons { display: none; }
}

/* ─────────────────────────────────────────
   HERO — teal gradient + title banner + orbit
───────────────────────────────────────── */
.hero {
  /* Account for both nav bars: ~40px top-bar + ~70px main-bar */
  /* padding-top: 62px; */
  min-height: 100vh;
  background: linear-gradient(145deg, #6ddcb8 0%, #3dbf91 30%, #28a878 60%, #1e8a60 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  position: relative;
}

/* Subtle radial light overlay for depth */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 20%, rgba(255,255,255,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(20,92,56,0.25) 0%, transparent 55%);
  pointer-events: none;
}

/* Green title banner */
.hero-title-banner {
  width: 100%;
  background: rgba(22, 100, 64, 0.55);
  backdrop-filter: blur(4px);
  text-align: center;
  padding: 0.9rem 2rem;
  position: relative;
  z-index: 2;
}
.hero-title-banner h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #ffffff;
  text-transform: uppercase;
}

/* Orbit area */
.hero-orbit-area {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 3rem 2rem 3rem;
  position: relative;
  z-index: 2;
}

.orbit-wrap {
  position: relative;
  width: min(600px, 92vw);
  aspect-ratio: 1;
}

/* Spinning rings */
.ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.35);
  transform: translate(-50%, -50%);
  animation: spinRing 28s linear infinite;
}
.ring-sm  { width: 38%;  height: 38%; animation-direction: reverse; }
.ring-md  { width: 70%; height: 70%; }

@keyframes spinRing { to { transform: translate(-50%,-50%) rotate(360deg); } }

/* Center logo */
.orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 150px; height: 150px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 0 50px rgba(0,0,0,0.15), 0 0 0 8px rgba(255,255,255,0.15);
  animation: pulse 4s ease-in-out infinite;
}
.orbit-center img {
  width: 110px; height: 110px;
  object-fit: contain;
  border-radius: 12px;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 30px rgba(0,0,0,0.1), 0 0 0 6px rgba(255,255,255,0.12); }
  50%      { box-shadow: 0 0 60px rgba(0,0,0,0.18), 0 0 0 10px rgba(255,255,255,0.2); }
}

/* Individual orbit nodes */
.orbit-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s;
}
.orbit-node:hover { transform: scale(1.15) !important; z-index: 20; }

.node-bubble {
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.35s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.orbit-node:hover .node-bubble {
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
  border-color: #fff;
}
.node-bubble img {
  width: 80%; height: 80%;
  object-fit: contain;
}
.node-label {
  margin-top: 6px;
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  text-align: center;
}

.orbit-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.connector {
  stroke: rgba(255,255,255,0.25);
  stroke-width: 1;
  stroke-dasharray: 5, 5;
  fill: none;
}

/* Responsive orbit sizes */
@media(max-width: 700px) {
  .orbit-center { width: 90px; height: 90px; }
  .orbit-center img { width: 68px; height: 68px; }
  .ring-sm  { width: 35%; height: 35%; }
  .ring-md  { width: 68%; height: 68%; }
}
@media(max-width: 420px) {
  .orbit-center { width: 72px; height: 72px; }
  .orbit-center img { width: 54px; height: 54px; }
}

/* ─────────────────────────────────────────
   COMPANY SECTIONS
───────────────────────────────────────── */
.company-section {
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-light);
}
.company-section:nth-child(odd)  { background: var(--bg); }
.company-section:nth-child(even) { background: var(--bg-off); }
.company-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at var(--rx,50%) 50%, rgba(31,138,85,0.03), transparent);
  pointer-events: none;
}
.cs-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.cs-reverse { direction: rtl; }
.cs-reverse > * { direction: ltr; }
@media(max-width: 900px) { .cs-inner { gap: 3rem; } }
@media(max-width: 768px) {
  .cs-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .cs-reverse { direction: ltr; }
  .company-section { padding: 4rem 1.5rem; }
}

.cs-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs-logo-frame {
  width: 320px; height: 280px;
  max-width: 100%;
  border-radius: 20px;
  background: white;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: all 0.4s;
  box-shadow: var(--shadow-md);
}
.company-section:hover .cs-logo-frame {
  border-color: rgba(31,138,85,0.3);
  box-shadow: 0 24px 80px rgba(31,138,85,0.1), var(--shadow-lg);
  transform: translateY(-4px);
}
.cs-logo-frame img { width: 75%; height: 75%; object-fit: contain; }
.cs-num-bg {
  position: absolute;
  bottom: -1rem; right: -1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  font-weight: 600;
  color: rgba(31,138,85,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
@media(max-width: 480px) {
  .cs-logo-frame { width: 100%; max-width: 320px; height: 220px; }
  .cs-num-bg { font-size: 5rem; }
}

.cs-content { display: flex; flex-direction: column; }
.cs-sector { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 0.7rem; font-weight: 600; }
.cs-name { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 400; line-height: 1.1; margin-bottom: 1.2rem; color: var(--text-primary); }
.cs-divider { height: 2px; width: 50px; margin-bottom: 1.5rem; border-radius: 2px; }
.cs-desc { font-size: 0.95rem; line-height: 1.9; color: var(--text-secondary); margin-bottom: 2rem; }
.cs-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1.5px solid;
  padding: 0.75rem 1.8rem;
  border-radius: 4px;
  transition: all 0.3s;
  width: fit-content;
  background: transparent;
  font-weight: 500;
}
.cs-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31,138,85,0.15);
  background: var(--green-faint);
}
.cs-btn span { transition: transform 0.3s; }
.cs-btn:hover span { transform: translateX(4px); }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer-bottom{
  width:100%;
  padding:1.5rem 5rem 1.5rem;

  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;

  border-top:1px solid rgba(255,255,255,0.08);
}

/* LEFT COPYRIGHT */
.footer-bottom p{
  color:rgb(0, 0, 0);
  font-size:0.78rem;
  margin:0;
}

/* RIGHT LINKS */
.footer-bottom-links{
  display:flex;
  align-items:center;
  gap:1.5rem;
  margin-left:auto;
}

.footer-bottom-links a{
  color:white;
  font-size:0.78rem;
  text-decoration:none;
  transition:0.3s;
}

.footer-bottom-links a:hover{
  color:var(--green-light);
}

/* MOBILE */
@media(max-width:768px){

  .footer-bottom{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }

  .footer-bottom-links{
    margin-left:0;
    justify-content:center;
    flex-wrap:wrap;
    gap:1rem;
  }

}
/* ─────────────────────────────────────────
   ANIMATIONS & ACCESSIBILITY
───────────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.reveal { opacity:0; transform:translateY(28px); transition:opacity 0.75s ease,transform 0.75s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }
@media(prefers-reduced-motion: reduce) { *,*::before,*::after { animation-duration:0.01ms !important; transition-duration:0.01ms !important; } }


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

body{
  font-family:Arial, sans-serif;
  background:#eef9f4;
}

/* SECTION */

.orbit-section{
  width:100%;
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  /* padding:70px 20px 60px; */
  overflow:hidden;

  background:
  radial-gradient(circle at center,
  #ffffff 0%,
  #dff4ec 45%,
  #b8e7d5 100%);
}

/* MAIN WRAPPER */

.orbit-wrapper{
  position:relative;
  width:800px;
  height:800px;
  display:flex;
  justify-content:center;
  align-items:center;
}

/* CENTER LOGO */

.center-logo{
  position:absolute;
  width:240px;
  height:240px;
  border-radius:50%;
  background:#fff;

  display:flex;
  justify-content:center;
  align-items:center;

  z-index:10;

  box-shadow:
  0 10px 30px rgba(0,0,0,0.10);
}

.center-logo img{
  width:52%;
  object-fit:contain;
}

/* ORBIT CIRCLE */

.orbit-circle{
  position:relative;
  width:520px;
  height:520px;
  border-radius:50%;
  border:4px dotted #0fa77c;
}

/* EACH ITEM */

.orbit-item{
  position:absolute;
  top: 38%;
  left: 38%;
  transform: rotate(calc(36deg * var(--i)))
  translateY(-260px);
}

/* LOGO BOX */

.logo-box{
  width:125px;
  height:125px;
  border-radius:50%;
  background:#fff;

  display:flex;
  justify-content:center;
  align-items:center;

  transform:rotate(calc(-36deg * var(--i)));

  box-shadow:
  0 8px 25px rgba(0,0,0,0.12);

  transition:0.4s ease;
}

.logo-box:hover{
  transform:
  rotate(calc(-36deg * var(--i)))
  scale(1.08);
}

.logo-box img{
  width:72%;
  height:72%;
  object-fit:contain;
}

/* TABLET */

@media(max-width:900px){

  .orbit-wrapper{
    width:600px;
    height:600px;
  }

  .orbit-circle{
    width:470px;
    height:470px;
  }

  .center-logo{
    width:170px;
    height:170px;
  }

  .orbit-item{
    transform:
    rotate(calc(36deg * var(--i)))
    translateY(-235px);
  }

  .logo-box{
    width:90px;
    height:90px;
  }

}

/* MOBILE */

@media(max-width:600px){

  .orbit-wrapper{
    width:360px;
    height:360px;
  }

  .orbit-circle{
    width:290px;
    height:290px;
    border-width:2px;
  }

  .center-logo{
    width:110px;
    height:110px;
  }

  .orbit-item{
    transform:
    rotate(calc(36deg * var(--i)))
    translateY(-145px);
  }

  .logo-box{
    width:58px;
    height:58px;
  }

  .logo-box img{
    width:65%;
    height:65%;
  }

}