.premium-counter-section {
  position: relative;
  overflow: hidden;
}

.premium-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 25, 46, 0.72);
}

.counter-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 45px 25px;
  transition: 0.35s;
  height: 100%;
}

.counter-card:hover {
  transform: translateY(-10px);
  background: #ffffff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.counter-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: #ff6b00;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 34px;
  transition: 0.35s;
}

.counter-card:hover .counter-icon {
  transform: rotateY(180deg);
}

.counter-card h2 {
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  transition: 0.35s;
}

.counter-card:hover h2 {
  color: #0b3a67;
}

.counter-card p {
  color: #fff;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
  transition: 0.35s;
}

.counter-card:hover p {
  color: #555;
}

.counter-card span {
  color: #ff6b00;
}

/*=========================================================
            PREMIUM SERVICES SECTION
=========================================================*/

.premium-services-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  overflow: hidden;
}

/* Decorative Shapes */

.premium-services-section::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: #ff5e15;
  opacity: 0.04;
  border-radius: 50%;
  top: -180px;
  right: -180px;
}

.premium-services-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: #00173c;
  opacity: 0.03;
  border-radius: 50%;
  bottom: -150px;
  left: -120px;
}

.premium-services-section .container {
  position: relative;
  z-index: 2;
}

/*=========================================================
                SECTION HEADING
=========================================================*/

.section-head {
  margin-bottom: 70px;
}

.section-tag {
  display: inline-block;
  background: #ff5e15;
  color: #fff;
  padding: 10px 24px;
  border-radius: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-head h2 {
  color: #00173c;
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.2;
}

.section-head p {
  color: #6b7280;
  max-width: 700px;
  margin: auto;
  line-height: 1.8;
  font-size: 17px;
}

/*=========================================================
                SERVICE CARD
=========================================================*/

.service-card {
  position: relative;
  background: #fff;
  overflow: hidden;
  height: 100%;
  transition: 0.35s;
  border: 1px solid #edf2f7;
  box-shadow: 0 12px 35px rgba(0, 23, 60, 0.08);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #ff5e15;
  box-shadow: 0 25px 60px rgba(0, 23, 60, 0.15);
}

/* Orange top border animation */

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 4px;
  background: #ff5e15;
  transition: 0.4s;
}

.service-card:hover::before {
  width: 100%;
}

/*=========================================================
                IMAGE
=========================================================*/

.service-image {
  background: #fafafa;
  padding: 35px;
  text-align: center;
  border-bottom: 1px solid #f2f2f2;
}

.service-image img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  transition: 0.45s;
}

.service-card:hover img {
  transform: scale(1.08);
}

/*=========================================================
                CONTENT
=========================================================*/

.service-content {
  position: relative;
  padding: 35px;
}

.service-number {
  position: absolute;
  top: -22px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: #ff5e15;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(255, 94, 21, 0.3);
}

.service-content h3 {
  font-size: 24px;
  color: #00173c;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 18px;
  transition: 0.3s;
}

.service-card:hover h3 {
  color: #ff5e15;
}

.service-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 28px;
  min-height: 120px;
}

/*=========================================================
                BUTTON
=========================================================*/

.premium-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: #00173c;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.35s;
}

.premium-btn:hover {
  background: #ff5e15;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

.premium-btn i {
  transition: 0.3s;
}

.premium-btn:hover i {
  transform: translateX(5px);
}

/*=========================================================
                RESPONSIVE
=========================================================*/

@media (max-width: 1199px) {
  .section-head h2 {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .premium-services-section {
    padding: 80px 0;
  }

  .section-head {
    margin-bottom: 50px;
  }

  .section-head h2 {
    font-size: 36px;
  }

  .service-image img {
    height: 200px;
  }

  .service-content {
    padding: 28px;
  }

  .service-content p {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .premium-services-section {
    padding: 65px 0;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .section-tag {
    font-size: 12px;
    padding: 8px 18px;
  }

  .section-head h2 {
    font-size: 30px;
  }

  .section-head p {
    font-size: 15px;
  }

  .service-image {
    padding: 25px;
  }

  .service-image img {
    height: 180px;
  }

  .service-content {
    padding: 24px;
  }

  .service-content h3 {
    font-size: 21px;
  }

  .service-number {
    width: 48px;
    height: 48px;
    font-size: 16px;
    right: 20px;
  }

  .premium-btn {
    width: 100%;
  }
}

.latest-blog-section {
  padding: 100px 0;
  background: #f7f7f7;
}

.blog-header {
  margin-bottom: 70px;
}

.blog-header span {
  color: #ff5e15;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 14px;
}

.blog-header h2 {
  font-size: 48px;
  font-weight: 700;
  margin: 15px 0;
  color: #111;
}

.blog-header p {
  color: #666;
  max-width: 650px;
  margin: auto;
  font-size: 18px;
}

.industrial-blog-card {
  background: #fff;
  overflow: hidden;
  height: 100%;
  transition: 0.35s;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.image-wrap {
  display: block;
  position: relative;
  overflow: hidden;
}

.image-wrap img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 0.7s;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent);
  opacity: 0;
  transition: 0.4s;
}

.industrial-blog-card:hover img {
  transform: scale(1.08);
}

.industrial-blog-card:hover .image-overlay {
  opacity: 1;
}

.card-content {
  padding: 35px;
}

.blog-date {
  color: #ff5e15;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.card-content h3 {
  font-size: 24px;
  line-height: 1.45;
  margin-bottom: 35px;
  min-height: 95px;
}

.card-content h3 a {
  color: #222;
  text-decoration: none;
  transition: 0.3s;
}

.card-content h3 a:hover {
  color: #ff5e15;
}

.read-link {
  color: #111;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.read-link span {
  transition: 0.3s;
}

.read-link:hover {
  color: #ff5e15;
}

.read-link:hover span {
  transform: translateX(8px);
}

.industrial-blog-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.16);
}

.blog-btn {
  display: inline-block;
  background: #ff5e15;
  color: #fff;
  padding: 16px 45px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.35s;
}

.blog-btn:hover {
  background: #111;
  color: #fff;
}

@media (max-width: 991px) {
  .blog-header h2 {
    font-size: 38px;
  }

  .image-wrap img {
    height: 240px;
  }

  .card-content h3 {
    min-height: auto;
  }
}
