            .logo-box img {
            width: 130px;   /* increased from 80px */
            height: 110px;
            object-fit: contain; /* keeps the image inside the box without distortion */
            display: block;
            }
            

.whatsapp-button,
.whatsapp-buttons,
.instagram-button {
  position: fixed;
  right: 0;
  transform: translateY(-50%);
  background-color: #25D366;
  color: white;
  padding: 10px;
  border-radius: 20%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  transition: width 0.3s ease-in-out;
  cursor: pointer;
}


.whatsapp-button {
  top: 70%;
  background-color: #25D366;
}

.whatsapp-buttons {
  top: 60%;
  background-color: #a30211;
}

.instagram-button {
  top: 80%;
  background-color: #E1306C;
}


.whatsapp-button i,
.whatsapp-buttons i,
.instagram-button i {
  font-size: 24px;
  color: white;
}

.whatsapp-text,
.whatsapps-text,
.instagram-text {
  display: none;
  margin-left: 10px;
  white-space: nowrap;
  text-decoration: none;
  color: white;
}


.whatsapp-button:hover,
.whatsapp-buttons:hover,
.instagram-button:hover {
  width: 150px;
  border-radius: 10px;
}

.whatsapp-button:hover .whatsapp-text,
.whatsapp-buttons:hover .whatsapps-text,
.instagram-button:hover .instagram-text {
  display: inline-block;
}


.instagram-button:hover {
  background-color: #E1306C;
}

/* ==================  instagram  ============ */
.whatsapp-button {
  position: fixed;
  right: 0;
  top: 70%;
  transform: translateY(-50%);
  background-color: #25D366;
  color: white;
  padding: 10px;
  border-radius: 20%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  transition: width 0.3s ease-in-out;
}

.whatsapp-button a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
}

.whatsapp-button i {
  font-size: 24px;
}

.whatsapp-text {
  display: none;
  margin-left: 10px;
  white-space: nowrap;
  text-decoration: none;
  color: white;
}

.whatsapp-button:hover {
  width: 150px;
  /* Expand the button width on hover to show the text */
  border-radius: 10px;
  /* Adjust the border-radius to keep the shape */
}

.whatsapp-button:hover .whatsapp-text {
  display: inline-block;
}

/* ------ */
.whatsapp-buttons {
  position: fixed;
  right: 0;
  top: 60%;
  transform: translateY(-50%);
  background-color: #FF9105;
  color: white;
  padding: 10px;
  border-radius: 20%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  transition: width 0.3s ease-in-out;
  cursor: pointer;
}

.whatsapp-buttons a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
}

.whatsapp-buttons i {
  font-size: 24px;
}

.whatsapps-text {
  display: none;
  margin-left: 10px;
  white-space: nowrap;
  text-decoration: none;
  color: white;
}

.whatsapp-buttons:hover {
  width: 150px;
  /* Expand the button width on hover to show the text */
  border-radius: 10px;
  /* Adjust the border-radius to keep the shape */
}

.whatsapp-buttons:hover .whatsapps-text {
  display: inline-block;
}






         .header-top {
                background-color: #003366; 
                color: white;           
                padding: 10px 0;          
            }
            
            .header-top .text h5 {
            position: relative;
            display: block;
            font-size: 17px;
            line-height: 28px;
            color: #fff;
            font-weight: 700;
        }
            .header-top .links-list li a {
            position: relative;
            display: inline-block;
            color: #fff;
        }

            @media (max-width: 767px) {
            .header-top {
                display: none !important;
            }
        }
        
        .contact-info {
          display: flex;
          gap: 20px;   /* space between email and phone */
          justify-content: center; /* center horizontally */
          flex-wrap: wrap; /* stack on small screens */
        }
        
     






    
/* =========================================
   MechXperts Premium About Section 
   ========================================= */

:root {
  /* Premium Color Palette */
  --mech-primary: #0056b3; /* Deep corporate blue */
  --mech-primary-light: #0d6efd;
  --mech-secondary: #4b5563; /* Softer dark gray for readability */
  --mech-dark: #111827;
  --mech-bg: #ffffff;
  --mech-accent: #f3f4f6;
  
  /* Premium Fonts */
  --mech-font-heading: 'Montserrat', sans-serif;
  --mech-font-body: 'Inter', sans-serif;
}

.mech-about-section {
  padding: 6rem 0;
  background-color: var(--mech-bg);
  font-family: var(--mech-font-body);
}

/* --- Image & Overlay Badge --- */
.mech-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08); /* Softer, wider premium shadow */
  transition: transform 0.3s ease;
}

.mech-image-wrapper:hover {
  transform: translateY(-5px);
}

.mech-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.mech-experience-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, var(--mech-primary), var(--mech-primary-light));
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mech-font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
}

/* --- Typography --- */
.mech-subtitle {
  display: inline-block;
  color: var(--mech-primary);
  font-family: var(--mech-font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.mech-title {
  font-family: var(--mech-font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--mech-dark);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

/* Premium Gradient Highlight for MechXperts */
.mech-highlight-text {
  background: linear-gradient(90deg, var(--mech-primary), #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.mech-description {
  color: var(--mech-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* --- Icon Lists --- */
.mech-list-title {
  font-family: var(--mech-font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--mech-dark);
  margin-bottom: 1.25rem;
}

.mech-icon-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.mech-icon-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: var(--mech-secondary);
  font-weight: 500;
  line-height: 1.5;
  transition: transform 0.2s ease, color 0.2s ease;
}

.mech-icon-list li:hover {
  transform: translateX(5px);
  color: var(--mech-primary);
}

.mech-icon-list li i {
  color: var(--mech-primary);
  font-size: 1.1rem;
  width: 24px;
  margin-right: 12px;
  margin-top: 2px;
  text-align: center;
  flex-shrink: 0;
}

/* --- Highlighted Box --- */
.mech-highlight-box {
  background: #ffffff;
  border-left: 5px solid var(--mech-primary);
  padding: 1.75rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.mech-highlight-box:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.mech-highlight-box i {
  font-size: 1.8rem;
  color: var(--mech-primary);
  background: var(--mech-accent);
  padding: 15px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mech-highlight-box p {
  font-size: 1rem;
  color: var(--mech-secondary);
  margin: 0;
  line-height: 1.7;
  font-weight: 500;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .mech-title {
    font-size: 1.8rem;
  }
  .mech-about-section {
    padding: 4rem 0;
  }
  .mech-highlight-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
















/* =========================================
   MechXperts Single Paragraph Expertise Section 
   Strictly Scoped - No :root used
   ========================================= */

.mech-expertise-single {
  /* Localized Cool Blue Variables */
  --m-blue-dark: #0f172a;       
  --m-blue-primary: #0ea5e9;    
  --m-blue-light: #38bdf8;      
  --m-blue-pale: #f0f9ff;       
  --m-text-muted: #475569;      
  
  --m-font-head: 'Montserrat', sans-serif;
  --m-font-body: 'Inter', sans-serif;

  /* Premium Dotted Background Pattern */
  background-color: #f8fafc; 
  background-image: radial-gradient(#bae6fd 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  background-position: center;
  
  padding: 6rem 0;
  font-family: var(--m-font-body);
  position: relative;
  overflow: hidden;
}

/* Soft glowing ambient light behind the card */
.mech-expertise-single::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, rgba(255,255,255,0) 70%);
  z-index: 0;
  pointer-events: none;
}

.mech-single-container {
  position: relative;
  z-index: 1;
}

/* --- Premium Centered Card --- */
.mech-single-card {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: 20px;
  padding: 4rem 3rem;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.04);
  text-align: center;
  position: relative;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

/* Subtle Hover Lift */
.mech-single-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(14, 165, 233, 0.08);
}

/* Top Accent Line */
.mech-single-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 5px;
  background: linear-gradient(90deg, var(--m-blue-primary), var(--m-blue-light));
  border-radius: 0 0 10px 10px;
}

/* Floating Icon */
.mech-single-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--m-blue-pale), #ffffff);
  color: var(--m-blue-primary);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: -6rem auto 2rem auto; /* Pulls icon up out of the card */
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.1);
}

/* --- Typography --- */
.mech-single-title {
  font-family: var(--m-font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--m-blue-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.mech-single-title span {
  background: linear-gradient(90deg, var(--m-blue-primary), var(--m-blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.mech-single-text {
  color: var(--m-text-muted);
  font-size: 1.15rem;
  line-height: 1.9;
  margin: 0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .mech-expertise-single {
    padding: 5rem 0;
  }
  .mech-single-card {
    padding: 3.5rem 2rem 2rem 2rem;
  }
  .mech-single-title {
    font-size: 1.8rem;
  }
  .mech-single-text {
    font-size: 1.05rem;
    text-align: justify; /* Better readability on mobile */
  }
}







/* --- MechXperts Scoped Section --- */
.mx-winch-custom-section {
  background-color: #0f172a; /* Deep Navy to match your theme */
  padding: 80px 0;
  font-family: 'Inter', sans-serif;
}

/* Image Container */
.mx-winch-custom-image-box {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  margin-bottom: -60px; /* Pulls content slightly over the image for creative look */
  z-index: 1;
}

.mx-winch-custom-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.mx-winch-custom-image-box:hover img {
  transform: scale(1.05);
}

/* Title Overlay on Image */
.mx-winch-custom-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 10%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.mx-winch-custom-title {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0;
}

.mx-winch-custom-title span {
  color: #0ea5e9; /* Light Blue Accent */
}

/* Content Box */
.mx-winch-custom-content {
  background: #ffffff;
  padding: 100px 50px 50px; /* Large top padding to account for image overlap */
  border-radius: 30px;
  position: relative;
  z-index: 0;
  text-align: center;
}

.mx-winch-custom-text {
  color: #475569;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Read More Button */
.mx-winch-custom-btn-wrap {
  display: flex;
  justify-content: center;
}

.mx-winch-custom-btn {
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
  color: #ffffff;
  padding: 12px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
}

.mx-winch-custom-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(14, 165, 233, 0.4);
  color: #fff;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .mx-winch-custom-image-box { height: 350px; }
  .mx-winch-custom-title { font-size: 1.8rem; }
  .mx-winch-custom-content { padding: 80px 30px 40px; }
}

@media (max-width: 767px) {
  .mx-winch-custom-image-box { 
    height: 250px; 
    margin-bottom: -30px;
    border-radius: 20px;
  }
  .mx-winch-custom-overlay { padding: 20px; }
  .mx-winch-custom-title { font-size: 1.4rem; }
  .mx-winch-custom-content { 
    padding: 50px 20px 30px; 
    border-radius: 20px;
  }
  .mx-winch-custom-text { font-size: 1rem; }
}






/* --- Generator Repair Split Section --- */
.mx-repair-split-section {
  background-color: #0f172a; /* Deep Navy Background */
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

/* --- Image Side Styling --- */
.mx-repair-image-wrapper {
  position: relative;
  padding: 20px;
}

.mx-repair-img-card {
  position: relative;
  z-index: 2;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.mx-repair-img-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.mx-repair-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: #0ea5e9;
  color: #fff;
  padding: 15px 25px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.4);
}

.mx-repair-years { font-weight: 800; font-size: 1.2rem; }
.mx-repair-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

.mx-repair-shape {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  border-top: 5px solid #0ea5e9;
  border-left: 5px solid #0ea5e9;
  z-index: 1;
}

/* --- Content Side Styling --- */
.mx-repair-content-box {
  padding-left: 40px;
}

.mx-repair-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.2;
}

.mx-repair-title span {
  color: #0ea5e9;
  display: block;
}

.mx-repair-description p {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* --- Creative Read More Button --- */
.mx-repair-action {
  margin-top: 35px;
}

.mx-repair-readmore {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.mx-repair-readmore i {
  width: 45px;
  height: 45px;
  background: #0ea5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.mx-repair-readmore:hover {
  color: #0ea5e9;
}

.mx-repair-readmore:hover i {
  transform: rotate(90deg);
  background: #ffffff;
  color: #0ea5e9;
}

/* --- Responsive Behavior --- */
@media (max-width: 991px) {
  .mx-repair-content-box { padding-left: 0; margin-top: 50px; text-align: center; }
  .mx-repair-title { font-size: 2.2rem; }
  .mx-repair-img-card img { height: 400px; }
  .mx-repair-readmore { justify-content: center; }
}

@media (max-width: 576px) {
  .mx-repair-title { font-size: 1.8rem; }
  .mx-repair-img-card img { height: 300px; }
}




/* =========================================
   MechXperts Sticky Image Layout
   Strictly Scoped
   ========================================= */

.mech-forklift-section {
  --m-fork-bg: #f8fafc;
  --m-fork-card: #ffffff;
  --m-fork-primary: #0ea5e9;
  --m-fork-dark: #0f172a;
  --m-fork-text: #475569;
  
  --m-font-head: 'Montserrat', sans-serif;
  --m-font-body: 'Inter', sans-serif;

  background-color: var(--m-fork-bg);
  padding: 6rem 0;
  font-family: var(--m-font-body);
}

/* --- The Magic Sticky Container --- */
.mech-sticky-column {
  /* This pins the image 100px from the top of the browser while you scroll */
  position: -webkit-sticky;
  position: sticky;
  top: 100px; 
  z-index: 10;
}

.mech-fork-img-wrapper {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.mech-fork-img-wrapper img {
  width: 100%;
  height: auto;
  min-height: 550px;
  object-fit: cover;
  display: block;
}

.mech-fork-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 12px;
  font-family: var(--m-font-head);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 4px solid var(--m-fork-primary);
}

/* --- Right Side: Content --- */
.mech-fork-header {
  margin-bottom: 2rem;
}

.mech-fork-title {
  font-family: var(--m-font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--m-fork-dark);
  line-height: 1.2;
}

.mech-fork-title span {
  color: var(--m-fork-primary);
}

/* Content Cards */
.mech-fork-card {
  background: var(--m-fork-card);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(14, 165, 233, 0.1);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.mech-fork-card:hover {
  transform: translateX(5px);
  border-color: rgba(14, 165, 233, 0.3);
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.08);
}

.mech-fork-icon {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--m-fork-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.mech-fork-text {
  color: var(--m-fork-text);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .mech-forklift-section { padding: 4rem 0; }
  
  /* Disable sticky behavior on mobile so it stacks normally */
  .mech-sticky-column {
    position: relative;
    top: 0;
    margin-bottom: 3rem;
  }
  
  .mech-fork-img-wrapper img { min-height: 350px; }
  .mech-fork-title { font-size: 2rem; }
  .mech-fork-card { padding: 1.5rem; }
}










/* =========================================
   MechXperts Comprehensive Forklift Section
   Strictly Scoped
   ========================================= */

.mech-comp-section {
  --m-comp-bg: #f8fafc;
  --m-comp-card: #ffffff;
  --m-comp-primary: #0ea5e9;
  --m-comp-dark: #0f172a;
  --m-comp-text: #475569;
  
  --m-font-head: 'Montserrat', sans-serif;
  --m-font-body: 'Inter', sans-serif;

  background-color: var(--m-comp-bg);
  padding: 6rem 0;
  font-family: var(--m-font-body);
}

/* --- Top Area: Heading & Centered Image --- */
.mech-comp-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.mech-comp-title {
  font-family: var(--m-font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--m-comp-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.mech-comp-title span {
  color: var(--m-comp-primary);
}

.mech-comp-intro {
  font-size: 1.15rem;
  color: var(--m-comp-text);
  font-weight: 500;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.mech-comp-img-wrap {
  max-width: 1000px;
  margin: 0 auto 4rem auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.1);
  position: relative;
}

.mech-comp-img-wrap img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.mech-comp-img-wrap:hover img {
  transform: scale(1.03);
}

/* --- Middle Area: Highlighted Points Grid --- */
.mech-comp-point-card {
  background: var(--m-comp-card);
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(14, 165, 233, 0.1);
  border-left: 4px solid var(--m-comp-primary);
  transition: all 0.3s ease;
}

.mech-comp-point-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(14, 165, 233, 0.1);
  border-color: rgba(14, 165, 233, 0.3);
}

.mech-comp-icon {
  color: var(--m-comp-primary);
  font-size: 1.25rem;
  margin-top: 2px;
}

.mech-comp-point-text {
  color: var(--m-comp-dark);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

/* --- Bottom Area: Highlighted Conclusion Box --- */
.mech-comp-footer-box {
  background: linear-gradient(135deg, var(--m-comp-dark), #1e293b);
  border-radius: 20px;
  padding: 3rem 4rem;
  margin-top: 4rem;
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
  position: relative;
  overflow: hidden;
}

/* Subtle background accent in the footer box */
.mech-comp-footer-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.mech-comp-footer-text {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #e2e8f0;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.mech-comp-footer-text:last-child {
  margin-bottom: 0;
}

.mech-comp-footer-icon {
  color: var(--m-comp-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .mech-comp-section { padding: 4rem 0; }
  .mech-comp-title { font-size: 2rem; }
  .mech-comp-footer-box { padding: 2.5rem 2rem; }
}






/* =========================================
   MechXperts Curved AMC Section
   Strictly Scoped - No global conflicts
   ========================================= */

.mech-amc-section {
  --m-amc-bg: #ffffff;
  --m-amc-primary: #0ea5e9;
  --m-amc-dark: #0f172a;
  --m-amc-text: #475569;
  --m-amc-accent: #f0f9ff;
  
  --m-font-head: 'Montserrat', sans-serif;
  --m-font-body: 'Inter', sans-serif;

  background-color: var(--m-amc-bg);
  padding: 7rem 0;
  font-family: var(--m-font-body);
  position: relative;
  overflow: hidden; /* Keeps background shapes inside the section */
}

/* --- Abstract Background Shapes --- */
.mech-amc-shape-1 {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.mech-amc-shape-2 {
  position: absolute;
  bottom: 5%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: var(--m-amc-accent);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; /* Organic Blob Shape */
  z-index: 0;
  opacity: 0.6;
  transform: rotate(45deg);
}

/* Keeps content above the background shapes */
.mech-amc-container {
  position: relative;
  z-index: 2;
}

/* --- Left Side: Content --- */
.mech-amc-kicker {
  display: inline-block;
  color: var(--m-amc-primary);
  font-family: var(--m-font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  background: var(--m-amc-accent);
  padding: 8px 16px;
  border-radius: 50px; /* Pill curve */
}

.mech-amc-title {
  font-family: var(--m-font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--m-amc-dark);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.mech-amc-text {
  color: var(--m-amc-text);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

/* Highlighted Curved Box for the final paragraph */
.mech-amc-highlight-box {
  background: linear-gradient(135deg, var(--m-amc-accent), #ffffff);
  border: 1px solid rgba(14, 165, 233, 0.15);
  /* Organic curved corners: top-left, top-right, bottom-right, bottom-left */
  border-radius: 12px 40px 12px 12px; 
  padding: 1.75rem;
  margin-top: 2rem;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.05);
}

.mech-amc-highlight-box i {
  color: var(--m-amc-primary);
  font-size: 1.8rem;
  margin-top: 5px;
}

.mech-amc-highlight-box p {
  margin: 0;
  color: var(--m-amc-dark);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.6;
}

/* --- Right Side: Curved Image Display --- */
.mech-amc-image-wrapper {
  position: relative;
  padding-left: 2rem;
}

.mech-amc-img-main {
  width: 100%;
  height: auto;
  min-height: 450px;
  object-fit: cover;
  /* Extreme Curve Model Design */
  border-radius: 20px 120px 20px 20px; 
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.1);
  position: relative;
  z-index: 2;
}

/* Decorative border tracing behind the image */
.mech-amc-img-backdrop {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--m-amc-primary);
  border-radius: 20px 120px 20px 20px;
  z-index: 1;
  opacity: 0.3;
}

/* Overlapping Stat Badge */
.mech-amc-badge {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: var(--m-amc-dark);
  color: #ffffff;
  padding: 20px 30px;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.2);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 15px;
  border-left: 5px solid var(--m-amc-primary);
}

.mech-amc-badge i {
  font-size: 2.5rem;
  color: var(--m-amc-primary);
}

.mech-amc-badge div {
  display: flex;
  flex-direction: column;
}

.mech-amc-badge strong {
  font-family: var(--m-font-head);
  font-size: 1.5rem;
  line-height: 1;
}

.mech-amc-badge span {
  font-size: 0.85rem;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .mech-amc-section { padding: 5rem 0; }
  .mech-amc-title { font-size: 2rem; }
  .mech-amc-image-wrapper { margin-top: 4rem; padding-left: 0; }
  .mech-amc-img-backdrop { display: none; } /* Hide backdrop on mobile for cleaner look */
  .mech-amc-badge { left: 20px; bottom: -20px; }
}




/* =========================================
   MechXperts Diesel AMC Section (Full Image Visible)
   Strictly Scoped
   ========================================= */

.mech-diesel-amc-section {
  --m-d-bg: #f8fafc;
  --m-d-white: #ffffff;
  --m-d-primary: #0ea5e9;
  --m-d-primary-dark: #0284c7;
  --m-d-dark: #0f172a;
  --m-d-text: #475569;
  
  --m-font-head: 'Montserrat', sans-serif;
  --m-font-body: 'Inter', sans-serif;

  background-color: var(--m-d-bg);
  font-family: var(--m-font-body);
  position: relative;
  padding-bottom: 10rem; 
  z-index: 1;
}

/* --- Top Area: Full Visible Image --- */
.mech-diesel-top-img {
  width: 100%;
  position: relative;
}

.mech-diesel-top-img img {
  width: 100%;
  height: auto;
  max-height: 550px; /* Prevents it from being too tall on huge screens */
  object-fit: cover;
  display: block;
}

/* --- Content Container --- */
.mech-diesel-content-wrap {
  position: relative;
  z-index: 2;
  margin-top: 4rem; /* Adds clean spacing below the image */
}

/* --- Typography --- */
.mech-diesel-title {
  font-family: var(--m-font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--m-d-dark); /* Changed back to dark text */
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.mech-diesel-title span {
  color: var(--m-d-primary);
}

.mech-diesel-subtitle {
  color: var(--m-d-text); /* Changed back to dark gray */
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 3rem;
}

/* --- Left Column: Premium Brand Box --- */
.mech-diesel-brand-box {
  background: linear-gradient(135deg, var(--m-d-primary-dark), var(--m-d-primary));
  border-radius: 16px;
  padding: 2.5rem;
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(14, 165, 233, 0.2);
  height: 100%;
}

.mech-diesel-brand-box h3 {
  font-family: var(--m-font-head);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid rgba(255,255,255,0.2);
  padding-bottom: 1rem;
}

.mech-diesel-brand-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mech-diesel-brand-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.mech-diesel-brand-list i {
  background: rgba(255,255,255,0.2);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* --- Right Column: Scope of Work Grid --- */
.mech-diesel-scope-box {
  background: var(--m-d-white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.1);
  height: 100%;
}

.mech-diesel-scope-box h3 {
  font-family: var(--m-font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--m-d-dark);
  margin-bottom: 1.5rem;
}

.mech-scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.mech-scope-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.mech-scope-item i {
  color: var(--m-d-primary);
  font-size: 1.2rem;
  margin-top: 3px;
}

.mech-scope-item p {
  color: var(--m-d-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

/* --- Bottom Conclusion Highlight --- */
.mech-diesel-conclusion {
  background: var(--m-d-white);
  border-left: 5px solid var(--m-d-primary);
  padding: 1.5rem 2rem;
  border-radius: 8px;
  margin-top: 3rem;
  box-shadow: 0 5px 15px rgba(15, 23, 42, 0.03);
  display: flex;
  gap: 15px;
  align-items: center;
}

.mech-diesel-conclusion i {
  font-size: 2rem;
  color: var(--m-d-primary);
}

.mech-diesel-conclusion p {
  margin: 0;
  color: var(--m-d-text);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* --- Bottom Shape (Decorative SVG Wave) --- */
.mech-diesel-bottom-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 0;
}

.mech-diesel-bottom-shape svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

.mech-diesel-bottom-shape .shape-fill {
  fill: #ffffff; /* Match this to the background color of the section below it */
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .mech-diesel-title { font-size: 2rem; }
  .mech-scope-grid { grid-template-columns: 1fr; }
  .mech-diesel-conclusion { flex-direction: column; text-align: center; }
  .mech-diesel-content-wrap { margin-top: 3rem; }
}







/* =========================================
   MechXperts Forklift AMC Premium Section 
   Strictly Scoped
   ========================================= */

.mech-fork-amc-pro {
  --m-f-primary: #0ea5e9;
  --m-f-dark: #0f172a;
  --m-f-slate: #334155;
  --m-f-light: #f8fafc;
  --m-f-white: #ffffff;
  
  --m-font-h: 'Montserrat', sans-serif;
  --m-font-b: 'Inter', sans-serif;

  background-color: var(--m-f-light);
  padding: 6rem 0;
  font-family: var(--m-font-b);
  position: relative;
  overflow: hidden;
}

/* Background Accent Text */
.mech-f-bg-text {
  position: absolute;
  font-size: 12rem;
  font-weight: 900;
  color: rgba(14, 165, 233, 0.03);
  top: 10%;
  right: -5%;
  user-select: none;
  z-index: 0;
}

.mech-f-container {
  position: relative;
  z-index: 2;
}

/* --- Header --- */
.mech-f-header {
  margin-bottom: 4rem;
  max-width: 800px;
}

.mech-f-title {
  font-family: var(--m-font-h);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--m-f-dark);
  margin-bottom: 1.5rem;
}

.mech-f-title span {
  color: var(--m-f-primary);
}

.mech-f-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--m-f-slate);
  border-left: 4px solid var(--m-f-primary);
  padding-left: 20px;
}

/* --- Content Layout --- */
.mech-f-main-card {
  background: var(--m-f-white);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid rgba(14, 165, 233, 0.1);
}

/* Left Side: Brands (Dark Theme) */
.mech-f-brands-side {
  flex: 1;
  min-width: 300px;
  background: var(--m-f-dark);
  padding: 3rem;
  color: var(--m-f-white);
}

.mech-f-brands-side h3 {
  font-family: var(--m-font-h);
  font-size: 1.4rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mech-f-brands-side h3 i {
  color: var(--m-f-primary);
}

.mech-f-brand-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1.5rem;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: 0.3s;
}

.mech-f-brand-item:hover {
  background: rgba(14, 165, 233, 0.15);
  transform: translateX(10px);
}

/* Right Side: Service Coverage */
.mech-f-service-side {
  flex: 2;
  min-width: 400px;
  padding: 3rem;
}

.mech-f-service-side h3 {
  font-family: var(--m-font-h);
  font-size: 1.4rem;
  color: var(--m-f-dark);
  margin-bottom: 2.5rem;
}

/* Service List with Visual Timeline/Progress UI */
.mech-f-service-list {
  position: relative;
}

.mech-f-service-item {
  position: relative;
  padding-left: 40px;
  margin-bottom: 2rem;
}

.mech-f-service-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: #e2e8f0;
}

.mech-f-service-item::after {
  content: '\f058'; /* FontAwesome Check Circle */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: -11px;
  top: 0;
  background: var(--m-f-white);
  color: var(--m-f-primary);
  font-size: 1.4rem;
}

.mech-f-service-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--m-f-dark);
  margin-bottom: 5px;
}

.mech-f-service-item p {
  color: var(--m-f-slate);
  font-size: 0.95rem;
  margin: 0;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .mech-f-title { font-size: 2rem; }
  .mech-f-brands-side, .mech-f-service-side { padding: 2rem; width: 100%; }
}






/* =========================================
   MechXperts Dewatering Pump Section
   Strictly Scoped
   ========================================= */

.mech-dewater-section {
  /* Localized Colors - Industrial Marine Theme */
  --m-w-bg: #0f172a;        /* Deep Navy */
  --m-w-card: #1e293b;       /* Lighter Slate for cards */
  --m-w-primary: #06b6d4;    /* Cyan/Water Accent */
  --m-w-text: #e2e8f0;       /* Light text */
  --m-w-text-muted: #94a3b8;
  
  --m-font-h: 'Montserrat', sans-serif;
  --m-font-b: 'Inter', sans-serif;

  background-color: var(--m-w-bg);
  background-image: radial-gradient(circle at 10% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 40%),
                    radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 40%);
  padding: 6rem 0;
  font-family: var(--m-font-b);
  position: relative;
  overflow: hidden;
}

/* Section Title */
.mech-w-title {
  font-family: var(--m-font-h);
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 3rem;
  text-align: center;
}

.mech-w-title span { color: var(--m-w-primary); }

/* Main Content Box */
.mech-w-main-box {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem;
  margin-bottom: 3rem;
}

.mech-w-intro-text {
  color: var(--m-w-text);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Callout Box for Pump Failure Warning */
.mech-w-warning-box {
  background: rgba(6, 182, 212, 0.1);
  border-left: 5px solid var(--m-w-primary);
  padding: 1.5rem;
  border-radius: 0 12px 12px 0;
  color: #ffffff;
  font-weight: 500;
  font-style: italic;
}

/* Service Grid */
.mech-w-service-card {
  background: var(--m-w-card);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  border-bottom: 4px solid var(--m-w-primary);
  transition: transform 0.3s ease;
}

.mech-w-service-card:hover { transform: translateY(-10px); }

.mech-w-icon {
  width: 60px;
  height: 60px;
  background: var(--m-w-primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.mech-w-service-title {
  font-family: var(--m-font-h);
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.mech-w-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mech-w-list li {
  color: var(--m-w-text-muted);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mech-w-list li i { color: var(--m-w-primary); }

/* Image Styling */
.mech-w-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border: 4px solid rgba(255,255,255,0.05);
}

@media (max-width: 991px) {
  .mech-w-title { font-size: 2rem; }
}





    .winch-services-section {
      background: #f8f9fa;
      padding: 60px 0;
    }
    .winch-section-title {
      font-size: 2rem;
      font-weight: 800;
      text-align: center;
      margin-bottom: 40px;
      color: #fff;
    }
    .winch-card {
      background: #fff;
      border-radius: 15px;
      padding: 25px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease-in-out;
      height: 100%;
    }
    .winch-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }
    .winch-card i {
      font-size: 2rem;
      color: #06bcd1;
      margin-bottom: 15px;
    }
    .winch-card h5 {
      font-weight: 700;
      font-size: 1.25rem;
      margin-bottom: 10px;
      color: #0d0d72;
    }
    .winch-card p {
      font-size: 1rem;
      font-weight: 500;
      color: #444;
    }






/* Scoped Styles for MechXperts Section */
.mx-premium-section {
    padding: 60px 20px;
    background: #ffffff;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.mx-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

/* Image Top Center */
.mx-image-header {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.mx-image-container {
    position: relative;
    max-width: 800px; /* Limits image width on desktop */
    width: 100%;
}

.mx-image-container img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    display: block;
}

.mx-experience-chip {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: #0c8cc9;
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(12, 140, 201, 0.3);
}

.mx-num { font-size: 32px; font-weight: 800; }
.mx-txt { font-size: 12px; font-weight: 600; text-transform: uppercase; line-height: 1.2; }

/* Content Below */
.mx-main-title {
    text-align: center;
    margin-bottom: 50px;
}

.mx-subtitle {
    color: #0c8cc9;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}

.mx-main-title h2 {
    font-size: clamp(26px, 5vw, 38px);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.mx-accent { color: #0c8cc9; }

.mx-main-title p {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* 3-Column Grid on Desktop, 1 on Mobile */
.mx-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.mx-feature-card {
    background:#119fe3eb;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    border: 1px solid #eee;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mx-feature-card:hover {
    background: #ffffff;
    transform: translateY(-8px);
    border-color: #0c8cc9;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.mx-step {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background:#0f172a;
    color:#fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    transition: 0.3s;
}

.mx-feature-card:hover .mx-step {
    background: #0c8cc9;
    color: #fff;
}

.mx-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.mx-info p {
    font-size: 14px;
    color: #777;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .mx-premium-section { padding: 40px 15px; }
    .mx-feature-grid { grid-template-columns: 1fr; }
    .mx-experience-chip {
        right: 50%;
        transform: translateX(50%);
        bottom: -25px;
        width: max-content;
    }
    .mx-feature-card { padding: 20px; }
}



/* Contact Section Styles */
.contact-section {
    background: linear-gradient(135deg, #0d0d72, #06bcd1);
    padding: 60px 20px;
    color: #fff;
    font-family: Arial, sans-serif;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* Left Side Info */
.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-subtitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffdd57;
}

.contact-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
}

.contact-desc {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #fff;
}

.contact-details {
    list-style: none;
    padding: 0;
}

.contact-details li {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Right Side Form */
.contact-form {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    color: #333;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: none;
    height: 120px;
}

/* Phone Row (Country Code + Number) */
.phone-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.phone-row select {
    flex: 0.5;
}

.phone-row input {
    flex: 1;
}

/* Submit Button */
.contact-form button {
    background: #06bcd1;
    color: #fff;
    border: none;
    padding: 14px 20px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #0499ad;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .phone-row {
        flex-direction: column;
    }
}




.main-heading{
    font-size: 25px;
}

@media (max-width:768px){
    .main-heading{
        font-size: 24px;
    }
}









/* --- MechXperts Premium Scoped Section --- */
.mx-serv-section {
  background-color: #0f172a; 
  padding-bottom: 80px;
}

/* Hero Section */
.mx-serv-hero-img {
  width: 100%;
  height: 450px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0% 100%);
}

.mx-serv-hero-img img { width: 100%; height: 100%; object-fit: cover; }

.mx-serv-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mx-serv-overlay h1 {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
}

.mx-serv-overlay h1 span { color: #0ea5e9; }

/* Main Content Wrapper with Shapes */
.mx-serv-content-wrapper {
  background-color: #ffffff;
  margin-top: -80px;
  position: relative;
  z-index: 5;
  padding: 100px 0;
  border-radius: 80px; /* Top and Bottom Curves */
  font-family: 'Inter', sans-serif;
  overflow: hidden; /* Important for background shapes */
}

.mx-z-index-10 { z-index: 10; }

/* --- Attractive Paragraph Cards --- */
.mx-serv-card {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  transition: all 0.4s ease;
  position: relative;
  
  /* Feature 1: The Highlight Border (Always Visible) */
  border-top: 3px solid transparent; 
  border-image: linear-gradient(90deg, #0ea5e9, #38bdf8) 1;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
}

.mx-serv-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

/* Number Styling */
.mx-serv-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #f8fafc;
  color: #0ea5e9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  font-family: 'Montserrat', sans-serif;
  border: 1px solid #e2e8f0;
  transition: all 0.4s ease;
}

.mx-serv-card:hover .mx-serv-number {
  background: #0ea5e9;
  color: #fff;
  transform: rotate(5deg);
}

.mx-serv-card p {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
  text-align: justify;
}

/* AMC Specific Active Card */
.mx-serv-amc-card {
  background: #f0f9ff;
  border-image: linear-gradient(90deg, #0ea5e9, #0284c7) 1;
}

.amc-content strong {
  display: block;
  color: #0f172a;
  font-size: 1.15rem;
  margin-bottom: 5px;
}

/* CTA Button */
.mx-serv-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #fff;
  padding: 16px 45px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.mx-serv-cta:hover {
  background: #0284c7;
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 15px 30px rgba(14, 165, 233, 0.4);
}

/* --- Floating Background Shapes CSS --- */
.mx-shape-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.mx-shape {
  position: absolute;
  opacity: 0.3;
  border-radius: 50%;
  filter: blur(10px);
}

.mx-shape-1 {
  width: 300px; height: 300px;
  background: linear-gradient(rgba(14, 165, 233, 0.2), transparent);
  left: -100px; top: 10%;
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.mx-shape-2 {
  width: 200px; height: 200px;
  background: linear-gradient(to right, rgba(56, 189, 248, 0.1), transparent);
  right: -50px; top: 30%;
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}

.mx-shape-3 {
  width: 250px; height: 250px;
  background: linear-gradient(rgba(14, 165, 233, 0.2), transparent);
  left: 5%; bottom: 10%;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.mx-shape-4 {
  width: 350px; height: 350px;
  background: linear-gradient(to top, rgba(14, 165, 233, 0.15), transparent);
  right: -100px; bottom: -50px;
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .mx-serv-content-wrapper { border-radius: 40px; padding: 60px 0; }
  .mx-serv-overlay h1 { font-size: 2rem; }
  .mx-shape { opacity: 0.1; }
}

@media (max-width: 576px) {
  .mx-serv-card { flex-direction: column; gap: 10px; }
  .mx-serv-number { width: 35px; height: 35px; font-size: 0.9rem; }
}



/* --- MechXperts Generator Repair Section --- */
.mx-rep-section {
  background-color: #0f172a; 
  padding-bottom: 80px;
}

/* Hero Image Styling */
.mx-rep-hero-img {
  width: 100%;
  height: 450px;
  position: relative;
}

.mx-rep-hero-img img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}

.mx-rep-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mx-rep-overlay h1 {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  margin: 0;
}

.mx-rep-overlay h1 span { color: #0ea5e9; }

/* Curved Content Wrapper */
.mx-rep-content-wrapper {
  background-color: #ffffff;
  margin-top: -60px;
  position: relative;
  z-index: 5;
  padding: 100px 0;
  border-radius: 80px; /* Curves at Top and Bottom */
  font-family: 'Inter', sans-serif;
}

/* Numbered Item Styling */
.mx-rep-item {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
  align-items: flex-start;
}

.mx-rep-number {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: #f1f5f9;
  color: #0ea5e9;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  transition: 0.3s ease;
}

.mx-rep-item:hover .mx-rep-number {
  background: #0ea5e9;
  color: #fff;
  border-color: #0ea5e9;
  transform: scale(1.1);
}

.mx-rep-item p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}

/* AMC Special Style Highlight */
.mx-rep-amc-highlight {
  background: #f8fafc;
  padding: 25px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}

.amc-num { background: #0ea5e9; color: #fff; border: none; }

.amc-content strong {
  display: block;
  color: #0f172a;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

/* CTA Button */
.mx-rep-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #0ea5e9;
  color: #fff;
  padding: 16px 45px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.2);
}

.mx-rep-cta:hover {
  background: #0284c7;
  transform: translateY(-3px);
  color: #fff;
}

/* Responsive Fixes */
@media (max-width: 991px) {
  .mx-rep-content-wrapper { border-radius: 40px; padding: 60px 0; }
  .mx-rep-overlay h1 { font-size: 2.2rem; }
}

@media (max-width: 576px) {
  .mx-rep-item { flex-direction: column; gap: 10px; }
  .mx-rep-number { width: 35px; height: 35px; font-size: 0.9rem; }
}