/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f9f6ff;
  color: #2b1d52;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  width: 90%;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6rem 0;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
  min-width: 320px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
  background: linear-gradient(90deg, #240843, #5A2D82, #7D4BB1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sub-text {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #444;
}

.features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.features li {
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

/* Buttons */
.buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 1rem 1.8rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

/* Primary Button */
.btn.primary {
  background: linear-gradient(90deg, #240843, #5A2D82, #7D4BB1);
  color: #fff;
}

.btn.primary:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #7D4BB1, #5A2D82, #240843);
}

/* Outline Button */
.btn.outline {
  border: 2px solid #5A2D82;
  color: #5A2D82;
  background: transparent;
}

.btn.outline:hover {
  background: linear-gradient(90deg, #240843, #5A2D82);
  color: #fff;
}

.note {
  font-size: 0.95rem;
  color: #666;
  margin-top: 0.5rem;
}

/* Hero Image */
.hero-image {
  flex: 1;
  text-align: center;
  min-width: 280px;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  animation: fadeIn 1.2s ease-in-out;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== Responsive Hero ========== */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .sub-text {
    font-size: 1rem;
  }

  /* ✅ Center buttons on tablet/mobile */
  .buttons {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .buttons {
    flex-direction: column;
    align-items: center; /* ✅ perfect center alignment on mobile */
  }

  .btn {
    width: 80%;
    text-align: center;
  }
}


/* Transform Section */
.transform-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
}

.transform-card {
  max-width: 1320px;
  width: 100%;
  text-align: center;
  background: #F9F6FF;
  padding: 3rem 2rem;
  border: 2px solid #5A2D82;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.transform-card h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #240843, #5A2D82, #7D4BB1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.transform-card p {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Learn More Button */
.btn-learn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid #5A2D82;
  border-radius: 50px;
  text-decoration: none;
  color: #5A2D82;
  transition: all 0.3s ease;
}

.btn-learn:hover {
  background: linear-gradient(90deg, #240843, #5A2D82);
  color: #fff;
  transform: scale(1.05);
}

/* Cards Section */
.talensor-section {
  max-width: 1320px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

.talensor-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #240843, #5A2D82, #7D4BB1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.talensor-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
}

.talensor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.talensor-card {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.talensor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.talensor-icon {
  width: 55px;
  height: 55px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, #240843, #5A2D82, #7D4BB1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.talensor-icon svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
}

/* Tablet: 2 per row */
@media (max-width: 992px) {
  .talensor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 per row */
@media (max-width: 600px) {
  .talensor-grid {
    grid-template-columns: 1fr;
  }
}

/* Simple Section */
.talensor-job-section {
  max-width: 1320px;
  margin: auto;
  padding: 80px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
  gap: 40px;
}

.talensor-job-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.talensor-job-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #240843, #5A2D82, #7D4BB1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.talensor-job-content p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

.talensor-btn {
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #240843, #5A2D82, #7D4BB1);
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.talensor-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #7D4BB1, #5A2D82, #240843);
  opacity: 0.95;
}

/* CTA */
.cta {
  max-width: 1320px;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #240843, #5A2D82, #7D4BB1);
  color: #fff;
  border-radius: 15px;
  margin: 60px auto;
}

.btn-light {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  border-radius: 8px;
  background: #fff;
  color: #240843;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn-light:hover {
  background: #ddd;
}
