/* ROOT */
:root {
  --green-main: #0a8a4a;
  --green-dark: #086c3a;
  --text-main: #2d2d2d;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  color: var(--text-main);
  padding-top: 125px;
  transition: padding-left 0.4s ease;
}

body.menu-open {
  padding-left: 300px;
  transition: padding-left 0.4s ease;
}

/* ── ROTATING TOP BANNER ── */
#pcrr-submenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 44px;
  background: var(--green-dark);
  z-index: 1200;
  overflow: hidden;
}

.scroll-wrapper {
  overflow: hidden;
  white-space: nowrap;
  height: 100%;
}

.scroll-track {
  display: inline-flex;
  gap: 30px;
  height: 100%;
  align-items: center;
  animation: scroll-left 12s linear infinite;
  padding: 0 1.5rem;
}

.scroll-wrapper:hover .scroll-track,
.scroll-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* BANNER LINKS */
.nav-link {
  color: white !important;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 6px;
  transition: 0.25s;
  font-size: 0.9rem;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* ── MAIN HEADER / NAVBAR ── */
.site-header {
  position: fixed;
  top: 44px;
  left: 0;
  right: 0;
  z-index: 1100;
  background: orange;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.site-header .container-fluid {
  padding-top: 8px;
  padding-bottom: 8px;
}

.logo-container {
  flex-shrink: 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

/* NAV MENU */
.menu {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-left: auto;
}

.menu a {
  text-decoration: none;
  color: var(--green-main);
  font-weight: bold;
  transition: 0.2s;
  font-size: 0.95rem;
}

.menu a:hover {
  transform: scale(1.08);
  color: var(--green-dark);
}

/* CART */
.cart-link {
  position: relative;
}

#cart-count {
  background: red;
  color: white;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 50%;
  margin-left: 5px;
}

/* ── PERMANENT HAMBURGER ── */
.permanent-hamburger-container {
  position: fixed;
  left: 16px;
  z-index: 1150;
  width: 24px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hamburger {
  width: 34px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger div {
  height: 4px;
  background-color: var(--green-main);
  border-radius: 3px;
  transition: all 0.35s ease;
}

/*.hamburger.active div:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active div:nth-child(2) {
  opacity: 0;
}

.hamburger.active div:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ── SIDE MENU ── */
.side-menu {
  position: fixed;
  left: -300px;
  width: 300px;
  height: calc(100% - 120px);
  background: rgb(204, 221, 208);
  z-index: 1100;
  transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow-y: auto;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.22);
}

.side-menu.active {
  left: 0;
}

.side-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.15);
}

.side-menu-header h3 {
  margin: 0;
  font-size: 1.35rem;
  color: #111;
}

.close-btn {
  font-size: 2.2rem;
  font-weight: bold;
  cursor: pointer;
  color: #222;
  line-height: 1;
}

.side-menu ul {
  list-style: none;
  padding: 12px 0;
  margin: 0;
}

.side-menu li a {
  display: block;
  padding: 16px 28px;
  color: #111;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.2s;
}

.side-menu li a:hover {
  background: var(--green-main);
  color: orange;
}

/* ── OVERLAY ── */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1090;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  pointer-events: none;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .menu {
    gap: 14px;
  }
  .menu a {
    font-size: 0.92rem;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 120px;
  }
  #pcrr-submenu {
    height: 42px;
  }
  .site-header {
    top: 42px;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 110px;
  }
  #pcrr-submenu {
    height: 38px;
  }
  .site-header {
    top: 38px;
  }
  .logo {
    font-size: 1.3rem;
  }
  .menu a {
    font-size: 0.85rem;
  }
  .hamburger {
    width: 30px;
    height: 24px;
  }
  .scroll-track {
    gap: 18px;
    animation-duration: 16s;
  }
  .nav-link {
    font-size: 0.8rem;
    padding: 8px 10px;
  }
}

body.menu-open #hamburger-container {
  display: none;
}
/* ====================== UNIVERSAL JWT FOOTER ====================== */
.footer-jwt {
  background: var(--green-main);
  color: #ffffff;
  padding: 60px 20px 30px;
  font-family: "Segoe UI", system-ui, Arial, sans-serif;
  border-top: 4px solid #ff6200;
  width: 100%;
}

.footer-jwt .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-jwt .footer-col {
  flex: 1;
  min-width: 260px;
}

.footer-jwt h3,
.footer-jwt h4 {
  color: #ff6200;
  margin-bottom: 18px;
  font-size: 1.35em;
}

.footer-jwt p {
  margin: 8px 0;
  line-height: 1.65;
  font-size: 0.95em;
  opacity: 0.95;
}

.footer-jwt a {
  color: #ffcc80;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-jwt a:hover {
  color: #ff6200;
}

.footer-jwt ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.93em;
}

.footer-jwt ul li {
  margin-bottom: 8px;
}

.footer-jwt .cart-btn {
  display: inline-block;
  background: #ff6200;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  margin: 20px 0;
  transition: all 0.3s ease;
}

.footer-jwt .cart-btn:hover {
  background: #ff8c00;
  transform: translateY(-2px);
}

.footer-jwt .green-message {
  font-size: 1.15em;
  color: #a8e6a1;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* Bottom bar */
.footer-jwt .footer-bottom {
  border-top: 1px solid #113311;
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.82em;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-jwt .footer-container {
    flex-direction: column;
    gap: 35px;
    text-align: center;
  }
}

/* content part jwt */
.jwt-main-content {
  width: 100%;
  margin: 0 auto;
  font-family: "Segoe UI", system-ui, Arial, sans-serif;
}

/* HERO - Full Width */
.hero {
  background:
    linear-gradient(rgba(0, 100, 0, 0.82), rgba(10, 61, 42, 0.88)),
    url("/jwt/cub-energy-renewable-water-unit.jpg") center/cover no-repeat;
  color: #ffffff;
  text-align: center;
  padding: 140px 20px 110px;
  position: relative;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 24px;
  color: #ff6200;
}

.hero p {
  font-size: clamp(1.15rem, 3vw, 1.4rem);
  max-width: 860px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-btn {
  background: #ff6200;
  color: #ffffff;
  padding: 18px 48px;
  border: none;
  border-radius: 8px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #ff8c00;
  transform: translateY(-4px);
}

/* Presentation Space - Full Width Blocks */
.presentation-space {
  background: #ffffff;
}

.block {
  display: flex;
  gap: 60px;
  padding: 90px 8% 90px;
  border-bottom: 1px solid #f0f0f0;
  align-items: center;
}

.block:last-child {
  border-bottom: none;
}

.block-image {
  flex: 1;
  max-width: 480px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.block-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.block:hover .block-image img {
  transform: scale(1.05);
}

.block-content {
  flex: 1.6;
}

.block h2 {
  color: #006400;
  margin-bottom: 22px;
  font-size: clamp(1.7rem, 3.5vw, 2.1rem);
}

.block p {
  font-size: 1.12rem;
  line-height: 1.82;
  color: #444;
  margin-bottom: 32px;
}

.block-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 34px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-more {
  background: #ff6200;
  color: #ffffff;
}

.btn-more:hover {
  background: #ff8c00;
}

.btn-back {
  background: transparent;
  color: #006400;
  border: 2px solid #006400;
}

.btn-back:hover {
  background: #006400;
  color: #ffffff;
}

.ai-note {
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
  margin-top: 20px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .block {
    flex-direction: column;
    text-align: center;
    padding: 70px 6%;
    gap: 40px;
  }
  .block-image {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .block {
    padding: 60px 5%;
  }
  .hero {
    padding: 100px 20px 80px;
  }
}
/* the kyc buttons */
.kyc-access-section {
  width: 100%;
  padding: 100px 5% 120px;
  text-align: center;
  background: #ffffff;
}

.section-header h2 {
  color: #006400;
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.2rem;
  color: #555;
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.main-btn {
  padding: 18px 45px;
  font-size: 1.2rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.main-btn {
  background: #ff6200;
  color: white;
}

.main-btn.strong {
  background: #006400;
}

.main-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #ffffff;
  padding: 40px 50px;
  border-radius: 12px;
  width: 90%;
  max-width: 520px;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: #999;
  cursor: pointer;
}

.close-btn:hover {
  color: #ff6200;
}

.modal h3 {
  color: #ff6200;
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.85rem;
}

.modal input,
.modal textarea {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 18px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
}

.modal input:focus,
.modal textarea:focus {
  border-color: #ff6200;
}

.checkbox-group label {
  display: block;
  margin: 12px 0;
  font-size: 1.05rem;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 8px;
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 15px;
  cursor: pointer;
}

.submit-btn {
  background: #ff6200;
  color: white;
}

.submit-btn.strong {
  background: #006400;
}

.modal-explain {
  margin-top: 25px;
  font-size: 0.96rem;
  color: #666;
  line-height: 1.6;
  text-align: center;
}
.comm-main-content {
  font-family: "Segoe UI", system-ui, Arial, sans-serif;
}

.comm-hero {
  background:
    linear-gradient(rgba(10, 61, 42, 0.88), rgba(0, 100, 0, 0.85)),
    url("https://source.unsplash.com/1600x900/?tech-hub,network,global")
      center/cover no-repeat;
  color: white;
  padding: 170px 20px 140px;
  text-align: center;
}

.comm-hero h1 {
  font-size: clamp(2.5rem, 6vw, 3.6rem);
  color: #ff6200;
}
.comm-hero p {
  font-size: 1.3rem;
  max-width: 820px;
  margin: 25px auto;
}

.cta-btn {
  background: #ff6200;
  color: white;
  padding: 18px 50px;
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 600;
}

.intro-section,
.services-section,
.why-section {
  padding: 90px 5%;
}

.section-title h2 {
  color: #006400;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 15px;
}

.service-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 40px 25px;
  height: 100%;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.service-card h3 {
  color: #006400;
  margin-bottom: 15px;
}

.card-link {
  color: #ff6200;
  font-weight: 600;
}

.why-section {
  background: #f8f9f8;
}

.why-section h4 {
  color: #ff6200;
  margin-bottom: 15px;
}
.pcrr-page {
  background: #f8f9fa;
  padding-bottom: 80px;
}

.pcrr-hero {
  background:
    linear-gradient(rgba(0, 100, 0, 0.85), rgba(10, 61, 42, 0.9)),
    url("https://source.unsplash.com/1600x900/?business,green") center/cover
      no-repeat;
  color: white;
  padding: 140px 20px 100px;
  text-align: center;
}

.pcrr-cards {
  max-width: 1100px;
  margin: 0 auto;
}

.pcrr-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 32px 25px;
  height: 100%;
  transition: all 0.3s ease;
}

.pcrr-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.pcrr-card h3 {
  color: #006400;
  margin-bottom: 18px;
}
