@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Space+Grotesk:wght@300..700&display=swap');


/*General styles*/
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

.home-page-content {
  font-family: "Space Grotesk", sans-serif;
}

.heading-generic-spacing {
  padding-bottom: 50px;
}

h1 {
  font-size: 55px;
  line-height: 62px;
  font-weight: 700;
  color: #083a5e;
  font-family: "Space Grotesk", sans-serif;
}

h2 {
  font-size: 48px;
  line-height: 55px;
  font-weight: 700;
  color: #083a5e;
  font-family: "Space Grotesk", sans-serif;
}

h5 {
  font-size: 20px;
  line-height: 27px;
  font-weight: 700;
  color: #1a355b;
}
h6 {
  color: #083a5e;
  font-size: 18px;
}
p {
  font-size: 16px;
  line-height: 25px;
  color: #497696;
  margin-bottom: 0;
  font-family: "Poppins", system-ui;
  font-weight: 400;
}

.hero-section,
.features-section,
.why-choose-section,
.testimonials-section,
.faq-section,
.contact-section,
.newsletter-section,
.how-it-works,
.get-started-section,
.pricing-section,
.features-section-new,
.slider-section,
.privacy-policy-section{
  padding: 100px 90px;
}

/*header css*/
.navbar-custom {
  padding: 0.5rem 1rem;
  background-color: #fff;
}

.navbar-brand img {
  width: 150px;
  height: auto;
}

.nav-link {
  color: #083a5e;
  font-size: 16px;
  font-weight: 600;
  margin-right: 1rem;
}

.nav-link:hover {
  color: #083a5e;
}

.btn-custom {
  font-weight: 500;
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
  border: 2px solid #083a5e;
  color: #083a5e;
  transition: background-color 0.3s, color 0.3s;
}

.btn-custom:hover {
  background-color: #083a5e;
  color: #fff;
}

@media (min-width: 992px) {
  .navbar-nav {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .navbar-nav .nav-item {
    margin-right: 1rem;
  }

  .navbar-nav .nav-item:last-child {
    margin-right: 0;
  }
}

/* Additional styling for offcanvas */
.offcanvas-body .nav-link {
  margin-right: 0;
}

/*hero section css*/
.hero-section {
  background-color: #f5faff;
  text-align: center;
}

.hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.hero-content .hero-heading-text {
  font-size: 35px;
  line-height: 45px;
  font-weight: 500;
  color: #497696;
  text-wrap: pretty;
}

.hero-title {
  margin: auto;
  width: 90%;
  text-align: center;
  padding-bottom: 50px;
}

.hero-text {
  margin: 20px 0;
  text-wrap: pretty;
  width: 90%;
}

.hero-image {
  max-width: 100%;
  height: auto;
}

.btn-hero {
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 500;
  border: 2px solid #083a5e;
  color: #083a5e;
  transition: background-color 0.3s, color 0.3s;
}
.hero-btn{
  width: 200px;
}

.btn-hero:hover {
  background-color: #083a5e;
  color: #fff;
}

/* Features Section Styles */
.features-section {
  background-color: #ffffff;
}

.features-title {
  text-align: center;
  margin: auto;
}

.feature-card {
  background: linear-gradient(180deg, #f6f6f6 0%, #e3f3ff 100%);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: start;
  min-height: 300px;
}

.feature-icon {
  font-size: 2.5rem;
  color: #1a355b;
  margin-bottom: 1rem;
}

.feature-title {
  margin-bottom: 1rem;
}

.feature-link {
  color: #083a5e;
  font-weight: bold;
  text-decoration: none;
  margin-top: 1rem;
  display: inline-block;
}

.feature-link:hover {
  text-decoration: underline;
}
/* How it works section styles*/
.how-it-works {
  text-align: center;
  background-color: #f5faff;
  position: relative;
  font-family: "Space Grotesk", sans-serif;
}
.how-it-works-mobile{
  text-align: center;
  background-color: #f5faff;
  position: relative;
  font-family: "Space Grotesk", sans-serif;
  padding: 100px 20px;

}

.section-title {
  margin-bottom: 2rem;
  color: #083a5e;
}

.process-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 2rem;
}

.step-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
}

.step-container .col {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.step {
  background: linear-gradient(180deg, #d2ecff 0%, #f6f6f6 100%);
  border-radius: 50%;
  padding: 1.5rem;
  width: 290px;
  height: 290px;
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.step img {
  width: 30px;
  height: auto;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #083a5e;
}

.step p {
  font-size: 0.9rem;
  line-height: normal;
  color: #497696;
}

.arrow {
  position: relative;
  width: 50px;
  height: auto;
}

.row:nth-child(1) .col:nth-child(1) .arrow {
  top: 130px;
  right: -60px;
  transform: translateY(-50%) rotate(-40deg);
}

.row:nth-child(1) .col:nth-child(2) .arrow {
  top: 120px;
  left: 45px;
  transform: translateY(0%) rotate(10deg);
}

.row:nth-child(2) .col:nth-child(1) .arrow {
  top: -230px;
  right: 250px;
  transform: translateX(-50%) rotate(210deg);
}

.row:nth-child(2) .col:nth-child(3) .arrow {
  top: 280px;
  right: 230px;
  transform: translateX(-90%) rotate(70deg);
}

.row:nth-child(3) .col:nth-child(1) .arrow {
  top: -85px;
  right: 413px;
  transform: translateX(-50%) rotate(-235deg);
}

.last-arrow {
  top: 131px;
  right: 293px;
  transform: scaleX(-1) rotate(15deg);
}

.center-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bot-image {
  max-width: 200px;
  height: auto;
}
.last-step-mbl {
  display: none;
}
.how-it-works-mobile{
  display: none;
}
/* Why Choose BotifyMe Section Styles */
.why-choose-section {
  background-color: #fff;
}

.why-choose-title {
  text-align: center;
  margin: auto;
}

.why-choose-card {
  background: linear-gradient(180deg, #e3f3ff 0%, #f6f6f6 100%);
  position: relative;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  min-height: 300px;
}

.why-choose-icon {
  font-size: 2.5rem;
  color: #083a5e;
  margin-bottom: 1rem;
}

.why-choose-title {
  margin-bottom: 1rem;
}

.why-choose-description {
  font-size: 16px;
  line-height: 25px;
  color: #083a5e;
}

/*testemonials section*/
.testimonials-section {
  background-color: #fff;
}
.testimonial-card {
  background: linear-gradient(180deg, #d2ecff 0%, #f8fbfe 100%);
  border-radius: 8px;
  padding: 30px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review {
  padding: 20px 0;
}

.testimonial-card p {
  text-align: left;
}

.testimonial-card .profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-card .profile img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.customer-info {
  text-align: left;
}

.testimonial-card .profile h3 {
  font-size: 1.1em;
  color: #083a5e;
  margin: 0;
}

.testimonial-card .role {
  font-size: 14px;
}

/* FAQ Section Styles */
.faq-section {
  background-color: #f5faff;
}
.faq-title {
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
  color: #083a5e;
  font-family: "Space Grotesk", sans-serif;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-question {
  width: 100%;
  background: #fff;
  border: 1px solid #e6e5ff;
  padding: 15px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: #083a5e;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
}

.faq-toggle {
  font-size: 24px;
  color: #083a5e;
}

.faq-answer {
  display: none;
  padding: 15px;
  font-size: 16px;
  line-height: 25px;
  color: #497696;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

/* FAQ Toggle Functionality */
.faq-question.active + .faq-answer {
  display: block;
}

.faq-question.active .faq-toggle {
  content: "-";
}

.pricing-page{
  color: #083a5e;
}

/* Contact Section Styles */
.contact-section {
  background-color: #f5faff;
  text-align: center;
}

.contact-title {
  font-weight: 700;
  color: #083a5e;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
}

.contact-subtitle {
  font-size: 18px;
  line-height: normal;
  color: #497696;
  margin-bottom: 50px;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  padding: 40px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  background: linear-gradient(180deg, #b7e1ff 0%, #f6f6f6 100%);
  width: 50%;
  text-align: left;
}

.contact-image {
  width: 100%;
  max-width: 230px;
  margin: 20px 0;
}

.contact-info h3 {
  font-size: 28px;
  color: #083a5e;
  margin-bottom: 10px;
}

.contact-info p {
  font-size: 16px;
  color: #497696;
}

.contact-details i {
  margin-right: 10px;
}

.contact-social {
  margin-top: 20px;
}

.contact-social a {
  font-size: 24px;
  color: #083a5e;
  margin-right: 15px;
  text-decoration: none;
}

.contact-form {
  background: #ffffff;
  padding: 22px 40px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  width: 50%;
}

.contact-form form {
  text-align: end;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 16px;
  color: #083a5e;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #dce3e8;
  border-radius: 5px;
  font-size: 16px;
  color: #497696;
}

.btn {
  background: linear-gradient(90deg, #5573b5 0%, #b7e1ff 100%);
  color: #ffffff;
  padding: 10px 30px;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
}

.btn:hover {
  background-color: #072c46;
}

.letter-send {
  max-width: 180px;
  float: right;
}
.contact-section a {
  color: #083a5e;
  text-decoration: none;
}
/* Newsletter Section */
.newsletter-section {
  text-align: center;
  background-color: #fff;
}

.newsletter-section-inner {
  padding: 50px 20px;
  border-radius: 10px;
  background: linear-gradient(180deg, #b7e1ff 0%, #f6f6f6 100%);
}

.newsletter-title {
  font-weight: 700;
  color: #083a5e;
  margin-bottom: 20px;
  font-family: "Space Grotesk", sans-serif;
}

.newsletter-description {
  font-size: 18px;
  color: #497696;
  margin-bottom: 30px;
}

.newsletter-form {
  display: inline-block;
}

.input-group {
  width: 400px;
  max-width: 100%;
}

.form-control {
  border-radius: 5px 0 0 5px;
  border: 1px solid #dce3e8;
  padding: 10px;
  font-size: 16px;
  color: #497696;
}

.btn-newsletter {
  background-color: #083a5e;
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  border-radius: 0 5px 5px 0;
  font-size: 16px;
  cursor: pointer;
}

.btn-newsletter:hover {
  background-color: #072c46;
}

/* Footer Section */
.footer {
  background-color: #f8f9fa;
  padding: 40px 90px;
}
.footer a {
  color: #497696;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer .newsletter {
  margin-bottom: 20px;
}
.footer .newsletter input {
  width: 100%;
  max-width: 300px;
}

.footer .newsletter button {
  width: 100%;
  max-width: 120px;
}
.page-links {
  display: flex;
  justify-content: space-between;
}
.footer-input {
  border-radius: 50px;
}
.newsletter-heading {
  font-size: 24px;
  font-weight: 700;
  padding: 15px 0;
}
.footer .mail {
  font-weight: 600;
  color: #083a5e;
}

/*contact us page styles*/
/*breadcrum section styles*/
.breadcrum-section {
  background-color: #f2f8fd;
  height: 360px;
  padding: 10px 10px;
  display: flex;
  align-items: center;
}
.breadcrum-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
}

ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;
}
ul.breadcrumb li {
  display: inline;
  font-size: 18px;
}
ul.breadcrumb li + li:before {
  padding: 8px;
  color: #083A5E;
  content: "/\00a0";
}
ul.breadcrumb li a {
  color: #838AA3;
  text-decoration: none;
}
ul.breadcrumb li a:hover {
  color: #01447e;
  text-decoration: underline;
}
/*get started section styles*/
.get-started-section {
  text-align: center;
  background-color: #F2F8FD;
}
.get-started-section-inner{
  display: flex;
  justify-content: space-between;
  padding: 30px 70px;
  border-radius: 10px;
  background: linear-gradient(180deg, #b7e1ff 0%, #f6f6f6 100%);
}
.get-started-section-content{
  display: flex;
  flex-direction: column;
  gap:20px;
  justify-content: center;
  align-items: flex-start;
  text-align: start;
}
.get-started-section-inner img{
  width: 250px;
  height: 230px;
}
.get-started-section-inner h4{
  font-size: 40px;
  line-height: normal;
  font-weight: 700;
  color: #083a5e;
}
/* pricing page styles*/
/*purchase subscription styles*/

.pricing {
  font-size: 2.5rem;
  color: #083a5e;
}
.hidden{
  display: none !important;
}

.pricing-cards{
  background-color:#f2f8fd;
  border-radius: 30px;
  padding: 20px 15px;
}
.all-plans{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.all-plans .price-card{
  width: calc(25% - 10px);
}
.tab-container .nav-link{
  margin-right: 0 !important;
}
.tab-container .nav-tabs{
  background-color: #fff;
  border-radius: 30px;
  margin-top: 30px;
  margin-bottom: 20px;
  border: hidden;
}
.pricing-cards .card-highlight {
  border-radius: 30px;
  padding: 0;
  background: linear-gradient(162.687deg, #B7E1FF 0%, #F6F6F6 100%);
}
.pricing-cards .card-highlight-inner {
  background: linear-gradient(162.687deg, #B7E1FF 0%, #F6F6F6 100%);
}

.pricing-cards .card {
  border-radius: 20px;
  border: none;
  height: 500px;
}

.pricing-cards .card-body {
  padding: 20px 15px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-cards .card-title {
  font-weight: bold;
  font-size: 1.5rem;
  color: #083a5e;
}

.pricing-cards .card ul li {
  padding: 5px 0;
  font-size: 12px;
  text-align: left;
}
.pricing-cards .card ul li i {
  color: #5573B5;
}

.btn-primary {
  background-color: #5cbdf5;
  border: none;
  border-radius: 20px;
  padding: 10px 30px;
  font-size: 0.9rem;
}

.btn-primary:hover {
  background-color: #3aa7e4;
}
.button-group {
  display: flex; 
  width: 300px; 
  background-color: white; 
  border-radius: 30px; 
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
  overflow: hidden; 
  cursor: pointer;
  padding: 0;
}

/* Individual button styles */
.toggle-option {
  flex: 1; 
  text-align: center; 
  padding: 10px 30px; 
  font-weight: 500; 
  color: #6c757d; 
  border: none;
  background-color: white; 
  transition: background-color 0.3s ease, color 0.3s ease; 
}

/* Active button styles */
.toggle-option.active {
  background: linear-gradient(90deg, #5573b5 0%, #b7e1ff 100%); 
  color: white; 
  border-radius: 30px;
}


.price-header{
  display: flex;
  gap: 10px;
}


.original-price{
text-decoration: line-through;
font-size: 20px;
font-weight: 600;
}
.sale {
  background-color:#F2F8FD;
  border-radius: 30px;
  padding: 5px 10px; 
  font-size: 10px;
  font-weight: 600;
  display: inline-block; 

}
.discounted-price{
  height: 100px;
}

.price-hidden{
  visibility: hidden;
  display: flex;
}
/*Privacy Policy page styles*/
/* privacy policy section */
.privacy-policy-section .container{
  background: linear-gradient(-90deg, #E3F3FF 0%, #F6F6F6 100%);
  padding: 30px 30px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 100% !important;
  }
  /*how it works section tab styles*/
  .process-steps {
    gap: 3rem;
  }
  .step {
    width: 280px;
    height: 280px;
  }
}

/*Responsive styles*/
@media (max-width: 1250px) {
  .how-it-works {
    padding: 80px 40px;
  }
}
@media (max-width: 1024px) {
  /*General styles*/
  .heading-generic-spacing {
    padding-bottom: 30px;
  }

  h1 {
    font-size: 40px;
    line-height: 50px;
  }

  h2 {
    font-size: 35px;
    line-height: 40px;
  }

  p {
    font-size: 15px;
    line-height: 25px;
  }

  .container {
    width: 100% !important;
  }

  .hero-section,
  .features-section,
  .why-choose-section,
  .testimonials-section,
  .faq-section,
  .contact-section,
  .newsletter-section,
  .get-started-section,
  .pricing-section,
  .features-section-new,
  .slider-section,
  .privacy-policy-section{
    padding: 80px 50px;
  }
  .how-it-works {
    padding: 80px 30px;
  }
  /*hero section css*/
  .hero-section {
    background-color: #f5faff;
    text-align: center;
  }

  .hero-text {
    width: 100%;
  }

  .hero-content .hero-heading-text {
    font-size: 28px;
    line-height: 35px;
  }
  /*how it works section tab styles*/
  .step {
    width: 220px;
    height: 220px;
  }
  .bot-image {
    max-width: 130px;
    height: auto;
  }
  .step h3 {
    font-size: 15px;
    line-height: normal;
    margin-bottom: 1rem;
  }
  .step p {
    font-size: 12px;
    line-height: normal;
  }
  .arrow {
    width: 40px;
  }
  .row:nth-child(1) .col:nth-child(2) .arrow {
    top: 90px;
    left: 25px;
    transform: translateY(0%) rotate(10deg);
  }
  .row:nth-child(2) .col:nth-child(3) .arrow {
    top: 200px;
    right: 130px;
    transform: translateX(-90%) rotate(65deg);
  }
  .row:nth-child(3) .col:nth-child(1) .arrow {
    top: -60px;
    right: 320px;
    transform: translateX(-50%) rotate(-225deg);
  }
  .row:nth-child(2) .col:nth-child(1) .arrow {
    top: -155px;
    right: 175px;
    transform: translateX(-50%) rotate(210deg);
  }
  .row:nth-child(1) .col:nth-child(1) .arrow {
    top: 115px;
    right: -40px;
    transform: translateY(-50%) rotate(-20deg);
  }
  /*footer*/
  .footer {
    padding: 40px 40px;
  }
  /*get started section styles*/
  .get-started-section-inner{
    padding: 30px 40px;
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .get-started-section-content{
    align-items: center;
    text-align: center;
  }
  .get-started-section-inner h4{
    font-size: 35px;
  }
  .get-started-section-inner img {
    width: 220px;
    height: 200px;
  }
  /*pricing section*/
  .price-card{
    margin-bottom: 20px;
  }  
  .all-plans .price-card{
    width: calc(50% - 10px);
  }
}
@media (max-width: 810px) {
  .how-it-works {
    padding: 80px 10px;
  }
}

@media (max-width: 768px) {
  /*General styles*/
  h1 {
    font-size: 25px;
    line-height: normal;
  }

  h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .hero-section,
  .features-section,
  .why-choose-section,
  .testimonials-section,
  .faq-section,
  .contact-section,
  .newsletter-section,
  .how-it-works,
  .get-started-section,
  .pricing-section,
  .features-section-new,
  .slider-section,
  .privacy-policy-section{
    padding: 60px 10px;
  }

  /*hero section css*/
  .hero-section {
    padding: 60px 10px;
    background-color: #f5faff;
    text-align: center;
  }

  .hero-content {
    margin-bottom: 20px;
  }

  .hero-content .hero-heading-text {
    font-size: 18px;
    line-height: 20px;
  }

  /*FAQ section css*/
  .faq-question {
    padding: 10px;
    font-size: 15px;
  }

  /* Contact Section Styles */
  .contact-subtitle {
    font-size: 15px;
    line-height: normal;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-info {
    width: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    padding: 20px 10px;
  }
  .contact-form {
    width: 100%;
    padding: 20px 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
  }

  /* Newsletter Section */
  .input-group {
    width: 270px;
  }
/* how it works Section */
.step-container {
  gap: 20px;
}

.step {
  width: 230px;
  height: 230px;
}

.last-step-col-desktop {
  display: none !important;
}

.last-step-mbl {
  display: block;
}

.center-col {
  display: none; /* Remove !important here */
}

.process-steps .col {
  flex: 1 0 100% !important;
}

/* how it works section tab styles */
.row:nth-child(1) .col:nth-child(1) .arrow {
  top: 130px;
  left: 12px;
  transform: translateY(0%) rotate(10deg);
}


.row:nth-child(2) .col:nth-child(1) .arrow {
  top: 110px;
  right: 286px;
  transform: scaleX(-1) rotate(25deg);
}

.row:nth-child(3) .col:nth-child(1) .arrow {
  top: 126px;
  right: -33px;
  transform: translateX(-50%) rotate(-352deg);
}

.last-mbl {
  top: 133px;
  right: -7px;
  transform: scaleX(1) rotate(15deg);
}

.how-it-works{
  display: none;
} 
.how-it-works-mobile{
  display: flex;
  flex-direction: column;
  align-items: center;
}

  /* footer */
  .page-links {
    flex-direction: column;
  }
  .footer {
    padding: 40px 20px;
  }
  /* get started section */
  .get-started-section-inner h4{
    font-size:30px;
  }
  /*pricing section*/
  .all-plans .price-card{
    width: calc(100% - 10px);
  }
}
