* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

:root {
  --selection-color: #3685b6 ;
  --primary-color: #2b65f5;
  --linear-gradient: linear-gradient(45deg, #162ba2, #060c2c);
}

.dashboard-section {
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 100vh; */
  position: relative;
}

.bg-left,
.bg-right {
  position: absolute;
  top: 50px;
  height: 100%;
  z-index: 1;
}

.bg-left {
  left: 0;
}

.bg-right {
  right: 0;
}

.bg-left img,
.bg-right img {
  height: 80%;
  object-fit: cover;
  opacity: 0.3;
}

.dashboard-center {
  z-index: 2;
}

.dashboard-center img {
  width: 100%;
  max-width: 810px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
  border: 1px solid white;
}

.crm-hero {
  background-image: url(../images/CRM-Banner.jpg) !important;
  background-size: cover !important;
  background-position: center !important;
}
.crm-elevate-cards-back {
  position: relative;
}
.crm-elevate-cards-front {
  position: absolute;
  right: 0px;
  top: 68px;
}

.features-section > h5 {
  color: var(--primary-color);
  font-weight: 300;
  font-size: 1.1rem;
}

.crm-highlight {
  color: var(--primary-color);
  font-weight: 300;
  font-size: 1.1rem;
  margin: 20px 0;
}

.features-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  padding-bottom: 50px;
}

.features-header > div > h2 {
  font-size: 2rem;
  color: white;
  font-weight: 300;
}

.features-header > div > p {
  color: #aaa;
  font-size: 0.95rem;
}

.features-section {
  padding: clamp(12px, 3vw, 20px) clamp(20px, 6vw, 45px);
  max-width: 1400px;
  margin: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature-card {
  background-color: #161616;
  padding: 24px;
  border-radius: 16px;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.feature-card .icon {
  font-size: 1.8rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  color: white;
  margin-top: 15px;
  font-weight: 400;
}

.feature-card p {
  color: #aaa;
  font-size: 0.85rem;
}

.crm-for-builder {
  padding: clamp(32px, 5vw, 60px) clamp(40px, 8vw, 110px);
}

.crm-for-builder > h2 {
  font-size: 2rem;
  color: white;
  font-weight: 300;
  margin-bottom: 30px;
}

.crm-for-builder-cards {
  display: flex;
  align-items: center;
  gap: 30px;
}

.crm-for-builder-cards > div > div {
  background-color: #161616;
  padding: 10px 20px;
  border-radius: 15px;
}

.crm-for-builder-cards > div > div > h5 {
  color: white;
  font-weight: 300;
  font-size: 1rem;
  margin: 20px 0;
}
.crm-for-builder-cards > div > div > p {
  color: #868686;
  font-weight: 300;
  font-size: 0.85rem;
  margin: 20px 0;
  max-width: 900px;
  padding-bottom: 15px;
}

.crm-for-builder-cards div > img {
  object-fit: contain;
  width: 600px;
  border-radius: 20px;
}

.crm-schedule-btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
}
.crm-schedule-btn > span > img {
  height: 20px;
  margin-top: 10px;
  margin-left: 10px;
}

.crm-sch-btn {
  color: white !important;
  text-decoration: none;
  font-weight: 200 !important;
}

#backgroundtrans {
  margin-bottom: 30px;
}

#backgroundtrans:hover {
  background: var(--linear-gradient) !important;
  transition: background 0.6s ease;
  transform: unset;
}

#backgroundtrans:hover p {
  color: white;
}

.typewriter-text {
  display: inline;
  border-right: 2px solid #1c1c1c;
  white-space: nowrap;
  overflow: hidden;
  animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: #1c1c1c;
  }
}

@media (max-width: 426px) {
  .crm-for-builder-cards {
    flex-direction: column;
  }
  .crm-for-builder-cards div > img {
    width: 100%;
  }

  .crm-highlight {
    margin: unset;
    padding-bottom: 10px;
  }
  .cards-row {
    margin-bottom: unset !important;
    gap: unset !important;
  }
  .features-header {
    margin-bottom: unset;
  }
  .features-section {
    margin: 5px 10px;
    padding: unset;
  }

  .crm-for-builder-cards {
    gap: unset;
  }
  .crm-hero {
    padding: unset !important;
  }

  .dashboard-section {
    padding: 20px;
  }
  .crm-for-builder > h2 {
    text-align: center;
    font-size: 1.9rem;
  }
  .ad-performance-section {
    text-align: center;
  }
  .features-section {
    text-align: center;
  }
  .feature-card {
    display: unset;
  }
}

@media (max-width: 769px) {
  .crm-for-builder-cards {
    flex-direction: column;
  }
  .crm-for-builder-cards div > img {
    width: 100%;
  }

  .crm-hero {
    padding: unset !important;
  }
  .dashboard-section {
    padding: 30px;
  }
  .ad-performance-section {
    text-align: center;
  }
  .feature-card {
    align-items: center;
  }
  .features-section {
    text-align: center;
  }
  .features-header {
    display: inline-block;
    text-align: center;
  }
}
