@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&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=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


:root {
  --primary: #182737;
  --secondary: #FAAD14;
  --tertiary: #808080;
  --black: #252430;
  --gray: #737373;
  --white: #FFFFFF;
  --gradient-primary: linear-gradient(135deg, #213448 0%, #04192f 100%);
}

body {
  font-family: "Open Sans", sans-serif;
  background: #fff;
  color: #0b1320;
}


section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Start hero section css  */
.hero-section {
  background: var(--gradient-primary);
  padding: 1rem 0 3.5rem;
}

.hero-section .topnav-wp {
  padding: 0;
  margin: 0;
}

.hero-section .topnav-wp .content {
  background: var(--primary);
  width: 100%;
  border-radius: 20px;
  padding: 10px 15px;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-section .topnav-wp .content .btn-header {
  background: var(--white);
  color: var(--primary);
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 12px;
  margin-left: 15px;
  transition: all 0.3s;
}

.hero-section .topnav-wp .content .btn-header:hover {
  background: var(--secondary);
  color: var(--primary);
}

.hero-section h1 {
  color: var(--white);
  font-size: 54px;
  font-weight: 600;
}

.hero-section .topnav-wp .content .navbar-nav {
  flex-direction: row;
  margin: auto;
  background: #212F3F;
  border-radius: 12px;
}

.hero-section .topnav-wp .content .navbar-nav .nav-item .nav-link {
  color: var(--white);
  padding: 15px 20px;
  border-radius: 12px;
}

.hero-section .topnav-wp .content .navbar-nav .nav-item .nav-link:hover {
  background: #303D4B;
}

.hero-section .topnav-wp .content .navbar-nav .nav-item .nav-link.active {
  background: #303D4B;
}

.hero-section h2 {
  color: var(--secondary);
  font-size: 40px;
  font-weight: 600;
}

.hero-section p {
  font-size: 22px;
  line-height: 42px;
  font-weight: 400;
  color: var(--white);
  margin: 25px 0;
}

.btn-primery {
  background: var(--secondary);
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  padding: 11px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
}

.hero-section .btn-video {
  display: flex;
  align-items: center;
  color: var(--white);
  text-decoration: none;
}

.hero-section .btn-video .videoicon {
  width: 42px;
  height: 42px;
  display: inline-block;
  margin-right: 10px;
  overflow: hidden;
  border-radius: 50%;
}

.hero-section .btn-video .videoicon img {
  max-width: 100%;
}

.btn-primery:hover {
  opacity: 0.8;
}

/* start Review Main css  */
.reviewmainwp {
  background: #FAAD1408;
}

.reviewmainwp h4 {
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  color: var(--secondary);
}

.reviewmainwp h4 span {
  text-decoration: underline;
}

.reviewmainwp .review-sec {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.reviewmainwp .review-sec ul {
  padding: 0;
  margin: 0 10px 0 15px;
  display: flex;
  align-items: center;
}

.reviewmainwp .review-sec ul li {
  display: flex;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
  margin-left: -15px;
}

.reviewmainwp .review-sec ul li img {
  max-width: 100%;
}

.reviewmainwp .review-sec .contentright {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reviewmainwp .review-sec .contentright h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

.reviewmainwp .review-sec .contentright .startwp {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reviewmainwp .review-sec .contentright .startwp h6 {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  margin: 10px 0 0 0;
}


/* Start why choose css here  */
.whychoosewp h2 {
  font-size: 52px;
  font-weight: 600;
  color: var(--primary);
}

.whychoosewp h2 span {
  color: var(--secondary);
}

.whychoosewp p {
  color: var(--tertiary);
}

.whychoosewp .bottom-content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.whychoosewp .bottom-content .mainimgbox img {
  max-width: 100%;
}

.whychoosewp .bottom-content .boxeswp {
  position: absolute;
  padding: 10px;
  top: 0;
  left: 0;
  width: 85%;
  height: 100%;
  margin: auto;
  right: 0;
}

.whychoosewp .bottom-content .boxeswp ul {
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}

.whychoosewp .bottom-content .boxeswp .col-md-6:first-child ul {
  align-items: flex-start;
  margin-top: 95px;
}

.whychoosewp .bottom-content .boxeswp .col-md-6:last-child ul {
  align-items: flex-end;
  margin-top: 95px;
}

.whychoosewp .bottom-content ul li {
  display: inline-flex;
  width: 260px;
  padding: 18px;
  background: #fff;
  border: 1px solid #182737;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.13);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 45px;
}

.whychoosewp .bottom-content ul li h5 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin: 10px;
}

.whychoosewp .bottom-content ul li p {
  color: var(--tertiary);
  margin: 0px;
}

/* Start 6 boxes css here  */
.sixboxeswp {
  background: var(--gradient-primary);
}

.sixboxeswp .box {
  background: #fff;
  text-align: center;
  padding: 25px;
  border-radius: 20px;
  margin: 15px 0;
  display: flex;
  flex-direction: column;
  min-height: 305px;
  box-sizing: border-box;
}

.sixboxeswp .box.firstbox {
  text-align: left;
}

.sixboxeswp .box.firstbox h6 {
  color: #135CE7;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.sixboxeswp .box.firstbox h2 {
  color: var(--primary);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.sixboxeswp .box.firstbox p {
  color: var(--gray);
  font-size: 14px;
  margin: 0;
}

.sixboxeswp .box.firstbox .buttonswp {
  margin-top: 25px;
}

.sixboxeswp .box.firstbox .buttonswp .btn-secondary {
  background: var(--primary);
  border: 0;
  border-radius: 12px;
  color: var(--white);
  padding: 12px 25px;
  text-decoration: none;
  transition: all 0.3s;
}

.sixboxeswp .box.firstbox .buttonswp .btn-secondary-line {
  background: transparent;
  border: 1px solid #135CE7;
  border-radius: 12px;
  color: #135CE7;
  padding: 12px 25px;
  text-decoration: none;
  transition: all 0.3s;
}

.sixboxeswp .box.firstbox .buttonswp .btn-secondary:hover {
  opacity: 0.8;
}

.sixboxeswp .box.firstbox .buttonswp .btn-secondary-line:hover {
  opacity: 0.8;
  border-color: var(--primary);
  color: var(--primary);
}

.sixboxeswp .box.secondbox .topcontent {
  border-bottom: 1px solid #E9EFF5;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.sixboxeswp .box.secondbox .topcontent .imgbox {
  width: 64px;
  height: 64px;
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
}

.sixboxeswp .box.secondbox .topcontent h3 {
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
}

.sixboxeswp .box.secondbox .topcontent h4 {
  color: var(--tertiary);
  font-size: 15px;
}

.sixboxeswp .box.secondbox .bottomcontent p {
  color: var(--primary);
  margin-bottom: 0;
}

.sixboxeswp .box.secondbox .bottomcontent .ratingbox {
  margin-top: 10px;
}

/* Start css for whoiswaitermatewp here  */
.whoiswaitermatewp h4 {
  font-size: 20px;
  color: var(--secondary);
  margin: 0 0 15px 0;
}

.whoiswaitermatewp h2 {
  font-size: 42px;
  color: var(--primary);
  font-weight: 700;
  margin: 0 0 15px 0;
}

.whoiswaitermatewp p {
  color: var(--primary);

}

.whoiswaitermatewp ul {
  margin: 15px 0 0 0;
  padding: 0;
}

.whoiswaitermatewp ul li {
  border: 1px solid #FAAD14;
  display: inline-block;
  margin: 0 10px 10px 0;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary);
}

/* start css for five section wp */

.fivesectionwp {
  background: var(--gradient-primary);
  padding: 0;
  color: var(--white);
}

.fivesectionwp h2 {
  font-size: 42px;
  font-weight: 500;
  margin: 0;
}

.fivesectionwp h4 {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 35px 0;
}

.fivesectionwp p {
  font-size: 18px;
  margin: 25px 0;
}

.fivesectionwp .imgbox img {
  max-width: 100%;
}

/* how it work css here  */
.howitworkwp {
  background: #FAAD1408;
}

.howitworkwp h2 {
  font-weight: 600;
  font-size: 42px;
  color: var(--primary);
  margin-bottom: 25px;
}

.howitworkwp .boxsec {
  display: flex;
  align-items: center;
  margin: 25px 0;
}

.howitworkwp .boxsec .numberbox {
  display: flex;
  align-items: center;
  margin: 0 15px 0 0;
  color: rgba(0, 43, 107, 0.2);
  font-size: 100px;
  line-height: 100px;
  font-weight: 500;
}

.howitworkwp .boxsec .content {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(237, 238, 240, 1);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 10px 25px 100px rgba(0, 43, 107, 0.1);
  margin-right: 15px;
}

.howitworkwp .boxsec .content .iconbox {
  display: inline-block;
  min-width: 56px;
  max-width: 56px;
  margin-right: 15px;
  border-radius: 50%;
  overflow: hidden;
  min-height: 56px;
  max-height: 56px;
}

.howitworkwp .boxsec .content .iconbox img {
  max-width: 100%;
}

.howitworkwp .boxsec .content p {
  margin: 0;
  font-size: 18px;
  color: var(--primary);
}

/* Start pricing css  */
.pricingWp h2 {
  font-size: 42px;
  font-weight: 600;
  color: var(--primary);
}

.pricingWp p {
  font-size: 18px;
  color: var(--tertiary);
}

.pricingWp .tablecol {
  border: 1px solid rgba(230, 233, 245, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricingWp .tablecol .cardtop {
  padding: 25px;
  min-height: 230px;
  text-align: center;
  border-bottom: 1px solid rgba(230, 233, 245, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--primary);
}

.pricingWp .col-md-4:first-child .tablecol .cardtop,
.pricingWp .col-md-4:first-child .tablecol .cardbox {
  text-align: left;
}

.pricingWp .tablecol .cardtop h5 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.pricingWp .tablecol .cardtop h3 {
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
}

.pricingWp .tablecol .cardtop h4 {
  font-size: 40px;
  font-weight: 700;
  margin: 20px 0;

}

.pricingWp .tablecol .cardtop h4 span {
  font-size: 16px;
  line-height: 20px;

}

.pricingWp .tablecol .cardtop .btncls {
  background: linear-gradient(90deg, #213448 0%, #04192f 100%);
  padding: 15px;
  border-radius: 12px;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
}

.pricingWp .tablecol .cardtop .btncls:hover {
  opacity: 0.9;
}

.pricingWp .tablecol .cardtop.active .btncls {
  background: var(--secondary);
  color: var(--primary);
}

.pricingWp .tablecol .cardtop.active {
  background: var(--gradient-primary);
  color: var(--white);
}

.pricingWp .tablecol .cardtop h5 .offtext {
  font-size: 14px;
  border: 1px solid rgba(133, 139, 160, 1);
  display: inline-block;
  padding: 6px 15px;
  border-radius: 50px;
  margin-left: 10px;
}

.pricingWp .tablecol .cardtop p {
  font-size: 14px;
  margin: 15px 0 0 0;
  color: var(--tertiary);
}

.pricingWp .tablecol .cardbox {
  padding: 15px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(230, 233, 245, 1);
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricingWp .tablecol .cardbox h6 {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary);
  margin: 0;
}

.pricingWp .tablecol .cardbox p {
  font-size: 14px;
  font-weight: 500;
  color: var(--tertiary);
  margin: 0;
}

/* start integration-section css here  */
.integration-section h2 {
  font-size: 42px;
  font-weight: 600;
  color: var(--primary);
}

.integration-section p {
  margin: 0;
  color: var(--tertiary);
}

.integration-section ul {
  padding: 0;
  margin: 25px 0;
}

.integration-section ul li {
  margin: 10px;
  display: inline-flex;
  box-shadow: 0 1px 14px #0000001A;
  border-radius: 20px;
  padding: 5px 20px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

/* Start Accordian css here  */
.faq-container h2 {
  font-size: 42px;
  font-weight: 600;
  color: var(--primary);
}

.accordion-item {
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border-radius: 20px !important;
  border: 1px solid #E6E9EA;
}

.accordion-item .accordion-header .accordion-button {
  overflow: hidden;
  transition: all 0.3s ease;
  border-radius: 20px !important;
  border: 1px solid #E6E9EA;
  font-size: 18px;
}

.accordion-button {
  background-color: var(--white);
  border: none;
  box-shadow: none;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 20px;
  display: flex;
  align-items: center;
}

.accordion-button::after {
  content: "";
  font-size: 1.5rem;
  background: url(../images/accordianicon.svg);
  margin-left: auto;
  transition: transform 0.2s;
}

.accordion-button:not(.collapsed)::after {
  content: "";
  background: url(../images/accordianicon.svg);
  transform: rotate(45deg);
  color: var(--secondary);
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  background-color: #FAFAFA;
  padding: 0 20px 20px 75px;
  font-size: 16px;
  color: var(--primary);
}

.accordion-item.active {
  border: 1px solid var(--secondary);
  background-color: #FAFAFA;
}

.faq-container .accordion-button:not(.collapsed) {
  background-color: #FAFAFA;
  border: 0;
  box-shadow: none;
}

.faq-container .accordion-button:not(.collapsed) .question-number {
  background-color: var(--white);

}

.question-number {
  width: 40px;
  height: 40px;
  background-color: #fafafa;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-right: 15px;
  flex-shrink: 0;
}

/* Start bookademosectionwp css here  */
.bookademosectionwp {
  position: relative;
}
.bookademosectionwp .bottomcontent {
  background: var(--gradient-primary);
  padding: 4rem 0;
  color: var(--white);
}
.bookademosectionwp .bottomcontent h2{
  font-size: 42px;
  font-weight: 600;
  color: var(--white);
}
.bookademosectionwp .bottomcontent h2 span{
  color: var(--secondary);
}
.bookademosectionwp .bottomcontent p{
  font-size: 18px;
  line-height: 26px;
  margin: 15px 0;
}
.bookademosectionwp .rating-box {
  border: 1px solid var(--secondary);
  border-radius: 20px;
  background: #FAAD1412;
  padding: 15px;
  color: var(--primary);
}
.bookademosectionwp .rating-box .start{
    width: 40px;
    height: 40px;
    display: flex;
    margin-bottom: 35px;
    background: var(--secondary);
    border-radius: 50%;
    color: var(--white);
    text-align: center;
    justify-content: center;
    align-items: center;
    line-height: 45px;
}
.bookademosectionwp .rating-box h4{
    font-size: 30px;
    font-weight: 600;
    margin: 0 0 5px 0;
}
.bookademosectionwp .rating-box p {
  margin: 0;
}
.bookademosectionwp .video-box{
  background: var(--gradient-primary);
  border-radius: 400px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--white);
}
.bookademosectionwp .video-box .rounded-circle-wp {
  height: 190px;
  width: 190px;
  border-radius: 50%;
  overflow: hidden;
}
.bookademosectionwp .video-box .contenttext {
  text-align: center;
    white-space: nowrap;
    margin: 0 15px;
}
.bookademosectionwp .video-box .contenttext {
  text-align: center;
    white-space: nowrap;
    margin: 0 15px;
}
.bookademosectionwp .video-box .contenttext  h3{
    font-size: 45px;
    margin: 0;
}
.bookademosectionwp .formwpsection {
    box-shadow: 10px 25px 100px #FAAD1426;
    background: var(--white);
    border-radius: 24px;
    padding: 25px;
    width: 100%;
}
.bookademosectionwp .formwpsection h3{
    font-size: 30px;
    text-align: center;
    font-weight: 600;
    margin: 10px 0 30px 0;
    color: var(--primary);
}
.bookademosectionwp .formwpsection .form-label {
  color: var(--primary);
}
.bookademosectionwp .formwpsection .inputbox {
    /* border: 1px solid #ECECEC; */
    position: relative;
    border-radius: 6px;
}
.bookademosectionwp .formwpsection .inputbox .icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    margin: auto;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bookademosectionwp .formwpsection .inputbox .form-control, .bookademosectionwp .formwpsection .inputbox .form-select {
  padding-left: 40px;
      min-height: 54px;
}
.bookademosectionwp .formwpsection .btn-submit {
    background: var(--secondary);
    color: var(--black);
    width: 100%;
    border: 0;
    padding: 10px;
    min-height: 54px;
    border-radius: 6px;
    transition: all 0.3s;
    font-weight: 600;
    margin-top: 15px;
}
.bookademosectionwp .formwpsection .btn-submit {
    opacity: 0.8;
}
.bookademosectionwp .formwpsection .termandconditiontext {
  color: var(--secondary);
  font-weight: 600;
}
/* Start Footer css here  */
.footer {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 60px 0 50px;
}

.footer .col-first .footerlogo {
  margin-bottom: 20px;
}

.footer .col-first p {
  color: var(--white);
  font-size: 14px;
  margin: 0;
}

.footer .col-first p strong {
  color: var(--secondary);
}

.footer h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary);
}

.footer .list-unstyled {
  margin: 0
}

.footer .list-unstyled li {
  font-size: 14px;
  margin: 10px 0;
}

.footer .newsletter {
  background: var(--white);
  padding: 2px;
  border-radius: 8px;
  align-items: center;
  justify-content: space-between;
}

.footer p,
.footer a {
  color: var(--white);
  text-decoration: none;
}

.footer a:hover {
  color: var(--secondary);
}

.footer .newsletter input {
  border-radius: 8px 0 0 8px;
  border: none;
  padding: 10px;
  width: 80%;
}

.footer .newsletter button {
  border-radius: 8px;
  border: none;
  background: var(--secondary);
  color: var(--primary);
  padding: 10px 20px;
}

.footer .social-icons a {
  color: var(--white);
  margin: 0 8px;
  font-size: 20px;
}

.footer-bottom {
  padding-top: 15px;
  margin-top: 15px;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom ul {
  padding: 0;
  float: right;
  display: flex;
  align-items: center;
  margin: 0;
}

.footer-bottom ul li {
  display: inline-block;
  margin-left: 15px;
}

/* form css */
/* Form validation styles */
    .inputbox.error input,
    .inputbox.error select {
        border-color: #dc3545 !important;
        box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    }

    .form-check.error {
        border: 1px solid #dc3545;
        border-radius: 5px;
        padding: 8px;
    }

    .error-message {
        color: #dc3545;
        font-size: 12px;
        margin-top: 5px;
        font-weight: 500;
    }

    /* Success popup styles */
    .success-popup {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        animation: fadeIn 0.3s ease;
    }

    .success-popup .popup-content {
        background: white;
        padding: 30px;
        border-radius: 10px;
        text-align: center;
        max-width: 400px;
        margin: 20px;
        animation: slideIn 0.3s ease;
    }

    .success-icon {
        width: 60px;
        height: 60px;
        background: #28a745;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        margin: 0 auto 20px;
    }

    /* Terms popup styles */
    .terms-popup {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        animation: fadeIn 0.3s ease;
    }

    .terms-popup .popup-content {
        background: white;
        border-radius: 10px;
        max-width: 500px;
        margin: 20px;
        max-height: 80vh;
        overflow-y: auto;
        animation: slideIn 0.3s ease;
    }

    .popup-header {
        padding: 20px 20px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #eee;
        margin-bottom: 20px;
    }

    .popup-header h3 {
        margin: 0;
        color: #333;
    }

    .close-btn {
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #666;
    }

    .popup-body {
        padding: 0 20px;
        line-height: 1.6;
        color: #555;
    }

    .popup-footer {
        padding: 20px;
        text-align: center;
        border-top: 1px solid #eee;
        margin-top: 20px;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    @keyframes slideIn {
        from { transform: translateY(-30px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }
    .viva_logo_svg{
        margin-left: 5px;
        margin-top: -5px;
    }
    .payment_powered_p{
        padding: 0px !important;
        margin: 0px !important;
        margin-bottom: -20px !important;

    }

  .cstm-book-demo-btn{
      background: #FAAD14  !important;
      color: #000  !important;
      font-weight: 600;
  }





@media only screen and (max-width: 766px) {
  .hero-section h1{
    font-size: 42px;
  }
  .whoiswaitermatewp h2 {
    font-size: 28px;
  }
  .whychoosewp h2 {
    font-size: 38px;
  }

  .fivesectionwp h2 {
    font-size: 34px;
  }

  .faq-container h2 {
    font-size: 35px;
  }
  .hero-section p {
    font-size: 18px;
  }
  /*
  .whychoosewp .bottom-content {
    flex-direction: column !important;
    position: relative;
  }
  
  .whychoosewp .bottom-content .col-md-5 {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .whychoosewp .mainimgbox img {
    max-width: 280px !important;
    height: auto !important;
  }
  
  .whychoosewp .boxeswp {
    width: 100% !important;
    overflow: hidden;
    position: relative;
  }
  
  .whychoosewp .boxeswp .row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-behavior: smooth;
    padding: 0 15px 20px 15px;
    margin: 0 !important;
    gap: 15px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  
  .whychoosewp .boxeswp .row::-webkit-scrollbar {
    display: none;
  }
  
  .whychoosewp .boxeswp .col-md-6 {
    flex: none !important;
    width: auto !important;
    max-width: none !important;
    padding: 0 !important;
    display: flex !important;
  }
  
  .whychoosewp .boxeswp ul {
    display: flex !important;
    flex-direction: row !important;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .whychoosewp .boxeswp ul li {
    background: #ffffff !important;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    min-height: 190px;
    min-width: 200px;
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .whychoosewp .boxeswp ul li img {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }
  
  .whychoosewp .boxeswp ul li h5 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
  }
  
  .whychoosewp .boxeswp ul li p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.4;
  }
  
  .whychoosewp .boxeswp::after {
    content: "← Swipe to see more →";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
  }
  .whychoosewp .boxeswp .row {
    scroll-snap-type: x mandatory;
  }
  
  .whychoosewp .boxeswp ul li {
    scroll-snap-align: start;
  }
    */
  body {
    overflow-x: hidden !important;
  }
  
  html {
    overflow-x: hidden !important;
  }
  
.container {
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }  
  
  img {
    max-width: 120% !important;
    height: auto !important;
  }
  
  .navbar {
    overflow-x: hidden !important;
  }
  
  .formwpsection {
    max-width: 100% !important;
  }
  .bookademosectionwp .formwpsection{
    left:0px;
    top:2px;
  }
  #faqwp{
    margin-top:-70px;
  }
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #213448 0%, #04192f 100%);;
    
    color: white;
}

.pricing-content {
    max-width: 100%;
}

.pricing-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    line-height: 1.2;
}

.pricing-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 710px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-info {
    margin-bottom: 0;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.price-number {
    font-size: 64px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.price-label {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}

.price-plus {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin: 0 10px;
}

.no-licence-text {
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.pricing-btn {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
}

.pricing-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(243, 156, 18, 0.4);
    text-decoration: none;
}

.payment_powered_p {
    line-height: 80px !important;
}
.payment_powered_p * {
    font-size: 24px !important;
}
.viva_logo_svg.foo path {
    fill: #000 !important;
}
/* Mobile Responsive */
@media (max-width: 991px) {
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-title {
        font-size: 36px;
    }
    
    .pricing-description {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .price-number {
        font-size: 48px;
    }
    
    .price-plus {
        font-size: 36px;
    }
    
    .price-label {
        font-size: 16px;
    }
    
    .no-licence-text {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .pricing-section {
        padding: 50px 0;
    }
    
    .pricing-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .pricing-description {
        font-size: 15px;
        margin-bottom: 35px;
    }
    
    .price-main {
        gap: 6px;
        margin-bottom: 25px;
    }
    
    .price-number {
        font-size: 40px;
    }
    
    .price-plus {
        font-size: 30px;
        margin: 0 5px;
    }
    
    .price-label {
        font-size: 14px;
    }
    
    .no-licence-text {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .pricing-btn {
        padding: 14px 28px;
        font-size: 16px;
    }

    .displaOnSmallDevie{
      display: block !important;
    }
    .displaOnSmallDevie ul{
      text-align: center;
      padding: 0px;
    }
    .form-back-mob{
      background: #0c2136;
      padding: 20px;
    }
    .bookademosectionwp .bottomcontent{
      padding-bottom: 20px;
    }
    .bookademosectionwp .bottomcontent h2, .faq-container h2 {
      font-size: 36px;
    }
    div#formwpsection {
      padding: 0px;
    }
    #integrationswp{
      padding-top:0px;
    }

    footer .row .foo-col {
      margin-top: 30px !important;
    }
    .mainimgbox img{
      margin-left: -10%;
    }
}

@media (max-width: 480px) {
    .price-main {
        flex-direction: row;
        align-items: center;
        gap: 5px;
    }
    
    .price-plus {
        margin: 5px 0;
    }

    .viva_logo_svg{
      margin-top:-50px;
    }
}

@media only screen and (min-width: 768px){
  .bookademosectionwp .formwpsection {
    margin-top:-50px;
    position:absolute;
  }
}

