/* =========================
   GLOBAL
========================= */
/*body {*/
/*    margin: 0;*/
/*    font-family: "Segoe UI", sans-serif;*/
/*}*/

/* =========================
   HERO SECTION
========================= */

.hero-section {
    position: relative;
    min-height:75vh;
     background: linear-gradient(to right,
          rgba(255, 255, 255, 1) 0%,
          rgba(255, 255, 255, 0.7) 40%,
          rgba(255, 255, 255, 0.3) 100%), url("../images/prototyping/hero-bg.png") center/cover no-repeat;
    overflow: hidden;
    padding: 40px ;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* LEFT CONTENT */
.badge-custom {
    background: rgba(0, 255, 255, 0.15);
    color: #6456bb;
    padding: 8px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    margin-top: 20px;
}

.hero-title span {
    color: #6456bb;
}

.hero-text {
    max-width: 480px;
    margin-top: 15px;
    opacity: 0.85;
}

/* BUTTONS */
.btn-custom {
    background: linear-gradient(90deg, #6456bb, #6456bb);
    border: none;
    padding: 12px 22px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 234, 255, 0.4);
}

.btn-outline-custom {
    padding: 12px 22px;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: #ffffff;
    color: #000;
    transform: translateY(-4px);
}

/* RIGHT CONTENT */
.hero-right {
    animation: slideFromRight 1.2s ease forwards;
    opacity: 0;
}

.right-text {
    color: #fff;
    margin-bottom: 15px; 
}

.right-text h6 {
    color: #6456bb;
}

.right-image {
    
    margin-top: 25px;
    width: 100%;
    max-width: 520px;
    border-radius: 14px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

/* =========================
   REUSABLE ANIMATIONS
========================= */
.animate-ltr {
    opacity: 0;
    animation: slideFromLeft 1s ease forwards;
}

.animate-ltr.delay-1 {
    animation-delay: 0.2s;
}

.animate-ltr.delay-2 {
    animation-delay: 0.4s;
}

.animate-ltr.delay-3 {
    animation-delay: 0.6s;
}

@keyframes slideFromLeft {
    from {
        transform: translateX(-60px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideFromRight {
    from {
        transform: translateX(80px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* =========================
   PROTOTYPING SECTION
========================= */
.prototyping-section {
    background: #ffffff;
    padding: 80px 0;
}

.proto-card {
    background: #0b0e14;
    border-radius: 14px;
    padding: 30px 25px;
    height: 100%;
    border: 1px solid #e9ecef;
    transition: all 0.35s ease;
    position: relative;
    transform: translateY(40px);
    opacity: 0;
    /* Fallback: Show immediately if JS fails */
    animation: fadeInUp 0.8s ease forwards;
}

.proto-card.show {
    transform: translateY(0);
    opacity: 1;
}

.proto-card:hover,
.proto-card.active {
    border-color: #6456bb;
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15);
    transform: translateY(-6px);
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(13, 110, 253, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background 0.3s ease;
}

.proto-card:hover .icon-box,
.proto-card.active .icon-box {
    background: #6456bb;
}

.icon-box i {
    font-size: 22px;
    color: #6456bb;
    transition: color 0.3s ease;
}

.proto-card:hover .icon-box i,
.proto-card.active .icon-box i {
    color: #ffffff;
}

.proto-card h5 {
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}
.proto-card:hover h5 {
    color: #6456bb;
}

.proto-card p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
}

.proto-card .badge {
    margin-top: 20px;
    display: inline-block;
    background: rgba(13, 110, 253, 0.1);
    color: #6456bb;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
}

/* Animation for initial load */
@keyframes fadeInUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
    .hero-right {
        margin-top: 40px;
    }

    .proto-card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .icon-box {
        width: 40px;
        height: 40px;
    }

    .icon-box i {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .proto-card {
        padding: 15px 10px;
    }
}


/* =========================
RAPID ITERATION CSS SECTION
========================= */
.iteration-section {
  background: radial-gradient(circle at top, #0e141b, #070b10);
  color: #ffffff;
  position: relative;
}

.iteration-title {
  font-size: 42px;
  font-weight: 700;
}

.iteration-subtitle {
  color: #9fb3c8;
  max-width: 480px;
  margin-top: 12px;
}

.timeline {
  position: relative;
  margin-top: 60px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 212, 255, 0.35);
}

.timeline-item h6 {
  margin-top: 16px;
  font-weight: 600;
}

.timeline-item p {
  font-size: 14px;
  color: #9fb3c8;
  margin-top: 8px;
}

.timeline-dot {
  width: 48px;
  height: 48px;
  background: #0b1218;
  border-radius: 50%;
  margin: 0 auto;
  border: 2px solid #6456bb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  position: relative;
  z-index: 1;
}

.timeline-dot i {
  color: #6456bb;
  font-size: 18px;
}

.timeline-dot::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.35);
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.35s ease;
}

.timeline-dot:hover {
  transform: scale(1.15);
}

.timeline-dot:hover::after {
  opacity: 1;
}

/* Animation */
.animate-text {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

.animate-text.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  .timeline::before {
    display: none;
  }
}

/* =========================
RAPID ITERATION CSS SECTION ENDS
========================= */

/* =========================
CTA SECTION CSS STARTS HERE 
========================= */
/* Outer background */
.cta-wrapper {
  background: #ffffff;
}

/* Inner gradient box */
.cta-box {
  background: radial-gradient(circle at left, #0e1c23, #090e14);
  border-radius: 22px;
  padding: 80px 20px;
  color: #ffffff;
}

/* Title */
.cta-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
}

.cta-title span {
  color: #7dd3fc;
}

/* Subtitle */
.cta-subtitle {
  margin-top: 18px;
  color: #a8bfd3;
  font-size: 18px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  background: #ffffff;
  color: #000;
  padding: 16px 34px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s ease;
  position: relative;
}

.cta-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* Button hover */
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(125, 211, 252, 0.35);
}

.cta-btn:hover i {
  transform: translateX(4px);
}

/* Bottom-to-top animation */
.animate-cta {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.animate-cta.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-title {
    font-size: 34px;
  }

  .cta-box {
    padding: 60px 16px;
  }
}

/* =========================
CTA SECTION CSS ENDS HERE 
========================= */

