.bannerSection {
  background-image: url("../img/banner.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 90px 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.heroGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .heroGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.heroTitle {
  font-size: 2.25rem;
  font-weight: bold;
  color: white;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .heroTitle {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .heroTitle {
    font-size: 3.75rem;
  }
}

.heroDescription {
  font-size: 1.25rem;
  color: white;
  margin-top: 1.5rem;
  line-height: 1.6;
}

.benefitsList {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefitItem {
  display: flex;
  align-items: center;
}

.benefitText {
  color: white;
}

.ctaButtons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .ctaButtons {
    flex-direction: row;
  }
}

.primaryBtn {
  background-color: #00A63E;
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.primaryBtn:hover {
  background-color: #008a35;
}

.secondaryBtn {
  border: 2px solid #d1d5db;
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.dashboardPreview {
  position: relative;
  width: 100%;
}

@media screen and (max-width:767px){
  .dashboardPreview {
    width: 94%;
    margin: 0 auto;
  }
}

.dashboardCard {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 1.5rem;
  transform: rotate(3deg);
  transition: transform 0.3s;
}

@media screen and (max-width:767px){
 .dashboardCard {
    transform: rotate(0deg);
 }
}

.dashboardCard:hover {
  transform: rotate(0deg);
}

.overviewSection {
  background-color: #f3f4f6;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
}

.overviewHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.overviewTitle {
  font-weight: 600;
  color: #111827;
}

.overviewDate {
  font-size: 0.875rem;
  color: #6b7280;
}

.statsGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.statCard {
  background-color: white;
  border-radius: 0.5rem;
  padding: 1rem;
}

.statLabel {
  font-size: 0.875rem;
  color: #6b7280;
}

.statValue {
  font-size: 1.5rem;
  font-weight: bold;
}

.statChange {
  font-size: 0.75rem;
}

.greenText {
  color: #059669;
}

.redText {
  color: #dc2626;
}

.transactionsList {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.transactionItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.transactionItem:last-child {
  border-bottom: none;
}

.transactionName {
  font-size: 0.875rem;
  color: #374151;
}

.transactionAmount {
  font-weight: 600;
}

.servicesSection {
  padding-top: 5rem;
  background-color: white;
}

@media screen and (max-width: 767px) {
  .servicesSection {
    padding-top: 2rem;
  }
}

.sectionTitle {
  text-align: center;
  margin-bottom: 4rem;
}

.mainTitle {
  font-size: 1.875rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .mainTitle {
    font-size: 2.25rem;
  }

}

.mainAboutImage{
  width:100%;
  height:120vh;
}
@media screen and (max-width:768px){
    .mainAboutImage{
    width:100%;
    height:unset;
    object-fit: contain;
  }
}

.servicesGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .servicesGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .servicesGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.serviceCard {
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 2rem;
  transition: box-shadow 0.3s;
}

.serviceCard:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.serviceIcon {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.serviceTitle {
  font-size: 1.25rem;
  text-align: center;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.serviceDescription {
  color: #6b7280;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.learnMoreBtn {
  margin-top: 1.5rem;
  padding: 10px 19px;
  display: flex;
  justify-content: center;
  background-color: #00A63E;
  color: white;
  border-radius: 6px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s;
}

.learnMoreBtn:hover {
  background-color: #008a35;
}

.whyChooseSection {
  padding: 5rem 0;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .whyChooseSection {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media  (max-width: 767px) {
  .whyChooseSection {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .whyChooseSection {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.whyChooseTitle {
  text-align: center;
  font-size: 1.875rem;
  font-weight: bold;
  padding-bottom: 2.5rem;
}

.stepsGrid {
  display: grid;
  grid-template-columns: 1fr;
  color: white;
}

@media (min-width: 768px) {
  .stepsGrid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.stepCard {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stepNumber {
  font-size: 1.5rem;
  font-weight: bold;
}

.stepTitle {
  font-size: 1.125rem;
  font-weight: 600;
}

.stepDescription {
  font-size: 0.875rem;
}

.green700 { background-color: #15803d; }
.green600 { background-color: #16a34a; }
.green500 { background-color: #22c55e; }
.green400 { background-color: #4ade80; }
.green300 { background-color: #86efac; }

.pricingSection {
  padding: 5rem 0;
  background-color: #f9fafb;
}

@media (max-width: 767px) {
  .pricingSection {
    padding: 2rem 0;
  }
}

.pricingGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .pricingGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricingCard {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  position: relative;
}

.popularCard {
  border: 2px solid #00A63E;
  transform: scale(1.05);
}

.popularBadge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
}

.popularBadgeContent {
  background-color: #00A63E;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.planHeader {
  text-align: center;
  margin-bottom: 2rem;
}

.planName {
  font-size: 1.5rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 0.5rem;
}

.planDescription {
  color: #6b7280;
  margin-bottom: 1rem;
}

.priceContainer {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.price {
  font-size: 2.25rem;
  font-weight: bold;
  color: #111827;
}

.period {
  color: #6b7280;
  margin-left: 0.25rem;
}

.featuresList {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.featureItem {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.featureText {
  color: #374151;
}

.planButton {
  width: 100%;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: all 0.3s;
}

.primaryPlanBtn {
  background-color: #00A63E;
  color: white;
}

.primaryPlanBtn:hover {
  background-color: #008a35;
}

.secondaryPlanBtn {
  background-color: #f3f4f6;
  color: #111827;
}

.secondaryPlanBtn:hover {
  background-color: #e5e7eb;
}

.pricingFooter {
  text-align: center;
  margin-top: 3rem;
}

.pricingFooterText {
  color: #6b7280;
  margin-bottom: 1rem;
}

.enterpriseBtn {
  color: #00A63E;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}

.enterpriseBtn:hover {
  color: #1d4ed8;
}

.aboutSection {
  background-color: white;
}

.aboutGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

@media (min-width: 1024px) {
  .aboutGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.aboutTitle {
  font-size: 1.875rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .aboutTitle {
    font-size: 2.25rem;
  }
}

.aboutText {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.aboutBtn {
  background-color: #00A63E;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.aboutBtn:hover {
  background-color: #008a35;
}

.aboutImageContainer {
  position: relative;
}
.aboutImageContainer img{
  width: 100%;
  height: unset;
}

.aboutImage {
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.certificationBadge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.badgeContent {
  display: flex;
  align-items: center;
}

.badgeIcon {
  background-color: #dcfce7;
  padding: 0.75rem;
  border-radius: 9999px;
  margin-right: 1rem;
}

.badgeTitle {
  font-weight: 600;
  color: #111827;
}

.badgeSubtitle {
  font-size: 0.875rem;
  color: #6b7280;
}

.faqsSection {
  padding: 3rem 0 5rem;
}
.storySec{
  padding: 2rem 0 0rem;
}
@media (max-width: 767px) {
  .faqsSection {
    padding: 2rem 0;
  }
}