

/* ===== HERO SECTION ===== */
.software-hero {
    background: linear-gradient(to bottom right, #f5f5ff, #ffffff, #f5f5ff);
    padding: 30px 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    height: 60%;
}

/* LEFT TEXT */
.hero-text {
    flex: 1;
}

.hero-subtitle {
    font-size: 16px;
    color: #555;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
}

.highlight {
    color: #7b014c;
}

.hero-desc {
    margin-top: 20px;
    font-size: 18px;
    color: #555;
    max-width: 500px;
}

/* CTA BUTTON */
.hero-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #7b014c;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    border: 2px solid #7b014c;
    transition: all 0.3s ease-in-out;
}

.hero-btn:hover {
    background: #5a0138;
    border-color: #5a0138;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(123, 1, 76, 0.25);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 450px;
    height: 450px; /* fixed height for all images */
    object-fit: contain;
    transition: opacity 0.6s ease-in-out;
}


/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-image img {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 34px;
    }

    .hero-desc {
        font-size: 16px;
    }
}










.software-showcase {
  padding: 90px 0;
  background: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.showcase-content h2 {
  font-size: 42px;
  color: #333;
  margin-bottom: 20px;
}

.showcase-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

/* BUTTON */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: #7b014c;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(123, 1, 76, 0.3);
}

.btn-primary:hover {
  background: #5a0138;
  transform: translateY(-3px);
}

/* RIGHT SHOWCASE */
.showcase-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  justify-items: center;
}

/* SHOWCASE BOX */
.showcase-box {
  width: 100%;
  max-width: 240px;
  height: 230px;
  border: 1px solid #000; /* BLACK BORDER */
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

/* CENTER THIRD BOX */
.center-box {
  grid-column: 1 / -1; /* span full row */
}

/* IMAGE FIXED SIZE */
.showcase-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-boxes {
    grid-template-columns: 1fr;
  }

  .center-box {
    grid-column: auto;
  }

  .showcase-content h2 {
    font-size: 34px;
  }
}



/* SCROLL ANIMATION INITIAL STATE */
.animate-fade {
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--delay, 0ms);
}

.animate-fade.show {
  opacity: 1;
  transform: translateY(0);
}














/* =========================
   Approach Section
========================== */
/* =========================
   Approach Section
========================== */
.approach-section {
  padding: 50px 8%;
  background: linear-gradient(to bottom right, #ffffff, #f5f5ff);
}

.approach-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

/* ===== LEFT ORBIT ===== */
.approach-visual {
  position: relative;
  width: 420px;
  height: 420px;
}

/* =====================
   STATIC ORBITS
===================== */
.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1.5px dashed rgba(123, 1, 76, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-1 { width: 470px; height: 470px; }
.orbit-2 { width: 340px; height: 340px; }
.orbit-3 { width: 210px; height: 210px; }

/* =====================
   TECH ICONS
===================== */
.tech {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);

  /* 🔥 real circular motion */
  transform-origin: 0 0;
  animation: orbitMove 20s linear infinite;
}

/* Keep logo upright */
.tech img {
  width: 80px;
  animation: counterRotate 20s linear infinite;
}

/* =====================
   SAME ORBIT – EQUAL GAP
===================== */
.angular { animation-delay: 0s; }
.mysql   { animation-delay: -4s; }
.js      { animation-delay: -8s; }
.python  { animation-delay: -12s; }
.laravel { animation-delay: -16s; }

/* =====================
   CENTER
===================== */
.center-tech {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  background: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.center-tech img {
  width: 80px;
}

/* =====================
   ANIMATIONS
===================== */
@keyframes orbitMove {
  from {
    transform: rotate(0deg) translateX(190px);
  }
  to {
    transform: rotate(360deg) translateX(190px);
  }
}

@keyframes counterRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}


/* ===== RIGHT CONTENT ===== */
.approach-content h2 {
  font-size: 36px;
  margin-bottom: 35px;
  color: #7b014c;
}

.approach-block {
  margin-bottom: 30px;
}

.approach-block h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.approach-block p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

/* Animation */
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 992px) {
  .approach-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .approach-visual {
    margin: 0 auto 50px;
  }
}




/* =========================
   Scroll Fade Animation
========================== */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}






/* ===============================
   CALL TO ACTION SECTION
================================ */

/* ===============================
   CALL TO ACTION SECTION
================================ */

.cta-section {
  padding: 80px 20px;
}

/* Container */
.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 70px;
  border-radius: 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  /* Soft gradient using Elsa DevOps palette */
  background: linear-gradient(
    135deg,
    rgba(123, 1, 76, 0.08),
    rgba(123, 1, 76, 0.15)
  );

  /* Soft shadow */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

  /* Animation initial state */
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.8s ease-out;
}

/* Animation active state */
.cta-container.animate {
  opacity: 1;
  transform: scale(1);
}

/* Text */
.cta-content h2 {
  font-size: 40px;
  line-height: 1.3;
  font-weight: 550;
  color: #333;
  margin: 0;
}

/* Button */
.cta-btn {
  display: inline-block;
  padding: 14px 34px;
  background-color: #7b014c;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.8px;
  border-radius: 8px;
  text-decoration: none;

  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(123, 1, 76, 0.3);
}

.cta-btn:hover {
  background-color: #5a0138;
  box-shadow: 0 10px 25px rgba(90, 1, 56, 0.4);
  transform: translateY(-2px);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 50px 30px;
  }

  .cta-content h2 {
    font-size: 30px;
  }
}
