/* ===== فونت‌ها ===== */
@font-face {
  font-family: 'tehransite';
  src: url('../fonts/YekanBakhFaNum-Thin.woff2') format('woff2');
  font-weight: 100;
  font-display: swap;
}

@font-face {
  font-family: 'tehransite';
  src: url('../fonts/YekanBakhFaNum-Light.woff2') format('woff2');
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'tehransite';
  src: url('../fonts/YekanBakhFaNum-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'tehransite';
  src: url('../fonts/YekanBakhFaNum-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'tehransite';
  src: url('../fonts/YekanBakhFaNum-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'tehransite';
  src: url('../fonts/YekanBakhFaNum-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: 'tehransite';
  src: url('../fonts/YekanBakhFaNum-Black.woff2') format('woff2');
  font-weight: 900;
  font-display: swap;
}

/* ===== تنظیمات عمومی ===== */
body {
  font-family: 'tehransite', sans-serif;
}

a {
  text-decoration: unset !important;
}

/* ===== Tehran Site - Main CSS ===== */

/* ===== هدر ===== */
.custom-header {
  background: #141B3A;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.custom-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}



.btn-gradient {
  background: #218AF2;
  box-shadow: #218af29c 0px 11px 30px 0px;
  color: #fff;
  border-radius: 30px;
  padding: 0.8rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-gradient:hover {
  color: #fff;
  background-color: #febf33;
  border-color: var(--bs-btn-hover-border-color);
}

/* منوی اصلی */
.main-menu {
  border-radius: 50px;
}

.main-menu .nav-link {
  color: #000;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s;
}

.main-menu .nav-link:hover,
.main-menu .nav-link:focus {
  color: #218AF2;
}

.custom-header .logo-text {
  font-size: 0.8rem;
  line-height: 1.2;
  color: #ccc;
}

.header-menu ul {
  display: inline-flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-menu a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.text-white.d-none.d-md-block.text-start .small {
  color: #96A1B2;
}

.d-flex.align-items-center.gap-2 {
  z-index: 9999;
}

nav.main-menu.header-menu {
  z-index: 999;
}

i.bi.bi-telephone-fill,
i.bi.bi-envelope-fill {
  color: #fff;
}

/* خط تزئینی */
.line {
  position: absolute;
  height: 88px;
  width: 61%;
  background: #fff;
  border-radius: 0 0 0 48px;
  top: 0;
  right: 0;
  transition: all 0.3s ease;
}



/* ===== دکمه سرچ ===== */
.btn-search {
  color: #fff;
  width: 46px;
  height: 46px;
  font-size: 1.1rem;
}

.btn-search i {
  color: #fff;
}

/* ===== Search Overlay ===== */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
      backdrop-filter: blur(12px) saturate(200%);
    background-color: rgba(17, 27, 57, 0.9);
    border: 0px solid rgba(17, 27, 57, 0);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-container {
  max-width: 700px;
  width: 90%;
  position: relative;
  animation: searchSlideDown 0.4s ease-out;
}

@keyframes searchSlideDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-close {
  position: absolute;
  top: -50px;
  left: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0.5rem;
}

.search-close:hover {
  color: #218AF2;
  transform: rotate(90deg);
}

.search-form {
  margin-bottom: 2rem;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.search-input-wrapper i.bi-search {
  color: #218AF2;
  font-size: 1.3rem;
  margin-left: 1rem;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.1rem;
  padding: 0.8rem 0.5rem;
  background: transparent;
  font-family: inherit;
}

.search-submit {
  background: #218AF2;
  border: none;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.search-submit:hover {
  background: #febf33;
  transform: scale(1.1);
}

.search-suggestions {
  text-align: center;
}

.search-label {
  color: #96A1B2;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.search-tag {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
  display: inline-block;
}

.search-tag:hover {
  background: #218AF2;
  border-color: #218AF2;
  color: #fff;
  transform: translateY(-2px);
}

/* ===== هدر موبایل ===== */
.mobile-header {
  display: none;
}

.menu-toggle {
  display: none;
}

.mobile-logo {
  display: none;
}

/* ===== Sidebar Menu ===== */
.mobile-sidebar {
  position: fixed;
  right: -100%;
  top: 0;
  width: 280px;
  height: 100vh;
  background: #1a2238;
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  overflow-y: auto;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
}

.mobile-sidebar.active {
  right: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(33, 138, 242, 0.05);
}

.sidebar-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
}

.sidebar-close:hover {
  color: #218AF2;
  transform: rotate(90deg);
}

.sidebar-menu {
  padding: 1rem 0;
}

.sidebar-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu > ul > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-menu li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}

.sidebar-menu li a:before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: #218AF2;
  transition: height 0.3s;
}

.sidebar-menu li a:hover {
  background: rgba(33, 138, 242, 0.1);
  color: #218AF2;
  padding-right: 2rem;
}

.sidebar-menu li a:hover:before {
  height: 100%;
}

/* زیرمنوی موبایل */
.sidebar-menu ul ul {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
  background: rgba(0, 0, 0, 0.2);
}

.sidebar-menu ul ul.active {
  max-height: 1000px;
}

.sidebar-menu ul ul li a {
  padding: 0.9rem 1.5rem 0.9rem 2.5rem;
  font-size: 0.9rem;
  color: #96A1B2;
}

.sidebar-menu ul ul li a:hover {
  color: #218AF2;
  padding-right: 3rem;
}

.sidebar-menu ul ul ul li a {
  padding: 0.8rem 1.5rem 0.8rem 3.5rem;
  font-size: 0.85rem;
}

.sidebar-menu ul ul ul li a:hover {
  padding-right: 4rem;
}

.sidebar-menu ul ul ul ul li a {
  padding: 0.7rem 1.5rem 0.7rem 4.5rem;
  font-size: 0.8rem;
}

.sidebar-menu ul ul ul ul li a:hover {
  padding-right: 5rem;
}

.sidebar-menu li.menu-item-has-children > a {
  cursor: pointer;
}

.sidebar-menu li.menu-item-has-children > a:after {
  content: '\F282';
  font-family: 'bootstrap-icons';
  font-size: 0.8rem;
  transition: transform 0.3s;
}

.sidebar-menu li.menu-item-has-children.active > a:after {
  transform: rotate(180deg);
}

.sidebar-contact {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

.sidebar-btn {
  width: 100%;
  margin-top: 1rem;
  justify-content: center;
}

/* Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* سطح اول زیرمنو */
.header-menu ul li {
  position: relative;
}

.header-menu ul li ul {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease-in-out;
  z-index: 1000;
  padding: 0.5rem 0;
  list-style: none;
}

.header-menu ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-menu ul li ul li {
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-menu ul li ul li:last-child {
  border-bottom: none;
}

.header-menu ul li ul li a {
  display: block;
  padding: 0.8rem 1.2rem;
  color: #333;
  white-space: nowrap;
  transition: all 0.3s;
}

.header-menu ul li ul li a:hover {
  background: rgba(33, 138, 242, 0.1);
  color: #218AF2;
  padding-right: 1.5rem;
}

/* سطح دوم زیرمنو */
.header-menu ul li ul li ul {
  top: 0;
  right: 100%;
  margin-right: 0.5rem;
}

/* سطح سوم زیرمنو */
.header-menu ul li ul li ul li ul {
  top: 0;
  right: 100%;
  margin-right: 0.5rem;
}

/* آیکون فلش برای زیرمنوها */
.header-menu ul li.menu-item-has-children > a:after {
  content: '\F282';
  font-family: 'bootstrap-icons';
  margin-right: 0.3rem;
  font-size: 0.7rem;
  transition: transform 0.3s;
}

.header-menu ul li ul li.menu-item-has-children > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-menu ul li ul li.menu-item-has-children > a:after {
  content: '\F284';
  font-family: 'bootstrap-icons';
  margin-left: 0.5rem;
  margin-right: 0;
}

/* ===== Search Button Styles ===== */
.btn-search {
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.5rem;
    background: transparent !important;
    box-shadow: unset !important;
    border: unset !important;
}

.mobile-search {
  width: 42px;
  height: 42px;
  font-size: 1rem;
}




/* ===== بخش Hero ===== */
.hero-section {
  background: #141B3A;
  color: #fff;
  border-bottom-left-radius: 60px;
  position: relative;
  z-index: 1;
  padding-top: 8.5rem;
}

.hero-section::before {
background: linear-gradient(270deg, rgb(23, 43, 84) 0%, rgb(23, 43, 84) 0%, rgba(23, 43, 84, 0.6) 2%, rgba(23, 43, 84, 0.6) 44%, rgba(23, 43, 84, 0.05) 75%, rgba(23, 43, 84, 0.05) 100%, transparent 100% );
  content: '';
  position: absolute;
  width: 433px;
  height: 669px;
  right: 0px;
  z-index: -1;
  top: 0;
}

.hero-section h1 {
  font-size: 42px;
  line-height: 1.5;
}

.hero-section p.lead {
  font-size: 36px;
  font-weight: 400;
}

.hero-section .btn {
  border-radius: 30px;
  font-weight: 500;
}

.hero-section .marquee-track img {
    width: 140px;
    height: 60px;
    margin: 0 30px;
    display: inline-block;
    vertical-align: middle;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: 0.3s;
}
.btn-warning {
  background-color: #feaa2a;
  color: #000;
  border: none;
  box-shadow: #ffc10769 0px 11px 33px 0px;
  border-radius: 30px;
}

.btn-outline-light {
  border-radius: 30px;
  border: 2px solid #434960;
  color: #fff;
  padding: 0.75rem;
}

/* Hero Slider */
.hero-slider {
  text-align: center;
  background: url(https://cms-tehran.ir/wp-content/uploads/2025/05/Ellipse-5.png);
  background-size: 82% 100%;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-slider img {
  width: 461px;
  height: 532px;
  box-shadow: unset !important;
  border-radius: 0px !important;
}

.swiper-backface-hidden .swiper-slide {
  text-align: center;
}
#portfolio-section .swiper-wrapper {

    height: 536px !important;
    
}

.video-section .swiper-wrapper{
      height: 280px !important;
}
.des-hero {
  position: absolute;
  bottom: 0;
  width: 462px;
  height: 214px;
  background: linear-gradient(180deg, rgba(35, 45, 72, 0) 0%, rgba(35, 45, 72, 0.6) 60.22%, rgba(35, 45, 72, 0.9) 100%);
  right: 87px;
  display: flex;
  flex-direction: column;
  align-items: self-start;
  justify-content: end;
  padding: 17px 33px;
}

.des-hero h3 {
  font-size: 21px;
  font-weight: 800;
}

.des-hero p {
  color: #DCE1E8;
  font-size: 15px;
}

/* ===== Marquee ===== */
.marquee-wrappers {
  overflow: hidden;
  direction: ltr;
  padding: 3rem 0;
}

.marquee-inner {
  white-space: nowrap;
  animation: scroll-marquee 9s linear infinite;
  display: inline-block;
}

.marquee-track {
  display: inline-block;
}

.marquee-track img {
   width: 140px; 
  height: 90px;
  margin: 0 30px;
  display: inline-block;
  vertical-align: middle;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: 0.3s;
}

.marquee-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-30%); }
}

/* ===== بخش درباره ما ===== */
.about-section {
  background-color: #fff;
  border-top-left-radius: 100px;
  border-bottom-right-radius: 100px;
  z-index: 1;
}

.video-box-custom video {
  width: 529px;
  height: 425px;
  border-radius: 40px;
}

.video-box-custom.position-relative {

  margin: 50px 70px;
}

/* دکمه پلی سفارشی */
.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #2196f3;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s;
}

.video-play-button:hover {
  background-color: #0079d3;
}

.star {
  display: flex;
  align-items: center;
}

.btn-primary {
  box-shadow: #218af261 0px 11px 30px 0px !important;
  background-color: #278aee !important;
}

.col-lg-7.position-relative::before {
  background: url(https://cms-tehran.ir/wp-content/uploads/2025/05/Union.svg);
  content: '';
  width: 590px;
  height: 408px;
  position: absolute;
  bottom: 0;
  right: 1%;
  top: -1px;
  z-index: 0;
}

/* ===== بخش خدمات ===== */
.service-box {
  box-shadow: 0px 16px 96px 0px #EAEDF280;
  padding: 2.0rem;
}

.service-box ul li::before {
  content: "•";
  color: #dde2e8;
  display: inline-block;
  width: 1em;
  margin-left: 0.5em;
}

ul.list-unstyled.small.text-muted li {
  color: #222738;
  line-height: 28px;
  font-size: 14px;
}

/* ===== بخش نمونه کارها ===== */
.portfolio-tabs .nav-link,
.nav-pills .nav-link {
  background-color: transparent;
  color: #555;
  font-weight: 500;
  padding: 6px 18px;
  transition: 0.3s;
}

.portfolio-tabs .nav-link:hover,
.nav-pills .nav-link:hover {
  background-color: #f0f4f8;
}

.portfolio-tabs .nav-link.active,
.nav-pills .nav-link.active {
  background-color: #e6f0ff;
  color: #0d6efd;
  font-weight: 600;
  box-shadow: 0 0 0 2px #e0ebff inset;
}

#portfolio-section .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #000000;
  background-color: #eaedf2;
  box-shadow: unset !important;
}

.card img {
  object-fit: cover;
  height: 240px;
}

/* ===== بخش قیمت‌گذاری ===== */
section#pricing-section {
  background: #141b39;
      border-radius: 0 0 0 50px;
}

#pricing-section .nav-link {
  color: #B8C3D1 !important;
}

#pricing-section .nav-link:hover {
  background-color: transparent;
}

#pricing-section .nav-link.active {
  background-color: transparent;
  color: #fff !important;
  box-shadow: unset !important;
  border-bottom: 2px solid #0d6efd !important;
}

.gray {
  color: #B8C3D1;
}

.cart-price {
  background: #202743;
}

.dark-text {
  color: white;
}

.text-muted-light {
  color: #ccc;
}

.price-text {
  color: #DCE1E8;
  font-size: 14px;
}

.icon-list {
  color: white;
  padding-left: 0;
  font-weight: 300;
}

.icon-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.icon-img {
  display: inline-block;
  vertical-align: middle;
}

.cart-price .mb-2.text-center {
  font-size: 27px;
  font-weight: 600;
}

.mb-3.price-text.text-center strong {
  font-size: 26px;
  color: #fff;
  margin: 0 8px;
}

.cart-price a.btn.btn-primary.w-100.mb-3.btn-consultation {
  border-radius: 100px;
  padding: 13px 0;
}

.cart-price i.bi.bi-chat-dots-fill {
  margin-left: 10px;
}

.cart-price a.btn.btn-primary.w-100.mb-3.btn-consultation.orange {
  background-color: #feaa2a !important;
  box-shadow: 0px 24px 72px 0px #FE99014D !important;
  border-color: #feaa2a;
}

/* ===== بخش فرآیند کار ===== */
.process-section {
  padding: 70px 0 20px 0;
  position: relative;
  overflow: hidden;
}

.process-header h2 {
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1rem;
}

.process-header p {
    font-size: 16px;
  color: #64748b;
  max-width: 600px;
  line-height: 1.8;
}
section.faq-section {
    background: #fcfcfe;
    padding: 50px 0;
}

.step-item {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  padding: 1.7rem 0;
  border-bottom: 1px solid #eaeaea;
}

.step-item:hover {
  transform: translateX(-10px);
}

.step-number {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  margin-left: 1rem;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

span.faq-badge h4{
    
}
}
.step-title {
  font-size: 16px;
  font-weight: 500;
  color: #1e293b;
  margin: 0 !important;
}

.step-description {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
}

.image-section {
  position: relative;
  padding: 2rem;
}

.main-image {
  width: 100%;
  max-width: 500px;
  border-radius: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* کارت‌های آمار */
.stats-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 8px 11px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.google-stats {
  bottom: 233px;
  top: auto;
  left: 58px;
  width: 183px;
  right: auto;
}

.google-stats .google-logo {
  width: 40px;
  height: 40px;
  margin-bottom: 0;
}

.reliability-score {
  font-size: 18px;
  font-weight: 800;
  color: #1e293b;
}

.reliability-text {
  color: #64748b;
  font-size: 0.9rem;
}

.growth-stats {
  bottom: 52px;
  left: 21px;
  width: 183px;
  text-align: right;
}

.growth-title {
  color: #64748b;
  font-size: 12px;
}

.growth-title::before {
  content: "";
  background: url(https://cms-tehran.ir/wp-content/uploads/2025/07/Trending-up.svg);
  width: 15px;
  height: 10px;
  display: inline-block;
  margin-left: 5px;
}

.growth-chart {
  width: 100%;
  height: 60px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 60"><path d="M0,50 Q50,30 100,35 T200,20" fill="none" stroke="%233b82f6" stroke-width="3"/></svg>') no-repeat center;
  background-size: contain;
  margin-bottom: 10px;
}

.growth-percentage {
  font-size: 18px;
  font-weight: 800;
  color: #000;
}

.stats-card.google-stats .text-process {
  text-align: right;
}

/* ===== بخش سوالات متداول ===== */
.faq-badge {
  color: #3b82f6;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 0.3rem;
}

.faq-header {
  text-align: center;
}
span.faq-title {
    font-size: 26px;
    font-weight: 600;
        padding-bottom: 30px;
}
.faq-header h4 {
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2.5rem;
  line-height: 1.2;
}
.video-header {
    text-align: center;
    display: flex;
    flex-direction: column;
}
.faq-header p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.faq-section .accordion-item {
  border: 1px solid #EAEDF2 !important;
  padding: 15px;
  border-radius: 20px !important;
  margin-bottom: 16px;
}

.faq-section button.accordion-button.collapsed {
  height: 52px;
  gap: 2px;
}

.accordion-button:not(.collapsed) {
  color: unset !important;
  background-color: unset !important;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
  border: unset !important;
}

.accordion-button:focus {
  box-shadow: unset !important;
}

/* ===== بخش ویدیو ===== */
.video-section {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.video-section .container {
  position: relative;
  z-index: 1;
}

.video-badge {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.video-header {
  text-align: center;
}

.video-header h2 {
  font-weight: 700;
  color: #000;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.video-header p {
  font-size: 1.2rem;
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Swiper ویدیو */
.video-swiper {
  padding: 0 60px;
  overflow: visible;
}

.video-swiper .swiper-slide {
  height: auto;
}

.video-next,
.video-prev {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  margin-top: -25px;
}

.video-next:hover,
.video-prev:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.video-next::after,
.video-prev::after {
  font-size: 1rem;
  font-weight: 700;
}

.video-pagination {
  position: relative;
  margin-top: 3rem;
}

.video-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.video-pagination .swiper-pagination-bullet-active {
  background: #3b82f6;
  transform: scale(1.3);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

/* کارت‌های ویدیو */
.video-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    transition: all 0.4s 
ease;
    overflow: hidden;
    border: 1px solid rgb(234 237 242);
    display: flex
;
    flex-direction: row;
    align-items: stretch;
    height: 272px;
    align-items: center;
    padding: 15px !important;
}


.video-container {
  position: relative;
  width: 240px;
  height: 248px;
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient(135deg, #e2e8f0 0%, #f1f5f9 100%);
  flex-shrink: 0;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-card:hover .video-thumbnail {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.6);
}

.play-button i {
  margin-right: -2px;
}

.video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.video-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.3rem;
}

.video-subtitle {
  font-size: 0.85rem;
  color: #3b82f6;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.video-description {
  color: #64748b;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0;
      text-align: justify;
}
.title-cont {
    text-align: right;
    background: #ffff;
    border-radius: 15px;
    margin-right: -52px;
    margin-bottom: 14px;
    z-index: 9;
    padding: 10px 15px;
}
/* ===== بخش بلاگ ===== */
.blog-section {
  position: relative;
  overflow: hidden;
  padding: 20px 0 60px 0;
}

.blog-section .container {
  position: relative;
  z-index: 1;
}

.blog-header span {
    font-weight: 700;
    color: #000;
    padding-bottom: 2rem;
    line-height: 1.2;
    text-align: center;
    font-size: 26px;
    display: block;
}

.blog-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 1);
}

.blog-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.autor span {
  color: #0C6ECF;
  font-size: 14px;
}

.blog-content {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.4;
  flex: 1;
}

.blog-excerpt {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.blog-meta {
  display: flex;
 flex-direction: row;
        align-items: center;
justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
  margin-top: auto;
}

.blog-date {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 0.85rem;
}

.blog-date i {
  color: #3b82f6;
  font-size: 1rem;
}

.blog-read-more {
  border: 1px solid #218AF2 !important;
  color: #171F35;
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-read-more:hover {
  color: #171F35;
  transform: translateX(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.blog-read-more i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.blog-read-more:hover i {
  transform: translateX(-2px);
}

/* انیمیشن کارت‌های بلاگ */
.blog-card {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.blog-card:nth-child(1) { animation-delay: 0.2s; }
.blog-card:nth-child(2) { animation-delay: 0.4s; }
.blog-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== بخش فوتر ===== */
.footer-section {
  background: #141B3A;
  position: relative;
  overflow: hidden;
}

.footer-main {
  padding: 4rem 0 0 0;
  background: #141B3A;
}

.footer-column h5 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: block;
}

.footer-links a:hover {
  color: #60a5fa;
  transform: translateX(5px);
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  color: #cbd5e1;
  justify-content: space-between;
}

.contact-addres {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  color: #cbd5e1;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item span,
.contact-addres span {
  color: #fff;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon i {
  color: #278aee;
  font-size: 1.3rem;
  margin-left: 12px;
}

.contact-details h6 {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.contact-details p {
  color: #cbd5e1;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
}

.map-links {
  display: flex;
  gap: 0;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.social-links {
  display: flex;
  gap: 15px;
  justify-content: end;
}

.footer-wave {
  text-align: center;
  background: #f8f9fc;
}

.footer-wave img {
  width: 346px;
  margin: -3px;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  transform: translateY(-3px);
}

.footer-copyright {
  background: #141B3A;
  padding: 1.5rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
  color: #94a3b8;
  font-size: 0.85rem;
  margin: 0;
  text-align: right;
}

.company-logos {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  flex-direction: column;
}

.about-footer {
  color: #EAEDF2;
  font-size: 16px;
}

.company-logo img {
  width: 110px;
  height: 120px;
}

/* ===== بخش مشاوره ===== */
.consultation-section {
  background: #f8fafc;
  padding: 60px 0;
  position: relative;
      overflow: hidden;
}

.consultation-badge {
  color: #1693E6;
  padding: 0;
  border-radius: 20px;
  font-size: 17px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}

.contact-info {
  max-width: 625px;
}

.consultation-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.5;
  margin-bottom: 24px;
  display: block;
}

.consultation-description {
  color: #64748b;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-btn {
  background: transparent;
  border: 1px solid #ADCFF1;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  min-width: 160px;
  gap: 6px;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: inherit;
}

.contact-btn-icon {
  font-size: 20px;
}
.contact-btn-icon i{
        color: #278aee !important;
}

.contact-btn-label {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 4px;
}

.contact-btn-value {
  font-weight: 800;
  color: #1e293b;
  font-size: 15px;
  text-align: center;
}


/* ===== بخش متن SEO ===== */
.seo-text-section {
  background: #f8fafc;
  padding: 30px 0;
}

.seo-text {
  color: #64748b;
  font-size: 15px;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  max-height: none;
}

.seo-text.collapsed {
  max-height: 120px;
  position: relative;
}

.seo-text.expanded {
  max-height: 1000px;
}

.seo-text.collapsed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(transparent, #f8fafc);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.seo-text:not(.collapsed)::after {
  opacity: 0;
}

.toggle-btn {
  background: none;
  border: none;
  color: #3b82f6;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.toggle-btn:hover {
  color: #2563eb;
  gap: 8px;
}

.toggle-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
  border-radius: 4px;
}

.toggle-icon {
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-size: 12px;
}

.toggle-icon.rotated {
  transform: rotate(180deg);
}

/* ===== ریسپانسیو ===== */




 .marquee-section {
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

         .pricing-section  .section-header h2 {
            font-size: 24px;
            color: #000;
            margin-bottom: 40px;
            font-weight: 700;
            text-align: center;
        }

        .section-header h2 .highlight {
            color: #3b82f6;
        }

        .section-header p {
            color: #64748b;
            font-size: 1.1rem;
        }

        .marquee-section .marquee-wrapper {
            padding: 20px 0;
            overflow: hidden;
            position: relative;
        }

        .marquee-wrapper::before,
        .marquee-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 150px;
            z-index: 10;
            pointer-events: none;
        }
        
         .video-swiper::before,
        .video-swiper::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 500px;
            z-index: 10;
            pointer-events: none;
        }
        
             .video-swiper::before {
            right: 0;
            background: linear-gradient(to left, white, transparent);
        }

        .video-swiper::after {
            left: 0;
            background: linear-gradient(to right, white, transparent);
        }

        .marquee-wrapper::before {
            right: 0;
            background: linear-gradient(to left, white, transparent);
        }

        .marquee-wrapper::after {
            left: 0;
            background: linear-gradient(to right, white, transparent);
        }
        .marquee-wrapper {
          overflow: hidden;
          direction: ltr;
          padding: 3rem 0;
        }
        .marquee-row {
            display: flex;
            overflow: hidden;
            margin: 20px 0;
        }

        .marquee-track {
            display: flex;
            gap: 30px;
            animation-timing-function: linear;
            animation-iteration-count: infinite;
            will-change: transform;
        }

        .marquee-row:nth-child(1) .marquee-track {
            animation: scrollRTL 40s linear infinite;
        }

        .marquee-row:nth-child(2) .marquee-track {
            animation: scrollLTR 40s linear infinite;
        }

        @keyframes scrollRTL {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        @keyframes scrollLTR {
            0% {
                transform: translateX(-50%);
            }
            100% {
                transform: translateX(0);
            }
        }

        .marquee-row:hover .marquee-track {
            animation-play-state: paused;
        }

        .logo-item {
            flex-shrink: 0;
            transition: all 0.3s ease;
            min-width: 200px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            cursor: pointer;
        }

        .logo-item:hover {
            transform: translateY(-8px) scale(1.05);
        }

        .logo-image {
            width: 80px;
            height: 80px;
            object-fit: contain;
            margin-bottom: 10px;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .logo-item:hover .logo-image {
            filter: grayscale(0%);
        }

        .logo-name {
            font-size: 1.8rem;
            font-weight: 700;
            color: #334155;
            letter-spacing: -0.5px;
        }

        .logo-subtitle {
            font-size: 0.7rem;
            color: #64748b;
            font-weight: 500;
            text-align: center;
        }

        .footer-note {
            text-align: center;
            margin-top: 30px;
            color: #64748b;
            font-size: 0.9rem;
        }

        .logo-source {
            display: none !important;
        }

      a.btn.btn-primary.rounded-pill.d-flex.align-items-center.gap-1.px-4.py-2.shadow-sm.mobile-btn-portfolio{
          display:none !important;
      }
      
      .baner-req.container.py-5 img{
              width: 100%;
      }
      
      
      .project-img-wrapper img{
              width: 100%;
      }
      
      
.search-input-wrapper i.bi.bi-arrow-left {
    line-height: 10px;
}      
      
      
      
      
      /* ریست استایل‌های پیش‌فرض گرویتی فرم */
.gform_wrapper.gravity-theme,
.gform_wrapper.gf_browser_chrome {
    margin: 0 !important;
    max-width: 100% !important;
}

/* استایل کلی فرم */
#gform_wrapper_1 {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

/* حذف padding اضافی */
#gform_wrapper_1 .gform_body {
    padding: 0 !important;
}

/* استایل فیلدها */
#gform_wrapper_1 .gfield {
    margin-bottom: 0px !important;
    padding: 0 !important;
}

.gform-theme--foundation .gform_fields {
       
   
        gap: 20px !important;
    }
/* استایل لیبل‌ها - مخفی کردن */
#gform_wrapper_1 .gfield_label {
    display: none !important;
}

/* استایل input ها */
#gform_wrapper_1 input[type="text"],
#gform_wrapper_1 input[type="email"],
#gform_wrapper_1 input[type="tel"],
#gform_wrapper_1 input[type="url"] {
    width: 100% !important;
    padding: 16px 37px 16px 50px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    font-size: 15px !important;
    color: #333 !important;
    transition: all 0.3s ease !important;
    font-family: inherit !important;
    direction: rtl !important;
    text-align: right !important;
    box-shadow: none !important;
    height: auto !important;
    line-height: 1.5 !important;
}

/* استایل placeholder */
#gform_wrapper_1 input::placeholder {
    color: #999 !important;
    font-size: 14px !important;
}

/* حالت فوکوس */
#gform_wrapper_1 input:focus {
    outline: none !important;
    border-color: #2563eb !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
}

/* آیکون‌ها برای فیلدها */
#gform_wrapper_1 .ginput_container {
    position: relative !important;
}

#gform_wrapper_1 .ginput_container::before {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5;
    z-index: 10;
}

/* آیکون نام و نام خانوادگی */
#field_1_1 .ginput_container::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23666'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z' /%3E%3C/svg%3E");
}

/* آیکون شماره تماس */
#field_1_5 .ginput_container::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23666'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z' /%3E%3C/svg%3E");
}

/* آیکون ایمیل */
#field_1_6 .ginput_container::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23666'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z' /%3E%3C/svg%3E");
}

/* آیکون وب‌سایت */
#field_1_7 .ginput_container::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23666'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9' /%3E%3C/svg%3E");
}

/* دکمه ارسال */
#gform_wrapper_1 .gform_footer {
    padding: 0 !important;
    margin: 30px 0 0 0 !important;
}

#gform_wrapper_1 input[type="submit"],
#gform_wrapper_1 .gform_button {
    width: 100% !important;
    background: #2563eb !important;
    color: white !important;
    border: none !important;
    padding: 16px 32px !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-family: inherit !important;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2) !important;
    position: relative !important;
    overflow: hidden !important;
}

/* افکت hover دکمه */
#gform_wrapper_1 input[type="submit"]:hover,
#gform_wrapper_1 .gform_button:hover {
    background: #1d4ed8 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3) !important;
}

/* حالت کلیک دکمه */
#gform_wrapper_1 input[type="submit"]:active,
#gform_wrapper_1 .gform_button:active {
    transform: translateY(0) !important;
}

/* آیکون دکمه ارسال */
#gform_wrapper_1 .gform_button::after {
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M14 5l7 7m0 0l-7 7m7-7H3' /%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
}

#gform_wrapper_1 .gform_button:hover::after {
    left: 15px;
}


/* حذف استایل‌های اضافی گرویتی */
#gform_wrapper_1.gform-theme--orbital {
    --gf-ctrl-border-color: #e0e0e0 !important;
}

/* اسپینر سفارشی */
#gform_wrapper_1 .gform_ajax_spinner {
    display: none !important;
}

/* پیغام‌های ولیدیشن */
#gform_wrapper_1 .gfield_validation_message,
#gform_wrapper_1 .validation_message {
    background: #fee;
    color: #c00;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    margin-top: 8px;
}

/* تایید فرم */
#gform_confirmation_wrapper_1 {
    background: #f0f9ff;
    border: 1px solid #0ea5e9;
    border-radius: 12px;
    padding: 20px;
    color: #0c4a6e;
    text-align: center;
    font-size: 16px;
}


.about-section p.fw-bold.mb-3{
        font-size: 26px;
        font-weight: 800 !important;

}
span.text-goole {
    font-size: 14px;
    font-weight: 600;
}

.rate-google .fs-8 {
    font-weight: 600;
    font-size: 14px;
}







        /* Hero Section */
        .services-hero {
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

   section.services-section {
    height: 93vh;
    background: url(https://cms-tehran.ir/wp-content/uploads/2025/10/Rectangle-7237-1.jpg);
    background-size: 100% 100%;
    background-position: center center;
    margin-bottom: 8rem;
}


     

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-title {
            color: #fff;
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 24px;
            line-height: 1.3;
        }

        .hero-subtitle {
            color: rgba(255,255,255,0.8);
            font-size: 14px;
            line-height: 1.8;
            font-weight: 300;
            max-width: 700px;
            margin: 0 auto;
        }



      

        /* Service Card */
        .service-card {
            background: #fff;
            border-radius: 24px;
            padding: 40px 30px;
            height: 280px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: transform 0.3s var(--transition), box-shadow 0.3s var(--transition);
            border: 1px solid rgba(0,0,0,0.04);
            cursor: pointer;
            box-shadow: 0px 4px 104px 0px rgba(150, 161, 178, 0.2);

        }

        .service-card:hover {
            transform: translateY(-12px);
        }

        /* Service Icon */
        .service-icon {
            width: 72px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            transition: transform 0.3s ease;
            position: relative;
        }

        .service-card:hover .service-icon {
            transform: scale(1.05);
        }

        .service-icon img {
            width: 72px;
            height: 72px;
            object-fit: contain;
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
        }

        /* Typography */
        .service-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .service-description {
             color: rgba(93, 105, 127, 1);
            font-size: 12px;
            font-weight: 400;
            margin: 0;
        }
        
        
        .stats-service {
        position: absolute;
        background: white;
        border-radius: 40px;
        padding: 8px 11px;
        box-shadow: 0px 16px 96px 0px rgba(33, 138, 242, 0.6);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .service-stats {
    bottom: 296px;
    top: auto;
    left: auto;
    width: 183px;
    right: -26px;
}

.service-stats img{
        width: 44px;
    height: 44px;
}
.reliability-services {
    font-size: 16px;
    font-weight: 700;
}


        .stats-service2 {
        position: absolute;
        background: white;
        border-radius: 40px;
        padding: 8px 11px;
        box-shadow: 0px 16px 96px 0px rgba(33, 138, 242, 0.6);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .service-stats2 {
    bottom: 138px;
    top: auto;
    right: auto;
    width: 183px;
    left: -9px;
}
.page-template-service .step-item{
        justify-content: space-between;
}

.page-template-service ul.steps-list {
    padding-right: 0 !important;
    padding-left: 3rem;
}
.service-stats2 img{
        width: 44px;
    height: 44px;
}

.page-template-service span.step-title {
    font-weight: 800;
}

.page-template-service .img-right .col-lg-7.col-md-7 {
    padding-left: 0 !important;
    padding-right: 3rem;
}

.page-template-service .img-right ul.steps-list{
     padding-left: 0 !important;
    padding-right: 0 !important;
}
.page-template-service .video-section {
    padding: 70px 0;

}
section.comments-section {
  background: #fff;
  margin-bottom: 2rem;
}
section.services-box.img-right {
    padding: 60px 0;
}

.page-template-service section.faq-section {
    background: radial-gradient(87.95% 100% at 50% 0%, #F8F9FC 0%, #FFFFFF 84.93%);
}

/* ===== Comments Styles ===== */
.comments-area {
    padding-top: 60px;
        background: #fff;
}

.comments-title {
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 700;
    color: #333;
}

/* Comment List */
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-list li {
    list-style: none;
}

.comment-body {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.comment-body:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Comment Header */
.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.comment-author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.comment-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.comment-author {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.comment-date {
    font-size: 13px;
    color: #666;
}

.comment-admin-badge .badge {
    background-color: #007bff;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}

/* Comment Content */
.comment-content {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
    font-size: 15px;
}

.comment-content p {
    margin-bottom: 10px;
}

.comment-content p:last-child {
    margin-bottom: 0;
}

/* Comment Footer */
.comment-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comment-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.comment-actions a,
.comment-actions button {
    background: none;
    border: none;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.comment-actions a:hover,
.comment-actions button:hover {
    background-color: #e9ecef;
    color: #333;
}

.comment-like.liked {
    color: #28a745;
}

.comment-dislike.disliked {
    color: #dc3545;
}

.like-count,
.dislike-count {
    font-weight: 500;
}

.comment-awaiting-moderation {
    background-color: #fff3cd;
    color: #856404;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 13px;
    margin: 10px 0 0;
}

/* Nested Comments */
.comment-list .children {
    list-style: none;
    padding-right: 50px;
    margin-top: 20px;
}

.comment-list .children .comment-body {
    background-color: #fff;
    border: 1px solid #e9ecef;
}

/* Comment Form */
.comment-respond {
    margin-top: 50px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.comment-reply-title {
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: 600;
    color: #333;
}

.comment-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #fff;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

.comment-form textarea {
    min-height: 120px;
    resize: vertical;
}

.comment-form-author,
.comment-form-email,
.comment-form-url,
.comment-form-comment {
    margin-bottom: 20px;
}

.submit-comment {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-comment:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

.required {
    color: #dc3545;
}

/* Cancel Reply Link */
#cancel-comment-reply-link {
    font-size: 14px;
    color: #666;
    margin-right: 20px;
}

#cancel-comment-reply-link:hover {
    color: #dc3545;
}

/* Comment Navigation */
.comment-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.comment-navigation a {
    color: #007bff;
    text-decoration: none;
}

.comment-navigation a:hover {
    text-decoration: underline;
}

  /* Hero Section - Full Screen */
        .post_type_web_hero-section {
            background: #111B39;
            position: relative;
                padding: 100px 0 120px 0;
                    border-radius: 0 0 0 40px;
           
        }
        section.services-post-type-web {
    margin-top: -120px;
    z-index: 9999;
    position: relative;
}
.services-post-type-web .row.g-4 {
    justify-content: center;
}
        
        /* Animated background effects */
        .post_type_web_hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 15% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 85% 70%, rgba(139, 92, 246, 0.12) 0%, transparent 40%),
                radial-gradient(circle at 50% 50%, rgba(30, 58, 138, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .post_type_web_container {
            position: relative;
            z-index: 2;
        }
        
        /* Right Content */
        .post_type_web_hero-content {
            color: white;
            padding: 40px 0;
        }
        
        .post_type_web_hero-title {
            font-size: 40px;
            font-weight: 900;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .post_type_web_hero-description {
            font-size: clamp(0.95rem, 1.8vw, 1.15rem);
            line-height: 2.2;
            margin-bottom: 25px;
            opacity: 0.92;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.9);
        }
        

        

        

        
        /* Left Cards Slider Container */
        .post_type_web_slider-container {
            position: relative;
            max-width: 500px;
            margin: 0 auto;
        }
        
        /* Navigation Arrows */
        .post_type_web_nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.98);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10;
        }
        
        .post_type_web_nav-arrow:hover {
            background: white;
            transform: translateY(-50%) scale(1.12);
            box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
        }
        
        .post_type_web_nav-arrow:active {
            transform: translateY(-50%) scale(1.05);
        }
        
            .post_type_web_nav-arrow i {
            font-size: 1.6rem;
            color: #1e3a8a;
            font-weight: 800;
            line-height: 10px;
        }
        
        .post_type_web_arrow-left {
            left: -30px;
        }
        
        .post_type_web_arrow-right {
            right: -30px;
        }
        
        /* Swiper Cards Effect */
        .post_type_web_swiper {
            width: 100%;
            padding-top: 50px;
            padding-bottom: 50px;
        }
        
        .post_type_web_swiper .swiper-slide {
            background-position: center;
            background-size: cover;
            width: 100%;
            height: auto;
        }
        
        /* Card Slide Image */
        .post_type_web_card-slide {
            width: 100%;
            height: 450px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .post_type_web_card-slide:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
        }
        
        
        
       .page-template-post_type_web .marquee-section {
            padding: 0;
        }
        
        
        
        .marquee-wrapper::before{
            display: none;
        }
        .marquee-wrapper::after{
            display: none;
        }
        
        
       .page-template-post_type_web .section-header {
            margin-bottom: 0;
         text-align: right;
        color: #ccced5;
         font-size: 1.3rem;
        font-weight: 600;
        }
                
/* Portfolio Slider Section */
.portfolio-slider-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
}

.btn-view-all {
    border-radius: 90px !important;
    padding: 14px 19px;
    font-weight: 600;
    background: #007bff;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.25);
}

.btn-view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 123, 255, 0.35);
}

/* Swiper Container */
.portfolio-swiper-container {
    position: relative;
    padding: 0 0 40px 0;
}

.portfolioSwiper {
    padding-bottom: 60px;
}

/* Portfolio Cards */
.portfolio-card {
    border-radius: 40px;
    padding: 40px 0 0 0;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.orange-gradient {
    background: #F58039;
    box-shadow: 0px 4px 154px 0px #FFAA004D;

}

.green-gradient {
    background: #069077;
    box-shadow: 0px 4px 154px 0px #00937973;

}

.portfolio-card:hover {
    transform: translateY(-5px);
}



/* Card Badge */
.card-badge {
    margin-bottom: 20px;
}

.card-badge span {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-block;
}

/* Card Title */
.card-title {
    color: #ffffff;
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* Before/After Container */
.before-after-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Browser Mockup */
.browser-mockup {
    width: 100%;
    max-width: 500px;
    height:442px;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-card:hover .browser-mockup {
    transform: scale(1.02);
   
}

/* Browser Header */
.browser-header {
    background: #2d2d2d;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.browser-dots {
    display: flex;
    gap: 7px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red { background: #ff5f57; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #28ca42; }

.browser-url {
    flex: 1;
    background: #3a3a3a;
    padding: 6px 14px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
    font-size: 0.85rem;
}

.browser-url i {
    font-size: 0.75rem;
}

.browser-url span {
    color: #ddd;
}

.browser-icons {
    display: flex;
    gap: 12px;
    color: #999;
}

.browser-icons i {
    cursor: pointer;
    transition: color 0.2s;
}

.browser-icons i:hover {
    color: #fff;
}

/* COMPLETELY FIXED: Image Compare - Perfect Sync */
.compare {
    display: grid;
    position: relative;
    width: 100%;
    min-height: 382px;
    background: #000;
    overflow: hidden;
}

.compare > * {
    grid-area: 1 / 1;
}

.compare > section {
    display: grid;
    place-content: center;
    width: 100%;
    height: 387px;
}

.compare img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
}

/* FIXED: Correct Direction - Before Section راست */
.compare .before {
    -webkit-mask: linear-gradient(to right, transparent 0%, transparent var(--pos, 50%), #000 var(--pos, 50%));
    mask: linear-gradient(to right, transparent 0%, transparent var(--pos, 50%), #000 var(--pos, 50%));
}

/* FIXED: Correct Direction - After Section چپ */
.compare .after {
    -webkit-mask: linear-gradient(to right, #000 0%, #000 var(--pos, 50%), transparent var(--pos, 50%));
    mask: linear-gradient(to right, #000 0%, #000 var(--pos, 50%), transparent var(--pos, 50%));
}

/* Range Input Slider - HIDDEN THUMB */
.compare > input[type="range"] {
    z-index: 10;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    cursor: ew-resize;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

/* HIDE default thumb - ما خودمون handle داریم */
.compare > input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 0;
    height: 0;
    opacity: 0;
}

.compare > input[type="range"]::-moz-range-thumb {
    appearance: none;
    width: 0;
    height: 0;
    opacity: 0;
    border: none;
}

.compare > input[type="range"]::-webkit-slider-runnable-track {
    height: 100%;
    background: transparent;
}

.compare > input[type="range"]::-moz-range-track {
    height: 100%;
    background: transparent;
    border: none;
}

/* Custom Visual Line - خط سفید عمودی */
.compare::before {
    content: '';
    position: absolute;
    top: 0;
    left: var(--pos, 50%);
    width: 4px;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 11;
    transition: none;
}

/* Visual Divider Handle - دایره سفید */
.divider-handle {
    position: absolute;
    top: 50%;
    left: var(--pos, 50%);
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    pointer-events: none;
    z-index: 12;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.compare:hover .divider-handle {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
}

.divider-handle i {
    font-size: 0.9rem;
    color: #1a1a1a;
    font-weight: bold;
}

.compare.dragging .divider-handle {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

/* View Details Button */
.btn-view-details {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a1a;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    z-index: 15;
}


.portfolio-card.orange-gradient .btn-view-details {
    background: #F8802B;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    box-shadow: 0px 7px 30px 8px #F8802B66;
    z-index: 15;
        position: absolute;
    bottom: -25px;
}
.portfolio-card.green-gradient .btn-view-details{
       background: #009379;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    box-shadow: 0px 7px 30px 8px #00937966;
    z-index: 15;
        position: absolute;
    bottom: -25px;
}
.btn-view-details i {
    transition: transform 0.3s ease;
}

.btn-view-details:hover i {
    transform: translateX(-3px);
}

/* Card Navigation Arrow */
.card-nav-arrow {
    position: absolute;
    bottom: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.arrow-right {
    right: 40px;
}

.arrow-left {
    left: 40px;
}

.card-nav-arrow:hover {
    background: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.card-nav-arrow i {
    color: #1a1a1a;
    font-size: 1.3rem;
    font-weight: bold;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    width: 55px;
    height: 55px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1a1a1a;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #f8f9fa;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #d0d0d0;
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #007bff;
    width: 32px;
    border-radius: 6px;
}


.portfolio-swiper-web::before, .portfolio-swiper-web::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 500px;
    z-index: 10;
    pointer-events: none;
}


.portfolio-swiper-web::before {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}
.portfolio-swiper-web::after {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}


  .pricing-section {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-label {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        .section-title {
            color: #000;
            font-size: 32px;
            font-weight: 700;
        }

        .pricing-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
        
        }

        /* Plan Column Styles */
        .plan-column {
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .plan-column:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
        }

      

        /* Plan Header */
        .plan-header {
            padding: 30px 20px;
            text-align: center;
            border-bottom: 1px solid #f1f5f9;
            min-height: 127px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .plan-name {
            font-size: 26px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 8px;
        }

        .plan-subtitle {
            font-size: 13px;
            color: #64748b;
            font-weight: 400;
        }

        /* Feature Items */
        .feature-item {
            padding: 20px;
            text-align: center;
            border-bottom: 1px solid #f1f5f9;
            min-height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #475569;
        }

        .feature-item:last-child {
            border-bottom: none;
        }

        /* Features Column (right side) */
        .features-column {
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .features-column .plan-header {
            background: transparent;
        }

        .features-column .feature-item {
            text-align: right;
            justify-content: start;
            font-weight: 500;
            color: #171F35;
            background: transparent;
            border-bottom: 1px solid rgb(239 238 241);
        }

        /* Icons */
        .icon-check {
            width: 28px;
            height: 28px;
            background: #10b981;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .icon-check::after {
            content: "✓";
            color: white;
            font-size: 16px;
            font-weight: bold;
        }

        .icon-close {
            width: 28px;
            height: 28px;
            background: #ef4444;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .icon-close::after {
            content: "✕";
            color: white;
            font-size: 16px;
            font-weight: bold;
        }

        /* Footer */
        .plan-footer {
            padding: 30px 20px;
            text-align: center;
            border-top: 1px solid #f1f5f9;
            margin-top: auto;
        }

        .duration {
            font-size: 14px;
            color: #64748b;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .cta-button {
            display: inline-block;
            padding: 12px 32px;
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
        }

        .cta-button.highlight {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
        }

        .cta-button.highlight:hover {
            box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
        }


    /* Price Fade Section - Independent Styles with No Conflicts */
        .price-fade {
            width: 100%;
        }
        
        section.price-fade {
         margin-top: 80px;
        }
        
        .price-fade-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
        }
        
        .price-fade-table thead th {
            background: #f8f9fa;
            padding: 10px;
            text-align: center;
            font-weight: 600;
            border: none;
            position: relative;
        }
        
.price-fade-table thead th:first-child {
    background: #f8f9fc;
    text-align: right;
    border-radius: 0 15px 0 0;
    color: #6c757d;
    font-size: 14px;
    border-bottom: 1px solid #e9ecef;
}
        
        .price-fade-plan-header {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .price-fade-plan-name {
            font-size: 18px;
            color: #212529;
            font-weight: 700;
        }
        
            .price-fade-plan-label {
            font-size: 12px;
            color: #6c757d;
            font-weight: 400;
            color: #020056b5;
            font-weight: 600;
        }
                
        /* Column colors */
        .price-fade-table thead th:nth-child(2) {
            background: #f8f9fc;
                border-bottom: 1px solid #e9ecef;

            
          
        }
        
        .price-fade-table thead th:nth-child(2) .price-fade-plan-name,
        .price-fade-table thead th:nth-child(2)  {
                        color: #000;

        }
        
        .price-fade-table thead th:nth-child(3) {
            background: #f8f9fc;
            border-radius: 0;
                border-bottom: 1px solid #e9ecef;

        }
        
      
        .price-fade-table thead th:nth-child(4) {
            background: #f8f9fc;
            border-radius: 0;
                border-bottom: 1px solid #e9ecef;

        }
        
      
        
        .price-fade-table thead th:nth-child(5) {
            background: #f8f9fc;
            border-radius: 15px 0 0 0;
                border-bottom: 1px solid #e9ecef;

        }
        
        .price-fade-table thead th:nth-child(5) .price-fade-plan-name,
        .price-fade-table thead th:nth-child(5)  {
            color: #000;
        }
        
        /* Body cells */
        .price-fade-table tbody td {
            padding: 20px;
            text-align: center;
            border-bottom: 1px solid #e9ecef;
        }
        
        .price-fade-table tbody td:first-child {
        text-align: right;
            color: #171F35;
            font-size: 14px;
            font-weight: 600;
            background: white;
        }
        
        .price-fade-table tbody tr:last-child td {
            border-bottom: none;
        }
        

        
    
        
        /* Last row with button */
        .price-fade-table tbody tr:last-child td:nth-child(2) {
            border-radius: 0 0 15px 15px;
        }
        
        .price-fade-table tbody tr:last-child td:nth-child(3) {
            border-radius: 0 0 15px 15px;
        }
        
        .price-fade-table tbody tr:last-child td:nth-child(4) {
            border-radius: 0 0 15px 15px;
        }
        
        .price-fade-table tbody tr:last-child td:nth-child(5) {
            border-radius: 0 0 15px 15px;
        }
        
        /* Check and X icons */
        .price-fade-check-icon {
            color: #ffa726;
            font-size: 24px;
        }
        
        .price-fade-check-icon-gray {
            color: #cbd5e0;
            font-size: 24px;
        }
        
        .price-fade-x-icon {
            color: #cbd5e0;
            font-size: 24px;
        }
        
        .price-fade-check-icon-light {
            color: #e9ecef;
            font-size: 24px;
        }
        
        /* Button */
        .price-fade-btn-consultation {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            color: white;
            border: none;
            padding: 12px 40px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
        }
        
        .price-fade-btn-consultation:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
        }
        
        /* Hidden rows */
        .price-fade-hidden-row {
            display: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .price-fade-hidden-row.price-fade-show {
            display: table-row;
            animation: priceFadeIn 0.5s ease forwards;
        }
        
        @keyframes priceFadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Fade effect for last visible row */
        .price-fade-fade-row {
            position: relative;
        }
        
        .price-fade-fade-row::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: linear-gradient(to bottom, 
                rgba(255, 255, 255, 0) 0%, 
                rgba(255, 255, 255, 0.5) 40%,
                rgba(255, 255, 255, 0.85) 70%,
                rgba(255, 255, 255, 1) 100%);
            pointer-events: none;
            z-index: 1;
            transition: opacity 0.3s ease;
        }
        
        .price-fade-fade-row.price-fade-expanded::after {
            opacity: 0;
        }
        
        .price-fade-fade-row td {
            position: relative;
        }
        
      



.insta-page-cover {
    text-align: center;
}

.insta-page-cover img{
    width: 431px;
}

.insta-hero-section {
    background: url(https://cms-tehran.ir/wp-content/uploads/2025/11/image-min.jpg);
    position: relative;
    padding: 100px 0 0px 0;
    border-radius: 0 0 0 40px;
    background-size: 100% 100%;
}


.insta-hero-section .section-header {
    text-align: center;
    margin-bottom: 0;
    color: #fff;
    text-align: right;
}

.insta-hero-section .marquee-section .marquee-wrapper {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.marquee-blur {
    backdrop-filter: blur(24px);
    padding: 40px 0;
        margin-top: 15px;
}

.insta-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 60px;
}
section.services-grid {
    padding: 80px 0;
}

span.insta-badge {
    font-size: 33px;
    font-weight: 700;
    color:#278AEE;
}
span.insta-title {
    font-size: 45px;
    font-weight: 700;
}
.bg-liner {
    background: linear-gradient(360deg, rgba(33, 138, 242, 0) 0%, rgba(33, 138, 242, 0.2) 100%);
    width: 100%;
    height: 629px;
    position: absolute;
    margin-top: 290px;
    z-index: -1;
}
.portfolio-swiper-insta .project-img-wrapper img {
    width: 294px;
    height: 354px;
}

.portfolio-swiper-insta a.project-img-wrapper.d-block.mb-4 {
    background: #f3f3f3;
    padding-top: 50px;
}

.portfolio-slider-section .section-title {

    text-align: center;
}

.portfolio-slider-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}



        
        
.balance-card {
    background: white;
    border-radius: 32px;
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    width: 84.5%;
    display: table;
    margin: 0 auto;
    margin-bottom: 20px;
}

 

    
        /* عنوان سمت راست */
        .header-title-wrapper {
            position: absolute;
            top: 24px;
            right: 24px;
            z-index: 2;
            text-align: right;
        }

        .header-title {
            color: white;
            font-size: 13px;
            font-weight: 600;
        }

        .header-subtitle {
            color: rgba(255, 255, 255, 0.6);
            font-size: 11px;
            margin-top: 4px;
        }

        /* اطلاعات پایین */
        .header-bottom {
            position: absolute;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
        }

        .balance-values {
            display: flex;
            gap: 50px;
        }

        .balance-item {
            text-align: center;
        }

        .balance-item label {
            color: rgba(255, 255, 255, 0.85);
            font-size: 11px;
            display: block;
            margin-bottom: 6px;
            font-weight: 500;
        }

        .balance-item .value {
            color: white;
            font-size: 16px;
            font-weight: 700;
        }

        .balance-item .dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            margin-bottom: 6px;
            margin-left: 4px;
        }

        .balance-item:first-child .dot {
            background: #22d3ee;
        }

        .balance-item:last-child .dot {
            background: #a78bfa;
        }

        /* ==================== بخش لیست ==================== */
        .card-body {
            padding: 24px 20px;
        }

        .card-body-title {
            font-size: 16px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 20px;
            text-align: center;
        }

        .list-items {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .list-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
                border-bottom: 1px solid #ccc;
        
        }

    

      .item-left {
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 1;
        justify-content: space-between;
    }

   .item-icon {
    width: fit-content;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
    gap: 10px;
}

    .card-body .item-icon i{
        color: #000 !important;
    font-weight: 900;
}
    

        .item-text {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

           .item-label {
        font-size: 13px;
        color: #000000;
        font-weight: 800;
    }
    
    .item-rank .item-label {
        font-size: 13px;
        color: #FF8000;
        font-weight: 800;
    }
    
        .item-name {
            font-size: 13px;
            color: #1a1a1a;
            font-weight: 600;
        }

        .search-btn {
            background: white;
            border: 1px solid #ddd;
            border-radius: 6px;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #666;
            font-size: 12px;
            transition: all 0.3s ease;
            padding: 0;
        }

        .search-btn:hover {
            background: #4f46e5;
            border-color: #4f46e5;
            color: white;
            transform: scale(1.05);
        }


.portfolio-slider-section-seo {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}
.page-template-post_type_seo .portfolio-slider-section-seo::before {
    content: '';
    background-image: url(https://cms-tehran.ir/wp-content/uploads/2025/11/Frame-1597884455-min-1.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 413px;
    z-index: 1;
}
.portfolio-slider-section-seo .section-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    z-index: 9;
    position: relative;
    text-align: center;
}

.card-header-section img{
        width: 219px;
    height: 219px;
}

.marquee-section h2{
            font-weight: 700;
}
.marquee-section .section-header {
    text-align: center;
    margin-bottom: 0px;
}

.page-template-seo-page .section-header {

    padding-top: 100px;
} 
.services-section-seo {
    height: 88.5vh;
    background: url(https://cms-tehran.ir/wp-content/uploads/2025/11/image-min-1.png);
    background-size: 100% 100%;
    background-position: center center;
    margin-bottom: 8rem;
}

.services-hero-seo {
    padding: 170px 0 0px;
    position: relative;
    overflow: hidden;
}

.services-section-seo .justify-content-lg-start{
        justify-content: center !important;
    margin-top: 30px;
}

.services-section-seo .video-box-custom video {
    width: 860px;
    height: 481px;
    border-radius: 40px;
}
.services-section-seo .video-box-custom.position-relative {
    margin: 50px 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-template-seo-page .portfolio-slider-section-seo .section-title {
    color: #000;
    font-size: 32px;
    font-weight: 700;
    z-index: 9;
    position: relative;
    text-align: center;
}