.dynamic-text {
    color: #fff;
    text-shadow:
      2px 2px 4px rgba(0, 0, 0, 0.8),
      0 0 10px rgba(0, 0, 0, 0.4);
  }
  .text-gray-shadow {
    color: gray; 
    text-shadow: 
      1px 1px 2px rgba(0, 0, 0, 0.1), 
      0 1px 3px rgba(0, 0, 0, 0.15); 
  }
  /* Product Box */
.product-box {
    background: #ffffff; 
    background: linear-gradient(135deg, #f8fcff, #e3f2ff);
    border-radius: 8px; 
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease; 
    padding: 1.5rem; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); 
}

.product-box:hover {
  background: linear-gradient(135deg, #e9f7ff, #cbe7ff);
  box-shadow: 0 10px 24px rgba(0, 123, 255, 0.12);
  transform: translateY(-8px); 
}
.product-box img{
    border-radius: 10px;
}
[data-bs-theme="dark"] .product-box {
  background: #333333;
  background: linear-gradient(135deg, #444444, #222222); 
  color: #f0f0f0; 
  border-radius: 8px; 
  padding: 1.5rem; 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
[data-bs-theme="dark"]   .product-box:hover {
  background: linear-gradient(135deg, #555555, #333333); 
  box-shadow: 0 10px 24px rgba(0, 123, 255, 0.15); 
  transform: translateY(-8px); 
}

[data-bs-theme="dark"] .product-title {
  color: #f0f0f0; 
}
.btn-add-to-cart {
    background-color: #222;
    color: white;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 1.2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 15px;
}


.submit-section {
    margin-top: 10px;
}
.marginSection{
    margin: 10px auto;
}

/* About Us  */
.about-us-container {
    border-radius: 10px; 
width: 80%;
margin: 20px auto;
}

.about-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);

}

.about-description {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    font-weight: 500;
    text-align: right;
    margin-bottom: 25px;
}

.editor-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    text-align: justify;
    font-weight: 400;
    padding: 0 20px;
}


.editor-text a:hover {
    text-decoration: underline; 
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover; 
}
.sort-wrapper {
    position: relative;
    z-index: 10;
}
.textContainer{
    padding: 10px;
border-radius: 10px;
}
.faqSection{
    margin: 20px auto;
    width: 80%;
}
[data-bs-theme="dark"] .navbar-brand {
    filter: drop-shadow(0 0 2px #ffffff92);
    border-radius: 8px;
}
[data-bs-theme="dark"] .navbar-brand:hover img {
    transform: scale(1.1);  

}
[data-bs-theme="dark"] .bannerBorder {
    border: 1px solid white !important;
    border-radius: 10px;
}
[data-bs-theme="dark"] .bannerBorder h4{
   color: white;
   text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}
[data-bs-theme="dark"] .bannerBorder a{
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);

 }
 [data-bs-theme="dark"] .form-select option{
  color: black !important;
 }
 [data-bs-theme="dark"] .editor-text p{
    color: white !important;
   }
   [data-bs-theme="dark"] .about-us-container {
    background-color: black; 
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
    background-color: black; 

}
[data-bs-theme="dark"] .textContainer{
    background: none;

}
[data-bs-theme="dark"] .about-title {
    color: white;
}
[data-bs-theme="dark"] .about-description {
    color: white;
}
[data-bs-theme="dark"] .editor-text {
    color: white;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.4rem; 
        margin-top: -20px;
    }
.textContainer{
    box-shadow: none;
}
    .about-description {
        font-size: 1rem; 
    }

    .editor-text {
        font-size: 0.95rem; 
    }

    .about-us-content .row {
        flex-direction: column; 
    }

    .about-us-container {
        padding: 40px 0;
    }

    .about-image img {
        height: 250px; 
        object-position: center; 
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 2rem; 
    }

    .editor-text {
        font-size: 0.9rem; 
    }

    .about-image img {
        height: 200px; 
    }
}
/* theme 4 */
.textAreaShadow{
    box-shadow: 0 2px 6px rgba(255, 255, 255, 0.1);

}
.bannerBox{
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

}
.text-shadow-effect {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  }
  @keyframes shake {
    0% {
      transform: translateX(0);
    }
    25% {
      transform: translateX(-4px);
    }
    50% {
      transform: translateX(4px);
    }
    75% {
      transform: translateX(-4px);
    }
    100% {
      transform: translateX(0);
    }
  }
  
  .shake-button:hover {
    animation: shake 0.5s ease-in-out;
  }
  .image-zooming {
    transition: transform 0.3s ease; 
  }
  .image-zooming img{
    border-radius: 10px;
  }
  .image-zooming:hover {
    transform: scale(1.1); 
  }
  .custom-footer-subscribe-wrapper {
  background: linear-gradient(90deg, #accbee 0%, #e7f0fd 100%);
  padding: 2.5rem 1rem;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.custom-footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.custom-footer-subtext {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.custom-footer-form {
  max-width: 480px;
  margin: 0 auto;
}

.custom-footer-input-group {
  width: 100%;
}

.custom-footer-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  text-align: right;

}

.custom-footer-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.25);
}

.custom-footer-button {
  width: 100%;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: #3b82f6;
  border: none;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.25);
}

.custom-footer-button:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
}



  [data-bs-theme="dark"] .custom-footer-subscribe-wrapper {
    background: #1f1f1f; 
    box-shadow: none;
  }
  [data-bs-theme="dark"] .bg-body-tertiary
  {
    background: none !important;
    box-shadow: none;
  }
  .custom-footer-subscribe-wrapper {
    background: linear-gradient(90deg, #accbee 0%, #e7f0fd 100%);
    padding: 2.5rem 1rem;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: background 0.3s ease, color 0.3s ease;
  }
  [data-bs-theme="dark"] .custom-footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
  }
  
  [data-bs-theme="dark"] .custom-footer-subtext {
    font-size: 1rem;
    color: white;
    margin-bottom: 1.5rem;
  }
  .about-section {
    background: linear-gradient(90deg, #accbee 0%, #e7f0fd 100%);
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  }
  
  .about-img-center {
    transform: scale(1.1);
    z-index: 1;
    position: relative;
  }
  
  .about-img-side {
    transform: scale(0.95);
    opacity: 0.9;
  }
  
  @media (max-width: 767.98px) {
    .about-images > div:not(:nth-child(2)) {
      display: none !important;
    }
  
    .about-img-center {
      transform: scale(1);
    }
  }
  .about-section {
    background: linear-gradient(90deg, #accbee 0%, #e7f0fd 100%);
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    color: #212529; 
  }
  
  [data-bs-theme="dark"] .about-section {
    background: #1f2632; 
    color: #ffffff;     
  }
  
  [data-bs-theme="dark"] .about-img-center,
  [data-bs-theme="dark"] .about-img-side {
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.05);
  }
  
  .comment-section {
    max-width: 700px;
    margin: 2rem auto;
    padding: 1rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    font-family: 'Inter', sans-serif;
  }
  
  .comment-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
  }
  
  .comment {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .comment:last-child {
    border-bottom: none;
  }
  
  .comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f0f0f0;
    overflow: hidden;
  }
  
  .comment-body {
    flex: 1;
  }
  
  .comment-user {
    font-weight: 600;
    color: #222;
    margin-bottom: 0.25rem;
  }
  
  .comment-time {
    font-size: 0.75rem;
    color: #888;
  }
  
  .comment-text {
    font-size: 0.95rem;
    color: #444;
    margin-top: 0.5rem;
  }
  
  .comment-actions {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #666;
  }
  
  .comment-actions button {
    background: none;
    border: none;
    color: #007bff;
    cursor: pointer;
    margin-right: 1rem;
    transition: color 0.2s;
  }
  
  .comment-actions button:hover {
    color: #0056b3;
  }
  .dk-comment-section {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    font-family: 'IRANSans', sans-serif;
    direction: rtl;
    text-align: right;
  }
  
  .dk-comment-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
  }
  
  .dk-comment {
    border-bottom: 1px solid #f0f0f0;
    padding: 1rem 0;
  }
  
  .dk-comment:last-child {
    border-bottom: none;
  }
  
  .dk-comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.5rem;
  }
  
  .dk-badge {
    background: #e91e63;
    color: #fff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
  }
  
  .dk-date {
    font-size: 0.75rem;
    color: #aaa;
    margin-right: auto;
  }
  
  .dk-rating {
    font-size: 0.9rem;
    color: #666;
    margin: 0.5rem 0;
  }
  
  .dk-pros-cons {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 0.5rem 0;
  }
  
  
  .dk-comment-text {
    font-size: 0.95rem;
    color: #333;
    margin-top: 0.5rem;
    line-height: 1.7;
  }
  [data-bs-theme="dark"] .dk-comment-section {
    background: none;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);

  }
  .people-wrapper {
    background: #f8fafb; 
    border-radius: 24px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.person-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 16px 10px;
    text-align: center;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: 90%;
    margin: auto;
}

.person-card:hover {
    box-shadow: 0 4px 12px rgba(20, 180, 227, 0.2);
    transform: translateY(-4px);
}

/* Avatar Image container */
.image-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: auto;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid #dadde2;
    transition: all 0.3s;
}

.image-container.selected {
    transform: scale(1.15);
    border: 3px solid #14b4e3; 
}

.person-image {
    width: 100%;  
    height: 100%; 
    object-fit: cover; 
    border-radius: 50%;
    transition: all 0.3s;
}

.person-name {
    margin-top: 12px;
}

.swiper-pagination {
    position: relative;
    margin-top: 30px;
    text-align: center;
}
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #999;
    opacity: 1;
    margin: 0 5px;
    border-radius: 50%;
}
.swiper-pagination-bullet-active {
    background: #14b4e3;
}
@media (max-width: 767px) {

.person-card {
    width: 100%;
    padding: 20px 14px;

}
.swiper-wrapper{
    gap: 10px
}
.boxesOfServis{
  gap: 15px;
  margin: 0 auto;
  width: 95%;
}
}
.product-card {
  display: flex;
  flex-direction: row;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  border-radius: 20px;
  padding: 0;
}
  
.image-content {
  position: relative;
  width: 140px; 
  height: 140px;
  flex-shrink: 0;
}
.image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.text-content {
  display: flex;
  flex-direction: column;
 margin-right: 15px;
 margin-top: 10px;
}
.servicesBox{
  background: #f8fafb;
  border-radius: 20px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  margin: auto;
  border: 1px solid #7ca7bd7f;
  padding: 0;
}

.servicesBox:hover {
  box-shadow: 0 4px 12px rgba(20, 180, 227, 0.2);
  transform: translateY(-4px);
  border: 1px solid #7ca7bd1b;
}
  
  

.work-days-box {
  border: 1px solid #ddd; 
  border-radius: 8px;
  padding: 20px; 
  background-color: #f9f9f9; 
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
  max-width: 100%;
  position: relative;
}







.work-day.active {
  background-color: #e0f7fa; 
  border-color: #14b4e3; 
}

.work-day-time {
  font-size: 14px;
  font-weight: bold;
  color: #333;
}

.work-day-date {
  font-size: 12px;
  color: #777;
}
@media (max-width: 767px) {

.worker-container{
  height: 60px;
}
}
.displayEnd{
  display: flex;
  justify-content: end;
  align-items: center;
  margin: 10px 0;
}
.turnSubmitButton{
  padding: 8px 10px;
  background-color: #f2711c;
  border: none;
  border-radius: 10px;
  color: white;
}
.turnSubmitButton:hover{
  background-color: #f46e14b9;
}




