/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
html {
  scroll-behavior: smooth;
}
/* ROOT COLORS */
:root {
  --green: #003631;
  --yellow: #ffeda8;
  --dark: #002824;
  --white: #ffffff;
}

/* BODY */
body {
  background: var(--yellow);
  color: var(--dark);
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= NAVBAR ================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 237, 168, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 54, 49, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

/* LOGO */
.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo .dot {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
}

/* NAV LINKS */
.nav-links a {
  margin: 0 15px;
  text-decoration: none;
  color: var(--green);
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--green);
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* CTA */
.cta-btn {
  background: var(--green);
  color: var(--yellow);
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
}

/* ================= HERO ================= */
.hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

/* BACKGROUND BLOBS */
.bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.shape1 {
  width: 400px;
  height: 400px;
  background: rgba(0, 54, 49, 0.15);
  top: -100px;
  left: -100px;
}

.shape2 {
  width: 300px;
  height: 300px;
  background: rgba(0, 54, 49, 0.1);
  bottom: -80px;
  right: -80px;
}

/* HERO TEXT */
.hero-main h1 {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 800;
  max-width: 12ch;
}

.hero-main span {
  color: var(--green);
}

/* STRIP */
.hero-strip {
  margin: 25px 0;
  font-weight: 500;
  color: var(--green);
  opacity: 0.7;
}

/* HERO BOTTOM */
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  gap: 30px;
}

.hero-desc {
  max-width: 500px;
}

/* BUTTONS */
.hero-actions {
  display: flex;
  gap: 15px;
  position: relative;
  z-index: 3;
}

.primary-btn {
  background: var(--green);
  color: var(--yellow);
  padding: 12px 24px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
}

.secondary-btn {
  border: 2px solid var(--green);
  background: transparent;
  padding: 12px 24px;
  border-radius: 30px;
  color: var(--green);
  cursor: pointer;
}

/* FLOATING CARD */
.floating-card {
  position: absolute;
  top: 140px;
  right: 80px;
  width: 260px;

  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);

  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 54, 49, 0.15);

  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.floating-card h3 {
  color: var(--green);
  margin-bottom: 10px;
}

.floating-card ul {
  list-style: none;
}

.floating-card li {
  margin: 8px 0;
}

/* ================= ABOUT ================= */
.about {
  padding: 120px 0;
}

/* LAYOUT */
.about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

/* LEFT */
.about-left h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 12ch;
}

.about-left span {
  color: var(--green);
}

.about-left p {
  max-width: 500px;
  opacity: 0.8;
}

/* RIGHT */
.about-right {
  width: 450px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CARDS */
.about-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  padding: 20px 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: 0.3s;
}

.about-card h3 {
  font-size: 28px;
  color: var(--green);
}

.about-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 54, 49, 0.1);
}

/* STATS */
.about-stats {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.stat-box {
  flex: 1;
  background: var(--green);
  color: var(--yellow);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
}

.stat-box h3 {
  font-size: 32px;
  margin-bottom: 10px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .hero-main h1 {
    font-size: 40px;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-card {
    position: static;
    margin-top: 30px;
  }

  .about-container {
    flex-direction: column;
  }

  .about-right {
    width: 100%;
  }

  .about-stats {
    flex-direction: column;
  }
}
/* ================= SERVICES ================= */
.services {
  padding: 120px 0;
}

/* LAYOUT */
.services-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT SIDE */
.services-left h2 {
  font-size: 42px;
  margin-bottom: 40px;
}

.services-left span {
  color: var(--green);
}

/* SERVICE LIST */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  padding: 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.service-item h3 {
  color: var(--green);
  margin-bottom: 5px;
}

.service-item p {
  opacity: 0.7;
}

/* ACTIVE + HOVER */
.service-item:hover,
.service-item.active {
  background: rgba(0, 54, 49, 0.08);
  transform: translateX(10px);
}

/* RIGHT SIDE */
.services-right {
  width: 450px;
}

/* PREVIEW PANEL */
.service-preview {
  background: var(--green);
  color: var(--yellow);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 54, 49, 0.2);
}

.service-preview h3 {
  margin-bottom: 15px;
}

.service-preview ul {
  margin-top: 20px;
  padding-left: 20px;
}

.service-preview li {
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .services-container {
    flex-direction: column;
  }

  .services-right {
    width: 100%;
  }
}
/* ================= PORTFOLIO ================= */
.portfolio {
  padding: 140px 0;
}

/* HEADER */
.portfolio-header {
  margin-bottom: 80px;
}

.portfolio-header h2 {
  font-size: 48px;
}

.portfolio-header span {
  color: var(--green);
}

/* PROJECT ROW */
.project-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 100px;
  gap: 60px;
}

/* REVERSE */
.project-row.reverse {
  flex-direction: row-reverse;
}

/* TEXT */
.project-info h3 {
  font-size: 36px;
  margin-bottom: 10px;
}

.project-info p {
  opacity: 0.7;
}

/* VISUAL */
.project-visual {
  width: 500px;
  height: 300px;
  border-radius: 20px;

  background: linear-gradient(
    135deg,
    rgba(0, 54, 49, 0.9),
    rgba(0, 54, 49, 0.5)
  );

  position: relative;
  transition: 0.4s;
}

/* HOVER */
.project-row:hover .project-visual {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .project-row {
    flex-direction: column;
  }

  .project-row.reverse {
    flex-direction: column;
  }

  .project-visual {
    width: 100%;
  }
}
.project-visual {
  width: 520px;
  height: 320px;
  border-radius: 25px;

  background: linear-gradient(135deg, #003631, #0a4d45);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 30px 60px rgba(0, 54, 49, 0.3);
  position: relative;
  overflow: hidden;
}

/* GLOW EFFECT */
.project-visual::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 237, 168, 0.2), transparent);
  top: -50%;
  left: -50%;
}

/* MOCKUP */
.mockup {
  width: 80%;
  height: 75%;
  background: #ffffff;
  border-radius: 15px;
  padding: 15px;
  z-index: 2;
}

/* HEADER */
.mock-header {
  height: 10px;
  width: 60%;
  background: #ddd;
  border-radius: 5px;
  margin-bottom: 15px;
}

/* CONTENT */
.mock-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* CARDS */
.mock-card {
  height: 40px;
  background: #f2f2f2;
  border-radius: 8px;
}

.mock-card.small {
  width: 60%;
}

/* HOVER EFFECT */
.project-row:hover .project-visual {
  transform: scale(1.04) rotate(-1deg);
}
.project-visual {
  width: 520px;
  height: 320px;
  border-radius: 25px;
  background: linear-gradient(135deg, #003631, #0a4d45);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 60px rgba(0, 54, 49, 0.3);
  overflow: hidden;
}

/* APP UI */
.app-ui {
  width: 80%;
  height: 80%;
  background: white;
  border-radius: 15px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* BALANCE */
.balance {
  font-weight: bold;
  font-size: 20px;
  color: #003631;
}

/* BARS (CHART) */
.bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 60px;
}

.bars span {
  width: 10px;
  background: #003631;
  border-radius: 5px;
  animation: grow 1.5s infinite ease-in-out;
}

.bars span:nth-child(1) {
  height: 30%;
  animation-delay: 0s;
}
.bars span:nth-child(2) {
  height: 60%;
  animation-delay: 0.2s;
}
.bars span:nth-child(3) {
  height: 80%;
  animation-delay: 0.4s;
}
.bars span:nth-child(4) {
  height: 50%;
  animation-delay: 0.6s;
}

@keyframes grow {
  0%,
  100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.4);
  }
}

/* TRANSACTIONS */
.transactions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tx {
  height: 30px;
  background: #f2f2f2;
  border-radius: 6px;
  animation: slide 2s infinite ease-in-out;
}

.tx:nth-child(2) {
  animation-delay: 0.3s;
}
.tx:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes slide {
  0% {
    transform: translateX(-10px);
    opacity: 0.6;
  }
  50% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-10px);
    opacity: 0.6;
  }
}

/* HOVER EFFECT */
.project-row:hover .project-visual {
  transform: scale(1.05);
}
/* ================= CONTACT ================= */
.contact {
  padding: 120px 0;
}

/* LAYOUT */
.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.contact-left h2 {
  font-size: 42px;
  margin-bottom: 20px;
  max-width: 12ch;
}

.contact-left span {
  color: var(--green);
}

.contact-left p {
  max-width: 500px;
  opacity: 0.8;
  margin-bottom: 40px;
}

/* INFO BLOCKS */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item h3 {
  color: var(--green);
  margin-bottom: 5px;
}

/* RIGHT CARD */
.contact-right {
  width: 400px;
}

.contact-card {
  background: var(--green);
  color: var(--yellow);
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 30px 60px rgba(0, 54, 49, 0.2);
}

.contact-card h3 {
  margin-bottom: 15px;
}

.contact-card p {
  margin-bottom: 25px;
  opacity: 0.9;
}

/* BUTTON */
.contact-btn {
  display: inline-block;
  background: var(--yellow);
  color: var(--green);
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.contact-btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-right {
    width: 100%;
  }
}
/* ================= FOOTER ================= */
.footer {
  background: var(--green);
  color: var(--yellow);
  padding: 80px 0 30px;
}

/* LAYOUT */
.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT */
.footer-left h2 {
  margin-bottom: 10px;
}

.footer-left p {
  max-width: 300px;
  opacity: 0.8;
}

/* LINKS */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--yellow);
  text-decoration: none;
  opacity: 0.8;
  transition: 0.3s;
}

.footer-links a:hover {
  opacity: 1;
}

/* CONTACT */
.footer-contact p {
  opacity: 0.8;
  margin-bottom: 5px;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 237, 168, 0.2);
  padding-top: 15px;
  text-align: center;
  opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}
