
body{
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    background:#f5f7fb;
    color:#2a3147;
    line-height:1.9;
}
img{max-width:100%;display:block}
button{cursor:pointer;font-family:inherit}

:root{
    --primary:#ffb400;
    --secondary:#2f6fec;
    --card:#eef2f7;
    --dark:#2d333b;
    --radius:14px;
    --shadow:0 1px 25px 1px rgba(0,0,0,.25);
    --container:1100px;
}

.containerr-10{
    width:92%;
    max-width:var(--container);
    margin-inline:auto;
}

.section{margin:70px 0}

.cardd{
    background:var(--card);
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    padding:40px;
}

.flex{display:flex;align-items:center}
.flex-center{display:flex;align-items:center;justify-content:center}
.grid{display:grid}

.section-title{
    color:#086095;
    margin-bottom:18px;
}

.btnn{
    border:none;
    border-radius:10px;
    padding:12px 22px;
    font-size:14px;
    transition:.25s;
}

.btn-primary{
    background:var(--primary);
    color:#fff;
}

.btn-primary:hover{transform:translateY(-2px)}

.btn-outline{
    background:#fff;
    border:2px solid var(--primary);
    color:var(--primary);
    position:relative;
    padding-right:38px;
}

.btn-outline i{
    position:absolute;
    right:12px;
    top:50%;
    transform:translateY(-50%);
}

/* ======================================================
   PRODUCT
====================================================== */
.product{gap:40px}

.product-media{
    height: 300px;
    width: 500px;
}

.product-media img{
    max-width:420px;
    border-radius:var(--radius);
    border:2px solid #ffd38c;
}

.product-content{flex:1}

.product-actions{
    display:flex;
    gap:15px;
    margin-top:20px;
    flex-wrap:wrap;
}

/* ======================================================
   BENEFITS
====================================================== */
.benefits{gap:40px}

.benefits img{
    max-width:420px;
    margin:auto;
    border-radius:var(--radius);
}

.benefit-list{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.benefit-item{
    display:flex;
    align-items:center;
    gap:10px;
}

.benefit-item i{color: #2f6fec;}

/* ======================================================
   CONTACT BANNER (FLOATING / OVERLAP DESIGN)
====================================================== */
.contact-section{
    margin:120px 0;
    position:relative;
}

.maziyat{
    padding-right: 20px;
}
.contact-banner{
    background:rgb(17 88 96);
    color:#fff;
    border-radius:25px;
    padding:200px 140px;
    width: 95%;
    position: absolute;
    bottom: -75px;
    z-index: -1;
    right: 0;
    left: 0;
    margin-inline: auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:25px;
    flex-wrap:wrap;
    /* MAGIC OVERLAP */
    margin-top:-90px;
    margin-bottom:-90px;
    box-shadow:0 25px 60px rgba(0,0,0,.25);
}

.social{
    display:flex;
    align-items:center;
    gap:10px;
}

.social img{width:22px}

.purchase{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.purchase button{
    background:#d3fbd8;
    border:none;
    border-radius:8px 18px 8px 18px;
    padding:12px 20px;
    color:#1f2a23;
}

/* ======================================================
   FAQ
====================================================== */
.faq{gap:50px;align-items:center}

.faq-title{
    font-size:30px;
    color:#243b6b;
    margin-bottom:10px;
}

.faq-sub{color:#6b7a90;margin-bottom:25px}

.faq-list{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.faq-item{
    background:#fff;
    border: none;
    border-radius:12px;
    padding:14px 18px;
    text-align:right;
    transition:0.5s ease;
    box-shadow:0 1px 20px 1px rgba(0,0,0,.25);
}

.faq-item:hover{
    background:#2f6fec;
    color:#fff;

}

.faq img{
    max-width:420px;
    margin:auto;
    border-radius:var(--radius);
    border:2px dashed var(--secondary);
}

/* ======================================================
   FEATURES
====================================================== */
.features{
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.feature-card{
    background:var(--card);
    border-radius:var(--radius);
    padding:35px;
    box-shadow:var(--shadow);
    min-height:180px;
}

.feature-head{
    display:flex;
    justify-content:space-between;
    margin-bottom:20px;
}

.feature-title{font-size:19px;font-weight:700}

.feature-icon{
    width:55px;height:55px;
    border-radius:12px;
    background:#9fc3a4;
    display:flex;align-items:center;justify-content:center;
}

.feature-icon svg{width:28px;height:28px;fill:#fff}

.feature-text{color:#555}

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width:900px){
.product,
.benefits,
.faq{
    flex-direction:column;
    text-align:center;
}
.product-actions{justify-content:center}
.contact-banner{margin-top:0;margin-bottom:0}
.maziyat{
    padding-right: 0px;
}
.section-title{
    font-size: 24px;
}
*{
    font-size: 12px;
}
}

@media (max-width:500px){
.section{margin:50px 0}
.card{padding:25px}
.faq-title{font-size:24px}
.product-media img,
.benefits img,
.faq img{max-width:100%}
}

/* kharid.html styles */
        :root {
            --ka-primary: #0f172a;
            --ka-accent: #06b6d4;
            --ka-accent-soft: #67e8f9;
            --ka-card: #ffffff;
            --ka-bg: #f1f5f9;
            --ka-border: #e2e8f0;
            --ka-text: #0f172a;
        }

        .ka-container {
            max-width: 1400px;
            margin: auto;
            padding: 35px 25px;
            display: flex;
            gap: 28px;
        }

        /* ================= SIDEBAR ================= */
        .ka-sidebar {
            width: 320px;
        }

        .ka-cart {
            background: var(--ka-card);
            border-radius: 20px;
            padding: 22px;
            box-shadow: 0 20px 40px rgba(2, 6, 23, 0.06);
            border: 1px solid var(--ka-border);
            position: sticky;
            top: 95px;
        }

        .ka-cart h3 {
            margin: 0 0 18px;
            font-size: 20px;
            color: var(--ka-primary);
        }

        .ka-cart-items {
            max-height: calc(100vh - 500px);
            margin-bottom: 12px;
            overflow-y: auto;
            overflow-x: auto;
            scrollbar-width:thin;
        }

        .ka-cart-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 12px;
            border-radius: 10px;
            background: #f8fafc;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .ka-empty {
            font-size: 14px;
            color: #64748b;
        }

        .ka-total {
            margin-top: 12px;
            padding-top: 14px;
            border-top: 1px dashed var(--ka-border);
            font-weight: 700;
            display: flex;
            justify-content: space-between;
        }

        .ka-buy-btn {
            margin-top: 18px;
            width: 100%;
            padding: 14px;
            border: none;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--ka-primary), #1e293b);
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: .25s;
        }

        .ka-buy-btn:hover {
            transform: translateY(-2px);
        }

        /* ================= CONTENT ================= */
        .ka-content {
            flex: 1;
        }

        .ka-header {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .ka-section-title {
            font-weight: 600;
            margin-bottom: 10px;
        }

        .ka-card {
            background: var(--ka-card);
            border-radius: 20px;
            border: 1px solid var(--ka-border);
            box-shadow: 0 12px 30px rgba(2, 6, 23, 0.04);
            padding: 10px 18px;
        }

        /* ITEM */
        .ka-item {
            padding: 16px 6px;
            border-bottom: 1px solid var(--ka-border);
        }

        .ka-item:last-child {
            border: none
        }

        .ka-item-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .ka-item:hover {
    background: linear-gradient(
        90deg,
        rgba(31,95,168,0.05),
        rgba(26,167,161,0.05)
    );
    border-radius: 12px;
        }

        .ka-item-name {
            font-weight: 500;
        }

        .ka-price {
            color: #2a2a2a;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ka-price-area {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        /* description toggle */
        .ka-desc-toggle {
            display: flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            font-size: 13px;
            font-weight: 500;
            color: #475569;
            user-select: none;
            border-right: 2px solid gray;
            padding-right: 12px;
        }

        .ka-desc-toggle svg {
            transition: transform .3s ease;
        }

        .ka-item.open .ka-desc-toggle svg {
            transform: rotate(180deg);
        }

        .ka-item-desc {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease, opacity 2.5s ease;
            font-size: 14px;
            color: #475569;
            line-height: 1.8;
            padding: 0px 25px;
            opacity: 0;
            text-align: justify;
            overflow-y: auto;
        }

        .ka-item.open .ka-item-desc {
            max-height: 300px;
            padding-top: 12px;
            opacity: 1;
        }

        /* switch modern */
        .ka-switch {
            position: relative;
            width: 48px;
            height: 26px;
        }

        .ka-switch input {
            display: none
        }

        .ka-slider {
            position: absolute;
            inset: 0;
            background: #e2e8f0;
            border-radius: 40px;
            transition: .25s;
        }

        .ka-slider:before {
            content: "";
            position: absolute;
            height: 20px;
            width: 20px;
            right: 3px;
            bottom: 3px;
            background: white;
            border-radius: 50%;
            transition: .25s;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
        }

        .ka-toman {
            padding: 0 7px 0 0;
            color: gray;
            font-size: 14px;
        }

        .ka-name-area {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .ka-switch input:checked+.ka-slider {
            background: #1aa7a1;
        }

        .ka-switch input:checked+.ka-slider:before {
            transform: translateX(-22px);
        }

        @media(max-width:900px) {
            .ka-container {
                flex-direction: column
            }

            .ka-sidebar {
                width: 100%
            }
        }

/* pop-up style */


@font-face {
  font-family: Vazirmatn;
  src: local("Vazirmatn");
}

* {
  box-sizing: border-box;
  font-family: Vazirmatn, sans-serif;
  direction: rtl;
}

body {
  background: #f6f7fb;
}


.container-card {
  margin: 0 auto;
  background: none;
  width: 92%;
  border: 1px solid lightgray;
  box-shadow: 0 5px 15px 0 lightgray;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  overflow-x: scroll;
  scrollbar-width: none;

}

.card-items {
  background: none;
  width: 100%;
  border-radius: 15px;
  padding: 5px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  overflow-x: scroll;
  scrollbar-width: none;
}

.card {
  min-width: 300px;
  background: #fff;
  border-radius: 25px;
  padding: 24px;
  border: 1.8px solid #ededed;
}

.card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

}

.card-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}

.card-header h2 {
  font-size: 18px;
  margin: 0 0 6px;
}


.status {
  margin-top: 8px;
  font-size: 13px;
}

.badge {
  background: #ffe7d0;
  color: #d97706;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  margin-right: 6px;
}

.icon-box {
  width: 100px;
  height: 100px;
  background: #e6fffa;
  border-radius: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  border: 1px solid gray;
}

.icon-box img {
  width: 100%;
  height: 100%;
}

.price {
  margin: 24px 0;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}

.price span {
  font-size: 14px;
  font-weight: normal;
  color: #666;
}

.specs {
  display: flex;
  text-align: center;
  gap: 7px;
  margin-bottom: 20px;
  width: 100%;
}

.spec {
  flex: 1;
  background: #f5f7fb;
  border-radius: 16px;
  padding: 14px;
  text-align: center;

  display: flex;
  flex-direction: column;


}

.spec strong {

  font-size: 13px;
  font-weight: 900;
  /* white-space: nowrap; */
}

.spec span {
  font-size: 10px;
  font-weight: 900;
  color: rgb(115, 115, 115);
  padding-top: 10px;

}

.features {
  list-style: none;
  padding: 0;
}

.features li {

  padding-bottom: 5px;
  margin-bottom: 12px;
  position: relative;
  font-size: 14px;
  border-bottom: 1px solid lightgray;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.done {
  width: 20px;
  height: 20px;
}

.btn {
  width: 100%;
  border: none;
  background: #eef4ff;
  color: #2563eb;
  padding: 14px;
  font-size: 16px;
  border-radius: 16px;
  cursor: pointer;
}

.btn:hover {
  background: #dbeafe;
}









/* استایل علیرضا */

.modal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal-overlay.active {
  display: flex;
}

.modal-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-container2 {
  display: none;
}

.modal-content2 {
  background: white;
  padding: 30px;
  border-radius: 15px;
}

.modal-right2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.modal-content {
  display: flex;
  flex-direction: row !important;
  gap: 25px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  position: relative;
  width: 0;
  height: 0;
  opacity: 0;
  transform: translateY(100px) scale(0.5);
  padding: 0;
  transform-origin: center bottom;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-content.active {
  width: 800px;
  height: auto;
  max-height: 80vh;
  opacity: 1;
  transform: translateY(0) scale(1);
  padding: 30px;
  border-radius: 20px;
}

.modal-content.closing {
  width: 0;
  height: 0;
  opacity: 0;
  transform: translateY(100px) scale(0.5);
  padding: 0;
}



.modal-title {
  color: #4a6fa5;
  font-size: 20px;
  font-weight: bold;
}

.modal-title2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  color: #4a6fa5;
  font-size: 20px;
  font-weight: bold;
}

.close-btn {
  background: #f8f9fa;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease 0.4s;
}

.modal-content.active .close-btn {
  opacity: 1;
  transform: scale(1);
}

.modal-content.closing .close-btn {
  opacity: 0;
  transform: scale(0.8);
  transition-delay: 0s;
}

.close-btn:hover {
  background: #ff6b6b;
  color: white;
  transform: rotate(90deg) scale(1.1);
}

.form-row {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.modal-content.active .form-row {
  opacity: 1;
  transform: translateY(0);
}

.modal-content.closing .form-row {
  opacity: 0;
  transform: translateY(20px);
  transition-delay: 0s;
}

.modal-content.active .form-row:nth-child(1) {
  transition-delay: 0.35s;
}

.modal-content.active .form-row:nth-child(2) {
  transition-delay: 0.4s;
}

.modal-content.active .form-row:nth-child(3) {
  transition-delay: 0.45s;
}

.modal-content.active .form-row:nth-child(4) {
  transition-delay: 0.5s;
}

.form-label {
  display: block;
  color: #333;
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: bold;
}

.form-input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  background: white;
  transition: all 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: #4a6fa5;
  box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.1);
}

.time-options {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.time-option {
  flex: 1;
  display: flex;
  align-items: center;
}

.time-option input {
  display: none;
}

.time-option label {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  background: #f8f9fa;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
  font-weight: 500;
}

.time-option input:checked+label {
  background: #4a6fa5;
  color: white;
  border-color: #4a6fa5;
}

.time-option label:hover {
  border-color: #4a6fa5;
}

.contact-box {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-top: 30px;
  border-right: 4px solid #4a6fa5;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.55s;
}

.modal-content.active .contact-box {
  opacity: 1;
  transform: translateY(0);
}

.modal-content.closing .contact-box {
  opacity: 0;
  transform: translateY(20px);
  transition-delay: 0s;
}

.contact-title {
  color: #4a6fa5;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: bold;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
  color: #555;
}

.contact-item i {
  margin-left: 12px;
  color: #4a6fa5;
  width: 20px;
  text-align: center;
  font-size: 16px;
}

.submit-btn {
  background: #4a6fa5;
  color: white;
  border: none;
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 25px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(74, 111, 165, 0.3);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.6s;
}

.modal-content.active .submit-btn {
  opacity: 1;
  transform: translateY(0);
}

.modal-content.closing .submit-btn {
  opacity: 0;
  transform: translateY(20px);
  transition-delay: 0s;
}

.submit-btn:hover {
  background: #3a5a8a;
}

/* برای موبایل */
@media (max-width: 600px) {
  .modal-content {
    padding: 25px 20px;
  }

  .modal-content.active {
    width: 90%;
  }


  .time-options {
    flex-direction: column;
  }

  .modal-title {
    font-size: 18px;
  }
}

/* افکت موج */
.modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at bottom, rgba(74, 111, 165, 0.1) 0%, transparent 70%);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease 0.2s;
}

.modal-content.active::before {
  opacity: 1;
  animation: wave 0.8s ease-out;
}

@keyframes wave {
  0% {
    transform: scale(0.5);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.topic {
  font-size: 17px;
  font-weight: 600;
  padding: 5px 5px;
  color: #333;
}

.free {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 8px;
  border-radius: 8px;
  height: 24px;
  min-width: 24px;
  color: #333;
  background-color: #c7fef7 !important;
  border-color: #05dbc1 !important;

}

.free2 {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 8px;
  border-radius: 8px;
  height: 24px;
  min-width: 24px;
  color: #333;
  background-color: #c7fef7 !important;
  border-color: #05dbc1 !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.input-container {
  position: relative;
  margin-bottom: 30px;
}

.form-input {
  width: 100%;
  padding: 18px 15px 10px 15px;

  border: 2px solid #e0e0e0;
  border-radius: 16px;
  font-size: 16px;
  background: white;
  transition: all 0.3s;
  outline: none;
  color: #333;
  height: 50px;
}

/* لیبل شناور */
.form-label {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 13px;
  transition: all 0.3s;
  pointer-events: none;
  padding: 0 5px;
  background-color: white;
}

.form-input:focus+.form-label,
.form-input:not(:placeholder-shown)+.form-label {
  top: 0;
  font-size: 14px;
  color: #4a6fa5;
  transform: translateY(-8px);
}

/* تغییر استایل اینپوت در فوکوس */
.form-input:focus {
  border-color: #4a6fa5;
  box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.1);
}

/* حالت پر شده */
.form-input:not(:placeholder-shown) {
  border-color: #4a6fa5;
}

.modal-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.radio-row {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.buttons {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.buttons .button {
  padding: 15px;
  width: 226px;
  height: 48px;
  border-radius: 15px;
}

.buttons .type-2 {
  width: 126px;
  background-color: #e9f4ff;
  color: #036;
  border-color: #cce6ff;

}

.modal-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.modal-left .logo {
    width: 321px;
    height: 432px;
    background-image: linear-gradient(142.17deg, #0f4ea5 6.66%, #119e99 91.48%);
    border: 1px solid #ffdd9b;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo2 {
  width: 100px;
  height: 100px;
  background-color: #fff1d7;
  border: 1px solid #ffdd9b;
  border-radius: 20px;
}

.logo2 img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.modal-left .logo img {
    width: 100%;
    height: 75%;
    border-radius: 20px;
}

.modal-left .box-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 320px;
  height: 144px;
  /* border: 1px solid blue; */
  padding: 16px;
  color: #515151;
  background-color: #f4f6fb;
  border-radius: 24px;
}

.modal-left .box-contact .box-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
}


.consult-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 50px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  margin: 0 auto;
  width: 99%;

}

.consult-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;

}

.consult-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1f2937;
}

.consult-content p {
  font-size: 15px;
  line-height: 1.9;
  color: #4b5563;
  margin-bottom: 20px;
}

.consult-btn {
  background: #ffd98e;
  border: none;
  padding: 12px 26px;
  border-radius: 12px;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
  white-space: nowrap;
}

.consult-btn:hover {
  background: #ffcc70;
}

.consult-avatar {
  width: 120px;
  height: 120px;
  background: #ffe1a8;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eeeee {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

/* Tablet */
@media (max-width: 1024px) {
  .consult-content {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .onvan p {
    display: none;
  }

  .modal-container {
    display: none;
  }

  .modal-container2 {
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
  }


}

@media (max-width: 768px) {
  .consult-box {
    padding: 20px;
  }

  .consult-content {

    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .consult-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  /* مخفی شدن پاراگراف */
  .consult-content p {
    display: none;
  }

  /* دکمه بیاد زیر h2 */
  .consult-btn {
    order: 2;
    margin-top: 4px;
    padding: 10px 18px;
    font-size: 14px;
  }

  .consult-avatar {
    width: 150px;
    height: 100px;
  }


}

/* موبایل خیلی کوچیک */
@media (max-width: 480px) {

  .onvan h3 {
    font-weight: 400;
  }

  .consult-content {

    max-width: 65%;
  }

  .consult-btn {
    width: fit-content;
  }


  .container-card {
    width: 100%;
  }

  .modal-content2 {
    width: 82%;
  }

  button {
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    border: 1px solid rgba(255, 0, 0, 0);
  }

}
.buy-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: white !important;
  cursor: pointer;
  background-image: linear-gradient(142.17deg, #0f4ea5 6.66%, #119e99 91.48%);
}
