:root {
  --primary-color: #3498db;
  --secondary-color: #2ecc71;
  --accent-color: #140eb8;
  --text-dark: #2c3e50;
  --text-light: #ffffff;
  --background-light: #f4f6f7;
}

body {
  font-family: 'Helvetica', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  padding-top: 56px;
  background-color: var(--background-light);
}



.navbar {
  background-color: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

section {
  scroll-margin-top: 56px;
  padding: 6rem 0;
}

.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.card-body {
  padding: 2rem;
}

img.rounded-circle {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border: 4px solid var(--primary-color);
}

/* Animated Icons */
.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.feature-icon:hover {
  transform: scale(1.1);
  color: var(--accent-color);
}

/* Section Heading Styles */
section h2 {
  font-weight: 700;
  color: var(--text-dark);
  position: relative;
  margin-bottom: 3rem;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

/* Pricing Cards */
.pricing-card {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Contact Section */
#contact {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
  color: var(--text-light);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
}

.about-section {
  position: relative;
  overflow: hidden;
}
.feature-icon {
  font-size: 2rem;
  margin-right: 15px;
  color: #3498db;
}
.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  opacity: 0.9;
  transition: all 0.3s ease;
}
.feature-item:hover {
  opacity: 1;
  transform: translateX(10px);
}