/* =========================
         RESET
      ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #2f3092;
  font-size: 15px;
  font-weight: 600;
}

body {
  font-family: "Poppins", sans-serif;
  padding-top: 77px;
}

/* =========================
         HEADER
      ========================= */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.main-header .container {
  max-width: 1320px;
  margin: auto;
  padding: 15px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================
         LOGO
      ========================= */
.header-logo img {
  height: 81px;
  width: 142px;
  display: block;
  margin-right: 43px;
}

/* =========================
         NAVBAR
      ========================= */
.main-navbar {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-menu li a {
  text-decoration: none;
  color: #000;
  font-size: 17px;
  font-weight: 600;
  transition: 0.3s;
  position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: #2f3092;
}

.nav-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #2f3092;
  transition: 0.3s;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  width: 100%;
}

/* =========================
         EXPERIENCE BADGE
      ========================= */
.experience-badge img {
  height: 70px;
  width: auto;
  margin-left: 51px;
}

/* =========================
         MOBILE BUTTON
      ========================= */
.mobile-menu-btn {
  width: 45px;
  height: 45px;
  border: none;
  background: #2f3092;
  border-radius: 5px;
  cursor: pointer;

  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.mobile-menu-btn span {
  width: 22px;
  height: 2px;
  background: #fff;
  display: block;
}

/* =========================================
         MOBILE HEADER PERFECT ALIGNMENT
      ========================================= */
@media (max-width: 991px) {
  /* HEADER */
  .main-header {
    width: 100%;
    background: #fff;
  }

  .main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap; /* IMPORTANT */
    position: relative;
    padding: 12px 15px;
  }

  /* LOGO LEFT */
  .header-logo {
    flex: 0 0 auto;
  }

  .header-logo img {
    width: 110px;
    height: auto;
    display: block;
  }

  /* RIGHT SIDE AREA */
  .experience-badge {
    position: absolute;
    right: 78px; /* beside menu button */
    top: 50%;
    transform: translateY(-50%);
    display: block !important;
    z-index: 10;
  }

  .experience-badge img {
    width: 46px;
    height: auto;
    display: block;
  }

  /* MENU BUTTON RIGHT CORNER */
  .mobile-menu-btn {
    display: flex;
    width: 48px;
    height: 48px;
    border: none;
    background: #2f3092;
    border-radius: 5px;
    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;

    margin-left: auto;
    flex-shrink: 0;
    z-index: 20;
  }

  .mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: #fff;
    display: block;
  }

  /* NAVIGATION DROPDOWN */
  .main-navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;

    background: #fff;

    max-height: 0;
    overflow: hidden;

    transition: 0.4s ease;
    z-index: 9;
  }

  .main-navbar.active {
    max-height: 500px;
    border-top: 1px solid #eee;
  }

  .nav-menu {
    width: 100%;
    list-style: none;

    display: flex;
    flex-direction: column;

    padding: 10px 0;
    margin: 0;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu li a {
    display: block;
    width: 100%;

    padding: 14px 20px;

    font-size: 16px;
    font-weight: 600;
    color: #000;

    border-bottom: 1px solid #f1f1f1;
    text-decoration: none;
  }
}

/* =========================================
         SMALL MOBILE
      ========================================= */
@media (max-width: 480px) {
  .header-logo img {
    width: 95px;
  }

  .experience-badge {
    right: 68px;
  }

  .experience-badge img {
    width: 40px;
  }

  .mobile-menu-btn {
    width: 44px;
    height: 44px;
  }
}
/* =========================
   PREMIUM FOOTER
========================= */

.footer-area {
  background: #0f172a;
  padding: 90px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-area::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 50%;
  filter: blur(10px);
}

.footer-area .container {
  position: relative;
  z-index: 2;
}

/* Logo */
.footer-logo img {
  max-width: 180px;
  margin-bottom: 25px;
}

/* Text */
.footer-text {
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 30px;
  max-width: 420px;
}

/* Title */
.single-footer-widget .title h3 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

/* Links */
.footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 18px;
}

.footer-links li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links li a:hover {
  color: #ffffff;
  padding-left: 6px;
}

/* Contact */
.contact-info {
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-info li {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info li i {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;

  flex-shrink: 0;
}

.contact-info li span {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.contact-info li p {
  color: #cbd5e1;
  font-size: 12px;
  line-height: 1.7;
  margin: 0;
}

/* Social */
.footer-social-links {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-social-links li a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);

  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  font-size: 16px;

  transition: all 0.3s ease;
}

.footer-social-links li a:hover {
  background: #2f3092;
  transform: translateY(-4px);
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 70px;
  padding: 25px 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #94a3b8;
  font-size: 15px;
}

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

@media (max-width: 991px) {
  .footer-area {
    padding-top: 70px;
  }

  .single-footer-widget {
    margin-bottom: 40px;
  }

  .footer-text {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .footer-area {
    padding-top: 60px;
  }

  .single-footer-widget .title h3 {
    font-size: 22px;
  }

  .footer-text {
    font-size: 15px;
    line-height: 1.8;
  }

  .footer-links li a,
  .contact-info li p {
    font-size: 15px;
  }

  .contact-info li {
    gap: 14px;
  }

  .contact-info li i {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
  }
}

@media (max-width: 480px) {
  .footer-logo img {
    max-width: 150px;
  }

  .footer-social-links {
    gap: 10px;
  }

  .footer-social-links li a {
    width: 40px;
    height: 40px;
  }
}
/* =========================
   DTM BREADCRUMB
========================= */

.dtm-breadcrumb-area {
  padding: 140px 20px 90px;

  background: #2f3092;

  position: relative;
  overflow: hidden;
}

/* Decorative Glow */

.dtm-breadcrumb-area::before {
  content: "";

  position: absolute;
  top: -120px;
  right: -120px;

  width: 320px;
  height: 320px;

  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.dtm-breadcrumb-area::after {
  content: "";

  position: absolute;
  bottom: -100px;
  left: -100px;

  width: 260px;
  height: 260px;

  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

/* Heading */

.dtm-breadcrumb-area h1 {
  position: relative;
  z-index: 2;

  color: #ffffff;

  font-size: 64px;
  font-weight: 800;

  margin-top: -55px;
  line-height: 1.2;
  letter-spacing: 1px;
}

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

@media (max-width: 991px) {
  .dtm-breadcrumb-area {
    padding: 120px 20px 80px;
  }

  .dtm-breadcrumb-area h1 {
    font-size: 52px;
  }
}

@media (max-width: 767px) {
  .dtm-breadcrumb-area {
    padding: 100px 15px 70px;
  }

  .dtm-breadcrumb-area h1 {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .dtm-breadcrumb-area h1 {
    font-size: 32px;
  }
}
/* =========================
   SECTION 1
========================= */
.machine-upgrade-section {
  padding: 100px 0;
  background: #fff;
}

.machine-upgrade-image {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.machine-upgrade-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: 0.5s;
}

.machine-upgrade-image:hover img {
  transform: scale(1.05);
}

.machine-upgrade-content {
  padding-left: 45px;
}

.machine-upgrade-content span {
  color: #2f3092;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 15px;
}

.machine-upgrade-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.machine-upgrade-content p {
  line-height: 1.9;
  color: #000000;
  font-size: 16px;
}

/* =========================
   SECTION 2
========================= */
.automation-solution-section {
  padding: 100px 0;
  background: #f8f8f8;
}

.automation-solution-image {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.automation-solution-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: 0.5s;
}

.automation-solution-image:hover img {
  transform: scale(1.05);
}

.automation-solution-content {
  padding-right: 45px;
}

.automation-solution-content span {
  color: #2f3092;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 15px;
}

.automation-solution-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.automation-solution-content p {
  line-height: 1.9;
  color: #000000;
  font-size: 16px;
}

/* =========================
   SECTION 3
========================= */
.spm-rig-section {
  padding: 100px 0;
  background: #fff;
}

.spm-rig-image {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.spm-rig-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: 0.5s;
}

.spm-rig-image:hover img {
  transform: scale(1.05);
}

.spm-rig-content {
  padding-left: 45px;
}

.spm-rig-content span {
  color: #2f3092;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 15px;
}

.spm-rig-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.spm-rig-content p {
  line-height: 1.9;
  color: #000000;
  font-size: 16px;
}

/* =========================
   RESPONSIVE
========================= */
@media only screen and (max-width: 991px) {
  .machine-upgrade-section,
  .automation-solution-section,
  .spm-rig-section {
    padding: 80px 0;
  }

  .machine-upgrade-content,
  .automation-solution-content,
  .spm-rig-content {
    padding: 0;
    margin-top: 35px;
  }

  .machine-upgrade-image img,
  .automation-solution-image img,
  .spm-rig-image img {
    height: 350px;
  }

  .machine-upgrade-content h2,
  .automation-solution-content h2,
  .spm-rig-content h2 {
    font-size: 32px;
  }
}

@media only screen and (max-width: 767px) {
  .machine-upgrade-section,
  .automation-solution-section,
  .spm-rig-section {
    padding: 12px 0;
  }

  .machine-upgrade-image img,
  .automation-solution-image img,
  .spm-rig-image img {
    height: 250px;
  }

  .machine-upgrade-content h2,
  .automation-solution-content h2,
  .spm-rig-content h2 {
    font-size: 28px;
  }
}

@media only screen and (max-width: 480px) {
  .machine-upgrade-image img,
  .automation-solution-image img,
  .spm-rig-image img {
    height: 220px;
  }

  .machine-upgrade-content h2,
  .automation-solution-content h2,
  .spm-rig-content h2 {
    font-size: 24px;
  }
}
.dtm-email-link {
  word-break: break-word;
  overflow-wrap: break-word;
}
/* Mobile */
@media (max-width: 768px) {
  .nav-menu {
    gap: 3px; /* decrease gap */
  }
}
/* TOP HEADER */
.top-header {
  width: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  border-bottom: 2px solid #f1f1f1;

  padding: 8px 15px;
  min-height: 75px; /* IMPORTANT */
}

/* WRAPPER */
.header-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

/* MAIN TITLE */
.top-center {
  font-family: "Poppins", sans-serif;
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;

  background: linear-gradient(90deg, #8a278f, #2f3092);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-align: center;
}

/* SUB TITLE */
.top-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #8a278f;
  margin-top: 3px;
  text-align: center;
}
/* MAIN HEADER */
.main-header {
  position: fixed;
  top: 62px;
  left: 0;
  width: 100%;
  z-index: 9999;
}

/* BODY SPACE */
body {
  padding-top: 145px;
}

/* MOBILE */
@media (max-width: 768px) {
  .top-center {
    font-size: 16px;
    padding: 0 10px;
  }
}
/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}
/* =========================================
   PRODUCT GALLERY SECTION
========================================= */

.project-gallery-area {
  padding: 90px 0;
  background: #f8fafc;
}

/* Section Block */

.gallery-block {
  margin-bottom: 90px;
}

/* Section Heading */

.section-title {
  text-align: center;
  margin-bottom: 45px;
}

.section-title h2 {
  font-size: 38px;
  font-weight: 700;
  color: #2f3092;
  line-height: 1.3;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;

  width: 70px;
  height: 4px;

  background: #2f3092;
  border-radius: 20px;

  transform: translateX(-50%);
}

/* =========================================
   GALLERY CARD
========================================= */

.gallery-item {
  position: relative;

  background: #ffffff;

  border-radius: 18px;
  overflow: hidden;

  margin-bottom: 25px;

  border: 1px solid #e5e7eb;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

  transition: all 0.35s ease;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 360px;
}

/* Hover */

.gallery-item:hover {
  transform: translateY(-6px);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* =========================================
   IMAGE PERFECT FIT
========================================= */

.gallery-item img {
  width: 100%;
  height: 320px;

  object-fit: contain; /* FULL IMAGE SHOW */
  object-position: center;

  display: block;

  padding: 14px;
  background: #fff;

  transition: transform 0.4s ease;
}

/* Image Hover */

.gallery-item:hover img {
  transform: scale(1.03);
}

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

.gallery-enquiry-btn {
  text-align: center;
  margin-top: 12px;
}

.gallery-enquiry-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 15px 40px;

  background: linear-gradient(135deg, #2f3092 0%, #4338ca 100%);

  color: #ffffff;
  text-decoration: none;

  font-size: 16px;
  font-weight: 600;

  border-radius: 50px;

  transition: all 0.3s ease;

  box-shadow: 0 10px 25px rgba(47, 48, 146, 0.2);
}

/* Button Hover */

.gallery-enquiry-btn a:hover {
  transform: translateY(-4px);

  box-shadow: 0 16px 35px rgba(47, 48, 146, 0.3);
}

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

@media (max-width: 991px) {
  .project-gallery-area {
    padding: 70px 0;
  }

  .gallery-block {
    margin-bottom: 70px;
  }

  .section-title {
    margin-bottom: 35px;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .gallery-item {
    min-height: 320px;
  }

  .gallery-item img {
    height: 280px;
    padding: 12px;
  }
}

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

@media (max-width: 767px) {
  .project-gallery-area {
    padding: 60px 0;
  }

  .gallery-block {
    margin-bottom: 55px;
  }

  .section-title {
    margin-bottom: 28px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .gallery-item {
    border-radius: 14px;
    min-height: 260px;
    margin-bottom: 20px;
  }

  .gallery-item img {
    height: 230px;

    object-fit: contain;

    padding: 10px;
  }

  .gallery-enquiry-btn a {
    width: 100%;
    max-width: 280px;

    font-size: 15px;
    padding: 14px 24px;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
  .section-title h2 {
    font-size: 22px;
  }

  .gallery-item {
    min-height: 230px;
  }

  .gallery-item img {
    height: 200px;
    padding: 8px;
  }

  .gallery-enquiry-btn a {
    font-size: 14px;
    padding: 13px 22px;
  }
}
.gallery-enquiry-btn {
  text-align: center;
  margin-top: 15px;
}

.gallery-enquiry-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 15px 36px;

  background: #25d366;

  color: #fff;
  text-decoration: none;

  font-size: 16px;
  font-weight: 600;

  border-radius: 50px;

  transition: all 0.3s ease;

  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
}

.gallery-enquiry-btn a i {
  font-size: 22px;
}

.gallery-enquiry-btn a:hover {
  background: #1ebe5d;

  transform: translateY(-4px);

  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.35);
}

/* Mobile */

@media (max-width: 767px) {
  .gallery-enquiry-btn a {
    width: 100%;
    max-width: 280px;

    font-size: 15px;
    padding: 14px 22px;
  }

  .gallery-enquiry-btn a i {
    font-size: 20px;
  }
}
.dtm-email-link {
  word-break: break-word;
  overflow-wrap: break-word;
}
/* Mobile */
@media (max-width: 768px) {
  .nav-menu {
    gap: 3px; /* decrease gap */
  }
}
/* =========================
   SERVICE COVERAGE CARDS
========================= */

.service-coverage-section {
  padding: 80px 0;
  background: #f8f8f8;
}

.service-coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.service-coverage-card {
  background: #ffffff;
  border: 1px solid #e8e8f0;
  border-radius: 14px;
  padding: 20px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.service-coverage-card:hover {
  border-color: #2f3092;
  box-shadow: 0 8px 24px rgba(47, 48, 146, 0.1);
  transform: translateY(-4px);
}

.sc-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eef0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sc-icon-wrap i {
  font-size: 18px;
  color: #2f3092;
}

.sc-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sc-label {
  font-size: 11px;
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.sc-value {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0;
  line-height: 1.4;
}

/* Highlight card (Pricing) */
.sc-highlight {
  background: #2f3092;
  border-color: #2f3092;
}

.sc-highlight .sc-icon-wrap {
  background: rgba(255, 255, 255, 0.15);
}

.sc-highlight .sc-icon-wrap i {
  color: #ffffff;
}

.sc-highlight .sc-label {
  color: rgba(255, 255, 255, 0.7);
}

.sc-highlight .sc-value {
  color: #ffffff;
}

.sc-highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(47, 48, 146, 0.3);
}

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

@media (max-width: 991px) {
  .service-coverage-section {
    padding: 60px 0;
  }

  .service-coverage-grid {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 14px;
  }
}

@media (max-width: 767px) {
  .service-coverage-section {
    padding: 50px 0;
  }

  .service-coverage-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .service-coverage-card {
    padding: 16px 14px;
    gap: 10px;
  }

  .sc-icon-wrap {
    width: 38px;
    height: 38px;
  }

  .sc-icon-wrap i {
    font-size: 16px;
  }

  .sc-value {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .service-coverage-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .service-coverage-card {
    padding: 14px 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .sc-icon-wrap {
    width: 36px;
    height: 36px;
  }

  .sc-icon-wrap i {
    font-size: 15px;
  }
}
.machine-upgrade-image--second {
  margin-top: 20px;
}
/* =========================================
   DTM UPGRADE SECTION
========================================= */
.dtm-upgrade-section {
  position: relative;
  padding: 0px 0;
  background: #f8fafc;
  overflow: hidden;
}

/* Wrapper */
.dtm-upgrade-wrapper {
  position: relative;
  z-index: 2;
}

/* Heading */
.dtm-upgrade-heading {
  max-width: 850px;
  margin: 0 auto 60px;
  text-align: center;
}

.dtm-subtitle {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(227, 54, 46, 0.1);
  color: #e3362e;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.dtm-upgrade-heading h2 {
  font-size: 40px;
  line-height: 1.3;
  font-weight: 500;
  color: #2f3092;
  margin-bottom: 20px;
}

.dtm-upgrade-heading p {
  font-size: 15px;
  line-height: 1.9;
  color: #000000;
  margin: 0;
}

/* Cards */
.dtm-upgrade-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.dtm-upgrade-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.dtm-upgrade-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.dtm-upgrade-card:hover img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
  .dtm-upgrade-section {
    padding: 80px 0;
  }

  .dtm-upgrade-heading h2 {
    font-size: 34px;
  }

  .dtm-upgrade-card img {
    height: 350px;
  }
}

@media (max-width: 767px) {
  .dtm-upgrade-section {
    padding: 0px 0;
  }

  .dtm-upgrade-heading {
    margin-bottom: 40px;
  }

  .dtm-upgrade-heading h2 {
    font-size: 28px;
  }

  .dtm-upgrade-heading p {
    font-size: 12px;
    line-height: 1.8;
  }

  .dtm-upgrade-card img {
    height: auto;
  }
}
