.content-wrapper{
  display: flex;
  flex-direction: column;
  padding-bottom: 30%;
  width: 100%;
  max-width: 1500px;
  margin-top: 6%;
}

.main-content{
  margin-left: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  width: 78%;  
  margin-right: auto;
}

.revealY {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.revealY.active {
  opacity: 1;
  transform: translateY(0); 
}
.revealX {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}

.revealX.active {
  opacity: 1;
  transform: translateX(0); 
}
.hero-layout {
    position: relative;
    width: 100%;
    min-height: 500px;
}


.hero-layout.auto-height {
    height: auto;
}


.hero-background{
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 99%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    border-radius: 30px;
}
.hero-background.active {
    pointer-events: auto;
    opacity: 1;
    position: relative;
}
#hero-back1{
  background: #ffffff;
}
#hero-back2{
  background: #ffffff;
}
#hero-back3{
  background: #ffffff;
}
.hero1 {
   width: 98%;
   min-height: 500px;
   display: flex;
   background: rgba(225,225,255,0.1);
   backdrop-filter: blur(50px);
   -webkit-backdrop-filter: blur(50px);
   padding: 20px;
   align-items: center;
   gap: 15px;
   border-radius: 30px;
   justify-content: space-between;
   transition: height 0.6s ease;
   height: auto; 
}

.text-div{
    width: 50%;
}
.text-div h2 {
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    font-weight: 400;
    line-height: 1.3;
}
.text-div h2 span {
    position: relative;
    display: inline-block;
    text-transform: capitalize;
}

.text-div h2 span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: #ff7500;
    border-radius: 3px;
    z-index: 0; 
}

.image-div{
    width: 50%;
    display: flex;
    justify-content: flex-end;
    padding: 10px;
}
.image-div img{
  width: 400px;
  height: auto;
  border-radius: 20px;
}
.hero-btns{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.hero-btn{
    padding:12px 26px;
    border-radius:15px;
    font-size:1rem;
    font-weight:500;
    text-decoration:none;
    transition:.25s ease;
    display:flex;
    align-items:center;
    gap:10px;
}

.btn-icon{
    width:28px;
    height:28px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.btn-icon img{
    width:55%;
    height:55%;
}

.white-circle{
    background:#fff;
}

.orange-circle{
    background:#ff7500;
}

.hero-btn.start{
    background:#ff7500;
    color:#fff;
}

.hero-btn.start:hover{
    opacity:.9;
}

.hero-btn.login{
    background: transparent;
    color:#555;
    border: 1.5px solid #555;
}

.hero-btn.login:hover{
    background:#f2f2f2;
}
.hint2-sec {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
}

.industry-single {
  width: 100%;
  display: flex;
  justify-content: center;
}

.single-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.zoom-img {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 30px;
}

.zoom-text {
  position: absolute;
  top: 40%;
  left: 25%;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  font-style: italic;
  text-shadow: 0 3px 6px rgba(0,0,0,0.5);
  pointer-events: none;
}



.why-bufra-section {
    width: 100%;
    padding: 20px;
}

.why-header-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
}

.why-header-wrap {
    max-width: 60%;
}

.why-header-wrap .why-tag {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fff;
    background: #ff7500;
    padding: 3px 15px;
}

.why-header {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    text-align: start;
    color: #555;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: normal;
}

.why-subtext-wrap {
    max-width: 40%;
}

.why-subtext {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.4;
}

.why-layout {
    display: flex;
    width: 100%;
    padding: 20px;
    align-items: center;
    justify-content: space-between;
}

.why-left {
    width: 55%;
}

.why-boxes {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.why-box {
    width: 300px;
    height: 170px;
    border: 1.5px solid #f5f7fa;
    border-radius: 30px;
    padding: 20px;
}

#why-unique {
    border: 1.5px solid #f77500;
}

.why-box h3 {
    font-size: 1rem;
    color: #555;
    margin-bottom: 8px;
}

.why-box p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}

.why-right {
    width: 45%;
}

.why-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}



.hint3-layout {
  width: 100%;
  display: flex;
  padding: 20px;
  margin-top: 20px;
  gap: 10px;
  background: linear-gradient(180deg, #fff, #ffae67);
}

.hint3-left {
  width: 30%;
  display: flex;
  align-items: flex-start;
}

.hint3-right {
  width: 70%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.hint3-box {
  width: 300px;
  height: 170px;
  padding: 15px;
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.hint3-box::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 10px;
  width: 25px;
  height: 25px;
  background-size: cover;
  background-position: center;
}

.box1::before {
  background-image: url('../img76gf340/ghs652gfsj.png');
}


.box2::before {
  background-image: url('../img76gf340/invoicet.png');
}

.box3::before {
  background-image: url('../img76gf340/leads.png');
}


.hint3-header-label {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  text-align: start;
  color: #555;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.hint3-header-label span {
  position: relative;
  display: inline-block;
}

.hint3-header-label span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #ff7500;
  border-radius: 3px;
  z-index: -1;
}

.hint3-box h3 {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
}

.hint3-box p {
  font-size: 0.85rem;
  line-height: 1.2;
  color: #555;
}


.hint4-layout {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  margin-top: 20px;
}

.hint4-header-label {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  text-align: center;
  color: #555;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.hint4-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 20px;
}

.hint4-row {
  display: flex;
  gap: 5px;
  width: auto;
  height: auto;
  flex-wrap: wrap;
}

.hint4-box {
  padding: 20px;
  border-radius: 30px;
  background: #f8f8f8;
  display: flex;
  height: 300px;
  align-items: center;
  cursor: pointer;
}


.box70 {
  width: 65%; 
}

.box30 {
  width: 34%;
  transition: .35s ease-in-out;
}
.box30:hover{
 background: #ff7500;
}
.box30:hover h3 {
  background: #f8f8f8;
}
.box30:hover p {
  color: #f8f8f8;
}

.hint4-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hint4-inner-big{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px; 
}
.hint4-img-div{
    width: 50%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    padding: 10px;
    margin-left: -20px;
}
.hint4-text{
  width: 35%;
}
.hint4-img {
  max-width: 100%;
  border-radius: 20px;
  height: auto;
  object-fit: contain;
}

.hint4-text h3,.hint4-inner h3{
  font-size: 1rem;
  color: #555;
  margin-bottom: 8px;
}

.hint4-text p{
  color: #555;
  font-size: 0.95rem;
  line-height: 1.2;
}
.hint4-inner p{
  color: #555;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.2; 
}
.hint4-inner h3{
  padding: 10px;
  border-radius: 20px;
}



.plan-content{
  margin-left: 100px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  width: 78%;

}
.page-name-wrapper{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #fff;
  box-sizing: border-box; 
}
.page-name-wrapper p{
  font-size: clamp(1.1rem, 0.8vw + 0.8vh, 1.3rem);
  font-weight: 500;
  color: #000000;
  font-family: "Montserrat Alternates", sans-serif;
}
.page-name-wrapper .solo-text{
  font-size: clamp(0.7rem, 0.8vw + 0.8vh, 0.9rem);
  font-weight: normal;
  color: #000000;
  margin-top: -5px;
}
.page-name-style{
  color: #ff7500;  
}
.user-about-wrapper{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  gap: 1rem;
  box-sizing: border-box;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  padding: 20px;
  grid-template-rows: auto;
  margin-bottom: 120px;
}

.can{
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  background: #f8f9f9;
  border-radius: 12px;
  padding: 30px 25px;
  text-align: left; 
  position: relative;
  height: 100%;
}


#most-popular{
background: rgba(255, 117, 0, 0.2);    
}
.can .plan-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-size: clamp(1.1rem, 0.8vw + 0.8vh, 1.5rem);
  font-weight: 600;
  color: #000000;
  font-family: "Montserrat Alternates", sans-serif;

}

.plan-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.can sm {
  font-size: clamp(0.8rem, 2vw, 1rem);
  color: #777;
  margin-bottom: 5px;
  margin-top: 10px;
}

.can h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #333;
  margin: 5px 0;
  font-family: "Montserrat Alternates", sans-serif;
}
.currency {
  font-size: clamp(1rem, 2vw, 1.2rem);
  vertical-align: top;
  color: #ff7500; 
  font-weight: 600;
}

.price-period {
  font-size: clamp(0.7rem, 2vw, 0.9rem);
  color: #777;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  width: 100%;
}

.plan-features li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: clamp(0.85rem, 2vw, 1rem);
  line-height: 1.5rem;
  letter-spacing: 0.2px;
}
.popular-tag{
    position: absolute;
    bottom: 90.5%;
    right: 0;
    padding: 10px;
    background: rgba(255, 117, 0, 0.2);
    color: #ff7500;
    font-weight: 600;
    border-top-right-radius: 10px;
    font-size: clamp(0.7rem, 2vw, 0.9rem);
}

.plan-features img {
  margin-right: 10px;
  width: clamp(14px, 4vw, 18px);
  height: auto;
  object-fit: contain;
}

.plan-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 20px;
  background: #000000;
  color: #fff;
  width: 100%;
  text-align: center;
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.4s ease;
}
#free-planbtn{
    background: inherit;
    border: 1px solid #ccc;
    color: #000000;
}
#most-popularbtn{
    background: #ff7500;
}
#most-popularbtn:hover{
    background: #000000;
    color: #fff;
}
.plan-btn:hover {
  background: #F8AD9D;
  color: #000000;
}



.hint5-layout {
  width: 100%;
  display: flex;
  padding: 20px 30px;
  margin-top: 20px;
  gap: 10px;
  background: linear-gradient(90deg, #f7fcff, #ffffff);
}

.hint5-left {
  width: 30%;
  display: flex;
  align-items: flex-start;
}

.hint5-right {
  width: 70%;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

.hint5-header-label {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #555;
  text-transform: uppercase;
}

.hint5-header-label span {
  position: relative;
  display: inline-block;
}

.hint5-header-label span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #ff7500;
  border-radius: 3px;
  z-index: -1;
}

.faq-box {
  width: 300px;
  height: 200px;
  padding: 15px;
  border-radius: 15px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background .3s ease;
}

.faq-box h3 {
  font-size: 1rem;
  color: #555;
  text-decoration: underline;
  margin-bottom: 10px;
}

.faq-box p {
  font-size: 0.85rem;
  line-height: 1.2;
  color: #555;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .35s ease, opacity .35s ease;
}

.faq-box:hover {
  background: #f7fcff;
}

.faq-box:hover h3 {
  padding: 6px 12px;
  border-radius: 20px;
  color: #555;
}

.faq-box:hover p {
  max-height: 200px;
  opacity: 1;
}

.faq-box.active {
  background: #f8f8f8;
}

.faq-box.active h3 {
  background: #f8f8f8;
  padding: 6px 12px;
  border-radius: 20px;
  color: #555;
}

.faq-box.active p {
  max-height: 200px;
  opacity: 1;
}

.help-center-section {
  width: 100%;
  padding: 30px 20px;
  background: #eaf4ff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.help-center-section h2 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #555;
  white-space: nowrap;
}

.live-chat-btn {
  background: #ff7500;
  color: #fff;
  padding: 5px 22px;
  border-radius: 15px;
  font-size: 0.95rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: .25s ease;
  white-space: nowrap;
}

.live-chat-btn:hover {
  opacity: .9;
}

.chat-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-icon img {
  width: 60%;
  height: 60%;
}





.site-footer {
  width: 100%;
  padding: 40px 20px;
  background: #f5f7fa;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  width: 140px;
  height: auto;
}

.footer-desc {
  font-size: 0.95rem;
  color: #555;
  max-width: 260px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 360px;
}

.footer-copy {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
}

.footer-socials {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-socials img {
  width: 26px;
  height: 26px;
  display: block;
}

@media screen and (min-width: 300px) and (max-width: 650px) {
  .control-panel-wrapper {
    transform: translateX(-110%);
    transition: transform 0.3s ease;
  }
  .control-panel-wrapper.show-menu {
    transform: translateX(-2%);
  }
  .layout-wrapper {
    margin-top: 17%;
  }
  .overview-wrapper {
    gap: 0.1rem;
  }
  .main-content {
    margin-left: 0;
    margin-top: 10px;
    width: 99%;
  }
  header {
    margin-left: 0;
    width: calc(100% - 0px);
  }
  .header-btns{
   display: none;
  }
  .hamburger-wrapper {
    display: block;
  }
  .content-wrapper{
   margin-top: 0;
  }

  .hero-layout {
    height: auto;
  }
  .hero1 {
    flex-direction: column;
    height: auto;
    padding: 20px;
    gap: 25px;
  }
  .text-div,
  .image-div{
    width: 100%;
    text-align: center;
    justify-content: center;
  }
   .image-div{
    width: 400px;
   }
  .hero-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .hero-btn {
    width: 160px;
    height: 45px;
    padding: 10px 16px;
    font-size: 0.95rem;
    white-space: nowrap;
    justify-content: center;
  }

  .btn-icon {
    width: 20px;
    height: 20px;
  }

  .btn-icon img {
    width: 40%;
    height: 40%;
  }
  .text-div h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .image-div img {
    width: 80%;
    max-width: 350px;
  }
  .hero-background {
    width: 100%;
    border-radius: 20px;
  }
  .hint3-layout{
    flex-direction: column; 
  }
  .hint3-left,
  .hint3-right  {
   width: 100%;
  }
  .hint4-inner-big{
    flex-direction: column;
  }
  .hint4-img-div,
  .hint4-text{
   width: 100%;
   height: auto;
   margin-left: 0;
  }
  .box70,.box30  {
   width: 100%;
   height: auto;
  }
   .service-grid {
  padding: 2px;
  }

  .hint5-layout {
    flex-direction: column;
    padding: 15px;
    gap: 15px;
  }

  .hint5-left,
  .hint5-right {
    width: 100%;
  }


  .hint5-right {
    flex-direction: column;
    gap: 15px;
  }
  .zoom-text {
  font-size: 2rem;
}


  .faq-box {
    width: 100%;
  }
      .why-bufra-section {
        padding: 10px;
    }

    .why-header-container {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }

    .why-header-wrap {
        max-width: 100%;
    }

    .why-header-wrap .why-tag {
        display: inline-block;
        padding: 2px 10px;
        font-size: 0.75rem;
    }

    .why-header {
        font-size: 1.2rem;
        margin-bottom: 20px;
        text-align: center;
    }

    .why-subtext-wrap {
        max-width: 100%;
    }

    .why-subtext {
        font-size: 0.85rem;
        text-align: center;
    }

    .why-layout {
        flex-direction: column;
        padding: 10px;
        gap: 20px;
    }

    .why-left,
    .why-right {
        width: 100%;
    }

    .why-boxes {
        gap: 10px;
        margin-top: 15px;
        align-items: center;
    }

    .why-box {
        width: 100%;
        max-width: 350px;
        height: auto;
        padding: 15px;
    }

    .why-box h3 {
        font-size: 0.95rem;
        text-align: center;
    }

    .why-box p {
        font-size: 0.85rem;
        text-align: center;
    }

    .why-right img {
        width: 100%;
        height: auto;
        border-radius: 20px;
    }
  .help-center-section {
    padding: 15px 6px;
    gap: 8px;
  }

  .help-center-section h2 {
    font-size: 0.8rem;
  }

  .live-chat-btn {
    padding: 3px 10px;
    font-size: 0.7rem;
    gap: 5px;
    border-radius: 10px;
  }

  .chat-icon {
    width: 24px;
    height: 24px;
  }

  .chat-icon img {
    width: 50%;
    height: 50%;
  }
  .plan-content{
    margin-left: 0;
    width: 99%;
  }
}


@media screen and (min-width: 1000px) and (max-width: 1030px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media screen and (min-width: 700px) and (max-width: 1100px) {
  .layout-wrapper {
    margin-top: 10%;
  }
  .content-wrapper{
   margin-top: 0;
  }
  .plan-content{
    margin-left: 0;
    width: 99%;
  }
  .header-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .zoom-text {
  font-size: 2rem;
   }

  .header-btn {
    width: 130px;
    height: 45px;
    padding: 10px 15px;
    font-size: 0.95rem;
    white-space: nowrap;
    justify-content: center;
  }

  .header-btn-icon {
    width: 20px;
    height: 20px;
  }

  .header-btn-icon img {
    width: 40%;
    height: 40%;
  }


  .hero-layout {
    height: auto;
  }
  .hero1 {
    flex-direction: column;
    height: auto;
    padding: 25px;
    gap: 20px;
  }
  .text-div,
  .image-div{
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .image-div{
    width: 400px;
   }
  .hero-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .hero-btn {
    width: 160px;
    height: 45px;
    padding: 10px 16px;
    font-size: 0.95rem;
    white-space: nowrap;
    justify-content: center;
  }

  .btn-icon {
    width: 20px;
    height: 20px;
  }

  .btn-icon img {
    width: 40%;
    height: 40%;
  }
  .text-div h2 {
    font-size: 1.8rem;
  }
  .image-div img {
    width: 320px;
  }
  .hint3-layout{
    flex-direction: column; 
  }
  .hint3-left,
  .hint3-right  {
   width: 100%;
  }
  .hint4-inner-big{
    flex-direction: column;
  }
  .hint4-img-div,
  .hint4-text{
   width: 100%;
   height: auto;
   margin-left: 0;
  }
  .box70,.box30  {
   width: 100%;
   height: auto;
  }
    .hint5-layout {
    flex-direction: column;
    padding: 15px;
    gap: 15px;
  }

  .hint5-left,
  .hint5-right {
    width: 100%;
  }

  .hint5-right {
    flex-direction: column;
    gap: 15px;
  }

  .faq-box {
    width: 100%;
  }
  .why-bufra-section {
     padding: 10px;
  }

    .why-header-container {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }

    .why-header-wrap {
        max-width: 100%;
    }

    .why-header-wrap .why-tag {
        display: inline-block;
        padding: 2px 10px;
        font-size: 0.75rem;
    }

    .why-header {
        font-size: 1.2rem;
        margin-bottom: 20px;
        text-align: center;
    }

    .why-subtext-wrap {
        max-width: 100%;
    }

    .why-subtext {
        font-size: 0.85rem;
        text-align: center;
    }

    .why-layout {
        flex-direction: column;
        padding: 10px;
        gap: 20px;
    }

    .why-left,
    .why-right {
        width: 100%;
    }

    .why-boxes {
        gap: 10px;
        margin-top: 15px;
        align-items: center;
    }

    .why-box {
        width: 100%;
        max-width: 350px;
        height: auto;
        padding: 15px;
    }

    .why-box h3 {
        font-size: 0.95rem;
        text-align: center;
    }

    .why-box p {
        font-size: 0.85rem;
        text-align: center;
    }

    .why-right img {
        width: 100%;
        height: auto;
        border-radius: 20px;
    }
      .help-center-section {
    padding: 15px 6px;
    gap: 8px;
  }

  .help-center-section h2 {
    font-size: 0.8rem;
  }

  .live-chat-btn {
    padding: 3px 10px;
    font-size: 0.7rem;
    gap: 5px;
    border-radius: 10px;
  }

  .chat-icon {
    width: 24px;
    height: 24px;
  }

  .chat-icon img {
    width: 50%;
    height: 50%;
  }
}



@media screen and (min-width: 800px) and (max-width: 912px) {
   .main-content{
    width: 63%;
   }
   .image-div img {
     width: 330px;
   }
}



@media screen and (min-width: 700px) and (max-width: 780px) {
   .main-content{
    width: 60%;
   }
   .image-div img {
     width: 300px;
   }
}



@media screen and (min-width: 1000px) and (max-width: 1030px) {
   .main-content{
    width: 70%;
   }

   .image-div img {
     width: 360px;
   }
   .box30 {
    display: flex;
    flex-direction: column !important;
    }
}





@media (min-width: 1500px) {
   .content-wrapper {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1500px;
   }
   .main-content,.overview-wrapper,
   .user-about-wrapper,.staticts-wrapper{
    width: 100%;
   }
   .main-content{
    margin-left: 150px;
    }
    .hero1 {
    padding: 35px;
    gap: 30px;
    }
    .hint4-img {
     max-width: 65%;
     height: auto;
    }

    .text-div h2 {
     font-size: 2.2rem;
    }
    .image-div img {
     width: 450px;
    }
}
