.productivity-text {
  color: #585858;
  font-family: 'Poppins', sans-serif;
  font-size: 20px; /* matches text-lg */
  max-width: 64rem; /* matches max-w-4xl */
  margin: 0 auto; /* centers the paragraph */
}

.video-container {
  position: relative;
  background: white;
  border-radius: 16px;
  padding: 24px;
  min-height: 550px; /* grows with screen */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.video-placeholder {
  position: relative;
  width: calc(100% - 60px);
  min-height: 400px;
  margin: 25px 30px 5px 30px;
  background: #000; /* simple black background instead of gradient */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.play-button {
  width: 80px;
  height: 80px;
  background: #003366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

/* .play-button:hover {
  background: #003366;
  transform: scale(1.1);
} */

.play-icon {
  width: 22px; /* size of SVG */
  height: 22px;
  display: block;
}

/* Small screen adjustments */
@media (max-width: 768px) {
  .video-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* center the placeholder horizontally */
    padding: 25px; /* equal padding on all sides */
    min-height: auto; /* remove fixed min-height */
  }

  .video-placeholder {
    width: 100%; /* take full width minus container padding */
    min-height: 250px; /* reduce height for small screens */
    margin: 0; /* remove all margins */
  }
}


/* Dashboard mockup styling */
.dashboard-mockup {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: between;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f3f4f6;
}

.dashboard-nav {
  background: #f8fafc;
  border-radius: 8px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 180px;
  margin-right: 20px;
}

.nav-item {
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s;
}

.nav-item.active {
  background: #3b82f6;
  color: white;
}

.nav-item:hover:not(.active) {
  background: #e5e7eb;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.project-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.project-image {
  width: 100%;
  height: 120px;
  background-size: cover;
  background-position: center;
}

.project-content {
  padding: 12px;
}

.project-title {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.project-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.project-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e5e7eb;
}

.project-date {
  font-size: 12px;
  color: #6b7280;
}

.project-button {
  background: #3b82f6;
  color: white;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .video-placeholder {
    height: 300px;
  }

  .play-button {
    width: 60px;
    height: 60px;
  }

  

  .dashboard-nav {
    width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
  }

  .project-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
  }
}

/* Button styling to match your theme */
.cta-button {
  background: #003366;
  color: white;
  padding: 12px 92px; /* increased from 32px → 48px */
  border-radius: 10px;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 1.5px solid #67b8d6;
  cursor: pointer;
}



/* Hover effect without changing color */
/* .cta-button:hover {
  transform: translateY(-2px) scale(1.05);
} */

/* ############################################################################## */
/* Pricing section styling */
.pricing-section {
  background: #003366;
  font-family: "Poppins", sans-serif;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 48px 32px 32px; /* top padding includes extra space for the badge */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

/* Most Popular Badge */
.most-popular-badge {
  position: absolute;
  top: -16px; /* adjust so it’s above the card */
  left: 50%;
  transform: translateX(-50%);
  background: #67B8D6;
  color: white;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 400;
  box-shadow: 0 4px 12px rgba(103, 184, 214, 0.3);
  z-index: 10;
}

/* Responsive adjustments if needed */
@media (max-width: 768px) {
  .pricing-card {
    padding-top: 64px; /* extra top padding for smaller screens */
  }
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: #003366;
  line-height: 1;
}

.price-period {
  color: #6b7280;
  font-size: 1rem;
  font-weight: 500;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: #707F8F;
  font-size: 16px;
}

.feature-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-cross {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.plan-button {
  width: 100%;
  height: 42px;              /* fixed height */
  border-radius: 10px;       /* updated radius */
  font-weight: 500;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 24px;
  padding: 0 16px;           /* horizontal padding only (no vertical, since height is fixed) */
}


.basic-button {
  background: #67b8d6;
  color: white;
}

/* .basic-button:hover {
  background: #5a9cc4;
  transform: translateY(-2px);
} */

.pro-button {
  background: #003366;
  color: white;
}

/* .pro-button:hover {
  background: #1e3a5f;
  transform: translateY(-2px);
} */

.guarantee-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: white;
  font-size: 16px;
  margin-top: 48px;
}

.guarantee-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-section {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
  text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
  .pricing-card {
    padding: 24px;
    margin-bottom: 32px;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  .footer-section {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-links {
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .pricing-card {
    padding: 20px;
  }

  .price-amount {
    font-size: 2rem;
  }

  .feature-item {
    font-size: 14px;
  }
}
