/* 🚀 ULTRA MODERN ABOUT SECTION - WOW FACTOR! 🚀 */

.tj-about-ultra-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  background: #0a0a0a;
}

.about-ultra-container {
  position: relative;
  z-index: 1;
}

/* ✨ ANIMATED MESH GRADIENT BACKGROUND ✨ */
.mesh-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(at 27% 37%, hsla(215, 98%, 61%, 0.15) 0px, transparent 50%),
    radial-gradient(at 97% 21%, hsla(125, 98%, 72%, 0.1) 0px, transparent 50%),
    radial-gradient(at 52% 99%, hsla(354, 98%, 61%, 0.15) 0px, transparent 50%),
    radial-gradient(at 10% 29%, hsla(256, 96%, 67%, 0.1) 0px, transparent 50%),
    radial-gradient(at 97% 96%, hsla(38, 60%, 74%, 0.1) 0px, transparent 50%),
    radial-gradient(at 33% 50%, hsla(222, 67%, 73%, 0.1) 0px, transparent 50%),
    radial-gradient(at 79% 53%, hsla(343, 68%, 79%, 0.1) 0px, transparent 50%);
  animation: mesh-animation 20s ease infinite;
  z-index: 0;
}

@keyframes mesh-animation {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* 🌟 FLOATING ORBS ���� */
.floating-orbs {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: float-orb 15s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #E9562D 0%, transparent 70%);
  top: 10%;
  left: 5%;
  animation-duration: 18s;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #FF6B3D 0%, transparent 70%);
  top: 50%;
  right: 10%;
  animation-duration: 22s;
  animation-delay: 5s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #667eea 0%, transparent 70%);
  bottom: 15%;
  left: 50%;
  animation-duration: 20s;
  animation-delay: 10s;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -80px) scale(1.2); }
  66% { transform: translate(-30px, 60px) scale(0.9); }
}

/* 📍 SECTION HEADER WITH MAGNETIC BADGE 📍 */
.about-ultra-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.ultra-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(233, 86, 45, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(233, 86, 45, 0.3);
  border-radius: 50px;
  padding: 12px 28px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.badge-dot {
  width: 10px;
  height: 10px;
  background: #E9562D;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 15px #E9562D;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.badge-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #E9562D;
  text-transform: uppercase;
}

.badge-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(233, 86, 45, 0.4), transparent);
  animation: badge-shine 3s ease-in-out infinite;
}

@keyframes badge-shine {
  0% { left: -100%; }
  100% { left: 200%; }
}

.ultra-title {
  font-size: 62px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
}

.title-line {
  display: block;
  color: #ffffff;
  margin-bottom: 10px;
}

.title-highlight {
  display: block;
  background: linear-gradient(135deg, #E9562D 0%, #FF6B3D 50%, #E9562D 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ⏱️ ANIMATED TIMELINE ⏱️ */
.timeline-wrapper {
  position: relative;
  padding: 40px 0;
  margin-bottom: 50px;
}

.timeline-track {
  position: absolute;
  left: 30px;
  top: 60px;
  bottom: 60px;
  width: 3px;
  background: linear-gradient(180deg, 
    transparent 0%,
    rgba(233, 86, 45, 0.3) 10%,
    rgba(233, 86, 45, 0.6) 50%,
    #E9562D 100%
  );
  border-radius: 10px;
}

.timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 50px;
  opacity: 0.6;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-item.active {
  opacity: 1;
}

.timeline-item:hover {
  opacity: 1;
  transform: translateX(10px);
}

.timeline-dot {
  position: absolute;
  left: 22px;
  top: 0;
  width: 18px;
  height: 18px;
  background: #1a1a1a;
  border: 3px solid rgba(233, 86, 45, 0.5);
  border-radius: 50%;
  transition: all 0.4s ease;
  z-index: 2;
}

.timeline-item.active .timeline-dot {
  background: #E9562D;
  border-color: #E9562D;
  box-shadow: 0 0 20px #E9562D, 0 0 40px rgba(233, 86, 45, 0.5);
  animation: pulse-timeline 2s ease-in-out infinite;
}

@keyframes pulse-timeline {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.timeline-item:hover .timeline-dot {
  border-color: #E9562D;
  background: #E9562D;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 25px;
  transition: all 0.4s ease;
}

.timeline-item:hover .timeline-content {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(233, 86, 45, 0.3);
  box-shadow: 0 10px 30px rgba(233, 86, 45, 0.15);
}

.timeline-content .year {
  font-size: 14px;
  font-weight: 700;
  color: #E9562D;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.timeline-content h4 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
}

.timeline-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6;
}

/* 📊 CIRCULAR PROGRESS STATS 📊 */
.stats-grid-ultra {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.stat-ultra {
  text-align: center;
}

.stat-circle {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 15px;
}

.circle-svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 8;
}

.circle-progress {
  fill: none;
  stroke: url(#gradient);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  animation: circle-fill 2s ease-out forwards;
  filter: drop-shadow(0 0 10px rgba(233, 86, 45, 0.5));
}

@keyframes circle-fill {
  to {
    stroke-dashoffset: 0;
  }
}

.stat-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 26px;
  font-weight: 800;
  color: #E9562D;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 🎴 3D INTERACTIVE CARDS GRID 🎴 */
.cards-3d-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  perspective: 1500px;
}

.card-3d {
  position: relative;
  transform-style: preserve-3d;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card-3d:hover {
  transform: translateY(-10px) rotateX(5deg);
}

.card-3d-inner {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 35px 30px;
  overflow: hidden;
  transition: all 0.5s ease;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.card-3d:hover .card-3d-inner {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(233, 86, 45, 0.4);
  box-shadow: 
    0 20px 60px rgba(233, 86, 45, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Card Glow Effect */
.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(233, 86, 45, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.card-3d:hover .card-glow {
  opacity: 1;
  animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Icon Wrapper with Float Animation */
.card-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #E9562D 0%, #FF6B3D 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 
    0 10px 30px rgba(233, 86, 45, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.card-3d:hover .card-icon-wrapper {
  transform: translateY(-10px) rotate(10deg) scale(1.1);
  box-shadow: 
    0 20px 50px rgba(233, 86, 45, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.icon-float {
  font-size: 32px;
  color: #ffffff;
  animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.card-3d h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 15px 0;
  line-height: 1.3;
}

.card-3d p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

/* Tech Badge */
.card-tech-badge {
  display: inline-block;
  background: rgba(233, 86, 45, 0.15);
  border: 1px solid rgba(233, 86, 45, 0.3);
  color: #E9562D;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-top: auto;
  transition: all 0.3s ease;
}

.card-3d:hover .card-tech-badge {
  background: rgba(233, 86, 45, 0.25);
  border-color: #E9562D;
  box-shadow: 0 0 15px rgba(233, 86, 45, 0.3);
}

/* 📱 RESPONSIVE DESIGN 📱 */
@media (max-width: 1199px) {
  .ultra-title {
    font-size: 52px;
  }
  
  .stats-grid-ultra {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .stat-circle {
    width: 100px;
    height: 100px;
  }
  
  .stat-value {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .tj-about-ultra-section {
    padding: 100px 0;
  }
  
  .ultra-title {
    font-size: 42px;
  }
  
  .about-ultra-header {
    margin-bottom: 60px;
  }
  
  .timeline-wrapper {
    margin-bottom: 40px;
  }
  
  .stats-grid-ultra {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 30px;
  }
  
  .cards-3d-grid {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .tj-about-ultra-section {
    padding: 80px 0;
  }
  
  .ultra-title {
    font-size: 36px;
  }
  
  .cards-3d-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stats-grid-ultra {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .timeline-item {
    padding-left: 70px;
  }
  
  .card-3d-inner {
    min-height: auto;
  }
}

@media (max-width: 575px) {
  .ultra-title {
    font-size: 30px;
  }
  
  .ultra-badge {
    padding: 10px 20px;
  }
  
  .badge-text {
    font-size: 11px;
  }
  
  .timeline-track {
    left: 25px;
  }
  
  .timeline-dot {
    left: 18px;
  }
  
  .timeline-item {
    padding-left: 60px;
  }
}

/* SVG Gradient Definition (Add this to your HTML or inline) */
svg defs {
  display: none;
}
