/* ================= SERVICES PAGE ================= */

.services-page{
  padding: 90px 0;
  background: #ffffff;
}

.services-page-container{
  width: 92%;
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.services-page-head{
  text-align: center;
  margin-bottom: 60px;
}

.services-page-tag{
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,0,0,0.08);
  color: #32CD32;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 14px;
}

.services-page-title{
  font-size: 46px;
  font-weight: 900;
  color: #111;
  margin-bottom: 14px;
}

.services-page-title span{
  color: #32CD32;
}

.services-page-desc{
  max-width: 820px;
  margin: auto;
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

/* List */
.services-page-list{
  display: grid;
  gap: 70px;
}

/* Item layout */
.services-page-item{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.services-page-item.reverse{
  direction: rtl;
}
.services-page-item.reverse > *{
  direction: ltr;
}

/* Image */
.services-page-image{
  width: 100%;
  height: 380px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.06);
}

.services-page-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.services-page-image:hover img{
  transform: scale(1.08);
}

/* Content */
.services-page-content h3{
  font-size: 28px;
  font-weight: 900;
  color: #111;
  margin-bottom: 10px;
}

.services-page-content p{
  font-size: 15px;
  color: #444;
  line-height: 1.85;
  margin-bottom: 14px;
}

/* Extra content boxes */
.services-page-extra{
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.services-page-extra-box{
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,0,0,0.06);
  border: 1px solid rgba(255,0,0,0.14);
  color: #333;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.6;
}

.services-page-extra-box span{
  color: #32CD32;
  font-weight: 900;
}

/* Bullet list */
.services-page-ul{
  padding-left: 18px;
  margin: 0 0 18px 0;
  display: grid;
  gap: 8px;
}

.services-page-ul li{
  font-size: 14px;
  font-weight: 800;
  color: #333;
  line-height: 1.7;
}
.services-page-ul li::marker{
  color: #32CD32;
  font-weight: 900;
}

/* Buttons */
.services-page-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.services-page-btn{
  text-decoration: none;
  font-weight: 900;
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 14px;
  transition: 0.3s ease;
  display: inline-block;
}

.services-page-btn.primary{
  background: #32CD32;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 255, 42, 0.22);
}
.services-page-btn.primary:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.services-page-btn.outline{
  background: transparent;
  border: 2px solid rgba(0,0,0,0.16);
  color: #111;
}
.services-page-btn.outline:hover{
  border-color: rgba(0, 255, 34, 0.55);
  color: #32CD32;
  transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */

@media(max-width: 992px){
  .services-page-title{ font-size: 36px; }
  .services-page-item{ grid-template-columns: 1fr; }
  .services-page-image{ height: 320px; }
}

@media(max-width: 600px){
  .services-page{ padding: 60px 0; }
  .services-page-title{ font-size: 28px; }
  .services-page-desc{ font-size: 15px; }
  .services-page-image{ height: 240px; border-radius: 14px; }
  .services-page-btn{ width: 100%; text-align: center; }
}








/* ........................................ section 3 ........................................ */
.services-section {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 70px;
            animation: fadeInDown 0.8s ease;
        }

        .section-tag {
            display: inline-block;
            padding: 10px 28px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1.5px;
            margin-bottom: 24px;
            text-transform: uppercase;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
        }

        .section-title {
            font-size: 52px;
            color: #1f2937;
            margin-bottom: 24px;
            font-weight: 800;
            line-height: 1.2;
        }

        .section-title span {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-desc {
            font-size: 18px;
            color: #6b7280;
            max-width: 850px;
            margin: 0 auto;
            line-height: 1.9;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 35px;
            margin-top: 60px;
        }

        .service-card {
            background: #ffffff;
            border: 2px solid #e5e7eb;
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            animation: fadeInUp 0.8s ease;
            animation-fill-mode: both;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }

        .service-card:nth-child(1) { animation-delay: 0.1s; }
        .service-card:nth-child(2) { animation-delay: 0.2s; }
        .service-card:nth-child(3) { animation-delay: 0.3s; }
        .service-card:nth-child(4) { animation-delay: 0.4s; }
        .service-card:nth-child(5) { animation-delay: 0.5s; }
        .service-card:nth-child(6) { animation-delay: 0.6s; }

        .service-card:hover {
            transform: translateY(-12px);
            border-color: #10b981;
            box-shadow: 0 25px 50px rgba(16, 185, 129, 0.25);
        }

        .service-image {
            width: 100%;
            height: 260px;
            overflow: hidden;
            position: relative;
            background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
            z-index: 2;
        }

        .service-content {
            padding: 35px 30px;
        }

        .service-title {
            font-size: 24px;
            color: #1f2937;
            margin-bottom: 16px;
            font-weight: 700;
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .service-card:hover .service-title {
            color: #10b981;
        }

        .service-desc {
            font-size: 15px;
            color: #6b7280;
            line-height: 1.8;
            margin-bottom: 28px;
        }

        .service-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 20px;
            border-top: 1px solid #e5e7eb;
        }

        .service-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            font-weight: 600;
            text-decoration: none;
            font-size: 15px;
            padding: 12px 28px;
            border-radius: 30px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
        }

        .service-btn:hover {
            transform: translateX(5px);
            box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
        }

        .service-btn::after {
            content: '→';
            transition: transform 0.3s ease;
        }

        .service-btn:hover::after {
            transform: translateX(4px);
        }

        .service-meta {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #10b981;
            font-size: 14px;
            font-weight: 600;
        }

        .service-meta svg {
            width: 20px;
            height: 20px;
            stroke: #10b981;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 38px;
            }

            .section-desc {
                font-size: 16px;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .service-card {
                margin: 0 10px;
            }

            .service-content {
                padding: 28px 25px;
            }

            .service-image {
                height: 220px;
            }
        }