html {
  scroll-behavior: smooth;
}

.vendor-content a {
  text-decoration: none;
  color: black;
}

.new-nav {
  padding: 0px 80px !important;
}

@media (max-width: 1199px) and (min-width: 769px) {
  .new-nav {
    padding: 0px 20px !important;
  }
  .logo-main {
    gap: 25px !important;
  }
  .wlcm-div {
    gap: 10px !important;
    width: 60%;
  }
  .logo-main button {
    padding: 5px 8px !important;
    font-size: 13px !important;
    letter-spacing: normal !important;
  }
  .logo-inner {
    width: 40%;
  }
  .logo-inner img {
    width: 100%;
  }
  .nav-main-ul a {
    font-size: 13px !important;
  }
  .logo-main p {
    font-size: 12px !important;
  }
  .contact-btn {
    padding: 3px 15px !important;

    padding-bottom: 5px !important;
  }
}

@media (max-width: 1400px) and (min-width: 1200px) {
  .new-nav {
    padding: 0px 20px !important;
  }
  .logo-main {
    gap: 25px !important;
  }
  .wlcm-div {
    gap: 10px !important;
    width: 60%;
  }
  .logo-main button {
    padding: 5px 13px !important;
    font-size: 15px !important;
    letter-spacing: normal !important;
  }
  .logo-inner {
    width: 40%;
  }
  .logo-inner img {
    width: 100%;
  }
  .nav-main-ul a {
    font-size: 15px !important;
  }
  .logo-main p {
    font-size: 14px !important;
  }
  .contact-btn {
    padding: 3px 15px !important;

    padding-bottom: 5px !important;
  }
}

@media (max-width: 1360px) and (min-width: 930px) {
  .nav-main-ul {
    gap: 20px;
    justify-content: space-between !important;
  }
  .logo-main {
    gap: 30px !important;
  }
}

/* @media (max-width:1360px) and (min-width:1200px){
  .nav-main-ul{
    gap: 20px;
  }
  .logo-main{
    gap: 30px !important;
  }
} */

@media (max-width: 1700px) and (min-width: 1360px) {
  .nav-main-ul {
    justify-content: right;
    gap: 30px;
  }

  .new-nav {
    padding: 0px 20px !important;
  }
  .logo-main {
    gap: 30px !important;
  }
  .wlcm-div {
    gap: 10px !important;
    width: 60%;
  }
  .logo-main button {
    padding: 5px 13px !important;
    font-size: 15px !important;
    letter-spacing: normal !important;
  }
  .logo-inner {
    width: 40%;
  }
  .logo-inner img {
    width: 100%;
  }
  .nav-main-ul a {
    font-size: 15px !important;
  }
  .logo-main p {
    font-size: 14px !important;
  }
  .contact-btn {
    padding: 3px 15px !important;

    padding-bottom: 5px !important;
  }
}

@media (max-width: 2800px) and (min-width: 1700px) {
  .nav-main-ul {
    justify-content: end !important;
    gap: 40px !important;
  }
}

navbar input[type="checkbox"],
.navbar .hamburger-lines {
  display: none;
}

.wlcm-div {
  display: flex;
  gap: 20px;
}

.navbar {
  position: fixed;
  width: 100%;
  background: #fff;
  color: #000;
  opacity: 0.85;
  z-index: 100;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  height: 64px;
  align-items: center;
  position: relative;
}

.menu-items {
  display: flex;
}
.logo {
  order: 2;
  font-size: 2.3rem;
}

.menu-items li {
  list-style: none;
  margin-left: 1.5rem;
  font-size: 1.3rem;
}

.navbar a {
  color: #444;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

.navbar a:hover {
  color: #117964;
}

.mobile-topbar {
  display: flex;
  justify-content: left;
  gap: 10px;
  width: 100%;
  align-items: center;
  padding: 10px 10px;
  border-bottom: 1px solid #db9330;
}

@media (max-width: 768px) {
  .navbar {
    opacity: 10;
    padding: 0px !important;
  }

  .navbar-container input[type="checkbox"],
  .navbar-container .hamburger-lines {
    display: block;
  }

  .navbar-container {
    display: block;
    position: relative;
  }

  .navbar-container input[type="checkbox"] {
    position: absolute;
    display: block;
    height: 32px;
    width: 30px;
    top: 20px;
    right: 20px; /* Move the hamburger toggle to the right */
    z-index: 5;
    opacity: 0;
    cursor: pointer;
  }

  .navbar-container .hamburger-lines {
    display: block;
    height: 28px;
    width: 35px;
    position: absolute;
    top: 20px;
    right: 20px; /* Move the hamburger lines to the right */
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .navbar-container .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #333;
  }

  .navbar-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.3s ease-in-out;
  }

  .navbar-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }

  .navbar-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.3s ease-in-out;
  }

  .navbar .menu-items {
    padding-top: 100px;
    background: #fff;
    height: 100vh;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    margin-left: -40px;
    padding-left: 40px;
    transition: transform 0.5s ease-in-out;
    overflow: scroll;
    width: 100%;
  }

  .navbar .menu-items li {
    margin-bottom: 1rem;
    font-size: 18px;
    font-weight: 600;
  }

  .logo {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 2.5rem;
  }

  .navbar-container input[type="checkbox"]:checked ~ .menu-items {
    transform: translateX(0);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg);
  }
}

body {
  font-family: "Manrope", sans-serif !important;
}

sup {
  font-size: 8px !important;
  color: black;
}

.nav-section {
  padding: 10px 0px;
}

.logo-main {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 40px;
}

.logo-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-main p {
  margin: 0px;
  color: black;
  font-weight: 550;
  font-size: 15px;
  margin-top: 6px;
  letter-spacing: 0.5px;
}

.logo-main button {
  background: linear-gradient(90deg, #f2b236 0%, #a87410 100%);
  border: none;
  color: white;
  border-radius: 25px;
  padding: 6px 22px;
  font-size: 19px;
  letter-spacing: 1px;
}



.logo-main span {
  font-weight: 600;
}

.nav-main-ul a {
  color: black;
  font-size: 16px;
  text-decoration: none;
}

.nav-main-ul a:hover {
  color: #BC8848;
}

.nav-main-col {
  display: flex;
  align-items: center;
}

.nav-main-ul {
  display: flex;
  list-style: none;
  justify-content: end;
  margin: 0px;
  align-items: center;
  width: 100%;
  padding: 0px;
}

.contact-btn {
  border-radius: 25px;
  background-color: #3c3c3c;
  padding: 6px 20px;
  cursor: pointer;
  border: 2px solid #3c3c3c;
}

.contact-btn:hover {
  background-color: transparent;
  color: black;
  border: 2px solid #3c3c3c;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-btn-a {
  color: white !important;
}

.banner-section {
  background-image: url(../img/shaadipro-banner.png);
  padding: 350px 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (min-width: 769px) {
  .about-row {
    --bs-gutter-x: 60px !important;
  }
}

.unique-title {
  position: relative;
  width: 300px;
  font-weight: 600;
  text-align: center;
  position: relative;

  font-weight: 600;
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.frequent {
  width: 500px;
}

.about-unique {
  width: 200px;
}

.gallery-unique {
  width: 200px;
}

.title_divider {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 8px;
  width: 100%;
}

.title_divider::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #ababab;
  bottom: 16px;
  z-index: 1;
}

.title_divider img {
  max-width: 80px;
  position: relative;
  z-index: 2;
}

.about-us-section {
  padding: 80px 0px;
  position: relative;
}

.about-us-section::before {
  position: absolute;
  content: "";
  right: 0;
  top: 0%;

  background: url("../img/leaves-rgt.png");
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  width: 200px;
  height: 300px;
}

.about-us-section::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -10px;

  background: url("../img//leaves-lft.png");
  background-repeat: no-repeat;
  background-position: start;
  background-size: cover;
  width: 200px;
  height: 300px;
}

.about-right-col p {
  text-align: justify;
  font-size: 21px;
  line-height: 38px;
  margin: 0px;
}

.about-right-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-box-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  border: 2px solid #0000001a;
  border-radius: 10px;
  padding: 30px 20px;
}

.featured-box-main img {
  width: 35%;
}

.featured-box-main h3 {
  font-weight: 600;
  font-size: 22px;
}

.featured-row {
  --bs-gutter-y: 30px !important;
  --bs-gutter-x: 20px !important;
}

.featured-box-main button {
  border-radius: 25px;
  background-color: #1C1B1F;
  padding: 4px 17px;
  border: 2px solid #1C1B1F;
  color: white;
  font-family: montserrat;
  font-weight: 600;
  font-size: 15px;
}

.featured-box-main button:hover {
  background-color: transparent;
  color: black;
  border: 2px solid #1C1B1F;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.feature-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px;
}

.top-features-section {
  padding-bottom: 80px;
}

.vendor-heading {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vendor-title {
  padding-bottom: 40px;
}

.vendor-title::after {
  bottom: -40px;
}

.vendor-box img {
  width: 100%;
}

.vendor-content {
  padding: 15px;
  padding-bottom: 25px;
  box-shadow: 0px 0px 15px 0px #0000001a;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.vendor-content h3 {
  font-size: 22px;
  font-weight: 600;
}

.vendor-box {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.vendor-content p {
  color: black;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  gap: 10px;
  align-items: start;
  margin: 0px;
}

.vendor-content i {
  color: #F74B00;
  margin-top: 3px;
  font-size: 20px;
}

.vendor-row {
  --bs-gutter-y: 34px !important;
  padding-top: 50px;
}

.stripe-1-col h1 {
  font-weight: 600;
  font-size: 38px;
}

.stripe-1-col a {
  border-radius: 50px;
  background-color: #3c3c3c;
  padding: 4px 35px;
  color: white;
  border: none;
  font-weight: 600;
  font-size: 26px;
  padding-bottom: 6px;
  border: 2px solid #3c3c3c;
}

.stripe-1-col a:hover {
  background-color: transparent;
  color: black;
  border: 2px solid #3c3c3c;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.stripe-1-col {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #F74B0033;
  padding: 60px 30px;
  gap: 20px;
}

.stripe-1-col-2 {
  background-color: #F74B001A;
}

.stripe-section {
  padding: 80px 0px;
}

.testimonial-section {
  padding: 80px 0px;
}

.testimonial-name {
  display: flex;
  justify-content: space-between;
}

.testimonial-name h3 {
  font-weight: 600;
  font-size: 22px;
}

.testimonial-box h6 {
  margin-top: -7px;
  color: #1C1B1F;
  font-size: 19px;
}

.testimonial-box {
  padding: 30px 17px;
background: #F74B001A;

  border-radius: 8px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.testi-row-2 .testimonial-box{
  background: #F74B000D !important;
 
}

.testimonial-name img {
  width: 14%;
}

.testimonial-box p {
  color: black;
  line-height: 27px;
  padding-top: 6px;
  flex-grow: 1;
}

.testi-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-rating i {
  color: #ffa228;
  font-size: 12px;
}

.testi-row {
  padding-top: 50px;
  --bs-gutter-y: 30px !important;
}

.testi-row{
  padding-top: 30px;
}

.test-box-2 {
  background-color: #fffaf3;
}

.faq-main {
  background-color: white;
  color: black;
  border-radius: 6px;
  border: 1px solid #0000001a;
  box-shadow: 0px 0px 7px 0px #00000000;
  margin: 25px 0;
}

.question {
  font-size: 21px;
  font-weight: 600;
  padding: 22px 80px 15px 20px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 4px;
}

.question::after {
  content: "\003C";
  font-size: 22px;
  position: absolute;
  right: 20px;
  transition: 0.2s;
  transform: rotate(270deg);
  color: white;
  background-color: #F74B00;
  border-radius: 50%;
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 100;
  line-height: 0;
  padding-bottom: 4px;
}

.question.active::after {
  transform: rotate(90deg);
  color: white;
  background-color: #F74B00;
  border-radius: 50%;
  object-fit: contain;
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 0;
  padding-bottom: 4px;
  font-weight: 100;
}

.frequently::after {
  bottom: -43px;
  width: 22%;
  left: 38%;
}

.technical h3 {
  font-weight: 600 !important;
}

.answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.answer {
  padding: 0 20px 0px;
  line-height: 25px;
  font-size: 19px;
  text-align: justify;
  padding-right: 5%;
}

@media screen and (max-width: 790px) {
  html {
    font-size: 14px;
  }
  .wrapper {
    width: 80%;
  }
}

.bottom-btn-main a {
  border: 1.3px solid #F74B00;
  border-radius: 13.19px;
  background-color: transparent;
  color: black;
  padding: 9px 19px;
  font-weight: 500;
  font-size: 17px;
  text-decoration: none;
}

.bottom-btn-main a:hover {
  background-color: #F74B00;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition */
}

.bottom-btn-section {
  padding: 70px 0px 80px 0px;
}

.bottom-btn-main {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 13px;
}

.pro-btn {
  border-radius: 25px;
  background: linear-gradient(
    90deg,
    rgb(242, 178, 54) 0%,
    rgb(168, 116, 16) 100%
  );
  padding: 5px 25px;
  border: none;
  font-size: 26px;
  color: white;
  font-weight: 600;
  margin-bottom: 40px;
  letter-spacing: 1px;
  text-decoration: none;
}

.technical {
  font-size: 28px;
}

.pro-btn-main {
  display: flex;
  justify-content: center;
}

.footer-main {
  background-color: #fffaf3;
}

.footer-main-div {
  display: flex;
  flex-direction: column;
  padding: 60px 0px 30px 0px;
  align-items: center;
  gap: 30px;
}

.footer-main-div ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
  text-decoration: none;
  padding: 0px;
}

.footer-main-div ul a {
  text-decoration: none;
  text-transform: capitalize;
  color: black;
  font-weight: 500;
}

li::marker {
  color: #C69D5B !important;
  font-size: 20px !important;
}

.footer-logo-div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
}

.footer-main-div p {
  color: #BC8848;
  font-size: 18px;
  margin-top: 20px;
}

.footer-main-div span {
  color: black;
}

.featured-box-main .testimonial-box .faq-main {
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background-color: #BC8848;
  border-radius: 10px;
}

.gallery-container {
  display: grid;
  grid-template-columns: auto auto;
  gap: 8px;
}

.gallery-item {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  aspect-ratio: 1;
  overflow: hidden;
}

.featured-row {
  padding-top: 20px;
}

@media screen and (max-width: 576px) {
  .featured-box-main h3 {
    font-size: 15px !important;
  }
  .vendor-row {
    --bs-gutter-x: 10px !important;
  }

  .vendor-content {
    padding: 10px 5px !important;
  }

  .vendor-content h3 {
    font-size: 15px !important;
  }

  .vendor-col {
    margin-top: 15px !important;
  }

  .featured-box-main h3 {
    font-size: 18px;
  }
  .feature-heading {
    padding-bottom: 10px !important;
  }
  .frequent {
    width: 362px !important;
  }
  .stripe-section {
    padding-bottom: 40px !important;
  }
  .bottom-btn-section {
    padding: 40px 0px 50px 0px !important;
  }

  .vendor-content i {
    font-size: 14px !important;
  }

  .featured-row {
    --bs-gutter-y: 10px !important;
    --bs-gutter-x: 10px !important;
  }
  .featured-box-main {
    padding: 15px 10px;
    height: 100%;
  }
  .featured-row {
    padding-top: 0px;
  }
  .vendor-row {
    padding-top: 20px !important;
  }
  .vendor-content h3 {
    font-size: 16px;
  }
  .vendor-content p {
    gap: 4px !important ;
    font-size: 13px !important;
  }
  .vendor-content i {
    font-size: 17px;
  }

  .stripe-1-col h1 {
    font-size: 25px !important;
  }
  .stripe-1-col a {
    padding: 6px 23px !important;
    font-size: 20px !important;
  }
  .testimonial-box {
    padding: 13px !important;
  }
  .testimonial-box p {
    line-height: 23px !important;
    padding-top: 0px !important;
  }
  .testi-row {
    --bs-gutter-y: 15px !important;
  }
  .test-col {
    margin-top: 10px !important;
  }
  .testimonial-name h3 {
    font-size: 19px !important;
  }
  .testimonial-box h6 {
    font-size: 17px !important;
    margin-top: -9px !important;
  }
}

@media screen and (max-width: 767px) {
  .featured-box-main h3 {
    font-size: 18px;
  }

  .featured-box-main button {
    font-size: 12px;
    padding: 5px 15px;
  }
  .featured-box-main img {
    width: 50%;
  }
  .footer-main-div ul a {
    font-size: 16px !important;
  }

  .footer-main-div {
    gap: 0px !important;
  }

  .footer-main-div ul {
    gap: 5px !important;
  }

  .featured-row {
    --bs-gutter-y: 10px !important;
    --bs-gutter-x: 10px !important;
  }
  .featured-box-main {
    padding: 15px 10px;
    height: 100%;
  }
  .featured-row {
    padding-top: 0px;
  }
  .vendor-row {
    padding-top: 20px !important;
  }
  .vendor-content h3 {
    font-size: 16px;
  }
  .vendor-content p {
    gap: 6px;
    font-size: 15px;
  }
  .vendor-content i {
    font-size: 17px;
  }
  .vendor-content {
    padding: 10px;
  }

  .banner-section {
    padding: 150px 0px;
  }

  #scrolltop {
    right: 37px !important;
    height: 30px !important;
    width: 30px !important;
  }

  .testi-row {
    padding-top: 30px;
  }
  .about-right-col p {
    line-height: 28px;
    font-size: 16px;
  }
  .about-right-col {
    gap: 14px;
    padding-top: 30px;
    align-items: center;
  }
  .about-us-section {
    padding: 40px 0px;
  }
  .about-us-section::before {
    top: -3%;
    width: 200px;
    height: 229px;
  }
  .about-us-section::after {
    bottom: -42px;
    width: 138px;
    height: 180px;
    transform: rotate(-7deg);
  }
  .featured-row {
    --bs-gutter-y: 20px !important;
  }
  .top-features-section {
    padding-bottom: 50px;
  }
  .vendor-row {
    padding-top: 40px;
  }
  .vendor-row {
    --bs-gutter-y: 24px !important;
  }
  .stripe-section {
    padding: 50px 0px;
  }
  .stripe-1-col a {
    padding: 4px 28px;

    font-size: 19px;

    letter-spacing: 1px;
  }
  .stripe-1-col h1 {
    font-size: 32px;
  }
  .stripe-1-col {
    padding: 40px 20px;
    gap: 18px;
  }

  .feature-heading {
    padding-bottom: 20px;
  }
  .testimonial-section {
    padding: 40px 0px;
  }
  .test-title {
    width: 44%;
  }
  .test-title::after {
    left: 30%;
  }
  .unique-title {
    font-size: 26px;
  }
  .vendor-title {
    padding-bottom: 40px;
  }
  .vendor-title::after {
    bottom: -36px;
    left: 25%;
  }
  .frequently::after {
    bottom: -35px;
  }
  .testi-row {
    --bs-gutter-y: 25px !important;
  }
  .question {
    font-size: 16px;
    padding: 14px 80px 8px 20px;
  }
  .answer {
    font-size: 14px;
    line-height: 22px;
  }
  .question::after {
    height: 30px;
    width: 30px;
  }
  .question.active::after {
    height: 30px;
    width: 30px;
  }
  .faq-main {
    margin: 15px 0px;
  }
  .technical::after {
    bottom: -35px;
  }
  .bottom-btn-main button {
    padding: 6px 10px;
    font-size: 14px;
  }
  .footer-main-div ul {
    flex-direction: column;
    padding: 20px;
  }
  .bottom-btn-main {
    gap: 10px;
  }
  .footer-main-div ul a {
    margin: 0px;
  }
  .footer-main-div {
    padding: 40px 10px 10px 10px;

    gap: 15px;
  }
  .footer-logo-div {
    gap: 0px;
    flex-wrap: wrap;
  }
  .bottom-btn-section {
    padding: 50px 0px 60px 0px;
  }
  .footer-icons-mobile {
    width: 80%;
  }
}

@media screen and (min-width: 991px) {
  .gallery-container {
    display: grid;
    grid-template-columns: 29% 4% 20% 10% 10% 5% auto;
    grid-template-rows: 36% auto 40%;
    gap: 16px;
  }

  .gi-span-2 {
    grid-row: 1/3;
    grid-column: 1/3;
  }

  .gi-col-2 {
    grid-column: span 2;
  }

  .gi-row-2 {
    grid-row: span 2;
  }

  .gi-col-5 {
    grid-row: 3/4;
    grid-column: span 2;
  }

  .gi2-span-2 {
    grid-row: 2/4;
    grid-column: 3/5;
  }

  .gi-row-7 {
    grid-row: 2/4;
    grid-column: 5/7;
  }

  .gi-row-8 {
    grid-row: 2/4;
    grid-column: 7/8;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .about-us-section::after {
    bottom: -65px;
  }
  .banner-section {
    padding: 250px 0px;
  }
  .about-right-col {
    padding-top: 40px;
  }
  .featured-box-main h3 {
    font-size: 19px;
  }
  .featured-box-main {
    height: 100%;
  }
  .featured-box-main img {
    width: 50%;
  }
  .featured-box-main button {
    padding: 5px 17px;
    font-size: 13px;
  }
  .vendor-content h3 {
    font-size: 18px;
  }
  .vendor-contentP {
    padding: 10px;
    padding-bottom: 15px;
    gap: 1px;
  }
  .vendor-content p {
    font-size: 15px;
  }
  .vendor-row {
    --bs-gutter-y: 24px !important;
    --bs-gutter-x: 15px !important;
  }
  .stripe-1-col h1 {
    font-size: 32px;
  }
  .stripe-1-col a {
    padding: 4px 28px;
    font-size: 21px;
  }
  .testimonial-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .testimonial-section {
    padding: 40px 0px;
  }
  .feature-heading {
    padding-top: 30px;
  }
  .stripe-section {
    padding: 70px 0px 40px 0px;
  }
}

@media (max-width: 1200px) and (min-width: 992px) {
  .about-right-col p {
    font-size: 17px;
    line-height: 26px;
  }
  .about-row {
    --bs-gutter-x: 40px !important;
  }
}

@media (max-width: 1390px) and (min-width: 1201px) {
  .about-right-col p {
    font-size: 18px;
    line-height: 29px;
  }
  .about-row {
    --bs-gutter-x: 40px !important;
  }
}

@media screen and (max-width: 768px) {
  .nav-section {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .navbar {
    display: none !important;
  }
}

.mobile-btn {
  background: linear-gradient(90deg, #f2b236 0%, #a87410 100%);
  border: none;
  color: white;
  border-radius: 25px;
  padding: 6px 20px;
  font-size: 17px;
  letter-spacing: 1px;
  width: max-content;
}

.mobile-topbar p {
  margin: 0px;
  font-size: 20px;
}

@media (max-width: 1399px) and (min-width: 768px) {
  .logo-main {
    justify-content: space-between;
  }
}

@media (max-width: 3000px) and (min-width: 1630px) {
  .container {
    width: 1600px !important;
  }
}

#scrolltop {
  display: block;
  visibility: visible;
  opacity: 1;
  transition: visibility 0s, opacity 0.5s ease-in;
  position: fixed;
  bottom: 20px;
  right: 28px;
  background: #313131;
  border-radius: 50%;
  background: #313131;
  height: 40px;
  width: 40px;

  align-items: center;

  display: flex;
  justify-content: center;
}
.top-button {
  text-decoration: none;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
  padding: 12px;
  color: #ffffff;
}

.long-text {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(0, 0, 0, 0.2);
}

/* Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  position: relative;
  margin: auto;
  width: 80%;
  max-width: 700px;
}

.modal-content {
  height: 100vh;
  align-items: center;
  justify-content: center;
  background: transparent !important;
}

.modal-content img {
  width: 100%;
  height: 500px;
  display: block;
  object-fit: cover;
}

.navigation {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.navigation button {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  user-select: none;
}

.navigation button:hover {
  color: #ccc;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  z-index: 99;
}

@media screen and (max-width: 526px) {
  .modal-content img {
    height: 350px;
  }
}
