/* ================================
   ADVANCED ANIMATIONS & KEYFRAMES
================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes heroParallax {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-20px) scale(1.02); }
}

@keyframes textGlow {
  0%, 100% { text-shadow: 0 0 10px rgba(26, 255, 122, 0.5); }
  50% { text-shadow: 0 0 30px rgba(26, 255, 122, 0.8), 0 0 50px rgba(26, 255, 122, 0.3); }
}

@keyframes floatIn {
  from {
    transform: translateY(100px) rotateX(20deg);
    opacity: 0;
  }
  to {
    transform: translateY(0) rotateX(0);
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.8) rotateX(10deg);
    opacity: 0;
  }
  to {
    transform: scale(1) rotateX(0);
    opacity: 1;
  }
}
/* ================================
   BUTTON BASE
================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s ease;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #00ff8a, #00b65f);
  color: #001a0d;
  box-shadow: 0 0 25px rgba(0, 255, 138, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 255, 138, 0.7);
}

.btn-outline {
  border: 1px solid rgba(0,255,140,0.4);
  color: #9affc6;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(0,255,140,0.12);
}

/* ================================
   ABOUT HERO ANIMATIONS
================================ */
.about-hero {
  position: relative;
  overflow: hidden;
}

.about-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 60, 40, 0.8));
  z-index: -1;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 20px;
  color: #ffffff;
}

.about-hero-title {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  margin-bottom: 24px;
  animation: heroParallax 4s ease-in-out infinite;
}

.about-hero-title span {
  color: #00ff8a;
  animation: textGlow 2s ease-in-out infinite;
}

.about-hero-desc {
  font-size: 18px;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
  animation: fadeIn 1.5s ease-out;
}

/* ================================
   JOURNEY SECTION ANIMATIONS
================================ */
.journey-content {
  animation: slideInLeft 1s ease-out;
}

.journey-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(26, 255, 122, 0.2);
  color: #00ff8a;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid rgba(26, 255, 122, 0.3);
  animation: scaleIn 0.8s ease-out;
}

.journey-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.2;
}

.journey-content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(230, 255, 230, 0.85);
  margin-bottom: 30px;
}

.journey-image {
  animation: slideInRight 1s ease-out;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.journey-image:hover {
  transform: rotateY(5deg) scale(1.02);
  transition: transform 0.6s ease;
}

/* ================================
   TEAM SECTION ANIMATIONS
================================ */
.about-team-image {
  animation: floatIn 1.2s ease-out;
}

.about-team-content {
  animation: slideInRight 1.2s ease-out;
}

.team-stat {
  background: rgba(26, 255, 122, 0.1);
  border: 1px solid rgba(26, 255, 122, 0.2);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: all 0.4s ease;
}

.team-stat:hover {
  transform: translateY(-5px) scale(1.05);
  background: rgba(26, 255, 122, 0.15);
  box-shadow: 0 15px 30px rgba(26, 255, 122, 0.3);
}

.team-stat span {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #00ff8a;
  margin-bottom: 5px;
}

/* ================================
   ACHIEVEMENTS ANIMATIONS
================================ */
.stat-item {
  animation: scaleIn 0.8s ease-out;
  animation-fill-mode: both;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.stat-number {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #00ff8a;
  display: block;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(26, 255, 122, 0.5);
}

.stat-label {
  font-size: 15px;
  color: rgba(230, 255, 230, 0.9);
  font-weight: 500;
}

/* ================================
   CTA SECTION ANIMATIONS
================================ */
.cta-inner {
  text-align: center;
  animation: floatIn 1.5s ease-out;
}

.cta-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff, #00ff8a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(230, 255, 230, 0.85);
  margin-bottom: 40px;
}

.cta-btn {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  margin: 0 10px;
}

.cta-btn.primary {
  background: linear-gradient(135deg, #00ff8a, #19BF0E);
  color: #041b0f;
  box-shadow: 0 10px 30px rgba(26, 255, 122, 0.4);
}

.cta-btn.primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(26, 255, 122, 0.6);
}

.cta-btn.outline {
  border: 2px solid #00ff8a;
  color: #00ff8a;
  background: transparent;
}

.cta-btn.outline:hover {
  background: #00ff8a;
  color: #041b0f;
  transform: translateY(-3px) scale(1.05);
}

/* ================================
   SCROLL REVEAL ENHANCEMENTS
================================ */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-slide-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.animate-slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.animate-fade-in.visible {
  opacity: 1;
}

.animate-slide-left {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease-out;
}

.animate-slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease-out;
}

.animate-slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ================================
   PAGE BACKGROUND & LAYOUT
================================ */
html, body {
  width: 100%;
  min-height: 100%;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.page-bg {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #001a0d, #0d4a08);
}
/* ============================
   MOBILE + TABLET OVERFLOW FIX
   ============================ */

/* =====================
   TABLET & BELOW
===================== */
@media (max-width: 1024px) {

  /* Hard stop horizontal overflow */
  html, body {
    max-width: 100%;
    overflow-x: hidden !important;
  }

  /* Prevent grid + flex children from exceeding viewport */
  .hero-wrap,
  .hero-left,
  .hero-right,
  .mx-services,
  .mx-services-wrap,
  .mx-services-carousel {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Reduce massive desktop gaps */
  .hero-wrap {
    gap: 40px !important;
  }

  /* Reviews causing sideways scroll */
  .form-reviews {
    flex-wrap: wrap !important;
    max-width: 100%;
  }

  /* Prevent buttons & cards stretching viewport */
  button,
  .btn,
  .review-card,
  .figma-card,
  .feature-card {
    max-width: 100%;
  }

  /* Images & SVG safety */
  img,
  svg {
    max-width: 100%;
    height: auto;
  }
}

/* =====================
   MOBILE ONLY
===================== */
@media (max-width: 427px) {

  /* Stack carousel cards (NO overflow) */
  .mx-services-carousel {
    height: auto !important;
    padding-bottom: 40px;
  }

  .mx-service-card {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    opacity: 1 !important;
    width: 100% !important;
    max-width: 320px;
    margin: 0 auto 24px;
    pointer-events: auto;
  }

  /* Kill absolute carousel positions */
  .mx-pos-1,
  .mx-pos-2,
  .mx-pos-3,
  .mx-pos-4,
  .mx-pos-5 {
    transform: none !important;
    opacity: 1 !important;
  }
}

/* =====================
   VERY SMALL DEVICES
===================== */
@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 425px) {

  /* Space from right edge */
  .nav-toggle {
    margin-right: 40px;
  }
}
@media (max-width: 360px) {
  .nav-toggle {
    margin-right: 18px;
  }
}


/* ================================
   GLOBAL BACKGROUND
================================ */
body {
  background: url("../assets/images/WhatsApp\ Image\ 2026-02-12\ at\ 11.36.50\ AM\ copy.webp") no-repeat center top;
  background-size: cover;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #eaffea;
  overflow-x: hidden;
}

/* ================================
   TYPOGRAPHY
================================ */
h1, h2, h3, h4, h5, h6 {
  color: #eaffea;
  font-weight: 700;
  line-height: 1.2;
}

p {
  color: white;
  line-height: 1.7;
  font-size: 15px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ================================
   IMAGES
================================ */
img {
  max-width: 100%;
  display: block;
}

/* ================================
   CONTAINER
================================ */
.container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
}

/* ================================
   GLASS UI (for cards later)
================================ */
.glass {
  background: rgba(0, 40, 0, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 255, 120, 0.12);
  box-shadow: 0 0 40px rgba(0, 255, 120, 0.08);
  border-radius: 14px;
}

/* ================================
   BUTTON BASE
================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #00ff8a, #00b65f);
  color: #001a0d;
  box-shadow: 0 0 25px rgba(0, 255, 138, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 255, 138, 0.7);
}

.btn-outline {
  border: 1px solid rgba(0,255,140,0.4);
  color: #9affc6;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(0,255,140,0.12);
}

/* ================================
   FORM BASE
================================ */
input, textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(0,255,140,0.25);
  background: rgba(0, 40, 0, 0.55);
  color: #eaffea;
  outline: none;
}

input::placeholder {
  color: rgba(200,255,200,0.4);
}

input:focus {
  border-color: #00ff8a;
  box-shadow: 0 0 15px rgba(0,255,140,.35);
}
/* ===============================
   MALACHITE NAVBAR
================================ */

.malachite-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

/* Logo */
.nav-logo img {
  height: 38px;
}

/* Menu */
.nav-menu {
  display: flex;
  gap: 40px;
}

.nav-menu a {
  color: rgba(230,255,230,0.8);
  font-size: 14px;
  font-weight: 500;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #00ff8a;
}

/* underline glow */
.nav-menu a.active::after,
.nav-menu a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #00ff8a;
  box-shadow: 0 0 10px #00ff8a;
}

/* CTA */
.nav-cta {
  display: flex;
  align-items: center;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: #9affc6;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(0, 30, 0, 0.95);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 22px;
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

/* ===============================
   ABOUT HERO SECTION
================================ */

.about-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px;
  overflow: hidden;
}

/* VIDEO */
.about-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* DARK OVERLAY (for readability) */
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 20, 0, 0.65),
    rgba(0, 20, 0, 0.85)
  );
  z-index: 1;
}

/* CONTENT ABOVE VIDEO */
.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .about-hero-video {
    object-position: center;
  }
}

.about-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* Title */
.about-hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

.about-hero-title span {
  color: #00ff8a;
}

/* Description */
.about-hero-desc {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
  color: rgba(230,255,230,0.85);
}







/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .about-hero {
    padding: 100px 18px;
  }

  .about-hero-inner {
    max-width: 100%;
  }
}
/* Optional soft overlay (premium look) */
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  z-index: 1;
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

/* Title */
.about-hero-title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: clamp(14px, 3vw, 22px);
  line-height: 1.2;
}
/* ===============================
   MEET OUR TEAM SECTION
================================ */

.about-team {
  padding: 120px 20px;
}

/* Header */
.about-team-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.about-team-header h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.about-team-header p {
  font-size: 16px;
  color: rgba(230, 255, 230, 0.75);
}

/* Grid */
.about-team-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Image */
.about-team-image img {
  width: 100%;
  border-radius: 26px;
  object-fit: cover;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.6);
}

/* Content */
.about-team-content h3 {
  font-size: clamp(26px, 3vw, 36px);
  color: #ffffff;
  margin-bottom: 20px;
}

.about-team-content p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(230, 255, 230, 0.8);
  margin-bottom: 18px;
}

/* Stats */
.about-team-stats {
  display: flex;
  gap: 24px;
  margin-top: 30px;
}

.team-stat {
  flex: 1;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(0, 255, 138, 0.14),
    rgba(0, 0, 0, 0.45)
  );
  border: 1px solid rgba(0, 255, 138, 0.35);
}

.team-stat span {
  font-size: 32px;
  font-weight: 800;
  color: #00ff8a;
  display: block;
  margin-bottom: 6px;
}

.team-stat p {
  margin: 0;
  font-size: 14px;
  color: rgba(230, 255, 230, 0.8);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
  .about-team-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-team-stats {
    flex-direction: column;
  }
}

.about-hero-title span {
  color: #00ff8a;
}

/* Description */
.about-hero-desc {
  font-size: clamp(15px, 2.2vw, 20px);
  line-height: 1.7;
  color: rgba(230, 255, 230, 0.85);
  max-width: 780px;
  margin: 0 auto;
}

/* ===============================
   RESPONSIVE BREAKPOINTS
================================ */

/* Tablets */
@media (max-width: 768px) {
  .about-hero {
    min-height: 50vh;
    padding: 100px 18px;
    background-position: center top;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .about-hero {
    min-height: 60vh;
    padding: 80px 16px;
  }

  .about-hero-desc {
    font-size: 15px;
  }
}

/* Very small devices (320px) */
@media (max-width: 360px) {
  .about-hero {
    padding: 70px 14px;
  }
}

/* ===============================
   ABOUT – JOURNEY SECTION
================================ */

.about-journey {
  padding: 120px 0;
}

/* GRID */
.journey-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* BADGE */
.journey-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid #00ff8a;
  color: #00ff8a;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* TITLE */
.journey-title {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.25;
}

/* TEXT */
.journey-content p {
  color: rgba(230, 255, 230, 0.85);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
  max-width: 620px;
}

/* IMAGE CARD */
.journey-image {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.journey-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===============================
   RESPONSIVE
================================ */

/* Tablet */
@media (max-width: 1024px) {
  .journey-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .journey-image {
    max-width: 720px;
    margin: 0 auto;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .about-journey {
    padding: 90px 0;
  }

  .journey-title {
    font-size: 32px;
  }

  .journey-content p {
    font-size: 15px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .journey-badge {
    font-size: 13px;
    padding: 7px 16px;
  }
}
/* ===============================
   MISSION & VISION
================================ */

.mission-vision {
  padding: 120px 0;
}

/* Header */
.mv-header {
  text-align: center;
  margin-bottom: 70px;
}

.mv-header h2 {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.mv-header p {
  font-size: 16px;
  color: rgba(230, 255, 230, 0.85);
}

/* Grid */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

/* Card */
.mv-card {
  background: linear-gradient(
    180deg,
    rgba(0, 255, 138, 0.08),
    rgba(0, 0, 0, 0.25)
  );
  border: 1px solid rgba(0, 255, 138, 0.25);
  border-radius: 26px;
  padding: 50px 42px;
  box-shadow: 0 0 0 rgba(0, 255, 138, 0);
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 255, 122, 0.08), transparent, rgba(26, 255, 122, 0.03));
  opacity: 0;
  transition: opacity 0.6s ease;
  border-radius: inherit;
  pointer-events: none;
}

.mv-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg) translateX(-100%);
  transition: transform 0.8s ease;
  pointer-events: none;
  border-radius: inherit;
}

/* Glow hover */
.mv-card:hover {
  transform: translateY(-16px) scale(1.03) rotateX(2deg);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(26, 255, 122, 0.2),
    0 0 120px rgba(26, 255, 122, 0.1),
    inset 0 0 40px rgba(26, 255, 122, 0.05);
  border-color: rgba(26, 255, 122, 0.4);
  background: linear-gradient(
    180deg,
    rgba(0, 255, 138, 0.12),
    rgba(0, 0, 0, 0.35)
  );
}

.mv-card:hover::before {
  opacity: 1;
}

.mv-card:hover::after {
  transform: rotate(45deg) translateX(100%);
}

.mv-card:hover .mv-icon {
  transform: translateY(-12px) scale(1.15) rotate(8deg);
  box-shadow: 
    0 20px 40px rgba(26, 255, 122, 0.5),
    0 0 60px rgba(26, 255, 122, 0.3),
    inset 0 0 20px rgba(26, 255, 122, 0.2);
  background: linear-gradient(135deg, rgba(30, 255, 150, 0.3), rgba(26, 255, 122, 0.2));
  border-color: rgba(26, 255, 122, 0.6);
  animation: float 3s ease-in-out infinite;
}

.mv-card:hover .mv-icon::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: radial-gradient(circle, rgba(26, 255, 122, 0.2), transparent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  pointer-events: none;
}

.mv-card:hover .mv-icon i {
  transform: scale(1.15);
}

.mv-card:hover h3 {
  transform: translateY(-4px) scale(1.02);
  color: #00ff8a;
  text-shadow: 0 0 20px rgba(26, 255, 122, 0.5);
}

.mv-card:hover p {
  opacity: 1;
}

/* Icon */
.mv-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(0, 255, 138, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(26, 255, 122, 0.2);
}

.mv-icon i {
  font-size: 24px;
  color: #00ff8a;
}

/* Title */
.mv-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

/* Text */
.mv-card p {
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(230, 255, 230, 0.85);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
  .mv-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .mission-vision {
    padding: 90px 0;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .mv-card {
    padding: 42px 32px;
  }
}
/* ===============================
   CORE VALUES
================================ */

.core-values {
  padding: 120px 0;
}

/* Header */
.cv-header {
  text-align: center;
  margin-bottom: 70px;
}

.cv-header h2 {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.cv-header p {
  font-size: 16px;
  color: rgba(230, 255, 230, 0.85);
}

/* Grid */
.cv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* Card */
.cv-card {
  background: linear-gradient(
    180deg,
    rgba(0, 255, 138, 0.07),
    rgba(0, 0, 0, 0.35)
  );
  border: 1px solid rgba(0, 255, 138, 0.25);
  border-radius: 22px;
  padding: 40px 34px;
}

/* Icon */
.cv-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 255, 138, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(26, 255, 122, 0.2);
}

.cv-icon i {
  font-size: 22px;
  color: #00ff8a;
}

/* Title */
.cv-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

/* Text */
.cv-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(230, 255, 230, 0.85);
}

/* Card hover */
.cv-card:hover {
  transform: translateY(-16px) scale(1.03) rotateX(2deg);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(26, 255, 122, 0.2),
    0 0 120px rgba(26, 255, 122, 0.1),
    inset 0 0 40px rgba(26, 255, 122, 0.05);
  border-color: rgba(26, 255, 122, 0.4);
  background: linear-gradient(
    180deg,
    rgba(0, 255, 138, 0.1),
    rgba(0, 60, 40, 0.7)
  );
}

.cv-card:hover::before {
  opacity: 1;
}

.cv-card:hover::after {
  transform: rotate(45deg) translateX(100%);
}

/* Icon hover */
.cv-card:hover .cv-icon {
  transform: translateY(-12px) scale(1.15) rotate(8deg);
  box-shadow: 
    0 20px 40px rgba(26, 255, 122, 0.5),
    0 0 60px rgba(26, 255, 122, 0.3),
    inset 0 0 20px rgba(26, 255, 122, 0.2);
  background: linear-gradient(135deg, rgba(30, 255, 150, 0.3), rgba(26, 255, 122, 0.2));
  border-color: rgba(26, 255, 122, 0.6);
  animation: float 3s ease-in-out infinite;
}

.cv-card:hover .cv-icon::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: radial-gradient(circle, rgba(26, 255, 122, 0.2), transparent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  pointer-events: none;
}

.cv-card:hover .cv-icon i {
  transform: scale(1.15);
}

/* Title hover */
.cv-card:hover h3 {
  transform: translateY(-4px) scale(1.02);
  color: #00ff8a;
  text-shadow: 0 0 20px rgba(26, 255, 122, 0.5);
}

.cv-card:hover p {
  opacity: 1;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(2deg); }
  66% { transform: translateY(-5px) rotate(-1deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

/* Smooth transitions */
.cv-card,
.cv-icon,
.cv-icon i,
.cv-card h3,
.cv-card p {
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
/* ===============================
   OUR ACHIEVEMENTS
================================ */

.about-achievements {
  padding: 100px 0;
}

.achievements-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.achievements-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.achievements-header p {
  font-size: 18px;
  color: rgba(230, 255, 230, 0.85);
}

/* ===============================
   STATS ROW
================================ */

.achievements-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 80px;
  position: relative;
}

.achievements-stats::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #00ff8a, transparent);
  opacity: 0.4;
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-number {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #00ff8a;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 15px;
  color: rgba(230, 255, 230, 0.9);
}

/* ===============================
   IMAGE
================================ */

.achievements-image {
  border-radius: 28px;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.achievements-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
  .achievements-stats {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 50px;
  }
}

@media (max-width: 480px) {
  .achievements-stats {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   CTA SECTION
================================ */

.cta-section {
  padding: 120px 20px;
  text-align: center;
  overflow: hidden;
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* Title */
.cta-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

/* Description */
.cta-desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(230, 255, 230, 0.85);
  margin-bottom: 40px;
}

/* Buttons */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  position: relative;
}

/* Primary */
.cta-btn.primary {
  background: #22c55e;
  color: #041b0f;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.cta-btn.primary:hover {
}

/* Outline */
.cta-btn.outline {
  border: 2px solid #22c55e;
  color: #22c55e;
  background: transparent;
}

.cta-btn.outline:hover {
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .cta-section {
    padding: 90px 16px;
  }

  .cta-desc {
    font-size: 16px;
  }
}

/* =========================
   FOOTER
========================= */

.mx-footer {
  padding: 80px 20px 20px;
  color: #eaffea;
  background: #001A00;
}

.mx-footer-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* Top grid */
.mx-footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(0,255,120,.35);
}

/* Brand */
.mx-footer-brand img {
  max-width: 200px;
  margin-bottom: 18px;
}

.mx-footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(230,255,230,.75);
}

/* Columns */
.mx-footer-col h4 {
  font-size: 18px;
  color: #00ff8a;
  margin-bottom: 18px;
  position: relative;
}

.mx-footer-col h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #00ff8a;
  margin-top: 6px;
}

.mx-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mx-footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(230,255,230,.85);
}

.mx-footer-col ul li a {
  color: inherit;
  text-decoration: none;
}

.mx-footer-col ul li a:hover {
  color: #00ff8a;
}

/* Contact */
.mx-footer-contact li {
  line-height: 1.7;
}

/* Social */
.mx-footer-social {
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
  font-size: 16px;
}

.mx-footer-social a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.mx-footer-social a:hover {
  color: #00ff8a;
}

/* Bottom */
.mx-footer-bottom {
  text-align: center;
  font-size: 13px;
  color: rgba(230,255,230,.6);
  padding-top: 10px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .mx-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .mx-footer-top {
    grid-template-columns: 1fr;
  }

  .mx-footer-social {
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
  }
}

/* ==================================================
   GLOBAL OVERRIDES – DO NOT EDIT ABOVE
================================================== */

/* ---------- FIXED GLASS NAVBAR ---------- */
.malachite-navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(0, 20, 0, 0.15);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

/* Blur on scroll */
.malachite-navbar.scrolled {
  background: rgba(0, 35, 0, 0.7) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

/* Offset body for fixed navbar */
body {
  padding-top: 90px;
}

/* ---------- FORCE VISIBILITY (CRITICAL) ---------- */
.mission-vision,
.core-values,
.mv-card,
.cv-card {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* ---------- SAFETY FOR ANIMATION CLASSES ---------- */
.animate-on-scroll {
  opacity: 1;
  transform: none;
}

/* ---------- OPTIONAL SMOOTH HOVER ---------- */
.mv-card,
.cv-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ---------- ABOUT-GRID-FIXED ---------- */
.about-grid-fixed {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

@media (max-width: 1024px) {
  .about-grid-fixed {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .about-grid-fixed {
    grid-template-columns: 1fr;
  }
}
