

body {
    font-family: 'Poppins', sans-serif !important;
}

/* -------------------------------------------------------------------------------------------- */
.lms-heading {
  width: 100%;
  overflow: hidden;
  background-image: linear-gradient(rgba(7, 47, 133, 0.8), rgba(7, 47, 133, 0.8)), url(../../img/products/Raw-image.png);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex
;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 63px 20px;
  position: relative;
  min-height: 200px;
}

lms-heading::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;

}


.lms-heading-title {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.lms-heading-title h1 {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.lms-heading-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: 17px;
}

.lms-heading-img {
    flex: 0 0 48%;
    text-align: center;
    padding: 0 15px;
}

.lms-heading-img img {
  max-width: 80%;
  height: auto;
   
}

.lms-heading-info {
    flex: 0 0 48%;
    padding: 0 15px;
}

.lms-heading-info h2 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 20px;
}

.lms-heading-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.specs {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.lms-features-img {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.lms-features-img img {
  width: 55%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.lms-features-list {
  flex: 1;
  min-width: 300px;
  list-style: none;
  padding: 0;
}

.lms-features-list li {
  padding: 5px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 25px;
}

.lms-features-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #007bff;
  font-weight: bold;
  font-size: 16px;
}

.lms-features-list li:last-child {
  border-bottom: none;
}

/* ------------------------------------ benefit section------------------------------------------------------------ */
.table-container {
  padding: 2px 75px;
  overflow-x: auto;
  padding-bottom: 50px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

thead {
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
  color: white;
}

th {
  padding: 20px 25px;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

th:last-child {
  border-right: none;
}

tbody tr {
  transition: all 0.3s ease;
  border-bottom: 1px solid #ecf0f1;
}

tbody tr:hover {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

tbody tr:nth-child(even) {
  background: #fafbfc;
}

tbody tr:nth-child(even):hover {
  background: linear-gradient(135deg, #f1f3f4 0%, #e8eaed 100%);
}

td {
  padding: 18px 25px;
  border-right: 1px solid #dee2e6;
  vertical-align: middle;
}

td:last-child {
  border-right: none;
}

.kpi-cell {
  font-weight: 600;
  color: #2c3e50;
  position: relative;
}

.kpi-cell::before {
  content: '⚙️';
  margin-right: 8px;
  font-size: 18px;
}

.impact-cell {
  font-weight: 500;
  position: relative;
  padding-left: 35px;
}

.impact-decreased::before {
  content: '↓';
  position: absolute;
  left: 25px;
  color: #27ae60;
  font-size: 20px;
  font-weight: bold;
}

.impact-increased::before {
  content: '↑';
  position: absolute;
  left: 25px;
  color: #2980b9;
  font-size: 20px;
  font-weight: bold;
}

.impact-realtime::before {
  content: '⚡';
  position: absolute;
  left: 13px;
  color: #f39c12;
  font-size: 16px;
}

.impact-accurate::before {
  content: '🎯';
  position: absolute;
  left: 13px;
  font-size: 16px;
}

.result-cell {
  color: #2c3e50;
  font-weight: 500;
  line-height: 1.4;
}

/* Performance indicators */
.performance-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 10px;
}

.badge-positive {
  background: #d4edda;
  color: #155724;
}

.badge-enhanced {
  background: #cce7ff;
  color: #004085;
}

.badge-realtime {
  background: #fff3cd;
  color: #856404;
}

.badge-accurate {
  background: #f8d7da;
  color: #721c24;
}
/* ------------------------------------------------------------------------------------------- */
/* Responsive Design */
@media (max-width: 768px) {
  .specs {
      flex-direction: column;
  }
  
  .lms-features-img,
  .lms-features-list {
      min-width: 100%;
  }
  
  .features-section {
      padding: 20px 15px;
  }
}

@media (max-width: 480px) {
  .lms-features-list li {
      font-size: 14px;
      padding: 10px 0 10px 20px;
  }
}

.lms-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    margin-right: 20px;
}

.lms-feature-item i {
    margin-right: 10px;
    color: #ff9800;
}

.scheme-img{
  text-align: center;
 }
 .scheme-img img{
  width: 32%;
  height: 50%;
 }
  
 .features-img{
  text-align: center;
 }

 .features-img img{
  width: 50%;
  height: 50%;
 }

 .specs {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 15px;
  margin-top: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  width: 100%;
}

.specs li {
  margin-bottom: 10px;
  list-style-type: none;
  display: inline-block;
}

.specs li:before {
  content: "•";
  color: #1abc9c;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.lms-cta {
    margin-top: 20px;
}

.lms-btn {
    display: inline-block;
    background-color: #ff9800;
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lms-btn:hover {
    background-color: #e68a00;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .lms-heading-content {
        flex-direction: column;
    }
    
    .lms-heading-img, .lms-heading-info {
        flex: 0 0 100%;
        max-width: 650px;
        margin: 0 auto;
    }
    
    .lms-heading-img {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .lms-heading {
        padding: 60px 0;
    }
    
    .lms-heading-title h1 {
        font-size: 1.8rem;
    }
    
    .lms-heading-info h2 {
        font-size: 1.5rem;
    }
}

/* --------------------------------------------------------------------------------------------- */


/* ----------------------------section-3------------------------------------------------------------------- */

/* Top Navigation Bar */
.top-navigation {
    height: 80px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    flex-wrap: wrap;
    overflow-x: auto;
  }
  
  .top-navigation:after {
    content: "";
    position: absolute;
    bottom: 11px;
    width: 97%;
    height: 2px;
    background-color: #c6d6d2;
    z-index: -1;
    border-radius: 2px;
  }
  
  .top-navigation .option {
    width: 198px;
    height: 45px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-weight: bold;
    font-size: 13px;
    text-align: center;
    color: #000000;
    margin-right: 3px;
    white-space: nowrap;
  }
  
  .top-navigation .option:hover {
    transform: translateY(-1px);
    background: linear-gradient(to bottom, white, skyblue);
    color: #0824b6;
  }
  
  .top-navigation .option.active {
    background: linear-gradient(to bottom, white, skyblue);
  }
  
  /* Main Content Area */
  .content {
    flex-grow: 1;
    background-color: white;
  }
  
  .info-section {
    display: none;
    max-width: 100%;
  }
  
  .info-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
  }
  
  /* Banner image and intro text for Stockpile Tracking */
  .banner-image {
    width: 100%;
  }
  
  .banner-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .intro-text {
    background: #edeaea;
    width: 100%;
    padding: 40px;
  }
  
  .intro-text p {
    line-height: 1.6;
    color: #333;
    margin-bottom: 0;
    width: 100%;
  }
  
  /* Secondary Sidebar Styles */
  .company-record {
    display: flex;
    min-height: 100vh;
    /* background-color: #f5f5f5; */
    padding: 25px 51px;
    flex-wrap: wrap;
  }
  
  .sidebar {
    width: 200px;
    min-width: 200px;
    flex: 0 0 200px;
    background-color: #0d4c8b;
    color: white;
    padding: 20px 0;
    border-radius: 0 10px 10px 0;
    position: relative;
    z-index: 2;
  }
  
  .sidebar .option {
    padding: 15px 34px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    margin-top: 2px;
    color: white;
    position: relative;
    z-index: 1;
  }
  
  .sidebar .option.active {
    background-color: #ffffff;
    font-weight: bold;
    border-radius: 61px 0 0 61px;
    margin-left: 10px;
    color: #000;
  }
  
  .sidebar .option.active::before {
    content: "";
    width: 26px;
    height: 20px;
    display: inline-block;
    position: absolute;
    right: 0px;
    top: -20px;
    border-radius: 50%;
    box-shadow: 10px 10px 0 0 #fff;
  }
  
  .sidebar .option.active::after {
    content: "";
    width: 26px;
    height: 20px;
    display: inline-block;
    position: absolute;
    right: -3px;
    bottom: -23px;
    transform: rotate(-100deg);
    border-radius: 50%;
    box-shadow: 10px 10px 0 0 #fff;
  }
  
  /* Secondary Content Area */
  .secondary-content {
    flex-grow: 1;
    padding: 30px 60px;
    background-color: white;
    margin-left: -20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
    z-index: 1;
    position: relative;
    width: calc(100% - 180px);
  }
  
  /* Common Styles */
  
  h3 {
    padding: 13px 5px;
  }
  
  p {
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
    width: 100%;
    max-width: 100%;
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  /* Media Queries for Responsive Design */
  @media screen and (max-width: 1200px) {
    .top-navigation {
      justify-content: flex-start;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      height: auto;
      padding: 10px 5px;
    }
    
    .top-navigation:after {
      display: none;
    }
    
    .company-record {
      padding: 30px 20px;
    }
  }
  
  @media screen and (max-width: 992px) {
    .intro-text {
      padding: 30px 20px;
    }
    
    .company-record {
      flex-direction: column;
    }
    
    .sidebar {
      width: 100%;
      min-width: 100%;
      flex: 0 0 100%;
      border-radius: 10px 10px 0 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
    
    .sidebar .option {
      padding: 10px 20px;
      margin: 5px;
    }
    
    .sidebar .option.active {
      border-radius: 20px;
      margin-left: 5px;
    }
    
    .sidebar .option.active::before,
    .sidebar .option.active::after {
      display: none;
    }
    
    .secondary-content {
      width: 100%;
      margin-left: 0;
      padding: 20px;
    }
  }
  
  @media screen and (max-width: 768px) {
    .top-navigation .option {
      width: auto;
      min-width: 150px;
      padding: 0 15px;
    }
    
    .intro-text {
      padding: 20px 15px;
    }
    
    .company-record {
      padding: 20px 10px;
    }
    
    .secondary-content {
      padding: 15px;
    }
    
    .specs {
      padding: 15px;
    }
  }
  
  @media screen and (max-width: 576px) {
    .top-navigation .option {
      min-width: 120px;
      font-size: 12px;
    }
    
    .sidebar .option {
      font-size: 14px;
      padding: 8px 15px;
    }
    
    h1 {
      font-size: 24px;
    }
    
    .specs {
      padding: 10px;
    }
  }
  
  /* -------------------------------------------------------------------------------------------- */
  .mobile-nav-toggle {
    display: none;
  }
  
  @media screen and (max-width: 768px) {
    .mobile-nav-toggle {
      display: block;
      padding: 12px 15px;
      background: #0d4c8b;
      color: white;
      font-weight: bold;
      text-align: center;
      cursor: pointer;
      position: sticky;
      top: 0;
      width: 100%;
      z-index: 1000;
    }
    /* --------------------------------------------------------------------------------- */

    .Stockpile-Tracking-head{
        background: #edeaea;
         width: 100%; 
         padding: 40px
    }

    .Stockpile-Tracking-head p{
        text-align: justify;
    }


    .top-navigation {
      height: auto;
      padding: 0;
      flex-direction: column;
      background: white;
      position: absolute;
      width: 100%;
      z-index: 999;
      display: none;
      box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .top-navigation.show-mobile-nav {
      display: flex;
    }
    
    .top-navigation .option {
      width: 100% !important;
      margin: 0 !important;
      padding: 15px 20px !important;
      border-bottom: 1px solid #eee;
      height: auto;
    }
    
    /* Make content sections full height */
    .content {
      min-height: calc(100vh - 40px); /* Account for toggle menu */
    }
    
    /* Improve sidebar in mobile */
    .sidebar {
      border-radius: 10px 10px 0 0;
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      justify-content: flex-start;
      -webkit-overflow-scrolling: touch;
      padding: 10px;
    }
    
    .sidebar .option {
      flex: 0 0 auto;
      white-space: nowrap;
      border-radius: 20px !important;
      margin: 0 5px !important;
    }
    
    .sidebar .option.active::before,
    .sidebar .option.active::after {
      display: none;
    }
    
    /* Improve content spacing */
    .secondary-content {
      padding: 15px;
    }
    
    /* Better handling of specs sections */
    .specs {
      margin-top: 15px;
      padding: 15px;
    }
    
    .specs li {
      padding-left: 15px;
    }
    
    /* Make H1 headings smaller on mobile */
    h1 {
      font-size: 20px;
      margin-bottom: 15px;
    }
    
    /* Add swipe indicator for mobile users */
    .swipe-indicator {
      display: block;
      text-align: center;
      padding: 10px;
      color: #666;
      font-size: 12px;
      background: #f5f5f5;
      margin: 10px 0;
      border-radius: 5px;
    }
  }
  
  /* Small screen adjustments */
  @media screen and (max-width: 576px) {
    .company-record {
      padding: 15px 0;
    }
    
    .secondary-content {
      padding: 15px 10px;
    }
    
    .specs {
      padding: 12px;
    }
    
    /* Make the content more readable on small screens */
    p {
      font-size: 15px;
      line-height: 1.5;
    }
    
    .specs li {
      font-size: 14px;
    }
  }
  
  /* Handle landscape orientation on mobile */
  @media screen and (max-height: 500px) and (max-width: 900px) {
    .company-record {
      flex-direction: row;
      min-height: auto;
    }
    
    .sidebar {
      width: 40%;
      min-width: 160px;
      flex: 0 0 160px;
      border-radius: 0 10px 10px 0;
      display: block;
    }
    
    .secondary-content {
      width: 60%;
    }
  }
  
  /* Add transitions for smoother UI */
  .info-section {
    transition: opacity 0.3s ease;
  }

 .info-section p{
    text-align: justify;
 }

/* ------------------------------------------------------------------------- */
 .equipments-img img{
  width: 100%;
 }

 .description-benefit-m{
  padding: 3% 0%;
  float: right;
  width: 50%;
}

.description-benefit-m p{
  padding-right: 5%;
}

.description{
  padding-top: 25px;
}

.benefit-m-img{
    float: left;
    width: 49%;
    text-align: center;
    padding-top: 41px;
}

/* ----------------------------------------------------------------------------- */

  .sidebar .option,
  .top-navigation .option {
    transition: all 0.3s ease;
  }
  
  /* Fix for content overflow */
  .info-section {
    overflow-x: hidden;
    width: 100%;
  }
  
  /* Better focus styles for accessibility */
  .sidebar .option:focus,
  .top-navigation .option:focus,
  .mobile-nav-toggle:focus {
    outline: 2px solid #1abc9c;
    outline-offset: -2px;
  }