@import url("https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700");

:root {
  --brand: #f69722;
  --sub: #6ac754;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif !important;
}


/* .top-banner .image-container{
  max-height: 300px;
} */


.top-banner {
  margin-top: 80px !important;
}


@media (max-width: 768px) {
  .top-banner {
    margin-top: 60px !important;
  }
}


.top-banner {
  position: relative; /* Add this line */
  overflow: hidden;    /* Optional: hides overflow from shapes if needed */
  background-color: #fff8ee; /* Light warm beige tone */
  padding-bottom: 100px;
}

.top-banner .bottom-diagonal {
  position: absolute;
  bottom: -1px !important;
  left: 0;
  width: 100%;
  height: 60px;
  background: white;
  clip-path: polygon(0 0, 100% 100%, 0% 100%);
}

.highlight-wrapper {
  display: inline-block;
}

.highlight {
  display: block;
  background-color: #ffae37;
  height: 8px;
  margin-top: -23px;
  margin-bottom: 6px;
  width: 100%;
}

.highlight-line {
  display: inline;
  background-image: linear-gradient(to top, #ffae37 40%, transparent 40%);
  background-repeat: no-repeat;
  background-size: 100% 0.5em;
  background-position: 0 65%; /* pull highlight slightly up */
  white-space: nowrap;
}

@media (max-width: 768px) {
  .highlight-line {
    white-space: normal;
    display: inline;
    background-image: none;
  }

  .highlight-wrapper-h2 {
    display: inline-block;
    /* line-height: 1.2; */
  }

  .highlight-wrapper-h2 span {
    display: inline;
    background-image: linear-gradient(to top, #ffae37 40%, transparent 40%);
    background-repeat: no-repeat;
    background-size: 100% 0.5em;
    background-position: 0 65%; /* same here */
  }
}


.btn-orange {
  display: inline-block;
  background-color: var(--brand);
  color: white;
  font-weight: 500;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  padding: 10px 20px;
  border: none !important;
}

.btn-orange:hover {
  background-color: var(--brand);
  color: white;
  text-decoration: none;
  border: none !important;
}

.banner-image {
  max-width: 100%;
  height: auto;
  position: relative;
}

.image-container {
  position: relative;
}

.overlay-image {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 70%;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.small-image {
  position: absolute;
  right: -20%;
  bottom: -10%;
  width: 60%;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.decorative-shape {
  position: absolute;
}

.shape-green {
  top: 30px;
  left: 45%;
  border: 2px solid #6bcf63;
  transform: rotate(45deg);
  width: 30px;
  height: 30px;
}

.shape-red {
  bottom: 150px;
  left: 3%;
  border: 2px solid #c67171;
  transform: rotate(-45deg);
  width: 20px;
  height: 20px;
}

.shape-blue {
  bottom: 130px;
  left: 45%;
  border: 3px solid #00aaff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.shape-orange {
  bottom: 130px;
  right: 5%;
  border: 3px solid #ff5a2c;
  border-radius: 50%;
  width: 20px;
  height: 20px;
}



.para-color{
  color: #212121;
}

.banner-small-heading{
  color: var(--brand);
  font-weight: 500;
}
.banner-heading{
  font-weight: 600;
}
.banner-para{
  line-height: 1.3;
  font-size: 15px;
}
.btn-orange i {
  margin-left: 8px;
}
.highlight-wrapper .highlight-wrapper-h2{
  font-size: 45px;
}

@media (max-width: 767px) {
  .shape-green {
    top: 20px;
    left: 45%;
    border: 2px solid #6bcf63;
    transform: rotate(45deg);
    width: 15px;
    height: 15px;
  }
  .shape-red {
    bottom: 190px;
    left: -1%;
    border: 2px solid #c67171;
    transform: rotate(-45deg);
    width: 15px;
    height: 15px;
  }
  .shape-blue {
    bottom: 130px;
    left: 35%;
    border: 2px solid #00aaff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
  }
  .shape-orange {
    bottom: 220px;
    right: 1%;
    border: 2px solid #ff5a2c;
    border-radius: 50%;
    width: 15px;
    height: 15px;
  }
  .banner-small-heading,
  .banner-heading,
  .banner-para,
  .highlight-wrapper .highlight-wrapper-h2{
    text-align: center;
  }
  .highlight-wrapper .highlight-wrapper-h2{
    font-size: 32px;
  }
  .highlight {
    margin-top: -20px;
  }
  .image-container .banner-image{
    margin-top: 50px;
  }
}

@media (max-width: 380px) {
  .highlight-wrapper .highlight-wrapper-h2{
    font-size: 28px;
  }
  .btn-orange {
    font-size: 13px;
  }
}





.custom-card {
  background-color: #fdeff7;
  padding: 2rem 3rem 0 3rem;
  border-radius: 20px;
}

.custom-card ul {
  list-style-position: inside; /* keeps bullets inside */
    display: flex;
    flex-direction: column;
    align-items: center; /* centers the list items */
    padding: 0;
}

.custom-card ul li {
  text-align: center; /* center text inside the li */
  margin-bottom: 0.5em;
}


.btn-dark {
  display: inline-block;
  background-color: black;
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 500;
  font-size: 13px;
  border-radius: 8px;
  text-decoration: none;
  padding: 10px 20px;
  margin-bottom: 36px;
}

.btn-dark:hover {
  background-color: black;
  border: none;
  color: white;
  text-decoration: none;
}

.btn-dark i {
  margin-left: 8px;
}

@media (max-width: 767px) {
  .custom-card {
    text-align: center;
  }
  .custom-card ul {
    text-align: left;
  }
  .custom-card {
    padding: 2rem;
  }
}



.custom-card-para{
  color: #475467;
  font-size: 13px;
}
.card-image{
  display: flex;
  align-items: center;
  justify-content: center;
}
/* .card-image img{
  height: 250px;
  object-fit: cover;
} */

@media (max-width: 767px) {
  .build-way-margin{
    margin-top: -10px !important;
  }
  .custom-card {
    /* background-color: #fdeff7; */
    padding: 2rem 1rem 2rem 1rem;
    border-radius: 20px;
  }
  .custom-card .custom-card-h4{
    font-size: 20px;
  }
  .custom-card ul li {
    font-size: 11px;
  }
  .custom-card-para{
    font-size: 12px;
  }
  .btn-dark {
    margin: 0px 30px 36px 30px;
  }
}

@media (max-width: 380px) {
  .btn-dark {
    margin: 0px 30px 36px 30px;
  }
}


.green-bg {
  background-color: #ebf9ec;
  border-radius: 30px;
  padding: 2rem 0 0 2rem;
}

.feature-box {
  background-color: white;
  border-radius: 15px;
}

.feature-number {
  background-color: black;
  border: 8px solid #e0e0e0;
  color: white;
  font-size: 14px;
  font-weight: 600;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; /* prevents it from shrinking */
}

.green-bg .h6-font{
  font-weight: 700;
}

.generate-link{
  display: inline-block;
  text-decoration: none;
  color: #26a52f;
  margin-top: 10px;
  font-weight: 600;
}
.generate-link:hover{
  color: #26a52f;
}
.feature-item{
  margin: 50px 0px;
}
.feature-box ul li{
  padding: 8px 0px;
}
.generate-link i {
  margin-left: 8px;
}
.green-bg img{
  padding: 0px 0px 0px 50px;
}
.green-bg-img{
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .green-bg {
    margin: 0px 1px !important;
    padding: 10px;
  }
  .generate-link{
    font-size: 13px;
  }
  .green-bg img{
    padding: 0px;
  }
}





.light-bg-banner {
  background-color: #f8f8f8 !important; /* subtle light gray */
  border-radius: 2rem; /* custom rounding */
}

.light-bg-banner ul li i {
  color: #00ba00;
}

@media (max-width: 767px) {
  .light-bg-banner .content .content-h2{
    font-size: 20px;
  }
}




.trial-box {
  background-color: #2f6fe0; /* Custom blue */
  border-radius: 30px;
  padding: 80px 20px;
  margin: 60px 1px !important;
}

.trial-title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.trial-subtitle {
  color: #e2ecfa;
  font-size: 1.15rem;
  margin-bottom: 30px;
}

.trial-btn {
  background-color: #ffffff;
  color: #000000;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.trial-btn i {
  margin-left: 8px;
}

.trial-btn:hover {
  background-color: #ffffff;
  color: #000000;
}



@media (max-width: 767px) {
  .trial-box .trial-title{
   font-size: 22px;
  }
  .trial-box .trial-subtitle{
    font-size: 14px;
   }
}




.custom-footer {
  background-color: #1f1f1f;
  color: #ffffff;
}
.footer-heading {
  font-weight: 600;
  color: #61657e;
  margin-bottom: 10px;
}
.footer-subscribe-text {
  font-weight: 500;
}
.footer-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #000;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
  flex-shrink: 0; /* prevents it from shrinking */
}
.footer-social-icons a:nth-child(2) { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, 
  #fd5949 45%, #d6249f 60%, #285AEB 90%) }
.footer-social-icons a:nth-child(3) { background-color: #1877F2; }
.footer-social-icons a:nth-child(4) { background-color: #FF0000; }
.footer-social-icons a:nth-child(5) { background-color: #0077B5; }
.footer-social-icons a:hover {
  color: #fff;
}
.footer-contact i {
  margin-right: 8px;
}
.footer-contact a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.copyright-text {
  color: #bfbfbf;
}
.footer-location {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-location i {
  margin-top: 3px; /* optional for better vertical alignment */
}

.footer-location span {
  display: inline-block;
}



.custom-footer .list-unstyled li a{
  color: white;
  text-decoration: none;
  font-size: 14px;
  margin: 10px 0px;
}
.custom-footer .list-unstyled li a:hover{
  color: white;
  text-decoration: none;
}
.custom-footer .list-unstyled li{
  margin: 10px 0px;
}
.footer-contact li{
  font-size: 14px;
}
.footer-social-icons{
  margin-bottom: 30px;
}
.right-bottom-border{
  border-right: 1px solid #3c3c3c;
  padding: 0px 10px;
}

@media (max-width: 767px) {
  .custom-footer {
    padding: 0px 20px;
  }
  .right-bottom-border{
    border-right: none;
    border-bottom: 1px solid #3c3c3c;
  }
}










/* nav { background-color: #1c1c1c; color: #fff; } */
    .navbar-dark .navbar-nav .nav-link { color: white; }
    .navbar-dark .navbar-nav .nav-link:hover { color: var(--brand); }
    .dropdown-menu { background-color: #1c1c1c !important; border: none !important; }
    .dropdown-item { color: white !important; }
    .dropdown-item:hover { background-color: transparent !important; color: var(--brand) !important; }
    .offcanvas { background-color: #1c1c1c; color: #fff; }
    .btn-orange { background-color: var(--brand); color: white;
      border: none !important; }
    .btn-orange:hover { background-color: var(--brand);
      border: none !important; }
    .offcanvas-body a.nav-link { font-weight: 500; }
    .offcanvas-body .dropdown-menu { position: relative !important; display: block; background: transparent; border: none; }
    .offcanvas-body .dropdown-item { padding-left: 1.5rem; font-size: 0.9rem; color: #ccc; }


    .mobile-sidebar {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100vh;
      overflow-y: auto;
      transition: right 0.3s ease;
      z-index: 9999;
    }
    
    .mobile-sidebar.active {
      right: 0;
    }

    
    /* Common Link Styling */
header a {
  text-decoration: none !important;
  color: white;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}
header nav a:hover{
  color: var(--brand);
}

/* Underline on hover animation */
header nav .main-menu::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: var(--brand);
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

header nav a:hover::after {
  width: 100%;
}

/* Desktop Dropdown on Hover with smooth transition */
@media (min-width: 992px) {
  .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(10px);
  }

  .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* Dropdown icon alignment */
.dropdown-toggle-2 i {
  margin-left: 4px;
}





.header-design{
  padding: 10px 20px;
}
.login-button a,
.login-button a:hover{
  color: white;
}
.mobile-sidebar a{
  text-decoration: none !important;
  color: #d3d3d3 !important;
  font-weight: 600 !important;
}
.mobile-sidebar .login-button a{
  color: white !important;
}
.mobile-sidebar .drop-main-menu{
  margin-bottom: 20px !important;
}
.mobile-sidebar .mobile-menu-content a{
  font-size: 14px !important;
}
.mobile-sidebar .mobile-menu-content p{
  font-size: 10px !important;
  color: #d3d3d3 !important;
}


@media (max-width: 767px) {
.header-design button {
  padding: 10px 20px 10px 10px;
}
}

@media (min-width: 992px) {
.header-design{
  padding: 20px 100px;
}
}



.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  transition: right 0.3s ease;
  z-index: 9999;
}

.mobile-sidebar.active {
  right: 0;
}

.mobile-sidebar a {
  text-decoration: none;
  color: #d3d3d3;
  font-weight: 600;
}

.mobile-sidebar .login-button a {
  color: white;
}

.mobile-sidebar .drop-main-menu {
  margin-bottom: 15px !important;
  cursor: pointer;
}

.mobile-sidebar .mobile-menu-content a {
  font-size: 14px;
  font-weight: 600;
}

.mobile-sidebar .mobile-menu-content p {
  font-size: 10px;
  color: #d3d3d3;
  margin-bottom: 0;
}

.mobile-sidebar .mobile-menu-content {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}


/* Sticky Header */
/* .sticky-top {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 0 !important;
} */




/* Mega Dropdown */
.mega-menu {
  background: #326fdc !important;
  left: 0 !important;
  right: 0 !important;
  margin-top: 0 !important;
  box-shadow: 0 10px 30px #0000004d;
  min-width: 900px !important;
  left: -300px !important;
  padding: 30px 20px !important;
  border-radius: 15px !important;
}

.dropdown-menu.mega-menu {
  padding: 0;
}


.mega-menu .col-md-6 {
  padding: 0 15px;
}

.mega-menu-item p {
  font-size: 10px;
  color: white !important;
  line-height: 1.4;
  font-weight: 300;
}

.mega-menu-item a {
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mega-menu-item:hover a {
  color: white !important;
}

.mega-menu-item i{
  color: white !important;
}


.top-banner .banner-bold{
  font-weight: 600;
  font-size: 15px;
}

/* Bootstrap Container Class */
/* .page-2 {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .page-2 {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .page-2 {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .page-2 {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .page-2 {
    max-width: 1140px;
  }
}

@media (min-width: 1200px) and (max-width: 1700px) {
  .page-2 {
  padding: 0px 0px 0px 100px;
  margin-bottom: -200px;
  }
}

@media (min-width: 1700px) {
  .page-2 {
    max-width: 1320px;
  }
}

.bottom-right-image{
  z-index: 9999;
} */



.store-box{
  background-color: #f7f7f7;
  border-radius: 10px;
  padding: 30px;
}

@media (max-width: 767px) {
.store-box-h5{
  font-size: 18px;
}
}



.faq{
  background-color: #f7f7f7;
}

.faq-heading {
  font-weight: 700;
  font-size: 2.5rem;
}

.faq-subtext {
  font-size: 0.9rem;
  color: #6c757d;
}

.faq .accordion-item {
  border: none !important;
  box-shadow: none !important;
  background-color: white;
  color: black;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.faq .accordion-button {
  background: #f7f7f7;
  border: none;
  border-radius: 12px !important;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1.2rem 1.5rem;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq .accordion-button::after {
  display: none !important;
}

/* Plus/minus symbol */
.faq .accordion-button.collapsed .icon-toggle::before {
  content: '+';
}

.faq .accordion-button .icon-toggle::before {
  content: '−';
  color: #9e9e9e;
}

.faq .accordion-body {
  padding-left: 4rem !important; /* Align answer text under question, not icon */
  margin-top: -20px;
}

.icon-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 3px solid #9e9e9e;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: bold;
  flex-shrink: 0;
}

.faq .accordion-button:not(.collapsed) {
  border: none !important;
  box-shadow: none !important;
  background-color: white !important;
  color: black !important;
}


@media (max-width: 767px) {
  .faq .accordion-button {
  font-size: 15px !important;
}
.faq .accordion-body {
  font-size: 13px !important;
}
}



.custom-card-c1{
  background-color: #EFFDF0 !important;
}
.custom-card-c2{
  background-color: #EFF4FD !important;
}
.custom-card-c3{
  background-color: #FDFAEF !important;
}
.custom-card-c4{
  background-color: #FFF0F0 !important;
}





.bg-grey{
  background-color: #F7F7F7;
  margin-top: 100px;
  border-radius: 30px;
}

.bg-grey .feature-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.bg-grey .feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.bg-grey ul.checklist {
  list-style: none;
  padding: 0;
}

.bg-grey ul.checklist li i {
  color: #00ba00;
}


@media (max-width: 380px) {
  .feature-section .btn-dark {
    margin: 0px 0px 36px 0px;
  }
}

@media (max-width: 767px) {
  .bg-grey{
    padding: 50px 20px !important;
  }
  .feature-section .btn-dark {
    margin: 0px 0px 36px 0px;
  }
}

@media (min-width: 967px) {
  .bg-grey{
    padding: 1px 50px !important;
  }
  .bg-grey .feature-content-right {
    padding-left: 50px;
  } 
  .bg-grey .feature-content-left{
    padding-right: 50px;
  }
  .feature-section{
    margin: 50px 0px !important;
  }
}



.bg-one {
  background-color: #ebf9ec !important; /* Light green */
}
.bg-two {
  background-color: #eff4fd !important; /* Light blue */
}
.bg-three {
  background-color: #fdfaef !important; /* Light yellow */
}
.bg-four {
  background-color: #fff0f0 !important; /* Light pink */
}
.bg-five{
  background-color: #eaecfc !important;
}
.bg-six{
  background-color: #fdeff7 !important;
}


/* .green-bg .accordion-item {
  border: none !important;
  box-shadow: none !important;
  background-color: white !important;
  color: black;
  border-radius: 15px !important;
  margin-bottom: 1rem;
}

.green-bg .accordion-button {
  background: transparent !important;
  border: none;
  border-radius: 15px !important;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1.2rem 1.5rem;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.green-bg .accordion-button::after {
  display: none !important;
}

.green-bg .accordion-button:not(.collapsed) {
  border: none !important;
  box-shadow: none !important;
  background-color: white !important;
  color: black !important;
} */

/* Default - collapsed (inactive) state: transparent */
.green-bg .accordion-item {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: black;
  border-radius: 15px !important;
  margin-bottom: 1rem;
}

.green-bg .accordion-button {
  background-color: transparent !important; /* collapsed state */
  border: none;
  border-radius: 15px !important;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1.2rem 1.5rem;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 10px;
  color: black;
}

.green-bg .accordion-button::after {
  display: none !important;
}

/* Active (expanded) state: white background */
.green-bg .accordion-button:not(.collapsed),
.green-bg .accordion-item:has(.accordion-button:not(.collapsed)) {
  background-color: white !important;
  color: black !important;
  box-shadow: none !important;
}


.accordion-text-design{
  color: #475467 !important;
  font-size: 14px !important;
  font-weight: normal !important;
  margin-left: 60px !important;
}

.green-bg .accordion-body{
  margin-left: 30px !important;
  margin-top: -20px !important;
}

.green-bg .accordion-body ul li{
  padding: 8px 0px;
}

.generate-link-2{
  color: #4376d1 !important;
}
.generate-link-2:hover{
  color: #4376d1 !important;
}
.generate-link-3{
  color: #a78c25 !important;
}
.generate-link-3:hover{
  color: #a78c25 !important;
}
.generate-link-4{
  color: #e45353 !important;
}
.generate-link-4:hover{
  color: #e45353 !important;
}

@media (min-width: 967px) {
  .accordion-text-design{
    margin-top: -10px !important;
  }
}








.banner-green-check li i{
  color: #00ba00;
}



.green-bg .banner-bold{
  font-weight: 600;
  font-size: 13px;
}





.first-table li i{
  color: #00ba00;
}

.first-table .para-content{
  font-weight: 500;
}

.first-table .table-design h5{
  background-color: #fff8ed;
  padding: 15px;
}

.first-table .table-design .bold-heading p{
  font-weight: 700 !important;
  font-size: 17px;
}

.first-table .table-design .col-lg-3 p{
  padding: 5px 15px 5px 30px;
  font-weight: 500;
}

.first-table .table-design .bi-ban,
.first-table .table-design .bi-x-circle-fill{
  color: red;
  margin-right: 10px;
  font-size: 20px;
}

.first-table .table-design .bi-check-circle-fill{
  color: #00ba00;
  margin-right: 10px;
  font-size: 20px;
}

.first-table .table-design .col-lg-3 h5{
  padding: 5px 15px 5px 30px;
}

/* .first-table .table-design{
  border: solid 1px #f69722;
  border-radius: 30px;
} */

@media (min-width: 967px) {
/* Make the table columns a flex layout */
.first-table .table-design {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
}

/* Columns should take equal width and have no margin/padding gap */
.first-table .table-design > .col-12,
.first-table .table-design > .col-lg-3 {
  flex: 1;
  padding: 0 !important;
  margin: 0 !important;
}

}



/* Every p and h5 fills available row height */
.first-table .table-design h5,
.first-table .table-design p {
  margin: 0 !important;
}


/* Outer border with radius */
.first-table .table-design {
  border: solid 1px #f69722;
  border-radius: 15px;
  overflow: hidden; /* Ensures corners clip inner elements */
}

/* Apply border only between cells */
.first-table .table-design h5,
.first-table .table-design p {
  border-top: 1px solid #f69722;
  border-right: 1px solid #f69722;
  margin: 0;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  min-height: 80px;
}

/* Remove top border from first row */
.first-table .table-design .col-lg-3 h5 {
  border-top: none;
}

/* Remove right border from last column */
.first-table .table-design > .col-lg-3:last-child h5,
.first-table .table-design > .col-lg-3:last-child p {
  border-right: none;
}


.first-table .table-design > .col-12,
.first-table .table-design > .col-lg-3 {
  padding: 0 !important;
  margin: 0 !important;
}


@media (max-width: 767px) {
  .first-table .table-design{
    margin: 0px 1px;
  }
  .first-table .table-design > .col-lg-3 h5,
  .first-table .table-design > .col-lg-3 p {
    border-right: none;
  }
  .first-table .table-design > .col-lg-3 h5{
    border-top: 1px solid #f69722;
  }
  .first-table .table-design .bold-heading h5{
    border-top: none !important;
  }
}







.page-5 .pink-bg{
  background-color: #fdeff7 !important;
}




.form-section {
  background-color: #fffbf4;
}

.custom-input {
  border-radius: 10px !important;
  border: 1px solid #000 !important;
  height: 50px !important;
  background-color: transparent !important;
}

.graphic-container {
  position: relative;
  display: inline-block;
}


.form-section .list-inline i{
  color: #00ba00;
}

.custom-input::placeholder {
  color: #70706f; /* Muted gray */
  font-weight: 500;
}






.pricing-card-1 {
  background-color: #ebf9ec;
  border-radius: 15px;
  padding: 30px;
}
.pricing-card-2 {
  background-color: #eff4fd;
  border-radius: 15px;
  padding: 30px;
}
.pricing-card-3 {
  background-color: #fdeff7;
  border: 3px solid #c20270;
  border-radius: 15px;
  padding: 30px;
}

.pricing-card h5{
  margin-bottom: 50px;
}

.pricing-badge{
  background-color: #fde6f3;
  border: 1px solid #f6cce4;
  color: #c20270;
  font-size: 12px;
  padding: 5px 15px;
  border-radius: 50px;
}

.border-button{
  border-top: 1px solid #f69722;
  padding-top: 30px;
}



.btn-green,.btn-blue,.btn-viloet{
display: inline-block;
border: none;
border-radius: 8px;
color: white;
font-weight: 500;
font-size: 13px;
border-radius: 8px;
text-decoration: none;
padding: 10px 40px;
margin-bottom: 36px;
}

.btn-green:hover,.btn-blue:hover,.btn-viloet:hover {
border: none;
color: white;
text-decoration: none;
}

.btn-green{
  background-color: #26a52f;
}
.btn-blue{
  background-color: #4376d1;
}
.btn-viloet{
  background-color: #c20270;
}


.hidden-table {
  display: none;
}


.light-bg-banner .text-clr{
  color: #252525;
  font-size: 14px;
}







/* @media (min-width: 967px) { */
.faq-2{
  background-color: white !important;
}

.faq-2 .accordion-item {
  background-color: #f9fafb !important;
}

.faq-2 .accordion-button:not(.collapsed) {
  background-color: #f9fafb !important;
}

.faq-2 .accordion-button {
  background: white !important;
}
/* } */


.trial-box-grey{
  background-color: #f8f8f8 !important; /* subtle light gray */
}

.trial-box-grey .trial-title,
.trial-box-grey .trial-subtitle{
  color: black !important;
}

.trial-box-grey .trial-btn{
  background-color: #ff8131 !important;
  color: white !important;
}








.four-box .green-bg{
  background-color: #effdf0 !important;
}

.four-box .green-bg .inside-content .inside-content-h4{
  color: #26a52f;
}

.four-box .inside-content .inside-content-h4{
  font-size: 17px;
  font-weight: 600;
}

.four-box .inside-content .inside-content-p{
  font-size: 13px;
}


.four-box .blue-bg{
  background-color: #eff4fd !important;
}

.four-box .blue-bg .inside-content .inside-content-h4{
  color: #4376d1;
}

.four-box .yellow-bg{
  background-color: #fdfaef !important;
}

.four-box .yellow-bg .inside-content .inside-content-h4{
  color: #a78c25;
}


.content-size{
  font-size: 14px;
}


.green-bg-2 {
  background-color: #fdeff7 !important;
}
.container-one-bg-one {
  background-color: #fdeff7 !important;
}
.container-one-bg-two {
  background-color: #eff4fd !important;
}


.container-two-bg-one {
  background-color: #ebf9ec !important; /* Light green */
}
.container-two-bg-two {
  background-color: #eff4fd !important; /* Light blue */
}
.container-two-bg-three {
  background-color: #fdfaef !important; /* Light yellow */
}
.container-two-bg-four {
  background-color: #fff0f0 !important; /* Light pink */
}
.container-two-bg-five{
  background-color: #eaecfc !important;
}




.accordion-bullet li i{
  color: #00ba00;
}

.accordion-bullet li {
  margin-top: -10px;
}


.green-bg-2 .round-bullet-icon i {
  background-color: #eff4fd;
  color: #4376d1;
  padding: 10px;
  border-radius: 50%;
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  font-size: 13px;
}

.green-bg-2 .round-bullet-icon li b{
  font-size: 13px;
}


.light-bg-banner .banner-bold{
  font-weight: 600;
  font-size: 16px;
}


.accordion-text-para{
  color: #475467 !important;
  font-size: 14px !important;
  font-weight: normal !important;
  margin-left: 5px;
}

.padding-bullets li{
  padding: 3px 0px !important;
}











.cta h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.cta p {
  color: #fff;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .cta h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
  }
  
  .cta p {
    color: #fff;
    font-size: 16px;
  }
}











.home-banner-text{
  color:#cacac8;
}

.btn-border{
  background-color: transparent;
  color: white;
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid white !important;
}


@media (min-width: 967px) {
  .home-banner-heading{
    font-size: 55px;
  }
}



.light-blue-bg-banner {
  position: relative;
  background-color: #326fdc !important; /* subtle light gray */
}

.top-diagonal-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: white;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}


@media (max-width: 992px) {
  .top-diagonal-shape {
    height: 40px;
  }
}


.btn-home{
  display: inline-block;
  background-color: white;
  color: var(--brand);
  font-weight: 500;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  padding: 10px 20px;
  border: none !important;
  border: 3px solid #ffc293 !important;
}


.btn-home:hover{
  background-color: white;
  color: var(--brand);
}









.video-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin: auto;
}

.video-wrapper video {
  width: 100%;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background-color: rgba(255, 165, 0, 0.85); /* Slightly more solid */
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3); /* Subtle shadow */
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.play-button:hover {
  background-color: rgba(255, 165, 0, 0.85); /* Slightly more solid */
}

.play-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-left: 20px solid white;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}


@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 165, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 165, 0, 0);
  }
}

.play-button {
  animation: pulse 1.5s infinite;
}








/* .testimonial{
  background-color: #fcfaf8;
}

.quote-mark {
  font-size: 36px;
  color: var(--brand);
  display: block;
  margin-bottom: 20px;
}


.carousel-nav-prev,
.carousel-nav-next {
  font-size: 24px;
  color: white;
  background-color: var(--brand);
  height: 50px;
  width: 50px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  border: none;
  outline: none;
}

.carousel-nav-prev:hover,
.carousel-nav-next:hover,
.carousel-nav-prev:focus,
.carousel-nav-next:focus,
.carousel-nav-prev:active,
.carousel-nav-next:active {
  font-size: 24px;
  color: white;
  background-color: var(--brand) !important;
  height: 50px !important;
  width: 50px !important;
  cursor: pointer;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  border: none;
  outline: none;
}


@media (min-width: 992px) {
  .carousel-nav-prev {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
  }

  .carousel-nav-next {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
  }

  .owl-carousel {
    position: relative;
  }
} */



/* Testimonial section */
.testimonial {
  background-color: #fcfaf8 !important;
}

/* Testimonial slider container */
.testimonial-slider-container {
  /* max-width: 800px; */
  margin: 0 auto;
  padding: 0 60px;
}

.testimonial-slider {
  position: relative;
}

.slides-container {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.testimonial-content {
  background: transparent !important;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Quote mark styling */
.quote-mark {
  font-size: 36px;
  color: var(--brand) !important;
  display: block;
  margin-bottom: 20px;
}

.testimonial-content h5 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.testimonial-content .text-muted {
  color: #6c757d !important;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.testimonial-text {
  color: #555;
  line-height: 1.6;
  /* max-width: 600px; */
  margin: 0 auto;
}

/* Navigation buttons */
.carousel-nav-prev,
.carousel-nav-next {
  font-size: 24px;
  color: white;
  background-color: var(--brand);
  height: 50px;
  width: 50px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  border: none;
  outline: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.carousel-nav-prev {
  left: -40px;
}

.carousel-nav-next {
  right: -40px;
}

/* Ensure style remains the same on hover, focus, and active */
.carousel-nav-prev:hover,
.carousel-nav-next:hover,
.carousel-nav-prev:focus,
.carousel-nav-next:focus,
.carousel-nav-prev:active,
.carousel-nav-next:active {
  background-color: var(--brand) !important;
}

/* Mobile view adjustments */
@media (max-width: 991.98px) {
  .testimonial-slider-container {
    padding: 0px;
  }
  
  .carousel-nav-prev,
  .carousel-nav-next {
    position: static;
    transform: none;
    display: inline-flex;
    margin: 20px 10px 0;
  }
  
  .slides-container {
    height: auto;
    min-height: 300px;
  }
}








/* Custom background */
#featureTabsContent .bg-light-pink {
  background-color: #fdeff7 !important;
  border-radius: 30px !important;
  margin: 0px 1px !important;
}
#featureTabsContent .bg-green-pink {
  background-color: #effdf0 !important;
  border-radius: 30px !important;
}
#featureTabsContent .bg-blue-pink {
  background-color: #eff4fd !important;
  border-radius: 30px !important;
}
#featureTabsContent .bg-yellow-pink {
  background-color: #fdfaef !important;
  border-radius: 30px !important;
}
#featureTabsContent .bg-red-pink {
  background-color: #fff0f0 !important;
  border-radius: 30px !important;
}

/* Base tab styling */
.nav-tabs {
  border-bottom: none;
}

.custom-tab {
  border-top: 3px solid #f2f4f7 !important;
  background-color: transparent !important;
  color: black !important; /* Inactive text color */
  padding: 10px 20px;
  margin-right: 0;
  position: relative;
  border-radius: 0 !important;
  margin: 20px 0px;
  font-weight: 600;
}

/* Remove the default tab bottom border */
.nav-tabs .nav-link {
  border: none;
}

/* Active tab styling - different colors for each tab */
.custom-tab.active#tab1-tab {
  color: white !important;
  background-color: #c20270 !important;
  border-radius: 10px !important;
}

.custom-tab.active#tab2-tab {
  color: white !important;
  background-color: #26a52f !important;
  border-radius: 10px !important;
}

.custom-tab.active#tab3-tab {
  color: white !important;
  background-color: #4376d1 !important;
  border-radius: 10px !important;
}

.custom-tab.active#tab4-tab {
  color: white !important;
  background-color: #a78c25 !important;
  border-radius: 10px !important;
}

.custom-tab.active#tab5-tab {
  color: white !important;
  background-color: #e45353 !important;
  border-radius: 10px !important;
}

.custom-tab {
  width: 150px;
}

/* Remove any focus outline */
.custom-tab:focus {
  outline: none;
  box-shadow: none;
}


@media (min-width: 992px) {
.tab-center-align{
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-tab {
  width: 250px;
}
}


@media (max-width: 792px) {
#featureTabsContent .bg-light-pink {
  text-align: center !important;
  margin: 1px !important;
}
#featureTabsContent .bg-green-pink {
  text-align: center !important;
  margin: 1px !important;
}
#featureTabsContent .bg-blue-pink {
  text-align: center !important;
  margin: 1px !important;
}
#featureTabsContent .bg-yellow-pink {
  text-align: center !important;
  margin: 1px !important;
}
#featureTabsContent .bg-red-pink {
  text-align: center !important;
  margin: 1px !important;
}
}









header.bg-dark{
  background-color: black !important;
}