
/* ======== HEADER ======== */

.desktop-header {
  position: sticky;
  top: 0;
  width: 100%;
  /* background: transparent; */
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: none;
  padding: 1.5rem 0;
}

.header-container {
  max-width: 80%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;

  /* Light-dark transparent background */
  background: var(--color-black);

  /* Glass effect */
  /* backdrop-filter: blur(12px); */
  /* -webkit-backdrop-filter: blur(12px); */

  border-radius: 12px;
  /* padding: 0.75rem 1.5rem; */

  /* Optional subtle border */
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.more-items {
  display: none;
}


/* Logo */
.logo {
  font-family: var(--font-primary);
  color: var(--color-primary-1);
  user-select: none;
}

/* Nav center */
.nav {
  flex-grow: 1;
  margin: 0 3rem;
}

.nav-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 0;
  margin: 0;
}

/* Kinetic bottom-to-top hover animation */
.nav-link {
  position: relative;
  text-align: center;
  cursor: pointer;
  user-select: none;
  color: transparent; /* hide original text */
  padding: 0.5rem 0;
  font-family: var(--font-secondary);
  font-weight: 600;
  height: 1.5em;
  overflow: hidden;
  display: inline-block;
}

.nav-link::before,
.nav-link::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: var(--font-secondary);
  font-weight: 600;
  pointer-events: none;
  user-select: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s ease;
  color: var(--color-neutral-light);
  top: 0;
}

.nav-link::before {
  transform: translateY(0);
  color: var(--color-neutral-light);
}

.nav-link::after {
  top: 100%;
  color: var(--color-primary-1);
  transform: translateY(0);
}

.nav-link:hover::before,
.nav-link:focus::before {
  transform: translateY(-100%);
  color: var(--color-primary-1);
}

.nav-link:hover::after,
.nav-link:focus::after {
  top: 0;
  transform: translateY(0);
}




/* ======== HERO Background Orbit ======== */
.hero-container {
	max-width: 80%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.75rem 1.5rem;
	gap: 5rem;
}

.hero-left {
	width: 50%;
}

.hero-content p {
  margin: 16px 0px 26px 0px;
  font-size: 16px;
  color: var(--color-neutral-light);

}


/* HERO CONTAINER */
.hero-orbit {
  position: relative;
  /* height: 100vh; */
  height: auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Large Orbits with glow */
.orbit {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.7;
  will-change: transform;
}

.orbit-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #ff512f, #dd2476);
  top: 20%;
  left: -40%;
  animation: moveX1 18s linear infinite;
}

.orbit-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #24c6dc, #514a9d);
  top: -30%;
  left: 60%;
  animation: moveY1 22s linear infinite;
}

/* Small solid dots */
.dot {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

/* Dot sizes and colors */
.dot-1 {
  width: 30px;
  height: 30px;
  background-color: #f7971e;
  top: 10%;
  left: 10%;
}

.dot-2 {
  width: 25px;
  height: 25px;
  background-color: #7f00ff;
  top: 20%;
  left: 30%;
}

.dot-3 {
  width: 20px;
  height: 20px;
  background-color: #00f260;
  top: 30%;
  left: 50%;
}

.dot-4 {
  width: 18px;
  height: 18px;
  background-color: #ff512f;
  top: 0%;
  left: 70%;
}

/* Large orbit animations */
@keyframes moveX1 {
  from { transform: translateX(0); }
  to   { transform: translateX(160vw); }
}

@keyframes moveY1 {
  from { transform: translateY(0); }
  to   { transform: translateY(140vh); }
}

/* sub title  */
.hero-left h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-neutral-light);
  margin-bottom: 10px;

}

/* Animated Line  */

.section-header {
  /* width: 1020px; */
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-section {
  padding: 0px;
  margin: 0px;
}

/* LEFT LINE */
.line-container {
  position: relative;
  width: 100px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.moving-dot {
  position: absolute;
  top: 50%;
  width: 5px;
  height: 40px;
  background: #ff2b2b;
  border-radius: 50%;
  transform: translateY(-50%);
  animation: moveDot 4.5s linear infinite;
}

/* Dot animation */
@keyframes moveDot {
  0% {
    left: 0%;
  }
  100% {
    left: 100%;
  }
}

/* RIGHT SIDE */
.title-box {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Rotating Rectangle */
.rotating-box {
  width: 10px;
  height: 10px;
  background: #ff2b2b;
  animation: rotateBox 4.5s linear infinite;
}

/* Rotation */
@keyframes rotateBox {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Text */
.title-box h2 {
  color: white;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 600;
}
/* end animated line  */

/* Title */
.title {
  position: absolute;
  top: 45%;
  width: 100%;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: white;
  z-index: 10;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

/* ===== HERO Text Typing Animation ===== */

/* TITLE */
.hero-title {
  font-size: 56px;
  line-height: 1.15;
  font-weight: 600;
}

.hero-content {
	margin-top: 24px;
}

/* NAME */
.name {
  color: #ff2e2e;
}

/* GRADIENT TEXT */
.gradient-text {
  background: linear-gradient(90deg, #ff2e2e, #ffb347, #ff2e2e);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 4s linear infinite;
}

/* GRADIENT ANIMATION */
@keyframes gradientMove {
  to {
    background-position: 200% center;
  }
}

/* CURSOR */
.cursor {
  color: #ff2e2e;
  margin-left: 4px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

    /* Container for the social strip */
    .hero-social-strip {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      user-select: none;
      margin-top: 2rem;
    }

    /* White horizontal lines */
    .social-line {
      width: 60px;
      height: 1px;
      background: rgba(255, 255, 255, 0.25);
    }

    /* Social icons container */
    .social-icons {
      display: flex;
      gap: 0.8rem;
    }

    /* Each social button */
    .social-swap {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #111;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: none;
      transition: box-shadow 0.35s ease, background 0.35s ease;
      transform: rotate(90deg);
      border: 1px solid white;
    }

    .social-swap:hover {
      box-shadow: 0 10px 26px rgba(247, 5, 114, 0.45);
      background: linear-gradient(45deg, var(--color-primary-1), var(--color-primary-2));
    }

    /* Front and back icon layers */
    .icon-front,
    .icon-back {
      position: absolute;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* SVG styling */
    .icon-front svg,
    .icon-back svg {
      width: 20px;
      height: 20px;
      fill: white;
    }

    /* Default positions */
    .icon-front {
      transform: translateY(0);
      z-index: 2;
    }

    .icon-back {
      transform: translateY(100%);
      z-index: 1;
    }

    /* Hover animation - both slide UP */
    .social-swap:hover .icon-front {
      transform: translateY(-100%);
    }

    .social-swap:hover .icon-back {
      transform: translateY(0);
    }

/******* Hero Right Section ******/
.hero-right {
	width: 50%;
	text-align: right;
  position: relative;
}

.hero-image {
	width: 100%;
	object-fit: cover;
	border-radius: 24px 0px 150px 100px;
}
/* floating review card  */

.review-card {
	background: rgba(0, 0, 0, 0.55);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid var(--color-neutral-light);
	border-radius: 14px;
	padding: 18px 22px;
	width: fit-content;
	align-items: center;
	gap: 16px;
	transform: rotate(-6deg);
	box-shadow: 0 20px 60px rgba(53, 53, 53, 0.6);
	color: #fff;
	position: absolute;
	top: 2rem;
}
/* Avatars */
.review-avatars {
	display: flex;
	justify-content: center;
}

.review-avatars img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 2px solid #000;
	margin-left: -10px;
	object-fit: cover;
}

.review-avatars img:first-child {
  margin-left: 0;
}

/* Text */
.review-content {
	text-align: center;
	margin-top: 16px;
}

.review-text {
  font-size: 14px;
  font-family: var(--font-primary, Poppins);
  color: #eaeaea;
}

.review-text strong {
  color: #fff;
}

/* Stars */
.review-stars {
  font-size: 16px;
  letter-spacing: 1px;
  color: #f5c542; /* gold */
}


/* ========= END HERO SECTION ======== */


/* ===============================
   ABOUT SECTION
================================ */

.about-section {
	padding: 100px 0;
  margin: 50px 0px;
  background-color: var(--color-black);
}


/* LEFT */
.heading-left {
	width: 50%;
}
.about-right {
	width: 50%;
}

.about-subtitle {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(
    45deg,
    var(--color-primary-1),
    var(--color-primary-2)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-title {
  margin-top: 14px;
  font-size: 45px;
  line-height: 1.15;
  font-weight: 700;
  font-family: var(--font-primary, Poppins);
  color: var(--color-white, #fff);
}

/* RIGHT */
.about-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-secondary, Inter);
}

/* ===============================
   RESPONSIVE ABOUT
================================ */

@media (max-width: 1024px) {
  .about-container {
    gap: 3rem;
  }

  .about-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 80px 0;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-title {
    font-size: 36px;
  }

  .about-description {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 60px 0;
  }

  .about-title {
    font-size: 30px;
  }

  .about-subtitle {
    font-size: 16px;
  }

  .about-description {
    font-size: 16px;
  }
}


/** profile content **/ 

.profile-container {
  max-width: 80%;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  margin-top: 70px;
}

/* LEFT COLUMN */
.profile-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat-number {
  font-size: 70px;
	font-weight: 800;
	background: linear-gradient( 45deg, var(--color-primary-1), var(--color-primary-2) );
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
  margin: 0;
}


.stat-subtitle {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
}

.stat-description {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

/* review content for about section  */
.review-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 10px;
}
.floating-rating {
  margin-top: 10px;
  width: fit-content;
}

.rating-value {
  font-weight: 700;
  font-size: 18px;
}

.rating-text {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.rating-stars {
  letter-spacing: 2px;
  color: #f5c542;
}

/* CENTER COLUMN */
.profile-center {
  display: flex;
  justify-content: center;
}

.profile-center img {
  max-width: 100%;
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

/* RIGHT COLUMN */
.profile-subtitle {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
}

.profile-title {
  margin: 14px 0 28px;
  font-size: 40px;
  line-height: 1.2;
}

.profile-title span {
  background: linear-gradient(
    45deg,
    var(--color-primary-1),
    var(--color-primary-2)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Mission & Vision blocks */
.info-block {
	display: flex;
	gap: 14px;
	margin-bottom: 18px;
	align-items: center;
}

.info-icon {
	width: 65px;
	height: 40px;
	background: rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	border-radius: 2px;
}
.info-content h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.info-content p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}



/* ===============================
   RESPONSIVE
================================ */



/* === Common styles - same as before === */

.tech-section {
  padding: 100px 0;
  overflow: visible;
}

.orbit-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px 0px;
  justify-items: center;
  background-color: var(--color-black);
  margin-top: 50px;
  padding: 50px 30px;
  border-radius: 16px;
}

.orbit-card {
  width: 200px;
  height: 200px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1f1f2e, #0e0e14);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}

.orbit-ring {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: visible;
    border: 1px solid;
}

.ring-border {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #ffffff;
  opacity: 0.9;
  z-index: 1;
}

.tech-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}

.tech-content img {
  width: 46px;
  height: 46px;
}

.tech-content h4 {
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: 1.6px;
  color: #ffffff;
}

.orbit-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff512f, #f70572);
    box-shadow: 0 0 10px rgba(247, 5, 114, 0.9),
    0 0 22px rgba(247, 5, 114, 0.7);
    transform: translate(-50%, -50%) translateX(100px);
}
/* === Orbit dot wrapper animates rotation === */

.orbit-dot-wrapper {
  position: absolute;
  inset: 0;
  z-index: 3;
  animation: orbit-spin 8s linear infinite;
  pointer-events: none;
}

/* === Animation === */

@keyframes orbit-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* === Animation delays to offset start === */

.delay-0 {
  animation-delay: 0s;
}

.delay-1 {
  animation-delay: -1.2s; /* negative delays to offset start */
}

.delay-2 {
  animation-delay: -2.5s;
}

.delay-3 {
  animation-delay: -3.7s;
}

.delay-4 {
  animation-delay: -5s;
}

.delay-5 {
  animation-delay: -6.3s;
}

/* === Responsive adjustments === */

@media (max-width: 768px) {
  .orbit-ring {
    width: 170px;
    height: 170px;
  }

  .orbit-dot {
    transform: translate(-50%, -50%) translateX(85px);
  }
}

@media (max-width: 480px) {
  .orbit-ring {
    width: 150px;
    height: 150px;
  }

  .orbit-dot {
    transform: translate(-50%, -50%) translateX(75px);
  }
}




/* ===========================
   SERVICE SECTION CARD 
    =========================== */
    
    .services-content {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 50px;
      /* justify-content: space-between; */
    }


    .card {
      position: relative;
      width: 250px;
      padding: 36px 28px;
      background: linear-gradient(135deg, #1f1f2e, #0e0e14);
      backdrop-filter: blur(20px);
      border-radius: 4px;
      border: 1px solid rgba(255 255 255 / 0.12);
      box-shadow: 0 8px 24px rgba(0, 255, 255, 0.08);
      color: white;
      text-align: center;
      cursor: pointer;
      user-select: none;
      transition:
        box-shadow 0.3s ease,
        border-color 0.3s ease;
      perspective: 1200px;
      overflow: visible;
      will-change: transform;
    }

    .card:hover {
      /* box-shadow: 0 16px 48px rgba(0, 255, 255, 0.32); */
      border-color: var(--color-primary-1);
    }

    .card::after {
      content: '';
      position: absolute;
      top: var(--y, 50%);
      left: var(--x, 50%);
      width: 320px;
      height: 320px;
      pointer-events: none;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 72, 0, 0.24), transparent 60%);
      opacity: 0;
      transition: opacity 0.3s ease;
      filter: blur(30px);
      z-index: 0;
    }

    .card:hover::after {
      opacity: 1;
    }

    .icon {
      font-size: 48px;
      margin-bottom: 18px;
      position: relative;
      z-index: 2;
      animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    h3 {
      margin: 0 0 12px;
      font-weight: 600;
      font-size: 22px;
      position: relative;
      z-index: 2;
    }

    p {
      font-weight: 400;
      font-size: 15px;
      line-height: 1.5;
      color: rgba(255 255 255 / 0.85);
      margin: 0;
      position: relative;
      z-index: 2;
    }



/* ===============================
   DEVELOPMENT PROCESS SECTION
   ===============================   
*/
.solution_process {
	margin-top: 70px;
}

    /* Container fixed size */
  .dev-process-section {
    width: 80%;
    display: flex;
    background: #12131a;
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: 0 0 40px rgba(211, 50, 29, 0.8); */
    border: 1px solid #2e2f38;
    margin: 50px auto;
    height: 600px;
  }
    /* Left side progress with dark background */
    .progress-sidebar {
      width: 150px;
      background: #1f212a;
      color: #aaa;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 30px 20px;
      box-sizing: border-box;
      position: relative;
    }

    /* Title on left */
    .progress-sidebar h3 {
      margin: 0 0 40px 0;
      font-weight: 700;
      font-size: 20px;
      color: #d3321d;
      user-select: none;
      letter-spacing: 1.2px;
      text-transform: uppercase;
    }

    /* Circle list container */
    .circle-list {
      display: flex;
      flex-direction: column;
      gap: 30px;
      flex-grow: 1;
      justify-content: center;
      width: 100%;
      position: relative;
    }

    /* Vertical line behind circles */
    .circle-list::before {
      content: "";
      position: absolute;
      top: 15px;
      bottom: 15px;
      left: 50%;
      transform: translateX(-50%);
      width: 4px;
      background: #d3321d;
      opacity: 0.15;
      border-radius: 2px;
      z-index: 0;
      filter: drop-shadow(0 0 3px rgba(211, 50, 29, 0.6));
    }

    /* Each circle item */
    .circle-item {
      position: relative;
      z-index: 1;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      border: 3px solid #d3321d;
      background: transparent;
      margin: 0 auto;
      transition: background-color 0.5s ease, transform 0.3s ease, box-shadow 0.4s ease;
      cursor: pointer;
    }

    /* Active circle style */
    .circle-item.active {
      background-color: #d3321d;
      transform: scale(1.25);
      box-shadow: 0 0 15px #d3321d, 0 0 30px #d3321d;
    }

    /* Number inside circle */
    .circle-item::after {
      content: attr(data-step);
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #d3321d;
      font-weight: 700;
      font-size: 14px;
      user-select: none;
    }

    .circle-item.active::after {
      color: #12131a;
    }

    /* Current step / total at bottom */
    .progress-count {
      margin-top: 40px;
      font-weight: 700;
      font-size: 18px;
      user-select: none;
      letter-spacing: 1.1px;
      color: #d3321d;
    }

    /* Right side content */
    .process-text {
      width: 80%;
    }

.process-icon {
  width: 20%;
  background: black;
  text-align: center;
  height: 32%;
  padding: 14px 0px;
  border-radius: 8px;
}

.process-icon img {
	width: 60%;
	margin: auto;
}

.process-checklist li {
	list-style: none;
}
.process-checklist li i {
	color: var(--color-primary-1);
  font-size: 18px;
  margin-right: 5px;
}

    .process-content {
      flex-grow: 1;
      position: relative;
      background: #171921;
      overflow: hidden;
      border-radius: 0 12px 12px 0;
      box-shadow: inset 0 0 40px #1f212a;
    }

    /* Slides container */
    .slides-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
      will-change: transform;
    }

    /* Each slide */
      .process-slide {
        height: 600px;
        padding: 50px 39px;
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid #2e2f38;
        font-size: 24px;
        line-height: 1.5;
        color: #eee;
        user-select: none;
        gap: 50px;
        align-items: center;
      }
    .process-slide:last-child {
      border-bottom: none;
    }

    .process-slide h2 {
      margin-top: 0;
      margin-bottom: 20px;
      font-size: 3rem;
      font-weight: 800;
      color: #d3321d;
      letter-spacing: 1.5px;
      user-select: text;
    }

    /* Disable page scroll while hovering on right content */
    body.disable-scroll {
      overflow: hidden;
    }

    /* Add subtle glow on hover for circles */
    .circle-item:hover:not(.active) {
      box-shadow: 0 0 10px #d3321d55;
      transform: scale(1.1);
      cursor: pointer;
    }



    /* ======================
PRICING SECTION
====================== */

.pricing-section{
  background:#0b0b0b;
  padding:50px 20px;
  font-family: "Inter", sans-serif;
}

.pricing-container{
  margin:auto;
  display:flex;
  gap:30px;
  justify-content:center;
  flex-wrap:wrap;
}

/* ======================
CARD
====================== */

.pricing-card {
	background: linear-gradient(135deg, #1f1f2e, #0e0e14);
	padding: 40px 30px;
	text-align: center;
	transition: .35s ease;
  width: 320px;
}

/* hover lift */

.pricing-card:hover{
  transform:translateY(-8px);
  box-shadow:
  14px 14px 28px #080808,
  -14px -14px 28px #202020;
}

/* ======================
FEATURED CARD
====================== */

.featured{
  position:relative;
  width: 320px;
  box-shadow:
  12px 12px 25px #080808,
  -12px -12px 25px #1f1f1f;
  border:1px solid rgba(255,46,46,.2);
}

.badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient( 45deg, var(--color-primary-1), var(--color-primary-2));
	color: white;
	font-size: 12px;
	padding: 4px 10px;
	border-radius: 20px;
}

/* ======================
TYPOGRAPHY
====================== */

.plan-name{
  color:#fff;
  font-size:22px;
  margin-bottom:10px;
}

.price{
  font-size:42px;
  font-weight:700;
  color:#fff;
  margin-bottom:10px;
}

.plan-desc{
  color:#bbb;
  font-size:14px;
  margin-bottom:24px;
}

/* ======================
FEATURE LIST
====================== */

.features{
  list-style:none;
  padding:0;
  margin-bottom:30px;
}

.features li{
  color:#ddd;
  font-size:14px;
  padding:8px 0;
}

/* ======================
RESPONSIVE
====================== */



/* =====================
FAQ SECTION
===================== */

.faq-section {
	padding-top: 100px;
}

.faq-wrapper{
  margin:auto;
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap:60px;
  align-items:center;
}

/* =====================
LEFT FAQ
===================== */

.faq-title{
  font-size:34px;
  color:#fff;
  margin-bottom:40px;
}

.faq-item{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:10px;
  margin-bottom:14px;
  overflow:hidden;
  transition:.35s;
}

.faq-item:hover{
  box-shadow:0 0 14px rgba(255,255,255,0.05);
}

.faq-item.active{
  border-color:#ff2e2e;
  box-shadow:0 0 16px rgba(255,46,46,.35);
}

.faq-question{
  width:100%;
  padding:20px 22px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border:none;
  background:none;
  color:#fff;
  font-size:16px;
  cursor:pointer;
}

.faq-icon{
  width:18px;
  height:18px;
  position:relative;
}

.faq-icon::before,
.faq-icon::after{
  content:"";
  position:absolute;
  background:#fff;
  transition:.3s;
}

.faq-icon::before{
  width:18px;
  height:2px;
  top:8px;
}

.faq-icon::after{
  width:2px;
  height:18px;
  left:8px;
}

.faq-item.active .faq-icon::after{
  opacity:0;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease;
}

.faq-answer p{
  padding:0 22px 20px;
  color:#cfcfcf;
  line-height:1.6;
}

/* =====================
RIGHT IMAGE CARD
===================== */

.faq-image-card{
  position:relative;
  border-radius:12px;
  overflow:hidden;
}

.faq-image-card img{
  width:100%;
  height:420px;
  object-fit:cover;
  display:block;
}

.faq-image-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.8),
    rgba(0,0,0,.2)
  );
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:30px;
}

.faq-image-overlay h3{
  color:#fff;
  font-size:24px;
  margin-bottom:10px;
}

.faq-image-overlay p{
  color:#ddd;
  margin-bottom:20px;
}

.faq-cta{
  display:inline-block;
  background:#ff2e2e;
  color:#fff;
  padding:12px 20px;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.faq-cta:hover{
  background:#ff4a4a;
  transform:translateY(-2px);
}

/* =====================
RESPONSIVE
===================== */

@media (max-width:900px){

  .faq-wrapper{
    grid-template-columns:1fr;
    gap:40px;
  }

  .faq-image-card img{
    height:320px;
  }

}



/* =========================
BLOG SECTION
========================= */

.blog-section{
  background:#0b0b0b;
  padding:100px 20px;
  font-family:"Inter", sans-serif;
}

.blog-container{
  max-width:1200px;
  margin:50px auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

/* =========================
BLOG CARD
========================= */

.blog-card{
  background: linear-gradient(135deg, #1f1f2e, #0e0e14);
	backdrop-filter: blur(20px);
	border-radius: 4px;
	border: 1px solid rgba(255 255 255 / 0.12);
	box-shadow: 0 8px 24px rgba(0, 255, 255, 0.08);
  perspective: 1200px;
	overflow: visible;
	will-change: transform;
  user-select: none;
  transition: transform .35s ease, box-shadow .35s ease;
  cursor:pointer;
}


/* lift on hover */
.blog-card:hover{
  transform: translateY(-10px);
  box-shadow:0 18px 40px rgba(0,0,0,0.6);
}

/* =========================
IMAGE
========================= */

.blog-image{
  position:relative;
  overflow:hidden;
  height:190px;
}

.blog-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition: transform .4s ease;
}

/* zoom effect */
.blog-card:hover .blog-image img{
  transform: scale(1.08);
}

/* TAG */
.blog-tag{
  position:absolute;
  top:14px;
  left:14px;
  background:#ff2e2e;
  color:#fff;
  padding:6px 12px;
  font-size:12px;
  border-radius:999px;
  font-weight:600;
}

/* =========================
CONTENT
========================= */

.blog-content{
  padding:22px 22px 26px;
}

.blog-title{
  color:#fff;
  font-size:20px;
  font-weight:700;
  margin-bottom:10px;
  line-height:1.4;
  transition: color .3s ease;
}

/* title accent hover */
.blog-card:hover .blog-title{
  color:#ff2e2e;
}

.blog-excerpt{
  color:#bdbdbd;
  font-size:14px;
  line-height:1.6;
  margin-bottom:18px;
}

/* META */
.blog-meta{
  font-size:13px;
  color:#888;
  display:flex;
  gap:8px;
  margin-bottom:16px;
}

/* READ MORE */
.read-more{
  text-decoration:none;
  color:#fff;
  font-weight:600;
  font-size:14px;
  transition: color .3s ease;
}

.read-more:hover{
  color:#ff2e2e;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1024px){
  .blog-container{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:640px){
  .blog-container{
    grid-template-columns:1fr;
  }
}


/* =========================
BASE FOOTER
========================= */

.footer {
	padding: 90px 20px 30px;
	font-family: "Inter", sans-serif;
	color: #ccc;
	text-align: right;
	background: linear-gradient(1800deg, #1f1f2e, #0e0e14);
}

.footer-container{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:50px;
  align-items:start;
}

/* =========================
LEFT COLUMN
========================= */

.footer-desc {
	line-height: 1.7;
	margin-bottom: 22px;
	color: #bdbdbd;
	text-align: left;
}

.footer-contact{
  list-style:none;
  padding:0;
}

.footer-contact li {
	display: flex;
	gap: 10px;
	font-size: 14px;
	align-items: center;
	margin-bottom: 10px;
}

.ficon {
	font-size: 20px;
  color:#ff2e2e;
}



/* =========================
CENTER COLUMN
========================= */

.footer-brand{
  text-align:center;
}

.logo{
  color:#fff;
}

.tagline{
  font-size:14px;
  color:#aaa;
  margin-bottom:22px;
}

/* SUBSCRIBE FORM */

.subscribe-form {
	display: flex;
	justify-content: end;
	gap: 10px;
}

.subscribe-form input{
  background:#151515;
  border:1px solid #222;
  padding:11px 14px;
  border-radius:10px;
  color:#fff;
  outline:none;
  transition:.25s;
  width:200px;
}

.subscribe-form input:focus{
  border-color:#ff2e2e;
  box-shadow:0 0 0 1px #ff2e2e;
}

.subscribe-form button{
  background:#ff2e2e;
  border:none;
  color:#fff;
  padding:11px 18px;
  border-radius:10px;
  cursor:pointer;
  font-weight:600;
  transition:.25s;
}

.subscribe-form button:hover{
  background:#ff4747;
}

/* =========================
RIGHT COLUMN
========================= */

.footer-links h4{
  color:#fff;
  margin-bottom:16px;
}

.footer-links ul{
  list-style:none;
  padding:0;
}

.footer-links li{
  margin-bottom:12px;
}

.footer-links a{
  text-decoration:none;
  color:#bbb;
  transition:.25s;
}

.footer-links a:hover{
  color:#ff2e2e;
}

/* =========================
DIVIDER
========================= */

.footer-divider {
	height: 1px;
	background: var(--color-neutral-light);
	margin: 60px auto 25px;
	max-width: 1200px;
	opacity: 0.1;
}

/* =========================
BOTTOM BAR
========================= */

.footer-bottom{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:14px;
  color:#999;
}

.social-icons{
  display:flex;
  gap:16px;
}

.social-icons a{
  font-size:18px;
  text-decoration:none;
  color:#bbb;
  transition:.25s;
}

.social-icons a:hover{
  color:#ff2e2e;
  transform: translateY(-3px);
}

/* =========================================================
RESPONSIVE BREAKPOINTS
========================================================= */

/* ---------- Large Laptop ---------- */
@media (max-width:1200px){
  .footer-container{
    gap:40px;
  }
}

/* ---------- Laptop ---------- */
@media (max-width:992px){

  .footer-container{
    grid-template-columns: 1fr 1fr;
    text-align:center;
  }

  .footer-info{
    grid-column: span 2;
  }

}


/* =========================
SECTION
========================= */

.projects-section{
  background:#0b0b0b;
  padding:100px 20px;
  font-family:"Inter", sans-serif;
  color:#fff;
}

.projects-container{
  max-width:80%;
  margin:50px auto;
}

.section-header {
	text-align: center;
	margin-bottom: 30px;
}
/* =========================
GRID
========================= */

.projects-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

/* =========================
CARD
========================= */

.project-card{
  background: linear-gradient(135deg, #1f1f2e, #0e0e14);
	backdrop-filter: blur(20px);
	border-radius: 4px;
	border: 1px solid rgba(255 255 255 / 0.12);
	box-shadow: 0 8px 24px rgba(0, 255, 255, 0.08);
	color: white;
	text-align: center;
	cursor: pointer;
	user-select: none;
	transition: transform .5s ease, box-shadow .5s ease;
	perspective: 1200px;
	overflow: visible;
	will-change: transform;
}

/* background:#151515;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.05);
  
  cursor:pointer; */

.project-card:hover{
  transform: translateY(-12px);
  box-shadow:0 25px 50px rgba(0,0,0,0.7);
}

/* =========================
MEDIA (MASK CONTAINER)
========================= */

.project-media{
  position:relative;
  height:600px;
  overflow:hidden; /* IMPORTANT */
}

/* BOTH IMAGES */

.project-media img{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
  left:0;
  transition: transform .65s ease-out;
}

/* TOP IMAGE (VISIBLE FIRST) */

.img-top{
  transform: translateY(0);
  z-index:2;
}

/* BOTTOM IMAGE (HIDDEN BELOW) */

.img-bottom{
  transform: translateY(100%);
  z-index:1;
}

/* ===== HOVER EFFECT ===== */

.project-card:hover .img-top{
  transform: translateY(-100%);
}

.project-card:hover .img-bottom{
  transform: translateY(0);
}

/* =========================
OVERLAY
========================= */

.project-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  display:flex;
  align-items:flex-end;
  justify-content:center;
  padding-bottom:20px;
  opacity:0;
  transition:.4s ease;
  z-index:3;
}

.project-card:hover .project-overlay{
  opacity:1;
}

.view-btn{
  background:#ff2e2e;
  border:none;
  color:#fff;
  padding:10px 18px;
  border-radius:999px;
  font-weight:600;
  cursor:pointer;
  transform: translateY(20px);
  transition:.4s;
}

.project-card:hover .view-btn{
  transform: translateY(0);
  box-shadow:0 10px 25px rgba(255,46,46,0.5);
}

/* =========================
INFO
========================= */

.project-info{
  padding:20px 22px 24px;
}

.project-category{
  font-size:13px;
  color:#bbb;
  transition:.3s;
}

.project-card:hover .project-category{
  color:#ff2e2e;
}

.project-title{
  font-size:20px;
  font-weight:700;
  margin-top:6px;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width:1024px){
  .projects-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:640px){
  .projects-grid{
    grid-template-columns:1fr;
  }
}











