/* Contact Section Custom Styles */
.contact-card {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 4px 24px 0 rgba(30,30,60,0.08);
  border: 1.5px solid #e3e6f0;
  max-width: 480px;
  margin: 0 auto;
}
.contact-title {
  font-size: 1.7rem;
  font-weight: bold;
  color: #1a237e;
  letter-spacing: -1px;
}
.contact-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg,#1a237e 0%,#00bcd4 100%);
  border-radius: 2px;
}
.contact-lead {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 0.7rem;
}
.contact-methods {
  margin-bottom: 0.5rem;
}
.contact-btn {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.08rem;
  font-weight: 500;
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  box-shadow: 0 1px 6px 0 rgba(30,30,60,0.04);
  background: #f8fafc;
  color: #1a237e;
  border: none;
  transition: background 0.18s, color 0.18s;
}
.contact-btn-phone {
  background: linear-gradient(90deg,#e3f2fd 0%,#bbdefb 100%);
  color: #1976d2;
}
.contact-btn-email {
  background: linear-gradient(90deg,#f3e5f5 0%,#e1bee7 100%);
  color: #6a1b9a;
}
.contact-btn-telegram {
  background: linear-gradient(90deg,#e0f7fa 0%,#b2ebf2 100%);
  color: #0088cc;
}
.contact-btn-instagram {
  background: linear-gradient(90deg,#fce4ec 0%,#f8bbd0 100%);
  color: #d81b60;
}
.contact-btn:hover {
  background: #e3e6f0;
  color: #1a237e;
}
.contact-icon {
  font-size: 1.4rem;
  vertical-align: middle;
}
@media (max-width: 600px) {
  .contact-card {
    padding: 1.1rem 0.5rem;
  }
  .contact-title {
    font-size: 1.2rem;
  }
}
/* About Section Custom Styles */
.about-card {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 4px 24px 0 rgba(30,30,60,0.08);
  border: 1.5px solid #e3e6f0;
  max-width: 540px;
  margin: 0 auto;
}
.about-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(30,30,60,0.10);
  background: #f3f6fa;
}
.about-title {
  font-size: 2rem;
  font-weight: bold;
  color: #1a237e;
  letter-spacing: -1px;
}
.about-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg,#1a237e 0%,#00bcd4 100%);
  border-radius: 2px;
}
.about-lead {
  font-size: 1.08rem;
  color: #333;
  line-height: 2;
}
.about-section {
  background: #f8fafc;
  border-radius: 16px;
  padding: 1.1rem 1rem 1rem 1rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 1px 6px 0 rgba(30,30,60,0.04);
}
.about-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a237e;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.about-icon {
  font-size: 1.3rem;
  color: #00bcd4;
  vertical-align: middle;
}
.about-list {
  padding-right: 1.2rem;
  margin-bottom: 0.5rem;
  color: #444;
  font-size: 1rem;
  line-height: 2;
}
.about-list li {
  margin-bottom: 0.3rem;
  list-style: disc inside;
}
.about-links a {
  color: #00bcd4;
  text-decoration: underline;
  font-weight: 500;
}
.about-links a:hover {
  color: #1a237e;
}
@media (max-width: 600px) {
  .about-card {
    padding: 1.2rem 0.5rem;
  }
  .about-title {
    font-size: 1.4rem;
  }
}
.animate-fadein {
  animation: fadeinabout 1.1s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeinabout {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: none; }
}
@font-face {
  font-family: 'IRANSans';
  src: url('../fonts/iransans.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body,
* {
  font-family: 'IRANSans' !important;
}

#mobile-section-home{
  background-color: #000000;
  
}

#mobile-section-service-detail {
  background: linear-gradient(120deg, #f8fafc 0%, #e0e7ef 100%);
  padding-top: 32px;
  padding-bottom: 110px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
  overflow-y: auto;
  animation: fadeInMobileDetail 0.7s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 8px 32px 0 #bfc9e355;
  border-radius: 24px 24px 0 0;
}

@keyframes fadeInMobileDetail {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }

  60% {
    opacity: 0.7;
    transform: translateY(-8px) scale(1.01);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

#mobile-service-back {
  background: linear-gradient(135deg, #fbc2eb 0%, #a18cd1 100%) !important;
  color: #fff !important;
  border: none;
  box-shadow: 0 2px 16px #a18cd133;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  outline: none;
}

#mobile-service-back:active,
#mobile-service-back:focus {
  background: #a18cd1 !important;
  color: #fff !important;
  box-shadow: 0 4px 18px #a18cd133;
}

.mobile-service-detail-content {
  margin: 15px;
}

#mobile-service-detail-content h3,
.mobile-service-detail-content h3 {
  font-size: 1.35rem;
  font-weight: bold;
  color: #7b1fa2;
  letter-spacing: 0.5px;
}

#mobile-service-detail-content .text-muted,
.mobile-service-detail-content .text-muted {
  font-size: 1.09rem;
  color: #5e5873;
}


#mobile-main-wrapper {
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  padding: 0 18px 0 18px;
  box-shadow: 0 8px 32px 0 #bfc9e355;
}

@media (max-width: 400px) {
  #mobile-main-wrapper {
    padding: 0 6px 0 6px;
  }
}


.mobile-title {
  font-size: 2.5rem;
  color: #a18cd1;
  letter-spacing: 1.2px;
  text-shadow: 0 2px 12px #fbc2eb, 0 1px 0 #fff8;
  font-weight: bold;
  margin-bottom: 22px;
  animation: fadeInMobileDetail 0.7s cubic-bezier(.4, 0, .2, 1);
}


#mobile-section-services h2 {
  color: #7b1fa2;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.2px;
  text-shadow: 0 2px 8px #fbc2eb99;
  margin-bottom: 22px;
}



#mobile-section-services .d-flex {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 #fbc2eb55;
  padding: 18px 20px 18px 12px;
  margin-bottom: 20px !important;
  transition: box-shadow 0.25s, transform 0.18s;
  position: relative;
  z-index: 1;
  align-items: center !important;
  min-height: 68px;
  cursor: pointer;
  border: 1.5px solid #fbc2eb33;
  animation: fadeInMobileDetail 0.7s cubic-bezier(.4, 0, .2, 1);
}

#mobile-section-services .d-flex:hover {
  box-shadow: 0 6px 24px 0 #a18cd155;
  transform: translateY(-3px) scale(1.025);
  border: 1.5px solid #a18cd1;
}


#mobile-section-services i {
  border-radius: 50%;
  padding: 10px;
  min-width: 52px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px #fbc2eb55;
  color: #fff !important;
  font-size: 2.1rem !important;
  margin-left: 18px !important;
  margin-right: 0 !important;
  flex-shrink: 0;
  transition: box-shadow 0.25s, background 0.25s, color 0.25s, transform 0.18s;
  border: 2.5px solid #fff;
  animation: iconPop 0.7s cubic-bezier(.4, 0, .2, 1);
}

/* رنگ بکگراند آیکون هر خدمت */
#mobile-section-services .bi-window {
  background: linear-gradient(135deg, #42a5f5 0%, #1976d2 100%) !important;
}

#mobile-section-services .bi-share {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%) !important;
}

#mobile-section-services .bi-camera {
  background: linear-gradient(135deg, #ff5858 0%, #f09819 100%) !important;
}

#mobile-section-services .bi-camera-reels {
  background: linear-gradient(135deg, #f7971e 0%, #ffd200 100%) !important;
}

#mobile-section-services .bi-palette {
  background: linear-gradient(135deg, #43cea2 0%, #185a9d 100%) !important;
}

#mobile-section-services .bi-image {
  background: linear-gradient(135deg, #868f96 0%, #596164 100%) !important;
}

#mobile-section-services .bi-filetype-gif {
  background: linear-gradient(135deg, #a770ef 0%, #f6d365 100%) !important;
}

#mobile-section-services .bi-brush {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%) !important;
}

#mobile-section-services .bi-shop {
  background: linear-gradient(135deg, #fc5c7d 0%, #6a82fb 100%) !important;
}

#mobile-section-services .bi-people {
  background: linear-gradient(135deg, #f7971e 0%, #ffd200 100%) !important;
}

@keyframes iconPop {
  0% {
    transform: scale(0.7) rotate(-10deg);
    opacity: 0;
  }

  60% {
    transform: scale(1.15) rotate(6deg);
    opacity: 0.7;
  }

  100% {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}



#mobile-section-services .fw-bold {
  font-size: 1.13rem;
  color: #7b1fa2;
  margin-bottom: 2px;
  letter-spacing: 0.2px;
}


#mobile-section-services .text-muted {
  font-size: 1.01rem;
  line-height: 1.8;
  color: #5e5873;
}



#mobile-navbar {
  background-color: rgba(255, 255, 255, 0.575);
  border-radius: 1rem;
  backdrop-filter: blur(10px) brightness(1.1);
  margin: 10px;
  box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px !important;
}

#mobile-navbar .btn-link {
  color: #000000 !important;
  font-weight: 600;
  border-radius: 16px;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
  padding: 0;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px #fbc2eb22;
  text-decoration: none;
  font-weight: bold !important;
}



#mobile-navbar .btn-link:active,
#mobile-navbar .btn-link:focus {
  background: #0000000a !important;
  color: #000000 !important;
}


#mobile-navbar .bi {
  margin-bottom: 2px;
  color: #000000 !important;
  transition: color 0.25s;
}


.mobile-section {
  margin-top: 12px;
  background: transparent;
  padding-left: 8px;
  padding-right: 8px;
}

/* افکت subtle برای ترنزیشن صفحات */
.mobile-section {
  transition: opacity 0.7s cubic-bezier(.4, 0, .2, 1), transform 0.7s cubic-bezier(.4, 0, .2, 1);
}


/* Responsive fix */
@media (max-width: 400px) {
  .mobile-title {
    font-size: 2.1rem;
  }

  #mobile-section-services h2 {
    font-size: 1.1rem;
  }

  #mobile-section-services .d-flex {
    padding: 12px 8px 12px 4px;
  }
}



#mobile-section-services h2 {
  color: #1976d2;
  font-size: 1.5rem;
}

#mobile-section-services .d-flex {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 #e3e8f0;
  padding: 12px 14px 12px 8px;
  margin-bottom: 18px !important;
  margin: 8px;
  transition: box-shadow 0.2s;
}

#mobile-section-services .d-flex:hover {
  box-shadow: 0 4px 18px 0 #bfc9e3;
}

#mobile-section-services i {
  background: linear-gradient(135deg, #e3e8f0 0%, #f8fafc 100%);
  border-radius: 50%;
  padding: 10px;
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 6px #e3e8f0;
}

#mobile-section-services .fw-bold {
  font-size: 1.08rem;
  color: #263238;
}

#mobile-section-services .text-muted {
  font-size: 0.97rem;
}



#mobile-navbar .btn-link {
  color: #616161 !important;
  font-weight: 500;
  border-radius: 12px;
  transition: background 0.2s, color 0.2s;
  padding: 0;
}

#mobile-navbar .bi {
  margin-bottom: 2px;
}

/* استایل نسخه موبایل */
.mobile-section {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  min-height: 100%;
  background: transparent;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.4s;
  overflow-y: auto;
  padding: 24px 0 110px 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

#mobile-main-content {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 60vh;
  overflow: hidden;
}

.mobile-title {
  font-size: 2.7rem;
}


    /* --- Hero Section Styles --- */
    .hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 45vh;
      margin-top: 2.5rem;
      margin-bottom: 2.5rem;
      text-align: center;
    }

    .hero-title {
      font-size: 1.3rem;
      font-weight: bold;
      margin-bottom: 1.2rem;
      letter-spacing: 1px;
      line-height: 1.5;
      direction: rtl;
    }

    #typedText {
      font-family: inherit;
      font-size: 1.3rem;
      font-weight: bold;
      color: #222;
    }

    #typedText .dynamic-purple {
      color: #9d0dfd;
      transition: color 0.2s;
    }

    #typedCursor {
      color: #9d0dfd;
      font-weight: bold;
    }

    .hero-desc {
      font-size: 1.3rem;
      color: #666;
      margin-top: 1.2rem;
      max-width: 420px;
      margin-left: auto;
      margin-right: auto;
      line-height: 2;
    }

    /* --- End Hero Section Styles --- */




    .deskwidth{
      width: 60% !important;
      max-width: 1200px !important;
      margin: 0 auto;
      padding: 0 20px;
    }