/* New Services Section Style */
.rbt-service-area {
  background: linear-gradient(rgb(255, 255, 255) 0%, rgb(249 184 27 / 50%) 100%);
}

.rbt-service-area .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 110px;
}

/* Left Content */
.rbt-service-area .left-content {
  flex: 1 1 350px;
}
.rbt-service-area .glass-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  text-align: left;
  overflow: hidden;
  position: relative;
  max-width: 600px;
  padding: 30px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.rbt-service-area .fade-slide {
  animation: fadeSlide 0.7s ease forwards, scaleUp 0.6s ease;
}

@keyframes fadeSlide {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes scaleUp {
  from { transform: scale(0.97); }
  to   { transform: scale(1); }
}

/* Icon animation */
.rbt-service-area .icon-anim {
  animation: bounceIcon 0.7s ease;
}
@keyframes bounceIcon {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.2) rotate(10deg); }
}

.rbt-service-area .left-content h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}
.rbt-service-area .left-content p {
  font-size: 1.7rem;
  color: #555;
  line-height: 1.6;
}
.rbt-service-area .left-content a {
  font-size: 1.7rem;
}

.rbt-service-area .icon-wrapper img {
  width: 60px;
  height: 60px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

.rbt-service-area .section-label {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #f9b81b;
  text-transform: uppercase;
}

.rbt-service-area.in-view .section-label {
  animation: fadeInDown 1s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Right Network */
.rbt-service-area .network-container {
  flex: 1 1 350px;
  position: relative;
  aspect-ratio: 1/1;
  max-width: 500px;
  min-width: 300px;
  margin: auto;
}
.rbt-service-area .center-logo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 50%;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.rbt-service-area.in-view .center-logo {
  opacity: 1;
}
.rbt-service-area .center-logo img {
  width: 80px;
  height: auto;
  animation: none;
}
.rbt-service-area.in-view .center-logo img {
  animation: spin 3s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.rbt-service-area .node {
  position: absolute;
  background: #fff;
  border-radius: 15px;
  padding: 10px 15px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
  cursor: pointer;
  width: 130px;
}
.rbt-service-area .node img {
  width: 40px;
  margin-bottom: 6px;
}
.node.show {
  opacity: 1;
  transform: scale(1);
}
.node.active {
  background: linear-gradient(135deg,#f9b81b,#ffcf47);
  color: #fff;
  box-shadow: 0 12px 30px rgba(249,184,27,0.6);
  border: 2px solid #fff;
  transform: scale(1.15);
  transition: all 0.4s ease;
}
.rbt-service-area .node:hover {
  transform: scale(1.15);
  box-shadow: 0 10px 25px rgba(249,184,27,0.4);
}

/* Node positions */
.node.software { top: calc(50% - 40% * cos(0deg)); left: calc(50% + 40% * sin(0deg)); transform: translate(-50%, -50%); }
.node.social   { top: calc(50% - 40% * cos(60deg)); left: calc(50% + 40% * sin(60deg)); transform: translate(-50%, -50%); }
.node.content  { top: calc(50% - 40% * cos(120deg)); left: calc(50% + 40% * sin(120deg)); transform: translate(-50%, -50%); }
.node.media    { top: calc(50% - 40% * cos(180deg)); left: calc(50% + 40% * sin(180deg)); transform: translate(-50%, -50%); }
.node.pr       { top: calc(50% - 40% * cos(240deg)); left: calc(50% + 40% * sin(240deg)); transform: translate(-50%, -50%); }
.node.motion   { top: calc(50% - 40% * cos(300deg)); left: calc(50% + 40% * sin(300deg)); transform: translate(-50%, -50%); }

/* SVG lines */
.rbt-service-area svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}
.rbt-service-area line {
  stroke: #f9b81b;
  stroke-width: 2;
}
.rbt-service-area line.show {
  animation: drawLine 1.5s ease-in-out forwards, glowLine 3s linear infinite 1.5s;
}
@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes glowLine {
  0%,100% { stroke-opacity: 0.5; }
  50% { stroke-opacity: 1; }
}

/* Mobile */
@media (max-width: 768px) {
  .rbt-service-area .left-content h2 { font-size: 1.6rem; }
  .rbt-service-area .left-content p { font-size: 1rem; }
  .rbt-service-area .node { width: 95px; font-size: 12px; }
  .rbt-service-area .node img { width: 28px; }
}
@media (max-width: 480px) {
  .rbt-service-area .section { flex-direction: column; }
  .rbt-service-area .network-container { max-width: 350px; min-width: 260px; }
  .rbt-service-area .node { width: 85px; font-size: 11px; padding: 8px; }
  .rbt-service-area .node img { width: 24px; }
}