

.btn-primary {
    background: linear-gradient(45deg, #a8dadc, #f8d7da);
}

/* Header Styles */
header {
background: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(15px);
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
transition: all 0.3s ease;
}

/* Why Choose Us Section */
.feature-icon {
    background: linear-gradient(45deg, #a8dadc, #f8d7da);
}


/*Services Carousel*/

.service-icon {
  background: linear-gradient(45deg, #a8dadc, #f8d7da);
  box-shadow: 0 10px 30px rgba(99, 141, 214, 0.3);
}

/* Why Choose Us Section */
.why-choose {
  background: transparent;
  padding: 3rem 15px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
  padding: 0 15px;
}

.feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.feature-item h4 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin-bottom: 1rem;
  color: #2c3e50;
}

.feature-item p {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.6;
  color: #7a7a7a;
}



