.elementor-2830 .elementor-element.elementor-element-3d7f06e{--display:flex;}.elementor-2830 .elementor-element.elementor-element-7bb5c51{width:100%;max-width:100%;}.elementor-2830 .elementor-element.elementor-element-02bc451{--display:flex;}.elementor-2830 .elementor-element.elementor-element-27cc040{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-2830 .elementor-element.elementor-element-a086aa0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2830 .elementor-element.elementor-element-389443a{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-2830 .elementor-element.elementor-element-44f415e{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-2830 .elementor-element.elementor-element-f9754c7{--display:flex;}.elementor-2830 .elementor-element.elementor-element-bb7a06c{--display:flex;}@media(max-width:767px){.elementor-2830 .elementor-element.elementor-element-389443a{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}}/* Start custom CSS for html, class: .elementor-element-44f415e */.skills-section {
  background: #050b1a;
  padding: 80px 20px;
  text-align: center;
}

.skills-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 42px;
  color: #00cfff;
  margin-bottom: 60px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.skill-card {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  padding: 25px;
  border-radius: 15px;
  background: rgba(0, 207, 255, 0.05);
  border: 1px solid rgba(0, 207, 255, 0.2);
  transition: 0.3s;
}

.skill-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(0, 207, 255, 0.4);
}

.skill-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #00cfff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(0, 207, 255, 0.6);
}

.skill-circle img {
  width: 30px;
}

.skill-card span {
  color: white;
  font-size: 18px;
  letter-spacing: 1px;
}

/* موبایل */
@media (max-width: 768px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-85f1721 */.contact-section {
  background: #0f172a;
  padding: 120px 8%;
  color: #e5e7eb;
  font-family: 'Inter', sans-serif;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 80px;
}

.contact-info h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.contact-info p {
  color: #9ca3af;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-item {
  margin-bottom: 25px;
}

.contact-item span {
  display: block;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 5px;
}

.contact-item strong {
  font-size: 16px;
  font-weight: 600;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  background: #111827;
  border: 1px solid #1f2937;
  padding: 14px;
  margin-bottom: 20px;
  border-radius: 8px;
  color: white;
  font-size: 14px;
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2563eb;
}

.contact-form button {
  background: #2563eb;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: #1d4ed8;
}/* End custom CSS */