 .disabled {
     opacity: 0.5;
     cursor: not-allowed;
 }

 .certificates-slider .owl-stage-outer {
     padding: 10px 0;
 }

 .pulse-icon {
     display: inline-block;
     position: relative;
 }

 .pulse-icon img {
     display: block;
     width: 24px;
     height: auto;
     animation: pulseGlow 1.5s infinite;
 }

 @keyframes pulseGlow {
     0% {
         transform: scale(1);
         filter: drop-shadow(0 0 0px #0d6efd);
         opacity: 1;
     }

     50% {
         transform: scale(1.1);
         filter: drop-shadow(0 0 8px #0d6efd);
         opacity: 0.8;
     }

     100% {
         transform: scale(1);
         filter: drop-shadow(0 0 0px #0d6efd);
         opacity: 1;
     }
 }

 #service-button {
     width: 50%;
     margin: 10px auto 0;
     text-align: center;
 }

 #service-button .apt-btn {
     width: 100% !important;
     max-width: 300px;
     margin: 0 auto;
     display: block;
 }

 @media (max-width: 767.96px) {
     #service-button {
         margin-top: 10px;
         width: 80%;
     }

     #service-button .apt-btn {
         width: 100% !important;
     }
 }

 .swiper-nav-wrapper {
     direction: ltr;
     display: flex;
     justify-content: center;
     gap: 10px;
     margin-top: 2.2rem;
 }

 .dark-mode .caption {
     color: #d7d7d7 !important;
 }

 .dark-mode .fade-left {
     left: 0;
     background: linear-gradient(to right, #49404429, #f2efef5e);
 }

 .dark-mode .fade-right {
     right: 0;
     background: linear-gradient(to left, #49404429, #f2efef5e);
 }

 .swiper-button-prev,
 .swiper-button-next {
     position: static;
     width: 40px;
     height: 40px;
     background-color: #f5f5f5;
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
     cursor: pointer;
     transition: background-color 0.3s;
 }

 .swiper-button-prev:hover,
 .swiper-button-next:hover {
     background-color: #e0e0e0;
 }

 .swiper-button-prev:after,
 .swiper-button-next:after {
     font-size: 20px;
     font-weight: 900;
     color: #ef4692;
 }

 /* اسلایدها */
 .swiper-slide {
     width: 250px;
     /* یا هر عرض دلخواه */
 }

 /* fade نرمال فقط روی swiper */
 .fade-left,
 .fade-right {
     position: absolute;
     top: 0;
     bottom: 0;
     width: 50px;
     z-index: 5;
     pointer-events: none;
 }

 .dark-mode .content a {
     color: #d7d7d7 !important;
     background-color: #10253a !important;
 }


 .fade-left {
     left: 0;
     background: linear-gradient(to right, #ed509629, #f2efef5e);
 }

 .fade-right {
     right: 0;
     background: linear-gradient(to left, #ed509629, #f2efef5e);
 }

 .gallery-item {
     width: 100%;
     height: 250px;
     /* ارتفاع ثابت برای قاب */
     background: #f9f9f9;
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 10px;
     box-sizing: border-box;
     border-radius: 10px;
     overflow: hidden;
 }

 .gallery-item img {
     max-height: 100%;
     max-width: 100%;
     object-fit: contain;
     object-position: center;
     display: block;
 }


 .gallery-item:hover img {
     transform: scale(1.05);
 }

 .caption {
     text-align: center;
     font-size: 14px;
     color: #555;
     padding: 8px 4px 4px;
     line-height: 1.4;
 }


 .gallery-div {
     position: relative;
     /* مهم: والد رو relative کن */
 }

 .dark-mode .content i {
     color: whitesmoke !important;
 }