:root {
  --lime: #b6e400;
  --dark: #0a0a0a;
  --gray: #9ca3af;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #000;
  color: #fff;
}


/* NAVBAR */
.navbar {
  padding: 18px 40px;
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid #1f2937;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  /* smooth effect */
  transition: 
    background 0.3s ease,
    padding 0.3s ease,
    box-shadow 0.3s ease;
}

/* When scrolled */
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.98);
  padding: 12px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* Prevent content hiding behind navbar */
body {
  padding-top: 80px;
}


.nav-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
 
}

.logo {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 800;
  color: var(--lime);
  letter-spacing: 1px;
}

nav a {
  margin-left: 22px;
  color: #e5e7eb;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--lime);
}

.nav-btn {
  padding: 8px 14px;
  background: var(--lime);
  color: #000;
  border-radius: 4px;
  font-weight: 600;
}

/* ---------------------------
   HAMBURGER
---------------------------- */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: #e5e7eb;
  transition: all 0.3s ease;
}

/* MOBILE MENU */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #000;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    display: flex;
    z-index: 999;
  }

  .nav-links a {
    margin: 0 0 22px;
    font-size: 18px;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .hamburger {
    display: flex;
  }

  nav {
    display: none;
  }
}

/* HAMBURGER ANIMATION */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}


/* HERO */
.hero {
  min-height: calc(100vh - 80px);
  background: radial-gradient(circle at right, #1a1a1a, #000);
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1300px;
  margin: auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
}

/* TEXT */
.hero-content h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--lime);
}

.hero-content p {
  color: var(--gray);
  font-size: 16px;
  margin-bottom: 32px;
}

/* BUTTONS */
.hero-actions {
  display: flex;
  gap: 16px;
}

.btn {
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.25s ease;
}

.btn.primary {
  background: var(--lime);
  color: #000;
}

.btn.primary:hover {
  filter: brightness(0.9);
}

.btn.secondary {
  border: 1px solid var(--lime);
  color: var(--lime);
}

.btn.secondary:hover {
  background: rgba(182, 228, 0, 0.1);
}

/* IMAGE */
.hero-visual img {
  width: 100%;
  max-width: 520px;
  display: block;
  margin-left: auto;
  border-radius: 50px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual img {
    margin: auto;
  }

  nav {
    display: none;
  }
}

/* ABOUT SECTION */
.about-block {
  background: linear-gradient(to bottom, #000, #0b0b0b);
  padding: 100px 40px;
}

.about-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-content h2 span {
  color: var(--lime);
}

.about-content p {
  color: #b0b6c2;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 520px;
}

.about-visual img {
  width: 100%;
  max-width: 480px;
  display: block;
  margin-left: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
  border-radius: 50px;
}

/* VALUE SECTION */
.value-block {
  background: radial-gradient(circle at top, #101010, #000);
  padding: 80px 40px 100px;
  text-align: center;
}

.value-block h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 50px;
}

.value-cards {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.value-card {
  background: linear-gradient(180deg, #0f0f0f, #050505);
  border: 1px solid #1f2937;
  padding: 28px 22px;
  text-align: left;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid transparent;
  transition: border-color 0.25s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: #2a2a2a;
}

.value-card:hover::before {
  border-color: var(--lime);
}

.value-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--lime);
}

.value-card p {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-visual img {
    margin: auto;
  }

  .value-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .value-cards {
    grid-template-columns: 1fr;
  }
}






/* ************************************************************service page********************************************************  */


/* ---------------------------
   COMMON HELPERS
---------------------------- */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 40px;
}

.section {
  padding: 90px 0;
}

.center {
  text-align: center;
}

/* ---------------------------
   PAGE HERO
---------------------------- */
.page-hero {
  padding: 110px 40px 90px;
  background: radial-gradient(circle at top, #151515, #000);
}

.page-hero h1 {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 20px;
}

.page-hero h1 span {
  color: var(--lime);
}

.page-hero p {
  max-width: 720px;
  margin: auto;
  color: #9ca3af;
  line-height: 1.7;
}

/* ---------------------------
   CHALLENGE SECTION
---------------------------- */
.challenge-section {
  background: #050505;
}

.challenge-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.challenge-section p {
  color: #9ca3af;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ---------------------------
   SERVICES GRID
---------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 50px;
}

.service-card {
  background: linear-gradient(180deg, #0f0f0f, #060606);
  border: 1px solid #1f2937;
  padding: 30px;
  transition: all 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--lime);
}

.service-card h3 {
  color: var(--lime);
  font-size: 18px;
  margin-bottom: 14px;
}

.service-card p {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.7;
}

.service-card.highlight {
  border-color: var(--lime);
  background: linear-gradient(180deg, #121212, #080808);
}

/* ---------------------------
   CTA
---------------------------- */
.cta-section {
  background: radial-gradient(circle at bottom, #151515, #000);
}

.cta-section h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.cta-section p {
  color: #9ca3af;
  margin-bottom: 30px;
}

/* ---------------------------
   RESPONSIVE
---------------------------- */
@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-hero h1 {
    font-size: 38px;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------
   SECTION HEADER
---------------------------- */
.section-head {
  max-width: 700px;
  margin-bottom: 60px;
}

.section-head h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 14px;
}

.section-head p {
  color: #9ca3af;
  line-height: 1.7;
}

/* ---------------------------
   SERVICES LAYOUT
---------------------------- */
.services-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
}

/* ---------------------------
   SERVICE BLOCKS
---------------------------- */
.service-block {
  padding: 34px 0;
  border-bottom: 1px solid #1f2937;
}

.service-block:last-child {
  border-bottom: none;
}

.service-tag {
  display: inline-block;
  font-size: 12px;
  color: var(--lime);
  letter-spacing: 1px;
  margin-bottom: 10px;
  opacity: 0.85;
}

.service-tag.emphasis {
  font-weight: 700;
}

.service-block h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.service-block p {
  color: #9ca3af;
  line-height: 1.75;
  max-width: 560px;
}

/* ---------------------------
   HIGHLIGHT COLUMN
---------------------------- */
.highlight-column {
  background: linear-gradient(180deg, #0f1303, #070800);
  border-left: 3px solid var(--lime);
  padding: 40px;
}

.service-block.highlight {
  border: none;
  padding: 0;
}

.service-points {
  margin-top: 20px;
  list-style: none;
}

.service-points li {
  font-size: 14px;
  margin-bottom: 10px;
  color: #c7d2a4;
}

/* ---------------------------
   SECONDARY SERVICES
---------------------------- */
.secondary-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 80px;
}

.secondary-card {
  background: linear-gradient(180deg, #0c0c0c, #050505);
  border: 1px solid #1f2937;
  padding: 30px;
}

.secondary-card h4 {
  color: var(--lime);
  margin-bottom: 12px;
}

.secondary-card p {
  color: #9ca3af;
  line-height: 1.7;
}

/* ---------------------------
   RESPONSIVE
---------------------------- */
@media (max-width: 1000px) {
  .services-layout {
    grid-template-columns: 1fr;
  }

  .highlight-column {
    border-left: none;
    border-top: 3px solid var(--lime);
  }
}

@media (max-width: 600px) {
  .secondary-services {
    grid-template-columns: 1fr;
  }

  .section-head h2 {
    font-size: 28px;
  }
}



/* ---------------------------
   ABOUT PAGE
---------------------------- */
.about-hero p {
  max-width: 760px;
}

/* TWO COLUMN LAYOUT */
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
}

/* INTRO HIGHLIGHT */
.about-highlight {
  background: linear-gradient(180deg, #0f1303, #070800);
  border-left: 3px solid var(--lime);
  padding: 30px;
  color: #cbd5a5;
  line-height: 1.7;
}

/* PHILOSOPHY */
.philosophy-section {
  background: #050505;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.philosophy-card {
  border: 1px solid #1f2937;
  padding: 30px;
  background: linear-gradient(180deg, #0c0c0c, #050505);
}

.philosophy-card h3 {
  color: var(--lime);
  margin-bottom: 14px;
  font-size: 18px;
}

.philosophy-card p {
  color: #9ca3af;
  line-height: 1.7;
}

/* CLEAN LIST */
.clean-list {
  list-style: none;
  margin-top: 20px;
}

.clean-list li {
  margin-bottom: 12px;
  color: #9ca3af;
  padding-left: 18px;
  position: relative;
}

.clean-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--lime);
}

/* QUOTE */
.about-quote {
  background: #0b0b0b;
  border-left: 3px solid var(--lime);
  padding: 40px;
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .two-col {
    grid-template-columns: 1fr;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
  }
}


/* ---------------------------
   BLOG PAGE
---------------------------- */
.blog-hero p {
  max-width: 820px;
}

/* BLOG GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.blog-card {
  border: 1px solid #1f2937;
  padding: 28px;
  background: linear-gradient(180deg, #0c0c0c, #050505);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--lime);
}

.blog-category {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--lime);
  display: inline-block;
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card p {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-link {
  font-size: 14px;
  color: var(--lime);
  text-decoration: none;
  font-weight: 600;
}

/* BLOG CONTENT */
.blog-content {
  background: #050505;
}

.container.narrow {
  max-width: 760px;
}

.blog-meta {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 30px;
}

.blog-content h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.blog-content h3 {
  font-size: 20px;
  margin-top: 36px;
  margin-bottom: 12px;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}


/* ---------------------------
   PARTNERS PAGE
---------------------------- */
.partners-hero p {
  max-width: 820px;
}

/* INTRO */
.partners-intro {
  background: #050505;
}

.partners-intro p {
  color: #9ca3af;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* PARTNER ROW */
.partner-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.partner-row.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.partner-row.reverse .partner-image {
  order: 2;
}

/* IMAGE */
.partner-image img {
  width: 100%;
  max-width: 360px;
  border-radius: 6px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.partner-row:hover .partner-image img {
  filter: grayscale(0%);
}

/* CONTENT */
.partner-content h2 {
  font-size: 28px;
  margin-bottom: 6px;
}

.partner-content h2 span {
  color: var(--lime);
}

.partner-content h4 {
  font-weight: 500;
  color: #cbd5a5;
  margin-bottom: 20px;
}

.partner-content p {
  color: #9ca3af;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* META */
.partner-meta {
  margin-top: 20px;
  margin-bottom: 20px;
}

.partner-meta span {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--lime);
  margin-bottom: 10px;
}

.partner-meta ul {
  list-style: none;
}

.partner-meta li {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 6px;
}

/* NOTE */
.partner-note {
  font-style: italic;
  color: #cbd5a5;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .partner-row,
  .partner-row.reverse {
    grid-template-columns: 1fr;
  }

  .partner-row.reverse .partner-image {
    order: 0;
  }

  .partner-image img {
    margin: auto;
  }
}


/* ---------------------------
   CONTACT PAGE
---------------------------- */
.contact-hero p {
  max-width: 700px;
}

/* LAYOUT */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
}

/* BLOCKS */
.contact-block h2 {
  font-size: 28px;
  margin-bottom: 24px;
}

.contact-block.highlight {
  background: linear-gradient(180deg, #0f1303, #070800);
  border-left: 3px solid var(--lime);
  padding: 40px;
}

/* LOCATIONS */
.location-card {
  border-bottom: 1px solid #1f2937;
  padding: 18px 0;
}

.location-card:last-child {
  border-bottom: none;
}

.location-card h4 {
  color: var(--lime);
  margin-bottom: 6px;
  font-size: 16px;
}

.location-card p {
  color: #9ca3af;
  font-size: 14px;
}

/* CONTACT INFO */
.contact-line {
  margin-bottom: 20px;
  color: #9ca3af;
}

.contact-line strong {
  color: #fff;
}

.contact-line a {
  color: var(--lime);
  text-decoration: none;
  font-weight: 500;
}

.contact-note {
  font-size: 14px;
  color: #cbd5a5;
  margin-bottom: 30px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-block.highlight {
    border-left: none;
    border-top: 3px solid var(--lime);
  }
}
