a.btn,
a.btn:hover,
a.btn:focus {
  transform: none !important;
  transition: none !important;
}
.d-flex{
 display: flex;   
}
.justify-content-center {
    justify-content: center;
}

.show-more-btn-container{
    display: flex;
    justify-content: center;
}


/*سابقة الاعمال*/
/* ====== Section Header ====== */
.portfolio-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 15px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 16px;
  color: #555;
}

/* ====== Video ====== */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin: 20px 0;
    overflow: hidden;
    border-radius: 6px;
}

.video-wrapper video {
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ====== Projects Grid ====== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.project-card {
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-info {
  padding: 15px;
  text-align: center;
}

.project-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

/* ====== Button ====== */
.project-btn {
  display: inline-block;
  padding: 8px 16px !important;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px !important;
  font-weight: 500;
  transition: background-color 0.3s;
}

.project-btn:hover {
    color: white !important;
  background-color: #0056b3;
}

/* ====== Hover Effects ====== */
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
