/* Hero Section Container */
.hero-banner {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  text-align: center;
  padding: 40px 20px;
}

/* Background Image Styling */
.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image fills space without stretching */
  z-index: -1; /* Puts it behind the text */
  /* Optional: Add a slight overlay if the image makes text hard to read */
  filter: brightness(0.9); 
}

/* Content Layout */
.hero-content {
  max-width: 900px;
  color: #ffffff; /* Dark text for light backgrounds */
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Buttons */
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
.hero-actions a:hover{
    color: #ffffff;
}

.ha-primary {
  background-color: #e10b0b;
  color: white;
  padding: 16px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background 0.3s ease;
}

.ha-primary:hover {
  background-color: #be1818;
}

.ha-secondary {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
}

.ha-secondary:hover {
  color: #e10b0b;
  text-decoration: underline;
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; gap: 15px; }
}




/* truct section  */
.trust-section {
  padding: 60px 20px;
  background-color: #ffffff;
  font-family: Arial, sans-serif;
  text-align: center;
}

/* Header & Platform Icons */
.trust-title {
  color: #888;
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin-bottom: 30px;
  font-weight: 600;
}

.platform-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  color: #ccc;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

/* Reviews Layout */
.reviews-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.review-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Brand Text Styling */
.brand-logo {
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
}

.capterra { color: #1c529a; }
.trustpilot { color: #000; }
.trustpilot .star-icon { color: #00b67a; }

/* Google Multi-Color Text */
.google .g-blue { color: #4285F4; }
.google .g-red { color: #EA4335; }
.google .g-yellow { color: #FBBC05; }
.google .g-green { color: #34A853; }

/* The Rating "Pill" */
.rating-pill {
  background: white;
  border: 1px solid #cce5ff; /* Light blue border from image */
  border-radius: 50px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.stars {
  color: #ffb400; /* Gold/Orange stars */
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.score {
  font-weight: bold;
  color: #333;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .platform-icons { gap: 20px; font-size: 1.8rem; }
  .reviews-container { gap: 40px; }
}












/* softwarte features  */
.software-features {
  padding: 80px 5%;
  background-color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

.features-header {
  margin-bottom: 50px;
}

.features-title {
  color: #e10b0b;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.features-subtitle {
  color: #666;
  font-size: 1.1rem;
}

/* Grid Layout */
.features-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Styling */
.feature-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 40px 30px;
  flex: 1;
  min-width: 300px;
  max-width: 360px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 45px;
  height: 45px;
  color: #0056b3;
  margin-bottom: 25px;
}

.card-title {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.card-desc {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 60px;
}

/* List Styling */
.card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.card-list li {
  position: relative;
  padding-left: 20px;
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.card-list li::before {
  content: "•";
  color: #999;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Button Styling */
.download-btn {
  margin-top: auto; /* Pushes button to bottom if text heights vary */
  display: block;
  background-color: #f0f4f8;
  color: #e10b0b;
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.download-btn:hover {
  background-color: #b82727;
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .features-grid {
    flex-direction: column;
    align-items: center;
  }
  .feature-card {
    width: 100%;
  }
}






/* benefits-section  */
.benefits-section {
  padding: 80px 20px;
  font-family: 'Segoe UI', Roboto, Helvetica, sans-serif;
  text-align: center;
}

.benefits-container {
  max-width: 1100px;
  margin: 0 auto;
}

.benefits-main-title {
  font-size: 2.2rem;
  color: #e10b0b; /* Deep blue color from image */
  font-weight: 700;
  margin-bottom: 60px;
}

.benefits-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.benefit-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  color: #00a8ff; /* Sky blue icon color */
  margin-bottom: 25px;
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
}

.benefit-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.benefit-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  max-width: 280px; /* Constrains text width for better readability */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .benefits-grid {
    flex-direction: column;
    gap: 50px;
  }
  
  .benefits-main-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
}



/* business-showcase  */

.business-showcase {
  display: flex;
  min-height: 450px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow: hidden;
}

/* Left Column */
.awards-col {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  background-color: #ffffff;
}

.award-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.award-icon {
  font-size: 2.5rem;
  min-width: 60px;
}

.award-box {
  background: linear-gradient(182deg, var(--theme-dark) 0%, var(--theme-red) 100%);; /* Light purple background */
  padding: 25px 35px;
  border-radius: 30px;
  flex: 1;
  text-decoration: none;
}

.award-box h3 {
  color: var(--theme-light); /* Bright purple text */
  margin: 0 0 10px 0;
  font-size: 1.6rem;
  font-weight: 700;
}

.award-box p {
  color: var(--theme-light);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Right Column */
.welcome-col {
  flex: 1;
  background: linear-gradient(135deg, #272727 0%, #e10b0b 100%);
  padding: 60px;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
}

.welcome-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.welcome-tag {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 20px 0;
  letter-spacing: 1px;
}

.welcome-title {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 40px;
}

.about-btn {
  display: inline-block;
  background-color: #e10b0b;
  color: white;
  text-decoration: none;
  padding: 15px 45px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 1.1rem;
  border: 1px solid #e10b0b;
  transition: opacity 0.3s;
}

.about-btn:hover {
  background-color: #b61c1c;
  color: #fff;
}

/* Glassmorphism shapes */
.glass-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  z-index: 1;
}

.shape-1 {
  width: 150px;
  height: 150px;
  top: 10%;
  right: 5%;
}

.shape-2 {
  width: 120px;
  height: 120px;
  bottom: 15%;
  right: 15%;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .business-showcase {
    flex-direction: column;
  }
  .awards-col, .welcome-col {
    padding: 40px 20px;
  }
}



/* product-feature-split */
.product-feature-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
  background-color: #ffffff;
  font-family: 'Segoe UI', Roboto, sans-serif;
  gap: 50px;
}

/* Image Side */
.feature-image-container {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 550px;
  background: #fdfdfd;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); /* Soft shadow from image */
  padding: 10px;
  text-align: center;
}

.dashboard-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.image-placeholder-text {
  color: #888;
  font-size: 0.9rem;
  padding: 40px 0;
}

/* Content Side */
.feature-content-container {
  flex: 1;
}

.eyebrow-text {
  color: #d93025; /* Red accent color */
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 15px;
}

.feature-main-title {
  font-size: 2.8rem;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 700;
}

.feature-description {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 35px;
}

/* Checkmark List */
.checkmark-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.checkmark-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
}

.check-icon {
  background-color: #e10b0b; /* Blue circle */
  color: white;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 3px;
}

.checkmark-list strong {
  color: #1a1a1a;
}

/* Link Styling */
.explore-link {
  color: #e10b0b;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: gap 0.2s;
}

.explore-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
  .product-feature-split {
    flex-direction: column;
    padding: 60px 5%;
    text-align: left;
  }
  
  .feature-main-title {
    font-size: 2rem;
  }
}





/* how-it-works */
.how-it-works {
  padding: 80px 5%;
  background-color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

.steps-header {
  margin-bottom: 60px;
}

.steps-main-title {
  font-size: 2.4rem;
  color: #e10b0b; /* Primary Blue from your design */
  font-weight: 700;
  margin-bottom: 15px;
}

.steps-subtitle {
  font-size: 1.1rem;
  color: #666;
}

/* Steps Layout */
.steps-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 350px;
}

/* Circular Icon Styling */
.step-icon-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.step-item:hover .step-icon-circle {
  transform: scale(1.05);
  /* background-color: #e2e8f0; */
}

.step-icon-circle svg {
  width: 35px;
  height: 35px;
}

/* Typography for steps */
.step-title {
  font-size: 1.3rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 15px;
}

.step-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  padding: 0 10px;
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .steps-container {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
  
  .steps-main-title {
    font-size: 1.8rem;
  }
}



/* --- CTA Banner Styles --- */
.cta-banner {
  background-color: #9e2f2f; /* Deep Blue from image */
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-text {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.cta-buttons .btn-outline:hover{
  color: #fff;
}

.btn-white {
  background: #ffffff;
  color: #9e2f2f;
  padding: 15px 35px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s;
}

.btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 13px 35px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.2s;
}

.btn-white:hover { transform: translateY(-3px);color: #9e2f2f; }
.btn-outline:hover { background: rgba(255,255,255,0.1); }



/* --- Updates Section Styles --- */
.updates-section {
  padding: 80px 5%;
  background-color: #f8faff;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.badge-updates {
  background: #cce5ff;
  color: #004085;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 4px;
  border-left: 4px solid #004085;
}

.updates-main-title {
  font-size: 2.2rem;
  margin: 20px 0 50px;
  color: #111;
  font-weight: 700;
}

.updates-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.update-card {
  background: #ffffff;
  padding: 50px 30px 40px;
  border-radius: 12px;
  width: 320px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: left;
  border: 1px solid #eee;
}

.card-icon-top {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: #9e2f2f; /* Dark Navy from image */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.card-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #111;
}

.card-desc {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.details-link {
  color: #9e2f2f;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}

.details-link:hover { text-decoration: underline; color: #863f3f; }

.cap-img{
    width: 161px;
    height: 39px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-buttons { flex-direction: column; align-items: center; }
  .updates-grid { flex-direction: column; align-items: center; }
  .update-card { margin-top: 40px; }
}