/* Custom Styles */
.text-gradient {
  background: linear-gradient(45deg, #2196F3, #00BCD4);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-shapes .shape {
  position: absolute;
  background:rgb(13, 68, 234);
  border-radius: 50%;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
}

.shape-3 {
  width: 150px;
  height: 150px;
  bottom: 50%;
  right: 10%;
}

.hover-lift {
  transition: transform 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
}

.bg-primary-soft {
  background-color: rgba(33, 150, 243, 0.1);
  color: #2196F3;
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: white;
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.experience-badge .number {
  font-size: 24px;
  font-weight: bold;
  color: #2196F3;
  display: block;
}

.experience-badge .text {
  font-size: 14px;
  color: #666;
}

.contact-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(33, 150, 243, 0.1);
  border-radius: 50%;
}

.form-control {
  border: 1px solid #e0e0e0;
  padding: 12px 20px;
}

.form-control:focus {
  border-color: #2196F3;
  box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
}
