/* UI/UX Design Section 1 */
.uiux-explanation-section {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.uiux-parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/UIUX4.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
  filter: brightness(0.7);
}

.uiux-content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 0;
}

.uiux-content {
  text-align: center;
  max-width: 900px;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.uiux-content h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 2px 15px rgba(0,0,0,0.4);
  font-weight: 700;
}

.uiux-subtitle {
  font-size: 1.5rem;
  margin-bottom: 4rem;
  color: rgba(255,255,255,0.9);
  font-weight: 300;
}

.uiux-features {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2rem;
  flex-wrap: nowrap;
}

.uiux-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 160px;
}

.uiux-feature-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(79, 209, 180, 0.15);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 2px solid rgba(79, 209, 180, 0.3);
  transition: all 0.3s ease;
}

.uiux-feature-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(79, 209, 180, 0.4);
}

.uiux-feature i {
  font-size: 1.8rem;
  color: #4fd1b4;
  animation: pulse 2s infinite;
}

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

.uiux-feature h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #4fd1b4;
  margin-bottom: 0.4rem;
  text-align: center;
}

.uiux-feature p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 768px) {
  .uiux-features {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .uiux-feature {
    max-width: 140px;
  }

  .uiux-feature-circle {
    width: 60px;
    height: 60px;
  }

  .uiux-feature i {
    font-size: 1.5rem;
  }

  .uiux-feature h3 {
    font-size: 1rem;
  }

  .uiux-feature p {
    font-size: 0.8rem;
  }
}

/* UI/UX Design Section 2 */
.uiux-info-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(32, 33, 43, 0.85), rgba(49, 38, 54, 0.85)),
    url('images/uiux5.jpg') center/cover no-repeat;
  color: #333;
  overflow: hidden;
  padding: 4rem 2rem;
}

.uiux-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.uiux-wireframe {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 30%;
  height: 60%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><rect x="0" y="0" width="100" height="100" fill="none" stroke="%234fd1b4" stroke-width="0.5" stroke-opacity="0.2"/></svg>');
  background-size: 20px 20px;
  opacity: 0.3;
}

.uiux-palette {
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: conic-gradient(
    #4fd1b4 0% 25%,
    #6a5acd 25% 50%,
    #ff6b6b 50% 75%,
    #feca57 75% 100%
  );
  filter: blur(30px);
  opacity: 0.2;
  animation: rotatePalette 20s linear infinite;
}

@keyframes rotatePalette {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.uiux-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(79, 209, 180, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 209, 180, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
}

.uiux-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(106, 90, 205, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}

.uiux-info-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.uiux-info-heading {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  font-weight: 800;
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #4fd1b4, #6a5acd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.uiux-info-text {
  font-size: 1.4rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #555;
  line-height: 1.6;
  font-weight: 400;
}

.uiux-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.uiux-device-showcase {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 400px;
  margin-bottom: 3rem;
}

.device {
  position: absolute;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15), 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255,255,255,0.3);
}

.device::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 100%);
  z-index: 1;
}

.device .screen {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: all 0.3s ease;
}

.device .screen-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(79,209,180,0.1) 0%, rgba(106,90,205,0.2) 100%);
}

/* Phone Device */
.device.phone {
  width: 130px;
  height: 240px;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%) rotate(-10deg);
  z-index: 3;
}

.device.phone .screen {
  width: 90%;
  height: 85%;
  border-radius: 8px;
}

/* Tablet Device */
.device.tablet {
  width: 200px;
  height: 280px;
  bottom: 80px;
  left: 35%;
  transform: translateX(-50%) rotate(5deg);
  z-index: 2;
}

.device.tablet .screen {
  width: 92%;
  height: 88%;
  border-radius: 6px;
}

/* Desktop Device */
.device.desktop {
  width: 320px;
  height: 200px;
  bottom: 120px;
  left: 60%;
  transform: translateX(-50%) rotate(-5deg);
  z-index: 1;
}

.device.desktop .screen {
  width: 94%;
  height: 82%;
  border-radius: 4px;
}

.device:hover {
  transform: translate(-50%, -15px) rotate(0deg) !important;
  z-index: 10 !important;
  box-shadow: 0 25px 50px rgba(0,0,0,0.2), 0 10px 20px rgba(0,0,0,0.15);
}

.device:hover .screen {
  transform: translate(-50%, -50%) scale(1.02);
}

.uiux-process-steps {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  max-width: 900px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 160px;
  padding: 1.5rem 1rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #4fd1b4, #6a5acd);
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.step-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 3px 5px rgba(0,0,0,0.1));
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4fd1b4, #6a5acd);
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  box-shadow: 0 4px 10px rgba(79, 209, 180, 0.3);
}

.step-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c3e50;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #4fd1b4, #6a5acd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.step-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
  margin-top: 0.3rem;
}

@media (max-width: 768px) {
  .uiux-info-heading {
    font-size: 2.4rem;
  }

  .uiux-info-text {
    font-size: 1.1rem;
  }

  .uiux-device-showcase {
    height: 300px;
  }

  .device.phone {
    width: 100px;
    height: 185px;
  }

  .device.tablet {
    width: 150px;
    height: 210px;
    left: 30%;
  }

  .device.desktop {
    width: 240px;
    height: 150px;
    left: 65%;
  }

  .uiux-process-steps {
    gap: 1.5rem;
  }

  .process-step {
    width: 130px;
    padding: 1rem 0.5rem;
  }

  .step-icon {
    width: 50px;
    height: 50px;
  }

  .step-name {
    font-size: 1rem;
  }

  .step-desc {
    font-size: 0.8rem;
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 260px;
  padding: 2rem 1.5rem;
  background: #121212;
  border-radius: 15px;
  box-shadow: inset 0 0 10px rgba(255,255,255,0.05), 0 10px 30px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
  color: #fff;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: inset 0 0 10px rgba(255,255,255,0.1), 0 15px 40px rgba(0,0,0,0.6);
}

.step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(79, 209, 180, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.step-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(1.5);
}

.step-number {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: #4fd1b4;
  border-radius: 20px;
  color: #121212;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.step-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #fff;
  text-align: center;
}

.step-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
  line-height: 1.6;
}


/* UI/UX Design Section 2 - Updated Version */
.uiux-info-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #121212; /* Solid dark background */
  color: white;
  overflow: hidden;
  padding: 4rem 2rem;
}

.uiux-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Remove the grid and wireframe elements */
.uiux-wireframe, 
.uiux-grid, 
.uiux-dots {
  display: none;
}

/* Keep the palette animation but make it more subtle */
.uiux-palette {
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: conic-gradient(
    rgba(79, 209, 180, 0.3) 0% 25%,
    rgba(106, 90, 205, 0.3) 25% 50%,
    rgba(255, 107, 107, 0.3) 50% 75%,
    rgba(254, 202, 87, 0.3) 75% 100%
  );
  filter: blur(40px);
  opacity: 0.15;
  animation: rotatePalette 20s linear infinite;
}

.uiux-info-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.uiux-info-heading {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #4fd1b4, #6a5acd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.uiux-info-text {
  font-size: 1.4rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  font-weight: 400;
}

/* Rest of your existing device showcase and process steps styles remain the same */







/* Updated UI/UX Process Steps */
.uiux-process-steps {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 220px; /* Reduced width */
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(79, 209, 180, 0.2);
  backdrop-filter: blur(5px);
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #4fd1b4, #6a5acd);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(79, 209, 180, 0.4);
}

.step-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.2);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4fd1b4, #6a5acd);
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.step-name {
  font-size: 1rem;
  font-weight: 600;
  color: #4fd1b4;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  text-align: center;
}

.step-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  text-align: center;
  margin-top: 0.3rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .uiux-process-steps {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .process-step {
    width: 200px;
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .uiux-process-steps {
    gap: 1rem;
  }
  
  .process-step {
    width: 160px;
    padding: 1rem 0.8rem;
  }
  
  .step-icon {
    width: 40px;
    height: 40px;
  }
  
  .step-name {
    font-size: 0.9rem;
  }
  
  .step-desc {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .process-step {
    width: 140px;
  }
}


/* UI/UX Design Section 2 - Updated with Gradient and Background Image */
.uiux-info-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
    url('images/web3.jpg') center/cover no-repeat;
  color: white;
  overflow: hidden;
  padding: 4rem 2rem;
}

.uiux-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
    url('../images/UiUx.avif') center/cover no-repeat;
}

/* Remove the grid and wireframe elements */
.uiux-wireframe, 
.uiux-grid, 
.uiux-dots {
  display: none;
}

/* Keep the palette animation but make it more subtle */
.uiux-palette {
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: conic-gradient(
    rgba(79, 209, 180, 0.3) 0% 25%,
    rgba(106, 90, 205, 0.3) 25% 50%,
    rgba(255, 107, 107, 0.3) 50% 75%,
    rgba(254, 202, 87, 0.3) 75% 100%
  );
  filter: blur(40px);
  opacity: 0.15;
  animation: rotatePalette 20s linear infinite;
}

/* Rest of your existing styles remain unchanged */
.uiux-info-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.uiux-info-heading {
  font-size: 3.0rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #00f0ff, #00f0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.uiux-info-text {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  font-weight: 400;
}

/* All other existing styles for devices, process steps, etc. remain the same */


/* Enhanced Device Showcase */
.uiux-device-showcase {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 400px;
  margin: 3rem auto;
  perspective: 1000px;
}

.device {
  position: absolute;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
}

.device-frame {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 
              0 5px 15px rgba(0,0,0,0.2),
              inset 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
}

.device-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
  z-index: 2;
}

.device .screen {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: all 0.3s ease;
}

.device .screen-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(79,209,180,0.1) 0%, rgba(106,90,205,0.2) 100%);
}

/* Phone Device */
.device.phone {
  width: 140px;
  height: 260px;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%) rotateY(-15deg) rotateZ(-10deg);
  z-index: 3;
}

.device.phone .screen {
  width: 90%;
  height: 85%;
  border-radius: 8px;
}

.device.phone .device-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 16px;
  background: #1a1a1a;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  z-index: 3;
}

.device.phone .device-button {
  position: absolute;
  right: -6px;
  top: 30%;
  width: 4px;
  height: 40px;
  background: #333;
  border-radius: 2px;
}

/* Tablet Device */
.device.tablet {
  width: 220px;
  height: 300px;
  bottom: 80px;
  left: 35%;
  transform: translateX(-50%) rotateY(10deg) rotateZ(5deg);
  z-index: 2;
}

.device.tablet .screen {
  width: 92%;
  height: 88%;
  border-radius: 6px;
}

.device.tablet .device-button {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: #333;
  border-radius: 2px;
}

/* Desktop Device */
.device.desktop {
  width: 340px;
  height: 220px;
  bottom: 120px;
  left: 60%;
  transform: translateX(-50%) rotateY(-10deg) rotateZ(-5deg);
  z-index: 1;
}

.device.desktop .screen {
  width: 94%;
  height: 82%;
  border-radius: 4px;
}

.device.desktop .device-stand {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 40px;
  background: linear-gradient(to bottom, #2a2a2a, #1a1a1a);
  clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
}

.device.desktop .device-keyboard {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 20px;
  background: #1a1a1a;
  border-radius: 2px;
}

.device:hover {
  transform: translate(-50%, -15px) rotateY(0deg) rotateZ(0deg) !important;
  z-index: 10 !important;
  box-shadow: 0 25px 50px rgba(0,0,0,0.4), 0 10px 20px rgba(0,0,0,0.3);
}

.device:hover .screen {
  transform: translate(-50%, -50%) scale(1.02);
}

/* Floating App Icons */
.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.app-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(79, 209, 180, 0.15);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4fd1b4;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  animation: float 6s ease-in-out infinite;
  animation-delay: var(--delay);
  opacity: 0.8;
  border: 1px solid rgba(79, 209, 180, 0.3);
}

.app-icon:nth-child(1) { top: 20%; left: 25%; }
.app-icon:nth-child(2) { top: 60%; left: 20%; }
.app-icon:nth-child(3) { top: 30%; left: 75%; }
.app-icon:nth-child(4) { top: 70%; left: 70%; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .uiux-device-showcase {
    height: 300px;
  }
  
  .device.phone {
    width: 110px;
    height: 200px;
  }
  
  .device.tablet {
    width: 180px;
    height: 240px;
    left: 30%;
  }
  
  .device.desktop {
    width: 260px;
    height: 170px;
    left: 65%;
  }
  
  .app-icon {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .uiux-device-showcase {
    height: 350px;
  }
  
  .device.phone {
    width: 90px;
    height: 160px;
  }
  
  .device.tablet {
    width: 140px;
    height: 190px;
  }
  
  .device.desktop {
    width: 200px;
    height: 130px;
  }
  
  .floating-icons {
    display: none;
  }
}





/* UI/UX Design Section 1 - Updated Feature Sizes */
.uiux-features {
  display: flex;
  justify-content: center;
  gap: 4rem; /* Increased gap to match ML section */
  margin-top: 2rem;
  flex-wrap: wrap;
}

.uiux-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px; /* Increased max-width to match ML */
}

.uiux-feature-circle {
  width: 100px; /* Increased size to match ML */
  height: 100px; /* Increased size to match ML */
  border-radius: 50%;
  background: rgba(79, 209, 180, 0.15);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem; /* Increased margin to match ML */
  border: 2px solid rgba(79, 209, 180, 0.4); /* Thicker border to match ML */
  transition: all 0.3s ease;
}

.uiux-feature-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(79, 209, 180, 0.4); /* Stronger shadow to match ML */
}

.uiux-feature i {
  font-size: 2.8rem; /* Increased icon size to match ML */
  color: #4fd1b4;
}

.uiux-feature h3 {
  font-size: 1.5rem; /* Increased font size to match ML */
  font-weight: 600;
  color: white; /* Changed to white to match ML */
  margin-bottom: 0.5rem;
}

.uiux-feature p {
  font-size: 1rem; /* Increased font size to match ML */
  color: rgba(255,255,255,0.8); /* Lighter text to match ML */
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .uiux-features {
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
  }

  .uiux-feature-circle {
    width: 80px;
    height: 80px;
  }

  .uiux-feature i {
    font-size: 2rem;
  }
}




/* General device style */
.device {
  position: absolute;
  background: linear-gradient(145deg, #1c1c1c, #121212);
  border-radius: 20px;
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.5),
    0 0 15px rgba(79, 209, 180, 0.25);
  overflow: hidden;
  transition: all 0.4s ease;
  transform-style: preserve-3d;
  border: 1px solid rgba(255,255,255,0.05);
}

/* Glossy glass overlay */
.device::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

/* Screen */
.device .screen {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 92%;
  height: 90%;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Neon glow on hover */
.device:hover {
  box-shadow:
    0 30px 60px rgba(0,0,0,0.6),
    0 0 25px rgba(79, 209, 180, 0.5);
  transform: translateY(-15px) rotateY(0deg) rotateZ(0deg);
  z-index: 10;
}

.device:hover .screen {
  transform: translate(-50%, -50%) scale(1.03);
}

/* Phone specific */
.device.phone {
  width: 140px;
  height: 270px;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%) rotateY(-12deg) rotateZ(-8deg);
  border-radius: 40px;
}

.device.phone .screen {
  border-radius: 30px;
}

/* Notch for phone */
.device.phone::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 16px;
  background: #121212;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  z-index: 3;
}

/* Tablet specific */
.device.tablet {
  width: 220px;
  height: 320px;
  bottom: 80px;
  left: 35%;
  transform: translateX(-50%) rotateY(8deg) rotateZ(5deg);
  border-radius: 30px;
}

.device.tablet .screen {
  border-radius: 20px;
}

/* Tablet top button */
.device.tablet::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: #2a2a2a;
  border-radius: 2px;
}

/* Desktop specific */
.device.desktop {
  width: 360px;
  height: 220px;
  bottom: 120px;
  left: 60%;
  transform: translateX(-50%) rotateY(-8deg) rotateZ(-5deg);
  border-radius: 20px;
}

.device.desktop .screen {
  border-radius: 12px;
}

/* Desktop stand */
.device.desktop::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 40px;
  background: linear-gradient(to bottom, #333, #111);
  clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
  border-radius: 5px;
}

/* Desktop keyboard */
.device.desktop .device-keyboard {
  position: absolute;
  bottom: -90px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 20px;
  background: #1a1a1a;
  border-radius: 2px;
  box-shadow: inset 0 0 5px rgba(255,255,255,0.05);
}





 /* x ---------------------------------- x ---------------------------------- x */
/* UIIIIIIII / UXXXXXXXX */
 /* x ---------------------------------- x ---------------------------------- x */
.uiux-explanation-section {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.uiux-parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/ui\ ux.png'); /* Update with your image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
  filter: brightness(0.7);
}

.uiux-content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8));
  z-index: 0;
}

.uiux-content {
  text-align: center;
  max-width: 900px;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.uiux-content h2 {
  font-size: 3.0rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
  font-weight: 700;
}

.uiux-subtitle {
  font-size: 1.3rem;
  margin-bottom: 4rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

.uiux-features {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.uiux-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
}

.uiux-feature-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(79, 209, 180, 0.15);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(79, 209, 180, 0.4);
  transition: all 0.3s ease;
}

.uiux-feature-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(79, 209, 180, 0.4);
}

.uiux-feature i {
  font-size: 2.8rem;
  color: #4fd1b4;
}

.uiux-feature h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.uiux-feature p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

/* Pulse Animation */
.pulse {
  animation: pulseEffect 2s infinite;
}

@keyframes pulseEffect {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
  .uiux-explanation-section {
    height: auto;
    padding: 4rem 0;
  }

  .uiux-content h2 {
    font-size: 2.2rem;
  }

  .uiux-subtitle {
    font-size: 1.0rem;
    margin-bottom: 3rem;
  }

  .uiux-features {
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
  }

  .uiux-feature-circle {
    width: 80px;
    height: 80px;
  }

  .uiux-feature i {
    font-size: 2rem;
  }
}




@media (max-width: 768px) {
  .uiux-info-heading {
    font-size: 2.2rem;
  }

  .uiux-info-text {
    font-size: 1.0rem;
    margin-bottom: 3rem;
  }
}