* {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}

/* Reset & base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;

}


/* header */

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;

}
/* banner section  */

.banner {
  width: 100%;
  height: 650px;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  overflow-x: hidden;
  overflow-y: hidden;
}




.home-container {
  position: relative;
  height: 800px;
  overflow: hidden;
}

.main-container {
  font-family: "Cabin", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  background: linear-gradient(30deg,
      rgba(219, 252, 239, 0.836) 0%,
      white 40%,
      rgba(246, 223, 243, 0.836) 100%);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.shodofy-subheading {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  text-align: center;
  font-size: 1.3rem;
}

@media (max-width: 768px) {
  .shodofy-subheading {
    font-size: 1.2rem;
    position: absolute;
    left: 0px;
  }
}

@media (max-width: 480px) {

  .banner {
    min-height: unset;
    height: auto;
  }

  .shodofy-subheading {
    font-size: 1rem;
    position: absolute;
    left: 0px;
  }
}

.headercolor {
  background: linear-gradient(to right, white 0%, rgba(246, 223, 243, 0.836) 100%);
  position: sticky;
  top: 0px;
  z-index: 999;
}

header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 70px;

  backdrop-filter: blur(3px);

}

header .logo {
  width: 10%;
  align-items: center;
}

header .logo img {
  width: 200px;
  height: auto;
  transition: transform 0.4s ease;
}

header .logo img:hover {
  transform: scale(1.05) rotate(3deg);
}

header nav {
  display: flex;
  align-items: center;

}

.navlink {
  display: flex;
  width: 70%;
  justify-content: space-around;
  /* margin-top: 18px; */
}

header nav a {
  margin: 0 20px;
  text-decoration: none;
  color: #434343;
  font-size: 16px;
  font-weight: 800;

  position: relative;
  transition: color 0.3s ease;
}

header nav .aa::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #d55e2f;
  transition: width 0.3s ease;
}

header nav a:hover::after {
  width: 100%;
}

header nav .btnn {
  margin-left: 20px;
  padding: 10px 40px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(92, 61, 245, 0.3);
  position: relative;
  overflow: hidden;

}

.logo>.links:hover {
  text-decoration: none;
  border: none
}


header nav .write-review {
  background: #00661bc4;
  color: rgb(240, 240, 240);
}

header nav .write-review::before {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  transform: skewX(-20deg);
  transition: width 0.5s ease;
}

header nav .write-review:hover::before {
  width: 120%;
}

header nav .write-review:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(147, 245, 61, 0.5);
}

header nav .login {
  background: transparent;
  border: 2px solid rgba(64, 116, 18, 0.655);
  color: rgba(64, 116, 18, 0.655);
  position: relative;
  overflow: hidden;

}

header nav .login::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(147, 245, 61, 0.5);
  color: #2c630d;
  z-index: 0;
  transition: width 0.4s ease;

}

header nav .login:hover::before {
  width: 100%;
  border: none;
}

header nav .login span {
  position: relative;
  z-index: 1;
}

header nav .login:hover {
  color: #2c630d;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(147, 245, 61, 0.5);
  border: rgba(147, 245, 61, 0.5) solid 2px;

}

main {
  text-align: center;
  padding: 130px 20px;
  position: relative;
  z-index: 2;
}

main h1 {
  font-size: 50px;
  line-height: 72px;
  color: rgb(51, 51, 51);
  font-weight: 700;
}

main p {
  font-size: 20px;
  ;
  word-spacing: 2px;
}

.highlight {
  color: #33e410;
  font-weight: bold;
}

.sho {
  font-size: 78px;
  font-weight: bold;
  background: linear-gradient(to right, #95bf47, #6c4662);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Animated shapes */
.shape {
  position: absolute;
  z-index: 1;
  opacity: 0.7;
}

.shape.blue {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 30px solid #a596d2;
  background-color: white;
  top: 170px;
  left: 30px;
  animation: float 15s ease-in-out infinite;
}

.shape.red {
  width: 150px;
  height: 150px;
  border: 40px solid #95bf47;
  top: 400px;
  left: 130px;
  border-radius: 50%;
  animation: float 20s ease-in-out infinite alternate;
  transform: rotate(30deg);


}


@keyframes float-rotate {
  0% {
    transform: translateY(0px) rotate(30deg);
  }

  100% {
    transform: translateY(-30px) rotate(-70deg);
  }
}


.shape.green {
  width: 60px;
  height: 60px;
  border: 10px solid #58c7b1;
  border-radius: 50%;
  top: 140px;
  right: 100px;
  rotate: 50deg;
  animation: float 20s linear infinite;
}

.shape.purple-circle {
  width: 400px;
  height: 390px;
  border-radius: 50%;
  border: 100px solid #8d5c8a;
  bottom: 10px;
  right: -1px;
  animation: rotate 10s linear infinite reverse;
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-70px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Base button fix */
.get-started {
  position: relative;
  top: 50px;
  margin-top: 100px;
  padding: 15px 100px;
  background: #00661be3;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 18px;
  display: inline-block;
  transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease-in-out;
}

.get-started:hover {
  background: #143d21;
  box-shadow: 0 5px 15px rgba(0, 102, 27, 0.3);
  transform: translateY(-3px);
}

.get-started:active {
  transform: scale(0.95);
}

.mobile-menu-toggle {

  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
  padding: 0;
  position: relative;
  right: -110px;
  top: 0px;
}

.mobile-menu-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: #684371;
  border-radius: 4px;
}


@media (max-width: 1024px) {
  main {
    padding: 80px 20px;
  }

  main h1 {
    font-size: 38px;
  }

  main p {
    font-size: 18px;
  }

  .get-started {
    padding: 12px 80px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {


  header .logo img {
    width: 150px;
    height: 70px;
    transition: transform 0.4s ease;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    justify-content: space-between;
  }

  .navlink.active {}

  .nav-links.active {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100px;
    left: -100px;
    width: 100vw;
    background-color: #edfae6;
    padding: 20px;
    padding-left: 10px;
    gap: 20px;
    z-index: 998;
  }

  .nav-cta.active {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    position: absolute;
    top: 40px;
    left: -100px;
    width: 100vw;
    background-color: #edfae6;
    padding: 20px;
    padding-left: 10px;
    gap: 0px;
    z-index: 998;
  }

  .nav-cta.active button {
    padding: 10px 30px;
    font-size: 10px;
  }

  .nav-cta.active .login {
    padding: 7px 30px;
    font-size: 15px;
    background-color: none;
    box-shadow: none;
    border: none;
    outline: none;
  }


  main h1 {
    font-size: 32px;
  }

  main p {
    font-size: 16px;
  }

  .get-started {
    padding: 12px 50px;
    font-size: 16px;
  }


  .shape.blue {
    width: 100px;
    height: 100px;
    border-width: 10px;

    top: 150px;
    left: 50px;
  }

  .shape.red {
    width: 100px;
    height: 100px;
    border-width: 20px;
    top: 500px;
    left: 30px;
  }

  .shape.green {
    width: 150px;
    height: 150px;
    border-width: 32px;
    top: 150px;
    right: 50px;
  }

  .shape.purple-circle {
    width: 150px;
    height: 150px;
    border-width: 30px;
    bottom: 215px;
    right: 10px;
  }
}


@media (max-width: 480px) {

  .main-container{
    height: 70%;
  }
  .home-container {
    height: 560px;

}

  header .logo img {
    width: 153px;
    height: auto;
    transition: transform 0.4s ease;

  }

 

  main {
    margin-top: 75px;
    padding: 100px 0px;
  }

  main h1 {
    line-height: 38px;
    font-size: 22px;
  }

  main p {
    font-size: 15px;
  }

  .get-started {
    padding: 12px 70px;
    font-size: 15px;
  }


  .shape.blue {
    width: 80px;
    height: 80px;
    top: 100px;
    left: 30px;
    border-radius: 92px;
  }

  .shape.red {
    width: 100px;
    height: 100px;
    top: 370px;
    left: 20px;
    border-radius: 50px;
  }

  .shape.green {
    width: 100px;
    height: 100px;
    top: 30px;
    right: 30px;
    border-radius: 92px;
  }

  .shape.purple-circle {
    width: 100px;
    height: 100px;
    top: 380px;
    right: 30px;
    border-radius: 100px;
  }
}




.animate-left {
  animation: enter-left 1.6s ease forwards;
}

.animate-right {
  animation: enter-right 2s ease forwards;
}

.animate-top {
  animation: enter-top 2s ease forwards;
}

.animate-top-delay {
  animation: enter-top 2s ease forwards;
  animation-delay: 0.3s;
}

.animate-top-delay2 {
  animation: enter-top 2s ease forwards;
  animation-delay: 2s;
}

.animate-bottom {
  animation: enter-bottom 1s ease forwards;
}

.animate-bottom-delay {
  animation: enter-bottom 1s ease forwards;
  animation-delay: 0.3s;
}

.animate-pop {
  animation: pop 0.8s ease forwards;
}

@keyframes enter-left {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes enter-right {
  0% {
    opacity: 0;
    transform: translateX(150px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes enter-top {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes enter-bottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pop {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}
















/* about section */

.why-shodofy {
  padding-top: 18px;
  height: 90%
}

.about-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.about-text-column {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.about-heading {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: start;
  position: absolute;
  line-height: 1.2;
}

.about-highlight {
  color: #58c7b1;
  font-weight: 600;
}

.curve-image {
  height: 80px;
  width: 200px;
  position: relative;
  top: 10px;
  left: 0;
}

.about-description {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  color: #5f5f5f;
  width: 100%;
  word-spacing: normal;
  text-align: start;
  margin-top: 20px;
}

.about-section a {
  text-decoration: none;
}

.learn-more-btn {
  background: white;
  border: 2px solid #6c4662;
  color: #6c4662;
  border-radius: 30px;
  padding: 10px 20px;
  font-weight: 500;
  /* margin-top: 20px; */
  transition: 0.3s ease;
  margin-left: 16px;
  display: inline-block;
}

.learn-more-btn:hover {
  background: #6c4662;
  color: white;
}

.features-card {
  position: absolute;
  bottom: 50px;
  right: 300px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  padding: 20px;
  width: 250px;
  z-index: 10;
}

.feature-item {
  display: flex;
  margin-bottom: 15px;
}

.first {
  background-color: #e6fbfb;
  color: #58c7b1;
  padding: 5px 10px;
  border-radius: 12px;
  align-items: center;
}

.second {
  background-color: #f2e2e9;
  color: #6b4660;
  padding: 5px 10px;
  border-radius: 12px;
  align-items: center;
}

.third {
  background-color: #ebf5e6;
  color: #95bf47;
  padding: 5px 10px;
  border-radius: 12px;
  align-items: center;
}

.fourth {
  background-color: #fdf4e3;
  color: #e74c3c;
  padding: 5px 10px;
  border-radius: 12px;
  align-items: center;
  justify-content: end;
  font-weight: 400;
  font-size: 12px;
}

.feature-item i {
  font-size: 1.2rem;
  margin-right: 10px;
}

.play-button {
  position: absolute;
  top: 45%;
  left: 45%;
  transform: translate(-50%, -50%);
  background-color: white;
  color: #ff5722;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-size: 1.5rem;
}

.image-container {
  position: relative;
  text-align: center;
}

.about-image {
  max-width: 100%;
  height: auto;
  border-radius: 50% 50% 0 0;
}

@media (min-width: 768px) {
  .about-text-column {
    margin-right: 160px;
  }
}

@media screen and (max-width: 992px) {
  .about-heading {
    font-size: 2.2rem;
    text-align: start;
    position: static;
    margin-bottom: 10px;
    margin-top: 0;
  }

  .curve-image {
    width: 180px;
    height: 70px;
    top: 20px;
    margin: 0 auto;
    display: block;
  }

  .about-description {
    font-size: 1.1rem;
    padding: 0 25px;
    text-align: justify;
  }

  .features-card {
    position: static;
    margin: 20px auto 0;
    width: 100%;
    max-width: 350px;
    padding: 15px;
    right: auto;
    bottom: auto;
  }

  .learn-more-btn {
    margin-left: 0;
    display: block;
    margin: 20px auto 0;
    text-align: center;
  }

  .image-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 767.98px) {
  .row.mx-4 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .col-md-6.about-text-column {
    padding-left: 15px;
    padding-right: 15px;
    margin-right: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .about-text-column>div.px-3 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .about-heading {
    font-size: 2rem;
    position: static;
    text-align: left;
    margin-bottom: 10px;
  }

  .curve-image {
    display: none;
  }

  .about-description {
    font-size: 1rem;
    text-align: justify;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }

  .features-card {
    position: static;
    width: 100%;
    max-width: 320px;
    margin: 20px auto 0;
    padding: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  }

  .learn-more-btn {
    display: block;
    margin: 20px auto 0;
    text-align: center;
    font-size: 1rem;
    padding: 8px 16px;
  }

  .image-container {
    text-align: center;
    margin-bottom: 20px;
  }
}






/* service section */

h2 {
  text-align: center;
  font-weight: 600;
  font-size: 50px;
}

h2 span {
  color: #276818;
  position: relative;
}

.curve-images {
  height: 100px;
  width: 280px;
  position: relative;
  top: -50px;
  left: 45%;
}

/* Lock its style in mobile view */
@media screen and (max-width: 768px) {
  .curve-images {
    display: none;

  }
}

.row-equal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 24px;
  padding-inline: 45px;
}

.square-box {
  flex: 2;
  aspect-ratio: 1 / 1.5;
  min-width: 280px;
  max-width: 400px;
  max-height: 180px;

}

.rectangle-box {
  flex: 2;
  aspect-ratio: 3 / 1.5;
  min-width: 350px;
  max-height: 180px;
}


.service-box {
  border-radius: 15px;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #f0f0f0;
  height: 100%;
  width: 100%;
}

.service-box {
  border-radius: 15px;
  padding: 14px 18px;
  position: relative;
  display: flex;
  flex-direction: column;

  justify-content: flex-start;
  background-color: #f0f0f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  color: #1a1a1a;
  overflow: hidden;
}



.service-box h5 {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.4;
  opacity: 1;
}

.rectangle-box p {
  font-size: 18px;
  line-height: 1.5;
  color: #6d6d6d;
  width: 70%;
  margin-bottom: 14px;
  opacity: 1;
}

.square-box p {
  font-size: 18px;
  line-height: 1.5;
  color: #6d6d6d;
  width: 100%;
  margin-bottom: 14px;
  opacity: 2;
}

.service-box a.learn-link {
  font-size: 20px;
  font-weight: 600;

  text-decoration: none;
  margin-top: auto;
}

.service-box a.learn-link:hover {
  text-decoration: underline;
}


.service-icon {
  position: absolute;
  bottom: -10px;
  right: 20px;
  font-size: 140px;
  opacity: 0.3;
  pointer-events: none;
}

.square-box .service-icon {
  position: absolute;
  bottom: -10px;
  right: 10px;
  opacity: 0.3;
  pointer-events: none;


}

.service-icon img {
  width: 140px;
  height: auto;
}


.mint {
  background-color: #b0f4eb9e;
}

.mint a {
  color: rgb(87, 162, 179)
}

.lavender {
  background-color: #fce6ec;
}

.lavender a {
  color: rgb(202, 89, 108);
}

.peach {
  background-color: #e9f5cc;
}

.peach a {

  color: rgb(180, 196, 99);
}

.pink {
  background-color: #c6f8d6;
}

.pink a {
  color: rgb(102, 197, 95);
}

.orange {
  background-color: rgb(255, 226, 193);
}

.orange a {
  color: lightsalmon;
}

.purple {
  background-color: rgb(249, 218, 252);
}

.purple a {
  color: rgb(103, 61, 105);
}

.blue {
  background-color: rgb(196, 255, 167)
}

.blue h4 {
  text-align: center;
  color: #425d2f;
}

.learn-link {
  font-weight: 500;
}

.hidden-card {
  display: none;
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .row-equal {
    flex-direction: column;
  }

  .square-box,
  .rectangle-box {
    width: 100%;
    aspect-ratio: auto;
  }
}

@media (max-width: 768px) {
  h2 {
    font-size: 36px;
    padding-inline: 10px;
  }

  @media (max-width: 768px) {
    .row-equal {
      flex-direction: column;
      gap: 20px;
      padding-inline: 20px;
    }

    .square-box,
    .rectangle-box {
      width: 100%;
      aspect-ratio: auto !important;
      /* override fixed ratio */
      min-width: unset;
      max-width: 100%;
      max-height: none;
    }
  }

  .service-box {
    padding: 20px;
  }

  .service-box h5 {
    font-size: 24px;
  }

  .service-box p {
    font-size: 16px;
    width: 100%;
  }

  .service-box a.learn-link {
    font-size: 18px;
  }

  .service-icon {
    font-size: 100px;
    bottom: 10px;
    right: 10px;
    opacity: 0.2;

  }

  #show-more-btn {
    font-size: 20px;
    padding-block: 20px;
  }
}



.curve-imagee {
  height: 100px;
  width: 300px;
  position: relative;
  top: -60px;
  margin-bottom: -50px;
}





/* our Customer */

.customer-section {
  /* padding: 40px 0; */
  text-align: center;
  overflow: hidden;
  background: #fff;
}

.customer-section h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  font-weight: bold;
}

.customer-section h2 span {
  color: #d3942f;
  position: relative;
}

.customer-line {
  height: 100px;
  width: 300px;
  position: relative;
  top: -70px;
  margin-bottom: -50px;
}

.customer-logo {
  text-align: center;
  min-width: 150px;
  aspect-ratio: 1 / 1;
  background: #f9f9f9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.slider-img {
  display: grid;
  grid-template-columns: repeat(5, minmax(22vmin, 1fr));
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 1) 10%,
      rgba(0, 0, 0, 1) 90%,
      rgba(0, 0, 0, 0));
}

.slider-img .img {
  --time: 35s;
  position: relative;
  width: 105%;
  aspect-ratio: 1;
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  cursor: pointer;
  left: calc(100% * 5);
  animation: marquee var(--time) linear infinite;
}

.slider-img .img:nth-of-type(1) {
  animation-delay: calc((var(--time) / 5) * (5 - 1) * -1);
}

.slider-img .img:nth-of-type(2) {
  animation-delay: calc((var(--time) / 5) * (5 - 2) * -1);
}

.slider-img .img:nth-of-type(3) {
  animation-delay: calc((var(--time) / 5) * (5 - 3) * -1);
}

.slider-img .img:nth-of-type(4) {
  animation-delay: calc((var(--time) / 5) * (5 - 4) * -1);
}

.slider-img .img:nth-of-type(5) {
  animation-delay: calc((var(--time) / 5) * (5 - 5) * -1);
}

@keyframes marquee {
  to {
    left: -100%;
  }
}

dialog {
  border: none;
  outline: none;
  margin: auto;
  border-radius: 0.25rem;
  background-color: transparent;
}

dialog::backdrop {
  display: none;
}

dialog img {
  width: min(8100px, 80vw);
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .customer-section {
    padding: 20px 0;
  }

  .customer-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .customer-logo {
    min-width: 100px;
    aspect-ratio: 1 / 1;
    font-size: 0.8rem;
    padding: 10px;
  }

  .slider-img {
    grid-template-columns: repeat(5, minmax(40vw, 1fr));
  }

  .img {
    width: 100%;
  }

  dialog img {
    width: 100%;
  }
}






/* why shodofy */
.why-title {
  text-align: start;
  font-size: 50px;
  margin-left: 2rem;
}

.why-heading {
  color: #653d5eb2;
  font-size: 18px;
  font-weight: 700;
}

.why-para {
  color: rgb(96, 95, 95);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  margin-top: 5px;
}

.list-unstyled li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}

li i {
  color: rgb(50, 105, 46);
  margin-right: 10px;
  margin-top: 5px;
  flex-shrink: 0;
  font-size: 20px;
  line-height: 1.5;
}

.why-content-wrapper {
  flex-grow: 1;
}

.curve-imagee {
  height: 100px;
  width: 300px;
  position: relative;
  top: -60px;
  margin-bottom: -50px;
  left: 0;
}

.why-shodofy {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .col-md-6 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .why-text-column {
    padding-right: 30px;
  }

  .why-image-column {
    padding-left: 30px;
  }

  .why-title {
    padding-left: 0;
    text-align: left;
  }

  .curve-imagee {
    display: block;
    left: 0;
  }

  .why-heading {
    display: block;
    /* Ensure heading takes its own line if strong tag isn't enough */
  }

  .why-para {
    margin-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 767.98px) {
  .row.justify-content-around.align-items-center {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .col-md-6 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .why-text-column,
  .why-image-column {
    padding-left: 15px;
    padding-right: 15px;
  }

  .why-title {
    font-size: 36px;
    text-align: center;
    padding-left: 0;
  }

  .curve-imagee {
    display: block;
  }

  .list-unstyled {
    padding-left: 0;
    margin-top: 20px;
  }

  .list-unstyled li {
    margin-bottom: 15px !important;
    /* Adjust spacing between list items for mobile */
  }

  li i {
    font-size: 18px;
    /* Slightly smaller icon on mobile */
  }

  .why-heading {
    font-size: 16px;
    display: block;
    /* Ensure heading takes its own line */
  }

  .why-para {
    font-size: 15px;
    margin-left: 0;
    padding-left: 0;
    text-align: left;
  }

  .col-md-6.text-center {
    margin-top: 30px;
  }
}



/* pricing plans */


.custom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.pricing-wrapper {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  margin-top: 2rem;
}

.pricing-card {
  width: 100%;
  max-width: 290px;
  border-radius: 16px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  transition: all 0.3s linear;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.pricing-card:hover {
  background: linear-gradient(55deg,
      #004d2f 0%,
      #23624e 50%,
      #004d2f 100%);
  color: white;
  transform: scale(1.05);
}

.pricing-card:hover a {
  color: rgba(82, 0, 60, 0.687);
  background-color: white;
  transform: scale(1.05);
}

.pricing-card:hover ul li::before {
  color: rgb(245, 255, 182);
  transform: scale(1.05);
}

.pricing-card h2 {
  font-size: 35px;
  font-weight: 800;

}

.pricing-card h2 small {
  font-size: 14px;
  color: gray;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.pricing-card ul li {
  margin: 6px 0;
  position: relative;
  padding-left: 20px;
}

.pricing-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #004d2f;
}

.pricing-card ul li.not-allowed::before {
  content: "✕";
  color: #f44336;
}

.pricing-card .btn-filled {
  width: 100%;
  max-width: 180px;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
  border-radius: 20px;
  border: 2px solid #004d2f;
  background-color: white;
  color: #004d2f;
  align-self: center;
}

.pricing-card a {
  text-decoration: none;
}

.btn-filled:hover {
  background-color: lightyellow;
  text-decoration: none;
}

.btn-filled:focus {
  outline: none;
  box-shadow: none;
}

@media (max-width: 1200px) {
  .pricing-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }

  .pricing-card {
    max-width: 300px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .pricing-card {
    max-width: 100%;
  }
}