body {
  font-family: 'Poppins', sans-serif;
  background: #f4f7fa;
  margin: 0;
  padding: 0;
}

.dashboard {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

header {
  background: #36b48a;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stats {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.stat-box {
  background: #f7f7f9;
  padding: 15px 80px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: relative;
}

.stat-box h3 {
  margin: 0;
  color: #111111;
}

.icon {
  color: #25d366;      /* Greenish tone */
  font-size: 25px;
  display: block;
  margin-top: 5px;
  text-align: right;
  opacity: 0.9;
}


.stat-box p {
  font-size: 24px;
  font-weight: 700;
  color: #000;
}

.stat-box:hover {
  transform: translateY(-3px);
  transition: 0.3s;
}

.main {
  display: flex;
  gap: 20px;
}

.call-card {
  flex: 2;
  background: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.call-card h2 {
  background: #25d366;
  color: #fff;
  padding: 20px;
  border-radius: 6px;
  text-align: center;
}

.call-card form input,
.call-card form textarea,
.call-card form button {
  width: 100%;
  margin-top: 10px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.call-card form button {
  background: #1f8ef1;
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.call-card form button:hover {
  background: #0066cc;
}

.contacts {
  flex: 1;
  background: #fff;
  padding: 15px;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  max-height: 500px;
  overflow-y: auto;
}

.contact-card {
  background: #f8fafc;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 10px;
}
footer {
  text-align: center;
  margin: 30px 0 10px;
  color: #36322b;
}
.contact-card.converted {
  background: #e0ffe0;
  border-left: 5px solid #28a745;
}

.convert-btn {
  background: #25d366;
  color: white;
  border: none;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

.convert-btn:hover {
  background: #1aa34a;
}
.landing-header {
    text-align: center;
    padding: 40px;
}
.landing-subtitle {
    font-size: 1.2em;
    color: #555;
}

/* 2. Features Section */
.feature-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-card {
    width: 300px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.cta-container {
    text-align: center;
    margin: 40px;
}

.cta-button {
    background: #007bce; /* Blue background */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none; /* Removes underline */
    font-weight: bold;
    display: inline-block; /* Allows padding and width */
}