* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== ROOT VARIABLES ===== */
:root {
  --bg-black: #0e0e0e;
  --text-white: #ffffff;
  --text-gray: #a0a0a0;
  --accent: #6cff00;
}
html {
  scroll-behavior: smooth;
}
/* ===== GLOBAL STYLES ===== */
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-black);
  color: var(--text-white);
  cursor: none;
}
input,
textarea,
button {
  font-family: inherit;
}
h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}



/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  background: #4f6cff;
  /* blue dot */
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: transform 0.08s ease-out;
}

/* Disable on touch devices */
@media (max-width: 1024px) {
  .custom-cursor {
    display: none;
  }

  body {
    cursor: default;
  }
}
/* ===== Project Page Base ===== */
.project-page {
  background-color: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  margin: 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}


/* .project-hero {
  padding: 120px 0 80px;
}


.project-title {
  font-size: 64px;
  font-weight: 600;
  margin-bottom: 20px;
}


.project-subtitle {
  font-size: 28px;
  font-weight: 400;
  color: #cfcfcf;
  margin-bottom: 40px;
}


.project-description {
  font-size: 20px;
  line-height: 1.8;
  color: #b5b5b5;

  margin-bottom: 80px;
}


.project-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  border-top: 1px solid #222;
  padding-top: 40px;
}

.meta-item {
  min-width: 200px;
}

.meta-label {
  display: block;
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.meta-value {
  font-size: 16px;
  color: #ddd;
}


.project-gallery {
  padding: 0px 0px 80px 0px;
  background: #000;
}

.gallery-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.6s ease;
}


.gallery-item:hover img {
  transform: scale(1.08);
}


.gallery-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.8),
    rgba(0,0,0,0)
  );
}

.gallery-title {
  font-size: 16px;
  font-weight: 500;
}

.gallery-tag {
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.7;
} */

.section {
  /* padding: 100px 60px; */
  padding: 120px 60px;
  /* max-width: 1200px; */
  margin: auto;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.section p {
  max-width: 700px;
  line-height: 1.7;
  color: #b5b5b5;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.overview-image img {
  width: 100%;
  border-radius: 12px;
}
.problem {
  background: #111;
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.solution-card {
  padding: 20px;
  background: #111;
  border-radius: 10px;
  transition: 0.3s ease;
}

.solution-card:hover {
  background: #1a1a1a;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  transition: 0.4s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}
.result-stats {
  display: flex;
  gap: 80px;
}

.result-stats h3 {
  font-size: 48px;
  color: #4f6cff;
}
.back-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #4f6cff;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s ease;
}

.back-btn:hover {
  background: #3a52cc;
}
@media (max-width: 992px) {

  .section {
    padding: 80px 30px;
  }

  .overview-grid {
    grid-template-columns: 1fr;
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .result-stats {
    flex-direction: column;
    gap: 40px;
  }

}






.project-hero-section {
  padding: 120px 60px;
  /* background: radial-gradient(circle at top, #0d1117, #05080f); */
  text-align: center;
}

/* ===== HEADING ===== */

.project-header h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

/* ===== TAG BADGE ===== */

.project-tag {
  display: inline-block;
  padding: 8px 18px;
  font-size: 12px;
  letter-spacing: 1px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: #d1d5db;
}

/* ===== IMAGE ===== */

.project-image-wrapper {
  margin-top: 40px;
}

.project-image-wrapper img {
  width: 100%;
  max-width: 1200px;
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

@media (max-width: 768px) {

  .project-hero-section {
    padding: 100px 30px;
  }

  .project-image-wrapper {
    margin-top: 50px;
  }

}


/* case study  */

.dark-case {
  padding: 120px 60px;
  background: #0b0f14;
  color: #fff;
}

.dark-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  max-width: 1300px;
  margin: 0 auto;
}

/* LEFT SIDE */
.dark-left {
  position: sticky;
  top: 200px;
  height: fit-content;
}

.section-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6b7280;
}

.dark-left h2 {
  font-size: clamp(24px, 2vw, 48px);
  font-weight: 400;
  line-height: 1.3;
  margin: 20px 0 40px;
  color: #e5e7eb;
}

.scroll-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 12px 24px;
  border-radius: 8px;
  color: #d1d5db;
  cursor: pointer;
  transition: 0.3s ease;
  width: 15%;
}

.scroll-btn:hover {
  border-color: #fff;
}

/* RIGHT SIDE */
.dark-right .content-block {
  margin-bottom: 100px;
}
.challenges-sec{
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
}
.dark-right h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #ffffff;
}
.bullet-points{
  color: #9ca3af;
  line-height: 1.8;
  font-size: 16px;
  margin-left: 18px;
}
.dark-right p {
  color: #9ca3af;
  line-height: 1.8;
  font-size: 16px;
}
@media (max-width: 992px) {

  .dark-case {
    padding: 100px 60px;
  }

  .dark-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .dark-left {
    position: relative;
    top: 0;
  }
  .scroll-btn{
    width: 20%;
  }

}
.next-project {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-size: 16px;
  font-weight: 500;
  color: #e5e7eb;

  text-decoration: none;
  transition: all 0.3s ease;
}

.next-project span {
  transition: transform 0.3s ease;
}

/* Hover Effect */
.next-project:hover {
  color: #ffffff;
}
.next-project i{
  font-size: 12px;
}
.next-project:hover span {
  transform: translateX(6px);
}
.next-project-wrapper{
  display: flex;
   justify-content: flex-end;
}
@media (max-width: 768px) {
  .next-project-wrapper {
    justify-content: center;
  }
}