.elementor-1484 .elementor-element.elementor-element-6c6c50b6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-2596c1c */.projects-section {
  padding: 80px 5%;
  background: #ffffff;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  position: relative;
}

.projects-container {
  max-width: 1200px;
  margin: 0 auto;
}

.projects-subtitle {
  color: #0099cc;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.projects-title {
  font-size: 32px;
  font-weight: bold;
  color: #111;
  margin-bottom: 15px;
}

.projects-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Slider */
.projects-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
  scroll-behavior: smooth;
  padding-bottom: 20px;
}

.project-card {
  flex: 0 0 300px;
  background: #f9f9f9;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  scroll-snap-align: start;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,153,204,0.25);
}

.project-icon {
  font-size: 40px;
  color: #0099cc;
  margin-bottom: 15px;
}

.project-title {
  font-size: 20px;
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
}

.project-desc {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

.project-btn {
  display: inline-block;
  padding: 10px 24px;
  background: #0099cc;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 0 15px rgba(0,153,204,0.6);
  animation: projectPulse 2s infinite;
}

.project-btn:hover {
  background: #0077aa;
  box-shadow: 0 0 25px rgba(0,153,204,0.8), 0 0 40px rgba(0,153,204,0.5);
}

@keyframes projectPulse {
  0% { box-shadow: 0 0 10px rgba(0,153,204,0.6); }
  50% { box-shadow: 0 0 25px rgba(0,153,204,0.9), 0 0 40px rgba(0,153,204,0.5); }
  100% { box-shadow: 0 0 10px rgba(0,153,204,0.6); }
}

/* Slider Buttons */
.slider-controls {
  margin-top: 20px;
}

.slider-btn {
  background: #0099cc;
  color: #fff;
  border: none;
  padding: 10px 18px;
  margin: 0 8px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.3s ease;
}

.slider-btn:hover {
  background: #0077aa;
}/* End custom CSS */