/* ========== SERVICE PAGE ========== */
.service-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.box-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.box-title::after {
  content: '';
  width: 40px;
  height: 3px;
  background: #00c853;
  position: absolute;
  left: 0;
  bottom: -8px;
}

/* Service List */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  padding: 12px 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  background: #f5f7fa;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  transition: 0.3s;
}

.service-list li:hover,
.service-list li.active {
  background: linear-gradient(135deg, #00c853, #01337d);
  color: #fff;
}

/* Opening Hours */
.opening-hours {
  list-style: none;
  padding: 0;
}

.opening-hours li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed #ddd;
  font-size: 14px;
}

.opening-hours .closed {
  color: red;
  font-weight: 600;
}

/* Service Image */
.service-image img {
  width: 100%;
  border-radius: 15px;
  height: 360px;
  object-fit: cover;
}

/* Service Content */
.service-content{
  margin-bottom: 20px;
}
.service-content h2 {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* Video Box */
.video-box {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.video-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #00c853;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
}

/* Benefits */
.benefit-title {
  font-weight: 600;
  margin-bottom: 15px;
}

.benefit-list {
  list-style: none;
  padding: 0;
}

.benefit-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.benefit-list li::before {
  content: '✔';
  color: #00c853;
  position: absolute;
  left: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .service-image img {
    height: 250px;
  }

  .service-box {
    padding: 20px;
  }
}

/* pricing table for web developement page  */

   .pricing-wrapper {
            max-width: 1100px;
            margin: auto;
        }

        /* Card */
        .table-card {
            background: var(--primary-color);
            border-radius: 14px;
            overflow-y: hidden;
            overflow-x: auto;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
        }

        /* Table */
        .pricing-table {
            background: #ffffff;
            margin: 0;
        }

        /* Header */
        .pricing-table thead th {
            background: var(--primary-color);
            color: #ffffff;
            text-transform: uppercase;
            font-size: 13px;
            font-weight: 600;
            padding: 16px;
            text-align: center;
            border: none;
        }

        /* Cells */
        .pricing-table tbody td {
            padding: 14px;
            font-size: 14px;
            color: #333;
            text-align: center;
            border: none;
        }

        /* Odd rows */
        .pricing-table tbody tr:nth-child(odd) {
            background-color: #f8f9fa;
        }

        /* Even rows */
        .pricing-table tbody tr:nth-child(even) {
            background-color: #ffffff;
        }

        /* Hover on ODD rows */
        .pricing-table tbody tr:nth-child(odd):hover {
            background-color: #ccf8cb;
            transition:  0.25s ease-in-out;
        }

        /* Hover on EVEN rows */
        .pricing-table tbody tr:nth-child(even):hover {
            background-color: #b1b1b1;
            transition:  0.25s ease-in-out;
        }

        /* Row divider */
        .pricing-table tbody tr {
            border-bottom: 1px solid #e1e1e1;
        }

        /* Total row */
        .pricing-table tbody tr.total-row {
            background: var(--primary-color);
            color: #ffffff;
            font-weight: 600;
        }

        .pricing-table tbody tr.total-row td {
            color: #ffffff;
        }

        /* Remove Bootstrap borders */
        .table> :not(caption)>*>* {
            border-width: 0;
        }