body {
  background: #050814;
  color: white;
  font-family: Arial;
}

.glass {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
}

.logo {
  font-size: 34px;
  color: #8b5cf6;
  font-weight: bold;
}

.hero {
  padding-top: 110px;
  min-height: 720px;

  display: flex;
  align-items: center;
}

.hero h1 {
  font-size: 54px;
  font-weight: bold;
}

.hero span {
  color: #8b5cf6;
}

.purple {
  background: #8b5cf6;
  color: white;
  border-radius: 12px;
}

.purple:hover {
  background: #23114d;
  color: white;
}

.badge-custom {
  color: #b388ff;
  margin-bottom: 20px;
}

.dashboard,
.cardx,
.project {
  background: #111827;
  border: 1px solid #333;
  border-radius: 25px;
  padding: 40px;
  margin: 10px;
}

.dashboard {
  height: 350px;
}

.project {
  height: 250px;
  transition: 0.3s;
}

.project:hover {
  transform: translateY(-10px);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .hero {
    padding-top: 95px;
    min-height: auto;
  }
}

.container h2 {
  font-size: 30px;
  padding: 20px 0 0;
}

/* =====================
   IMPACT METRICS
===================== */

.impact-section {
  padding: 100px 0;

  position: relative;
}

.section-label {
  color: #a855f7;

  font-size: 13px;

  letter-spacing: 3px;

  font-weight: 700;
}

.section-header h2 {
  font-weight: normal;

  margin-top: 15px;
}

.section-header p {
  color: #94a3b8;

  font-size: 18px;
}

/* =====================
 HEADER
===================== */

.portfolio-nav {
  padding: 18px 0;

  background: rgba(5, 8, 20, 0.75);

  backdrop-filter: blur(25px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
  font-size: 34px;

  font-weight: 900;

  color: white !important;
}

.logo span {
  color: #8b5cf6;
}

.nav-link {
  color: #cbd5e1 !important;

  font-size: 14px;

  font-weight: 400;

  margin: 0 10px;

  position: relative;
}

.nav-link:after {
  content: "";

  position: absolute;

  left: 50%;

  bottom: -8px;

  width: 0;

  height: 3px;

  background: linear-gradient(90deg, #8b5cf6, #ec4899);

  border-radius: 10px;

  transition: 0.3s;

  transform: translateX(-50%);
}

.nav-link:hover:after,
.nav-link.active:after {
  width: 80%;
}

.nav-link:hover {
  color: white !important;
}

/* RIGHT BUTTONS */

.nav-actions {
  display: flex;

  align-items: center;

  gap: 18px;
}

.resume-link {
  color: #c4b5fd;

  text-decoration: none;

  font-weight: 700;
}

.nav-button {
  padding: 12px 22px;

  border-radius: 15px;

  background: linear-gradient(135deg, #8b5cf6, #ec4899);

  color: white;

  text-decoration: none;

  font-weight: normal;

  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.35);
}

/* Mobile Icon */

.menu-btn {
  border: 0;

  box-shadow: none !important;
}

.menu-btn span {
  display: block;

  width: 26px;

  height: 2px;

  background: white;

  margin: 6px 0;
}

/* MOBILE */

/* =====================
 MOBILE HEADER FIX
 Only Logo + Buttons
===================== */

@media (max-width: 991px) {
  .hero {
    padding: 100px 15px 0 15px !important;
  }

  .portfolio-nav {
    background: #050814;
    padding: 14px 0;
  }

  /* keep header items in one line */

  .portfolio-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* hide hamburger */

  .menu-btn {
    display: none !important;
  }

  /* disable bootstrap collapse */

  .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    flex-grow: 0;
    padding: 0;
  }

  /* hide menu links */

  .navbar-nav {
    display: none !important;
  }

  /* show only actions */

  .nav-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  /* Resume */

  .resume-link {
    font-size: 13px;
  }

  /* Let's Talk button */

  .nav-button {
    width: auto;
    padding: 9px 14px;
    font-size: 13px;
    border-radius: 12px;
  }

  /* logo size */

  .logo {
    font-size: 28px;
  }
}

/* =====================
 CASE STUDY ICON BUTTON
===================== */

.case-icon-btn {
  width: 44px;

  height: 44px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 14px;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.12);

  color: white;

  font-size: 20px;

  text-decoration: none;

  transition: 0.3s;
}

.case-icon-btn:hover {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);

  transform: translateY(-3px);

  box-shadow: 0 15px 35px rgba(139, 92, 246, 0.35);
}

/* ======================
 CONTACT MODAL
====================== */

.contact-modal {
  background: linear-gradient(
    145deg,
    rgba(20, 25, 45, 0.95),
    rgba(5, 8, 20, 0.98)
  );

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 30px;

  padding: 40px;

  color: white;

  backdrop-filter: blur(30px);

  box-shadow: 0 40px 120px rgba(139, 92, 246, 0.35);

  position: relative;
}

.modal-close {
  position: absolute;

  right: 22px;

  top: 15px;

  background: none;

  border: 0;

  color: white;

  font-size: 34px;
}

.modal-header-content span {
  color: #a78bfa;

  font-size: 12px;

  letter-spacing: 3px;
}

.modal-header-content h2 {
  font-size: 34px;

  margin-top: 15px;
}

.modal-header-content p {
  color: #94a3b8;
}

.contact-modal form {
  margin-top: 30px;

  display: flex;

  flex-direction: column;

  gap: 18px;
}

.contact-modal input,
.contact-modal textarea {
  background: rgba(255, 255, 255, 0.07);

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 15px;

  padding: 15px 18px;

  color: white;

  outline: none;
}

.contact-modal input::placeholder,
.contact-modal textarea::placeholder {
  color: #94a3b8;
}

.contact-modal input:focus,
.contact-modal textarea:focus {
  border-color: #8b5cf6;

  box-shadow: 0 0 30px rgba(139, 92, 246, 0.25);
}

.send-btn {
  border: 0;

  padding: 15px;

  border-radius: 15px;

  color: white;

  background: linear-gradient(135deg, #8b5cf6, #ec4899);

  transition: 0.3s;
}

.send-btn:hover {
  transform: translateY(-3px);

  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.4);
}

@media (max-width: 576px) {
  .contact-modal {
    margin: 15px;

    padding: 28px;
  }

  .modal-header-content h2 {
    font-size: 28px;
  }
}

/* =====================
 HERO UX AI ANIMATION
===================== */

.ux-ai-animation {
  height: 520px;

  position: relative;
}

.ai-core {
  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  width: 170px;

  height: 170px;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-direction: column;

  border-radius: 50%;

  background: rgba(139, 92, 246, 0.15);

  border: 1px solid rgba(255, 255, 255, 0.2);

  backdrop-filter: blur(20px);
}

.ai-brain {
  font-size: 60px;

  animation: pulse 2s infinite;
}

.ai-core span {
  font-size: 13px;

  color: #c4b5fd;
}

.ai-ring {
  position: absolute;

  inset: -20px;

  border: 2px dashed #8b5cf6;

  border-radius: 50%;

  animation: rotate 18s linear infinite;
}

/* floating cards */

.ux-card {
  position: absolute;

  width: 190px;

  padding: 20px;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 24px;

  backdrop-filter: blur(20px);

  animation: floatCard 5s infinite alternate;
}

.ux-card h5 {
  margin: 10px 0 5px;

  font-weight: 600;
}

.ux-card p {
  font-size: 13px;

  color: #94a3b8;

  margin: 0;
}

.icon {
  font-size: 28px;
}

.research {
  top: 60px;

  left: 20px;
}

.wireframe {
  top: 80px;

  right: 0;

  animation-delay: 1s;
}

.prototype {
  bottom: 80px;

  left: 0;

  animation-delay: 2s;
}

.design {
  bottom: 40px;

  right: 40px;

  animation-delay: 1.5s;
}

/* AI Prompt */

.prompt-box {
  position: absolute;

  /* moved lower */
  bottom: -80px;

  left: 50%;

  transform: translateX(-50%);

  width: 330px;

  padding: 20px;

  border-radius: 20px;

  background: #0f172a;

  border: 1px solid #334155;

  box-shadow: 0 25px 70px rgba(139, 92, 246, 0.25);
}

.prompt-box span {
  font-size: 12px;

  color: #a78bfa;
}

.typing {
  margin-top: 8px;

  white-space: nowrap;

  overflow: hidden;

  border-right: 2px solid #8b5cf6;

  animation: typing 5s steps(35) infinite;
}

/* animations */

@keyframes rotate {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  50% {
    transform: scale(1.15);

    filter: drop-shadow(0 0 30px #8b5cf6);
  }
}

@keyframes floatCard {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-25px);
  }
}

@keyframes typing {
  0% {
    width: 0;
  }

  50% {
    width: 260px;
  }

  100% {
    width: 0;
  }
}

/* MOBILE */

@media (max-width: 991px) {
  .ux-ai-animation {
    height: 600px;

    margin-top: 50px;
  }

  .ux-card {
    width: 160px;
  }
}

.glass-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 28px;

  backdrop-filter: blur(25px);

  transition: 0.4s ease;
}

.glass-card p {
  font-size: 12px;
}

.glass-card h3 {
  font-size: 18px;
}

.glass-card h5 {
  font-size: 32px;
  color: #a855f7;
  font-weight: 600;
}

.glass-card:hover {
  transform: translateY(-12px);

  box-shadow: 0 35px 90px rgba(124, 58, 237, 0.3);

  border-color: rgba(139, 92, 246, 0.5);
}

.metric-card {
  height: 100%;

  padding: 32px 22px;

  border-radius: 26px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );

  border: 1px solid rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(25px);

  text-align: center;

  transition: all 0.4s ease;

  position: relative;

  overflow: hidden;
}

/* Glow Hover */

.metric-card:before {
  content: "";

  position: absolute;

  width: 120px;

  height: 120px;

  background: #8b5cf6;

  filter: blur(80px);

  opacity: 0;

  top: -30px;

  right: -30px;

  transition: 0.4s;
}

.metric-card:hover {
  transform: translateY(-12px) scale(1.03);

  border-color: rgba(139, 92, 246, 0.5);
}

.metric-card:hover:before {
  opacity: 0.6;
}

.metric-icon {
  width: 60px;

  height: 60px;

  margin: auto;

  margin-bottom: 20px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 28px;

  background: rgba(139, 92, 246, 0.15);

  border-radius: 18px;
}

.metric-card h3 {
  font-size: 46px;

  font-weight: 900;

  background: linear-gradient(90deg, #fff, #a78bfa);

  -webkit-background-clip: text;

  color: transparent;
}

.metric-card h5 {
  font-size: 17px;

  font-weight: 700;
}

.metric-card p {
  font-size: 14px;

  color: #94a3b8;
}

.highlight {
  background: linear-gradient(
    145deg,
    rgba(124, 58, 237, 0.25),
    rgba(15, 23, 42, 0.8)
  );
}

/* Mobile */

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 32px;
  }

  .metric-card h3 {
    font-size: 36px;
  }
}

/* ===========================
 CASE STUDIES
=========================== */

.case-section {
  padding: 120px 0;
}

.Viewcase-section {
  padding: 0px 0 120px 0;
}

.case-card {
  height: 100%;

  border-radius: 28px;

  overflow: hidden;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(20px);

  transition: 0.45s ease;
}

/* Hover lift */

.case-card:hover {
  transform: translateY(-15px);

  box-shadow: 0 40px 90px rgba(124, 58, 237, 0.25);
}

/* IMAGE */

.case-image {
  height: 260px;

  position: relative;

  overflow: hidden;
}

.case-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.6s ease;
}

.case-card:hover img {
  transform: scale(1.15);
}

/* Overlay */

.case-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));

  display: flex;

  align-items: flex-end;

  padding: 20px;
}

.case-overlay span {
  background: rgba(124, 58, 237, 0.8);

  padding: 8px 16px;

  border-radius: 30px;

  font-size: 13px;
}

/* Content */

.case-content {
  padding: 28px;
}

.case-meta {
  display: flex;

  justify-content: space-between;

  font-size: 13px;

  color: #a78bfa;

  margin-bottom: 15px;
}

.case-content h3 {
  font-size: 28px;
  font-weight: 600;
}

.case-content p {
  color: #94a3b8;

  line-height: 1.6;
}

/* Tags */

.case-tags {
  display: flex;

  gap: 8px;

  flex-wrap: wrap;

  margin: 25px 0;
}

.case-tags span {
  font-size: 12px;

  padding: 7px 13px;

  border-radius: 20px;

  background: rgba(255, 255, 255, 0.08);
}

.case-content a {
  color: #a78bfa;

  text-decoration: none;

  font-weight: 700;
}

/* Mobile */

@media (max-width: 768px) {
  .case-image {
    height: 220px;
  }
}

/* =========================
 VIEW ALL CASE STUDIES BTN
========================== */

.view-all-wrapper {
  display: flex;

  justify-content: center;

  margin-top: 60px;
}

.view-all-btn {
  display: flex;

  align-items: center;

  gap: 14px;

  padding: 18px 34px;

  border-radius: 50px;

  text-decoration: none;

  color: white;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(20px);

  position: relative;

  overflow: hidden;

  transition: all 0.4s ease;
}

/* gradient glow */

.view-all-btn:before {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(135deg, #8b5cf6, #ec4899, #22d3ee);

  opacity: 0;

  transition: 0.4s;

  z-index: -1;
}

.view-all-btn:hover {
  transform: translateY(-6px);

  box-shadow: 0 25px 70px rgba(139, 92, 246, 0.45);

  color: white;
}

.view-all-btn:hover:before {
  opacity: 1;
}

/* arrow circle */

.arrow {
  width: 36px;

  height: 36px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.15);

  transition: 0.3s;
}

.view-all-btn:hover .arrow {
  transform: translateX(8px);

  background: white;

  color: #7c3aed;
}

/* mobile */

@media (max-width: 768px) {
  .view-all-btn {
    width: 100%;

    justify-content: center;
  }
}

/* =====================
 INDUSTRIES
===================== */

.industry-section {
  padding: 120px 0;
}

.industry-card {
  height: 100%;

  padding: 35px;

  border-radius: 28px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.02)
  );

  border: 1px solid rgba(255, 255, 255, 0.1);

  transition: 0.4s;

  position: relative;

  overflow: hidden;
}

.industry-card:hover {
  transform: translateY(-12px);

  box-shadow: 0 30px 80px rgba(139, 92, 246, 0.25);
}

.industry-icon {
  width: 70px;

  height: 70px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 32px;

  background: rgba(139, 92, 246, 0.15);

  border-radius: 22px;

  margin-bottom: 25px;
}

.industry-card h3 {
  font-size: 24px;

  font-weight: 600;

  margin-bottom: 15px;
}

.industry-card p {
  color: #94a3b8;

  line-height: 1.7;
}

.industry-card ul {
  padding: 0;

  margin-top: 25px;
}

.industry-card li {
  list-style: none;

  margin-bottom: 12px;

  color: #d8b4fe;

  font-size: 14px;
}

.industry-card li:before {
  content: "✦";

  color: #8b5cf6;

  margin-right: 10px;
}

.highlight-industry {
  background: linear-gradient(
    145deg,
    rgba(124, 58, 237, 0.35),
    rgba(15, 23, 42, 0.8)
  );
}

/* ==========================
 UX PROCESS
========================== */

.ux-process-section {
  padding: 120px 0;

  position: relative;
}

.process-wrapper {
  margin-top: 80px;

  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 25px;

  position: relative;
}

/* connecting line desktop */

.process-wrapper:before {
  content: "";

  position: absolute;

  top: 65px;

  left: 8%;

  right: 8%;

  height: 2px;

  background: linear-gradient(90deg, #8b5cf6, #22d3ee);

  z-index: -1;
}

.process-step {
  padding: 30px 22px;

  border-radius: 28px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(20px);

  text-align: center;

  transition: 0.4s;
}

.process-step:hover {
  transform: translateY(-15px);

  box-shadow: 0 30px 80px rgba(139, 92, 246, 0.25);
}

.process-number {
  font-size: 14px;

  font-weight: 800;

  color: #a78bfa;
}

.process-icon {
  width: 70px;

  height: 70px;

  margin: 15px auto;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 34px;

  background: linear-gradient(135deg, #7c3aed, #2563eb);

  border-radius: 50%;
}

.process-step h3 {
  font-size: 24px;

  font-weight: 600;
}

.process-step p {
  font-size: 14px;

  color: #94a3b8;

  line-height: 1.6;
}

.process-step ul {
  margin-top: 20px;

  padding: 0;
}

.process-step li {
  list-style: none;

  font-size: 13px;

  margin-bottom: 8px;

  color: #d8b4fe;
}

/* ======================
 MOBILE TIMELINE
====================== */

@media (max-width: 991px) {
  .process-wrapper {
    grid-template-columns: 1fr;

    gap: 35px;

    margin-left: 20px;
  }

  .process-wrapper:before {
    top: 0;

    bottom: 0;

    left: -18px;

    right: auto;

    width: 2px;

    height: auto;
  }

  .process-step {
    text-align: left;

    position: relative;
  }

  .process-icon {
    margin: 15px 0;
  }

  .process-step:before {
    content: "";

    position: absolute;

    left: -29px;

    top: 45px;

    width: 20px;

    height: 20px;

    background: #8b5cf6;

    border-radius: 50%;

    box-shadow: 0 0 25px #8b5cf6;
  }
}

/* =====================
 AI INNOVATION
===================== */

.ai-section {
  padding: 130px 0;
}

.ai-intro {
  color: #94a3b8;

  font-size: 17px;

  line-height: 1.8;

  margin: 25px 0 35px;
}

.ai-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;
}

/* Tablet */

@media (max-width: 991px) {
  .ai-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */

@media (max-width: 576px) {
  .ai-grid {
    grid-template-columns: 1fr;
  }
}

.ai-card {
  padding: 28px;

  border-radius: 28px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );

  border: 1px solid rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(25px);

  transition: 0.4s;
}

.ai-card:hover {
  transform: translateY(-12px) scale(1.02);

  box-shadow: 0 35px 90px rgba(124, 58, 237, 0.3);
}

.ai-icon {
  width: 65px;

  height: 65px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 32px;

  background: linear-gradient(135deg, #7c3aed, #2563eb);

  border-radius: 20px;

  margin-bottom: 20px;
}

.ai-card h3 {
  font-size: 22px;

  font-weight: 600;
}

.ai-card p {
  color: #94a3b8;

  font-size: 14px;

  line-height: 1.7;
}

.tools {
  display: flex;

  gap: 8px;

  flex-wrap: wrap;

  margin-top: 20px;
}

.tools span {
  padding: 7px 13px;

  background: rgba(139, 92, 246, 0.15);

  color: #d8b4fe;

  border-radius: 20px;

  font-size: 12px;
}

.highlight-ai {
  background: linear-gradient(
    145deg,
    rgba(124, 58, 237, 0.35),
    rgba(15, 23, 42, 0.8)
  );
}

/* ==========================
 TESTIMONIALS
========================== */

.testimonial-section {
  padding: 120px 0;
}

.testimonial-card {
  height: 100%;

  padding: 35px;

  border-radius: 30px;

  position: relative;

  overflow: hidden;

  transition: 0.4s;
}

.purple-card {
  background: linear-gradient(135deg, #6d28d9, #312e81);
}

.blue-card {
  background: linear-gradient(135deg, #0284c7, #0f172a);
}

.pink-card {
  background: linear-gradient(135deg, #db2777, #581c87);
}

.testimonial-card:hover {
  transform: translateY(-15px) rotate(1deg);

  box-shadow: 0 40px 90px rgba(139, 92, 246, 0.35);
}

.quote {
  font-size: 90px;

  line-height: 40px;

  opacity: 0.4;
}

.testimonial-card p {
  font-size: 16px;

  line-height: 1.7;
}

.client {
  display: flex;

  gap: 15px;

  align-items: center;

  margin-top: 35px;
}

.avatar {
  width: 55px;

  height: 55px;

  border-radius: 50%;

  background: white;

  color: #111;

  display: flex;

  align-items: center;

  justify-content: center;

  font-weight: 900;
}

.client h5 {
  margin: 0;
}

.client span {
  font-size: 13px;

  opacity: 0.75;
}

/* ==========================
 CONTACT
========================== */

.contact-section {
  padding: 80px 0 120px;
}

.contact-box {
  padding: 60px;

  border-radius: 40px;

  background: radial-gradient(
    circle at top left,

    rgba(139, 92, 246, 0.45),
    rgba(15, 23, 42, 1)
  );

  border: 1px solid rgba(255, 255, 255, 0.12);
}

.availability {
  display: inline-block;

  padding: 10px 18px;

  background: rgba(34, 197, 94, 0.15);

  color: #ffffff;

  border-radius: 30px;

  margin-bottom: 25px;
}

.contact-box h2 {
  font-size: 52px;

  font-weight: 900;
}

.contact-box p {
  color: #cbd5e1;

  font-size: 18px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.08);

  border-radius: 28px;

  padding: 30px;

  backdrop-filter: blur(20px);
}

.contact-card a {
  color: #ffffff;
  text-decoration: none;
}

.contact-item {
  display: flex;

  gap: 18px;

  margin-bottom: 25px;
}

.contact-item span {
  font-size: 28px;
}

.contact-item label {
  color: #a78bfa;

  font-size: 13px;
}

.contact-item p {
  margin: 0;

  font-size: 16px;
}

.contact-btn {
  display: block;

  text-align: center;

  padding: 15px;

  border-radius: 15px;

  color: #ffffff;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);

  font-weight: normal;
}

/* MOBILE */

@media (max-width: 768px) {
  .contact-box {
    padding: 35px 25px;
  }

  .contact-box h2 {
    font-size: 34px;
  }

  .contact-card {
    margin-top: 40px;
  }
}

.case-hero {
  padding: 150px 0 100px;

  background: radial-gradient(circle at top right, #7c3aed55, #050814 50%);
}

.case-label {
  color: #a78bfa;

  letter-spacing: 3px;

  font-size: 13px;
}

.case-hero h1 {
  font-size: 54px;

  font-weight: 900;

  margin: 25px 0;
}

.case-hero p,
.large-text {
  font-size: 20px;

  color: #94a3b8;

  line-height: 1.8;
}

.hero-image {
  width: 100%;

  border-radius: 35px;

  box-shadow: 0 40px 100px #000;
}

.case-section {
  padding: 100px 0;
}

.overview-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
}

.overview-grid div,
.process-row div {
  background: rgba(255, 255, 255, 0.06);

  border-radius: 25px;

  padding: 30px;
}

.number {
  font-size: 70px;

  color: #8b5cf6;

  font-weight: 900;
}

.case-list li {
  font-size: 20px;

  margin-bottom: 15px;
}

.dark-block {
  background: #080d1c;
}

.process-row {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;

  margin-top: 50px;
}

/* ==========================
 CASE STUDY FINAL EXPERIENCE
 4 IMAGES SIDE BY SIDE
========================== */

.gallery {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;

  margin-top: 50px;
}

.gallery img {
  width: 100%;

  height: 260px;

  object-fit: cover;

  border-radius: 25px;

  cursor: pointer;

  border: 1px solid rgba(255, 255, 255, 0.12);

  transition: 0.4s ease;
}

.gallery img:hover {
  transform: translateY(-12px) scale(1.03);

  box-shadow: 0 30px 80px rgba(139, 92, 246, 0.35);
}

/* Tablet */

@media (max-width: 991px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */

@media (max-width: 576px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img {
    height: auto;
  }
}

/* ==========================
 FULL SCREEN IMAGE VIEWER
========================== */

.gallery-popup {
  background: rgba(5, 8, 20, 0.98);

  display: flex;

  align-items: center;

  justify-content: center;
}

.gallery-popup .carousel {
  height: 100vh;

  display: flex;

  align-items: center;
}

.gallery-popup .carousel-item {
  text-align: center;
}

.gallery-popup img {
  max-width: 90%;

  max-height: 88vh;

  object-fit: contain;

  border-radius: 20px;

  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.gallery-close {
  position: absolute;

  right: 35px;

  top: 25px;

  z-index: 99;

  background: rgba(255, 255, 255, 0.1);

  border: 0;

  width: 55px;

  height: 55px;

  border-radius: 50%;

  color: white;

  font-size: 36px;
}

/* ==========================
 FIX GALLERY ARROW POSITION
 KEEP EXISTING DESIGN
========================== */

.gallery-popup .carousel {
  width: 100%;

  position: relative;
}

/* keep arrows always fixed */

.gallery-popup .carousel-control-prev,
.gallery-popup .carousel-control-next {
  position: fixed;

  top: 50%;

  transform: translateY(-50%);

  width: 70px;

  height: 70px;

  opacity: 1;

  z-index: 100;
}

/* left position */

.gallery-popup .carousel-control-prev {
  left: 30px;
}

/* right position */

.gallery-popup .carousel-control-next {
  right: 30px;
}

/* make default arrows visible */

.gallery-popup .carousel-control-prev-icon,
.gallery-popup .carousel-control-next-icon {
  filter: drop-shadow(0 0 8px #000) drop-shadow(0 0 15px #000);
}

/* mobile */

@media (max-width: 576px) {
  .gallery-popup .carousel-control-prev {
    left: 5px;
  }

  .gallery-popup .carousel-control-next {
    right: 5px;
  }
}

.impact {
  background: linear-gradient(135deg, #7c3aed, #111827);
}

.next-project {
  padding: 80px;

  text-align: center;
}

.next-project a {
  font-size: 28px;

  color: white;
}

@media (max-width: 768px) {
  .case-hero h1 {
    font-size: 42px;
  }

  .overview-grid,
  .process-row,
  .gallery {
    grid-template-columns: 1fr;
  }
}

/* ==============================
 CASE STUDY LIST PAGE
================================*/

body {
  background: #07090f;
  color: #fff;
  font-family: Inter, Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* HERO */

.case-hero {
  padding: 150px 0 70px;
  text-align: center;
}

.tag {
  color: #ff7a2f;
  letter-spacing: 5px;
  font-size: 14px;
  font-weight: 700;
}

.case-hero h1 {
  font-size: 72px;
  margin: 25px 0 20px;
}

.case-hero p {
  max-width: 750px;
  margin: auto;
  font-size: 20px;
  color: #b8b8c2;
  line-height: 1.7;
}

/* CASE ROW */

.case-section {
  padding-bottom: 100px;
}

.case-row {
  display: grid;
  grid-template-columns: 90px 1fr 300px;

  gap: 40px;

  align-items: center;

  background: linear-gradient(145deg, #171923, #0d1018);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 22px;

  padding: 5px 35px;

  margin-bottom: 25px;

  transition: 0.35s ease;
}

.case-row:hover {
  transform: translateY(-8px);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.case-number {
  width: 72px;
  height: 72px;
  color: #261f36;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 26px;
}

.case-content span {
  font-size: 12px;
  letter-spacing: 2px;
}

.orange {
  color: #ff7a2f;
}

.blue-text {
  color: #6d8cff;
}

.green-text {
  color: #78c96b;
}

.case-content h2 {
  font-size: 20px;

  margin: 15px 0;
}

.case-content p {
  color: #b8b8c2;

  font-size: 14px;

  line-height: 1.6;
}

.case-info {
  display: flex;

  gap: 60px;

  margin-top: 30px;
}

.case-info div {
  font-size: 14px;

  color: #b8b8c2;
}

.case-info strong {
  display: block;

  color: #a855f7;

  margin-bottom: 6px;
  font-weight: normal;
}

.case-action {
  border-left: 1px solid rgba(255, 255, 255, 0.1);

  padding-left: 40px;
}

.case-action a {
  display: inline-block;

  padding: 18px 45px;

  border-radius: 8px;

  border: 1px solid #ff7a2f;

  font-weight: 700;

  text-decoration: none;

  transition: 0.3s;
}

.case-action a:hover {
  background: #ff7a2f;

  color: white;
}

.orange-t {
  color: #bd8b6f;
}

.blue {
  color: #5d6ba6;
}

.green {
  color: #65a176;
}

.blue-border a {
  border-color: #6d8cff;

  color: #6d8cff;
}

.green-border a {
  border-color: #78c96b;

  color: #78c96b;
}

/* MOBILE */

@media (max-width: 900px) {
  .case-hero h1 {
    font-size: 45px;
  }

  .case-row {
    grid-template-columns: 1fr;
  }

  .case-action {
    border-left: 0;

    padding-left: 0;
  }

  .case-info {
    flex-direction: column;

    gap: 20px;
  }
}

/* =============================
 AI EXPERIMENT PAGE
============================== */

.experiment-hero {
  padding: 160px 0 90px;

  background: radial-gradient(
    circle at top,
    rgba(139, 92, 246, 0.35),
    #050814 55%
  );
}

.experiment-hero h1 {
  font-size: 64px;
  font-weight: 700;

  margin: 25px auto;

  max-width: 850px;
}

.experiment-hero p {
  max-width: 780px;

  margin: auto;

  font-size: 20px;

  line-height: 1.7;

  color: #94a3b8;
}

.experiment-section {
  padding: 80px 0 130px;
}

.experiment-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.experiment-card {
  padding: 35px;

  border-radius: 30px;

  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );

  border: 1px solid rgba(255, 255, 255, 0.12);

  transition: 0.4s;

  height: 100%;
}

.experiment-card:hover {
  transform: translateY(-12px);

  box-shadow: 0 35px 90px rgba(139, 92, 246, 0.3);
}

.experiment-icon {
  width: 70px;

  height: 70px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 34px;

  background: linear-gradient(135deg, #8b5cf6, #2563eb);

  border-radius: 22px;

  margin-bottom: 25px;
}

.experiment-card span {
  font-size: 12px;

  letter-spacing: 3px;

  color: #a78bfa;
}

.experiment-card h3 {
  font-size: 26px;

  margin: 15px 0;

  font-weight: 600;
}

.experiment-card p {
  color: #94a3b8;

  line-height: 1.7;
}

.experiment-tools {
  margin: 25px 0;

  padding: 18px;

  background: rgba(255, 255, 255, 0.05);

  border-radius: 18px;
}

.experiment-tools label {
  color: #a78bfa;

  font-size: 12px;
}

.experiment-tools div {
  margin-top: 8px;

  font-size: 14px;
}

.experiment-card a {
  color: #c4b5fd;

  text-decoration: none;

  font-weight: 700;
}

.highlight-exp {
  background: linear-gradient(
    145deg,
    rgba(124, 58, 237, 0.35),
    rgba(15, 23, 42, 0.9)
  );
}

/* MOBILE */

@media (max-width: 991px) {
  .experiment-grid {
    grid-template-columns: 1fr;
  }

  .experiment-hero h1 {
    font-size: 42px;
  }

  .experiment-hero {
    padding-top: 120px;
  }
}
