/*--------------------------------------------------------------
# About Section - Minimal & Clean Design
--------------------------------------------------------------*/

/* Decorative Background Container */
.about-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Minimal Curved Shapes */
.curved-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  filter: blur(40px);
  animation: floatSlow 25s ease-in-out infinite;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: rgb(229, 84, 0);
  top: -150px;
  right: -150px;
  animation-delay: 0s;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: rgb(255, 140, 0);
  bottom: -100px;
  left: -100px;
  animation-delay: 8s;
}

.shape-3 {
  width: 350px;
  height: 350px;
  background: rgb(255, 165, 0);
  top: 40%;
  right: 30%;
  animation-delay: 16s;
}

@keyframes floatSlow {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -30px);
  }
}

/* Minimal Dot Particles */
.dot-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgb(229, 84, 0);
  border-radius: 50%;
  opacity: 0.4;
  animation: dotFloat 20s ease-in-out infinite;
}

.particle-1 {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.particle-2 {
  top: 30%;
  right: 20%;
  animation-delay: 4s;
}

.particle-3 {
  top: 70%;
  left: 25%;
  animation-delay: 8s;
}

.particle-4 {
  bottom: 25%;
  right: 30%;
  animation-delay: 12s;
}

.particle-5 {
  top: 50%;
  right: 15%;
  animation-delay: 16s;
}

.particle-6 {
  bottom: 40%;
  left: 20%;
  animation-delay: 20s;
}

@keyframes dotFloat {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-40px);
    opacity: 0.7;
  }
}

/* Minimal Line Decorations */
.line-decoration {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 84, 0, 0.3), transparent);
  opacity: 0.5;
  animation: lineSlide 15s ease-in-out infinite;
}

.line-1 {
  width: 150px;
  top: 25%;
  left: 0;
  animation-delay: 0s;
}

.line-2 {
  width: 180px;
  bottom: 30%;
  right: 0;
  animation-delay: 7.5s;
}

@keyframes lineSlide {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.3;
  }
  50% {
    transform: translateX(40px);
    opacity: 0.6;
  }
}

/* Enhanced About Section Styles - scoped to home page hero only */
.index-page .about {
  overflow: hidden;
  position: relative;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.about .container {
  position: relative;
  z-index: 1;
}

/* Straight Lines Behind Image */
.image-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.straight-line {
  position: absolute;
  background: rgba(229, 84, 0, 0.35);
  opacity: 0.8;
}

/* Vertical Lines */
.line-v1 {
  width: 1px;
  height: 60%;
  top: 10%;
  left: 15%;
}

.line-v2 {
  width: 1px;
  height: 75%;
  top: 5%;
  left: 35%;
}

.line-v3 {
  width: 1px;
  height: 50%;
  top: 25%;
  left: 55%;
}

.line-v4 {
  width: 1px;
  height: 65%;
  top: 15%;
  left: 45%;
}

/* Horizontal Lines */
.line-h1 {
  width: 40%;
  height: 1px;
  top: 30%;
  left: 10%;
}

.line-h2 {
  width: 35%;
  height: 1px;
  top: 65%;
  left: 20%;
}

.line-h3 {
  width: 30%;
  height: 1px;
  top: 45%;
  left: 15%;
}

.line-h4 {
  width: 25%;
  height: 1px;
  top: 80%;
  left: 25%;
}

/* Responsive */
@media (max-width: 768px) {
  .curved-shape {
    width: 300px !important;
    height: 300px !important;
  }
  
  .dot-particle {
    width: 4px;
    height: 4px;
  }
  
  .line-decoration {
    width: 100px !important;
  }
  
  .image-lines {
    width: 100%;
  }
  
  .straight-line {
    opacity: 0.4;
  }
}

