/* Rate Card Styling */
.rate-card-container {
    width: 1200px;
    margin: 0 auto;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.rate-tabs {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 15px;
    width: 100%;
}

.rate-tab {
    flex: 1;
    padding: 15px;
    cursor: pointer;
    background: #e0e0e0;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    margin: 5px;
    min-width: 120px;
}

.rate-tab.active {
    background: #007bff;
    color: white;
}

.rate-tab-content {
    display: none;
    width: 100%;
}

.rate-tab-content.active {
    display: block;
}

.rate-table {
    width: 100%;
    border-collapse: collapse;
}

.rate-table th, .rate-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}

.rate-table th {
    background: #007bff;
    color: white;
}

/* Responsive Design */
@media (max-width: 1280px) {
    .rate-card-container {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .rate-card-container {
        width: 95%;
        padding: 15px;
    }

    .rate-tabs {
        flex-direction: row;
        align-items: center;
        width: 100%;
    }

    .rate-tab {
        flex-grow: 1;
        padding: 12px;
        text-align: center;
    }

    .rate-table th, .rate-table td {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .rate-tab {
        width: 100%;
        font-size: 14px;
    }

    .rate-table th, .rate-table td {
        font-size: 12px;
        padding: 8px;
    }
}

 /* Volumetric Weight Calculator */

    .container-box {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      background: white;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    label {
      display: block;
      margin: 10px 0 5px;
    }
    input {
      width: 100%;
      margin-bottom: 15px;
      border-radius: 5px;
    }
    button {
      width: 100%;
      background-color: #1f7e00;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }
    button:hover {
      background-color: #2d7515;
    }
    .result {
      text-align: center;
      margin-top: 20px;
      font-size: 18px;
      font-weight: bold;
    }
    @media (max-width: 1800px) {
      h1 {
        font-size: 24px;
      }
      input, button {
        font-size: 14px;
      }
    }

 
 /*  Content Slider Start */
  .marquee-container {
            width: 100%;
            background: #1f7e00;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            height: 50px;
            display: flex;
            align-items: center;
        }

        .marquee {
            display: flex;
            font-size: 20px;
            font-weight: bold;
            color: white;
            animation: marquee 240s linear infinite;
        }

        /* Animation for continuous sliding */
        @keyframes marquee {
            from { transform: translateX(0); }
            to { transform: translateX(-100%); }
        }

        /* Duplicating content for seamless effect */
        .marquee span {
            display: inline-block;
            padding-right: 50px;
        }
        
 /* Heading */
  .custom-heading {
  background-color: green;
  color: white;
  padding: 20px;
  text-align: center;
}
