/* .main-nav */
.main-nav,
.main-nav * {
  list-style: none;
}
.main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
  padding: 10px 0px;
}
.main-nav a,
.main-nav select {
  color: white;
  padding: 7px 13px;
  font-size: 16px;
}
.main-nav select option {
  color: var(--blackColor);
}
.main-nav a.active,
.main-nav ul a.active,
.main-nav li:hover > a {
  color: var(--orangeColor);
}
.main-nav .drop-down ul {
  display: block;
  position: absolute;
  right: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}
.main-nav .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.main-nav .drop-down li {
  min-width: 180px;
  position: relative;
}
.main-nav .drop-down ul a {
  padding: 4px 20px;
  font-size: 14px;
  color: var(--blackColor);
  display: block;
}
.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active > a,
.main-nav .drop-down ul li:hover > a {
  background-color: var(--redColor);
  color: #fff !important;
}
.main-nav .drop-down > a:after {
  border: none !important;
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f107" !important;
  vertical-align: 0;
  padding-left: 6px;
}
.main-nav .drop-down:hover .main-nav .drop-down > a:before {
  border: none !important;
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f106" !important;
  vertical-align: 0;
}
.main-nav .drop-down .drop-down ul {
  top: 0;
  right: calc(100% - 30px);
}
.main-nav .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  right: 100%;
}
.main-nav .drop-down .drop-down > a {
  padding-right: 35px;
}
.main-nav .drop-down .drop-down > a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}

/* .mobile-nav */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 3333;
  overflow-y: auto;
  right: -290px;
  width: 290px;
  padding-top: 18px;
  background: #fff;
  transition: 0.4s;
}
.mobile-nav * {
  list-style: none;
}
.mobile-nav a {
  display: block;
  position: relative;
  color: var(--blackColor);
  padding: 10px 20px;
  font-size: 16px;
  border-bottom: 1px solid;
  border-color: #f1f1f1;
}
.mobile-nav a:focus,
.mobile-nav a.active,
.mobile-nav .drop-down.active,
.mobile-nav a:hover {
  color: var(--violetColor);
}
.mobile-nav .drop-down.active,
.mobile-nav a:hover {
  background-color: var(--blueColor);
  color: white;
}
.mobile-nav .drop-down li a:hover {
  background-color: var(--blueColor);
  color: #fff;
}
.mobile-nav .drop-down > a:after {
  right: 15px;
  top: 13px;
  position: absolute;
  content: "\f067";
  border: none !important;
  font: normal normal normal 14px/1 FontAwesome;
  vertical-align: 0;
}
.mobile-nav .drop-down.active > a:after {
  content: "\f068" !important;
}
.mobile-nav .drop-down > a {
  padding-right: 35px;
}
.mobile-nav .drop-down.active {
  color: #fff;
}
.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}
.mobile-nav .drop-down li a {
  padding-left: 25px;
  color: #000;
  background-color: rgb(255, 220, 246);
}
.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 2222;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  overflow: hidden;
  display: none;
}
.mobile-nav-active {
  overflow: hidden;
}
.mobile-nav-active .mobile-nav {
  right: 0;
  padding: 15px;
}
.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
  font-size: 30px;
}
.mobile-nav-toggle .fa-bars {
  font-size: 24px;
}
.mobileMenuClose {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2;
}
.closeIcon {
  height: 20px;
}
/* header end */

.headerTop {
  position: sticky;
  top: 0px;
  padding: 14px 0px;
  background-color: var(--blueColor);
  z-index: 2222;
}
.headerTop .btn {
  box-shadow: none !important;
}

.headingText {
  font-size: 45px;
  line-height: 48px;
  font-weight: 700;
}
.headingText span {
  color: var(--blueColor);
}
.textBluegradient {
  background: linear-gradient(
    135deg,
    var(--blueColor),
    var(--purpleColor)
  ); /* Gradient colors */
  -webkit-background-clip: text; /* Clip background to text */
  -webkit-text-fill-color: transparent; /* Make text fill transparent */
  background-clip: text; /* Fallback for modern browsers */
  color: transparent; /* Ensures no color override */
}
.smallHeading {
  font-size: 20px;
  line-height: 28px;
  color: var(--SlateGrayColor);
}

.homeTopMainSections {
  background-color: #eff6ff;
}

.homeTopSections .custom-badge {
  background-color: var(--blueLightColor); /* blue-100 */
  color: #1e40af; /* blue-800 */
  border: 1px solid #bfdbfe; /* blue-200 */
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
}
.homeTopSections h1 {
  font-size: 3.75rem;
}
.homeTopSections span {
  color: var(--blueColor);
}

.homeTopSections .icon-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--grayMuted);
}

/*Ready to Transform Your Proposal Process?*/
.ReadyTransformListing ul li {
  font-size: 18px;
  line-height: 28px;
}

.custom-badge {
  background-color: var(--blueLightColor); /* blue-100 */
  color: var(--blueColor); /* blue-800 */
  border: 1px solid #bfdbfe; /* blue-200 */
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  align-items: center;
  transition: all 0.3s;
}

/*  */
.proposalsendBadge {
  font-size: 14px;
}
/*  */
.whoIsPropsalSend {
  transition: 0.3s ease all;
  border: 1px solid #e2e8f0;
  border-radius: 13px;
}
.whoIsPropsalSend:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1); /* Regular shadow */
}
.whoIsPropsalSend h5 {
  font-size: 20px;
  line-height: 28px;
}
.salesExe {
  background-image: linear-gradient(to right, #e9f0fd, #f3edfd);
}
.FoundersS {
  background-image: linear-gradient(to right, #e5f7ee, #e5f7f1);
}
.FreelancersA {
  background-image: linear-gradient(to right, #fdf0e7, #fcecea);
}
.CoachesConsultants {
  background-image: linear-gradient(to right, #f3ebfb, #fbecf5);
}
.MarketingBus {
  background-image: linear-gradient(to right, #e4f5fa, #e8f1fc);
}
/*  */

.resultsFromCard {
  transition: 0.3s ease all;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border-radius: 13px;
}
.resultsFromCard:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1); /* Regular shadow */
}

/* KeyFeaturesCard */
.KeyFeaturesCard {
  transition: 0.3s ease all;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.KeyFeaturesCard:hover {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color),
    0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  --tw-border-opacity: 1;
  border-color: rgb(191 219 254 / var(--tw-border-opacity, 1)) !important;
}
.KeyFeaturesCard p {
  font-weight: 400;
  color: var(--SlateGrayColor);
  font-size: 14px;
}
.KeyFeaturesCard h5 {
  font-weight: 500;
  font-size: 14px;
}

.ProposalSentSolves {
  background: linear-gradient(to right, var(--blueColor), var(--purpleColor));
  color: white;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  padding: 2rem;
}
.ProposalSentSolves .badge {
  background-color: #fff3 !important;
  color: white !important;
  padding: 10px 15px;
  margin-bottom: 5px;
}
.ProposalSentSolves {
  font-size: 16px;
}

/*  */
.moreDealsCard {
  transition: 0.3s ease all;
  border: 1px solid #e2e8f0;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  border-radius: 13px;
}
.moreDealsCard:hover {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color),
    0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  --tw-translate-y: -0.5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  margin-top: -3px;
}
.moreDealsCard h5 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 28px;
}
.moreDealsCard p {
  font-weight: 400;
  color: var(--SlateGrayColor);
  font-size: 16px;
}

/*  */

/*  Founders Love ProposalOS*/
.user_Review_Main {
  background-image: linear-gradient(to right, #2563eb, #0d9488);
}
.user-review-card {
  transition: 0.3s ease all;
  border: 1px solid #fff3;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  background-color: #ffffff1a;
}
.user-review-card:hover {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color),
    0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  --tw-translate-y: -0.5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  margin-top: -3px;
}
.user-review-card .user-reivewIcon {
  width: 48px;
  height: 48px;
  background: #fff3;
  font-weight: 500;
  font-size: 20px;
  color: white;
}

/*  */

.proposalsendInActions {
  transition: 0.3s ease all;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border-radius: 13px;
}
.proposalsendInActions:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1); /* Regular shadow */
}
/*  */
.WhyProposalSentSection {
  background-color: #fef3f1;
}

/* When Sales People Leave */
.WhenSalesPeopleMain {
  background-color: #fef3f1;
}
.whenSalesDeals {
  transition: 0.3s ease all;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border-radius: 13px;
}
.whenSalesDeals:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1); /* Regular shadow */
}

.whenSalesDeDie {
  transition: 0.3s ease all;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border-radius: 13px;
}
.whenSalesDeDie:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1); /* Regular shadow */
}

/* Traditional CRM */
.TraditionalCRM {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border-radius: 13px;
}
.TraditionalCRM tr th {
  padding: 15px 20px;
  font-size: 17px;
  border: none !important;
}
.TraditionalCRM tr td {
  border: none !important;
  padding: 15px 20px;
}
.TraditionalCRM tr {
  border: 1px solid #e8e8e8 !important;
}
.TraditionalCRM tr th .small {
  font-weight: 400;
  font-size: 12px;
}
.TraditionalCRM .table > thead {
  vertical-align: text-bottom;
}

.trustedbusines {
  width: 40px;
  height: 40px;
  margin-right: -5px !important;
  border: 2px solid white;
}

.SmarterProposals {
  background: linear-gradient(to bottom right, #0f172a, #1e3a8a, #0f172a);
}
.SmarterProposals h2 span {
  color: #60a5fa;
}
.SmarterProposals p {
  color: #d1d5db;
}

/* footer */

.MillionDollarSections .DealsDies {
  background-color: #7f1d1d33;
  border: 1px solid #ef444433;
}
.MillionDollarSections .DealsDies .text-danger {
  color: #fca5a5 !important;
}
.MillionDollarSections .TrillionLost {
  background-color: #7c2d1233;
  border: 1px solid #f9731633;
}
.MillionDollarSections .TrillionLost .text-warning {
  color: #fdba74 !important;
}
.MillionDollarSections .TimeWasted {
  background-color: #713f1233;
  border: 1px solid #eab30833;
}
.MillionDollarSections .TimeWasted .text-orange {
  color: #fde047 !important;
}
.footerSections {
  background: linear-gradient(to bottom right, #0f172a, #1e3a8a, #0f172a);
}
footer {
  background-color: #111827;
}
footer h5 {
  color: white;
}
footer p {
  color: #9ca3af;
  font-size: 17px;
}
footer .footerQuickLinks li {
  padding: 6px 0px;
}
footer .footerQuickLinks li a {
  color: #9ca3af;
}

footer .footerQuickLinks li a:hover {
  color: #fff;
}

/* pricing page */

.pricingTopSections h1 {
  font-size: 4.5rem;
  line-height: 1;
}
.pricingTopSections h1 span {
  color: var(--blueColor);
}
.pricingTopSections p {
  font-size: 1.25rem;
  line-height: 1.625;
  color: var(--grayMuted);
}
.dealsFasterPricing {
  transition: all 0.3s ease-in-out;
  box-shadow: 2px 8px 6px rgba(149, 149, 149, 0.08); /* stronger shadow on hover */
  padding: 1.5rem;
  border-radius: 12px;
}
.dealsFasterPricing:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* stronger shadow on hover */
  transform: translateY(-4px);
}
.dealsFasterPricing h5 {
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 28px;
}

.dealsFasterPricing p {
  font-weight: 400;
  color: var(--SlateGrayColor);
  font-size: 16px;
}

.proposalPricing {
  background-color: #e9effb;
  color: var(--grayMuted);
}

.TraditionalCRMs tr th {
  padding: 18px 0px;
  font-size: 16px;
}

.TraditionalCRMs tr td {
  padding: 18px 0px;
  font-size: 16px;
}

.TransparentPricing .Transparent_PricingCard ul li {
  padding: 5px 0px;
}

.Transparent_PricingCard {
  transition: all 0.3s ease-in-out;
  box-shadow: 2px 8px 6px rgba(208, 208, 208, 0.08); /* stronger shadow on hover */
  padding: 15px 0px;
  border-radius: 12px;
  border: 2px solid rgb(246, 246, 255);
}
.Transparent_PricingCard .btn {
  font-weight: 600;
  color: #0f1629;
  font-size: 14px;
  border-color: rgb(234, 234, 234);
  box-shadow: none !important;
}
.Transparent_PricingCard .btn:hover {
  background-color: black;
  color: white;
}
.Transparent_PricingCard:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* stronger shadow on hover */
  transform: translateY(-4px);
}

.Transparent_PricingCard.active {
  border-color: #84b3fe80;
  background-color: #f0f6ff80;
}
.Transparent_PricingCard.active .btn {
  background-color: var(--blueColor);
  color: white;
}

.ClosedDealsSections .bg-success-subtle {
  background-color: rgba(220, 252, 231, 0.194) !important;
}
.ClosedDealsSections .bg-danger-subtle {
  background-color: #f8d7da42 !important;
}

/* feature page css */

.homeTopFeature .textBluegradient {
  background: linear-gradient(
    135deg,
    var(--blueColor),
    var(--purpleColor)
  ); /* Gradient colors */
  -webkit-background-clip: text; /* Clip background to text */
  -webkit-text-fill-color: transparent; /* Make text fill transparent */
  background-clip: text; /* Fallback for modern browsers */
  color: transparent; /* Ensures no color override */
  font-size: 72px;
  line-height: 72px;
}

.homeTopFeature .trustedbusines {
  width: 40px;
  height: 40px;
  margin-right: -5px !important;
  border: 2px solid white;
  background: linear-gradient(
    135deg,
    var(--blueColor),
    var(--purpleColor)
  ); /* Gradient colors */
}
.homeTopFeature p {
  font-size: 18px;
  line-height: 29.25px;
  color: var(--grayMuted);
}

.dashboardStatsSections {
  transition: 0.3s ease all;
  border: 1px solid #d4d2d2;
  box-shadow: 0 5px 5px 3px rgba(189, 189, 189, 0.1),
    0 4px 6px -4px rgba(230, 230, 230, 0.1);
  border-radius: 13px;
  padding: 35px 10px;
  background-color: white;
}
.dashboardStatsSections:hover {
  box-shadow: 0 20px 25px -5px rgba(107, 107, 107, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1); /* Regular shadow */
}

.PowerfulFeatures {
  transition: 0.3s ease all;
  border: 1px solid #d4d2d2;
  box-shadow: 0 5px 5px 3px rgba(189, 189, 189, 0.1),
    0 4px 6px -4px rgba(230, 230, 230, 0.1);
  border-radius: 13px;
  padding: 33px 30px;
  background-color: white;
}
.PowerfulFeatures:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* stronger shadow on hover */
  transform: translateY(-4px);
}
.PowerfulFeatures h5 {
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 28px;
}

.PowerfulFeatures p {
  font-weight: 400;
  color: var(--SlateGrayColor);
  font-size: 16px;
}
.WhyChooseFeatures th ,.WhyChooseFeatures td{
  font-size: 16px;
}

.valueSectionFeature .valueSectionIcon{
  background: linear-gradient(
    135deg,
    var(--blueColor),
    var(--purpleColor)
  ); /* Gradient colors */
  height: 60px;
  width: 60px;
}
.valueSectionFeature p {
  font-weight: 400;
  color: var(--SlateGrayColor);
  font-size: 16px;
}