/*
Theme Name: Hello Elementor Child
Author: Hossein Modabber
Template: hello-elementor
Version: 1.0.3
*/
@font-face {
  font-family: 'Montserrat';
  src: url('./fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

*{
	font-family: 'Montserrat';
  box-sizing: border-box;
}
.custom-header {
  background: #fff;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1000;
  max-width: 1280px;
}

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

.logo-wrapper img {
  height: 48px;
}

.main-nav .nav-items {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
}

.main-nav .nav-items li a {
  color: #0e3b65;
  text-decoration: none;
  font-weight: 600;
}

.cta-btn {
  background: #f36035;
  color: white !important;
  padding: 15px 30px;
  border-radius: 24px;
  font-weight: 600;
  text-decoration: none;
}

.hamburger-icon {
  display: none;
  cursor: pointer;
}

.hamburger-icon img {
  height: 28px;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.mobile-menu-overlay.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-overlay.exiting {
  transform: translateX(-100%);
  opacity: 0;
  visibility: visible;
  pointer-events: none;
}


.mobile-menu-content {
  padding: 20px;
}

.close-icon {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.close-icon img {
  height: 24px;
  cursor: pointer;
}

.mobile-search {
  margin-bottom: 20px;
}
.mobile-search-form {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 24px;
  overflow: hidden;
  background: #f5f5f5;
}

.mobile-search-input {
  flex: 1;
  padding: 10px 14px;
  border: none;
  font-size: 16px;
  background: transparent;
  outline: none;
}

.mobile-search-submit {
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.mobile-search-submit img {
  height: 20px;
  width: 20px;
  filter: brightness(0) saturate(100%);
}

.mobile-nav-items {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.mobile-nav-items li a {
  display: block;
  padding: 10px 0;
  color: #0e3b65;
  text-decoration: none;
  font-weight: 600;
}

.mobile-cta .cta-btn {
  display: block;
  text-align: center;
}
/* herosection */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px 70px;
}


.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 70px 20px;
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff !important;
}

.hero-content .orange-text {
  font-weight: 700;
  color: #f36035;
  margin-bottom: 20px;
}

.hero-content .subhead {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #fff;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 12px 24px;
  border-radius: 24px;
  font-weight: 600;
  text-decoration: none;
  color: #fff !important;
  display: inline-block;
  text-align: center;
}

.orange-btn {
  background-color: #f36035;
}

.blue-btn {
  background-color: #0e3b65;
}

.site-footer {
  background-color: #fff;
  color: #000;
  margin: 0;
  max-width: 100% !important;
  padding: 0 !important;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin: auto;
  max-width: 1280px;
  padding: 0 10px !important;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}
.logo-col {
  min-width: 400px;
  max-width: 100%;
}
.logo-col img {
  max-width: 100%;
}

.footer-menu {
  list-style: none;
  padding: 0;
}

.footer-menu li a {
  display: block;
  color: #000;
  text-decoration: none;
  margin-bottom: 15px;
  color: #0e3b65;
  transition: all 0.3s;
  font-weight: 500;
}

.footer-menu li a:hover {
  color: #F36035;
}
.footer-col.info-col{
  color: #0e3b65;
  font-size: 0.9rem;
  min-width: 400px;
  line-height: 1.7rem;
}
.footer-col.info-col strong{
  color: #0e3b65;
  font-size: 1rem;
}
.footer-col.info-col a{
  color: #0e3b65;
  text-decoration: none;
}
.footer-col-title, .footer-col.info-col strong.footer-col-title{
  color: #F36035;
}
.footer-col.info-col p{
  margin: 0 0 5px;
}
.contact-btn {
  display: block;
  background-color: #000;
  color: #fff !important;
  padding: 16px 24px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
}

.footer-bottom {
  background: #0e0e0e;
  color: #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.social-icons a {
  margin-left: 12px;
  display: inline-block;
}

.social-icons img {
  width: 36px;
  height: 36px;
}
/* Table */
.so-table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto; /* اسکرول افقی */
    -webkit-overflow-scrolling: touch; /* اسکرول روان در موبایل */
}
.so-table-responsive table {
    width: 100%; /* جدول باید عرض 100% داشته باشد */
    border-collapse: collapse; /* حذف فاصله بین سلول‌ها */
}
.so-table-responsive th,
.so-table-responsive td {
    padding: 8px; /* فاصله داخلی سلول‌ها */
    text-align: left; /* تنظیم ترازبندی متن */
    border: 1px solid #ddd; /* مرزبندی سلول‌ها */
    white-space: nowrap; /* جلوگیری از شکستن متن */
}
.wq_singleAnswerCtr .wq_answerTxtCtr::before {
    right: 0;
}
/* Comments */
/* ====== Comment Form – Clean Minimal ====== */
#respond {
  --primary: #0e3b65;   /* Primary color for headings and borders */
  --accent:  #F36035;   /* Accent color for buttons and highlights */
  --surface: #ffffff;   /* Base background color */
  --text:    #1f2937;   /* Main text color */
  --muted:   #6b7280;   /* Muted/secondary text color */
  --radius:  12px;      /* Border radius for inputs/buttons */
  --gap:     16px;      /* Grid gap between fields */
}

/* Turn the comment form into a 2-column grid */
#respond .comment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap);
  margin-top: 12px;
}

/* Name and Email side by side; comment textarea and submit full width */
#respond .comment-form-author,
#respond .comment-form-email { margin: 0; }
#respond .comment-form-comment,
#respond .form-submit { grid-column: 1 / -1; margin: 0; }

/* Labels */
#respond .comment-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

/* Required field asterisk */
#respond .comment-form .required,
#respond .comment-form .required-field-message .required {
  color: var(--accent);
}

/* Inputs and textarea styling */
#respond .comment-form input[type="text"],
#respond .comment-form input[type="email"],
#respond .comment-form textarea {
  width: 100%;
  appearance: none;
  background: var(--surface);
  color: var(--text);
  border: 1px solid rgba(14,59,101,0.18);
  border-radius: var(--radius);
  padding: 12px 14px;
  line-height: 1.5;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
  outline: none;
}

/* Minimum height and resizing for textarea */
#respond .comment-form textarea {
  min-height: 160px;
  resize: vertical;
}

/* Focus state for inputs and textarea */
#respond .comment-form input:focus,
#respond .comment-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(243,96,53,0.15);
}

/* Comment notes (e.g. “Email will not be published”) */
#respond .comment-notes {
  grid-column: 1 / -1;
  margin: 0 0 4px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Submit button */
#respond .form-submit input[type="submit"],
#respond #submit.submit {
  appearance: none;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border-radius: calc(var(--radius) + 4px);
  padding: 12px 20px;
  cursor: pointer;
  transition: transform .06s ease, filter .15s ease, box-shadow .2s ease;
  box-shadow: 0 6px 16px rgba(243,96,53,0.25);
}

/* Submit hover and focus states */
#respond .form-submit input[type="submit"]:hover,
#respond .form-submit input[type="submit"]:focus {
  filter: brightness(0.95);
  box-shadow: 0 8px 18px rgba(243,96,53,0.32);
}

/* Submit active (click) state */
#respond .form-submit input[type="submit"]:active {
  transform: translateY(1px);
}

/* Disabled submit button state */
#respond .form-submit input[type="submit"]:disabled {
  opacity: .6;
  cursor: not-allowed;
  box-shadow: none;
}

/* Remove extra margins inside <p> */
#respond .comment-form p { margin: 0; }

/* Cancel reply link styling */
#respond #cancel-comment-reply-link {
  color: var(--muted);
  text-decoration: none;
}
#respond #cancel-comment-reply-link:hover { color: var(--accent); }

/* Placeholder text color */
#respond .comment-form input::placeholder,
#respond .comment-form textarea::placeholder {
  color: #9aa3ad;
}

/* Error state (if error classes are added by WordPress or JS) */
#respond .comment-form .error input,
#respond .comment-form .error textarea {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239,68,68,0.12);
}

@media (max-width: 768px) {
  .main-nav,
  .cta-wrapper {
    display: none;
  }
  .hamburger-icon {
    display: block;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .social-icons {
    margin-top: 10px;
  }
  .hero-content h1{
    font-size: 1.5rem;
    line-height: 2.2rem;
  }
  .hero-btn{
    display: block;
    width: 100%;
  }
  #respond .comment-form {
	grid-template-columns: 1fr;
  }
  .logo-col, .footer-col.info-col{
		min-width: auto;
  }
}