
    /* ---------- Basic Reset ---------- */


      /* Basic Reset and Global Styles */
        body { font-family: Arial, sans-serif; line-height: 1.6; margin: 0; padding: 0; background-color: #f4f4f9; }
        .container { width: 90%; max-width: 1200px; margin: auto; overflow: hidden; padding: 20px 0; }

        

        /* Header and Logo */
        header { background: linear-gradient(-180deg, #FF7E31, #E62C03);; color: white; padding: 10px 0; text-align: center; }
        header h1 { margin: 0; font-size: 2em; }
        .logo-text { color: #390bcf; font-weight: bold; } /* Green for the "Chemical" part */

        /* Search and Contact/Inquiry Section */
        .search-inquiry-section { display: flex; justify-content: space-between; gap: 30px; padding: 20px 0; }
        .search-form { flex: 2; }
        .contact-form-container { flex: 1; background: white; padding: 20px; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); }
        
        /* Search Bar Styling */
        #productSearch { width: 100%; padding: 12px 15px; margin-bottom: 20px; border: 2px solid #ccc; border-radius: 4px; box-sizing: border-box; font-size: 16px; }

        /* Inquiry Form Styling */
        .contact-form-container h2 { color: #0b5394;; border-bottom: 2px solid #eee; padding-bottom: 10px; margin-top: 0; }
        .contact-form-container label { display: block; margin-top: 10px; font-weight: bold; }
        .contact-form-container input[type="text"], 
        .contact-form-container input[type="email"], 
        .contact-form-container textarea { width: 100%; padding: 10px; margin-top: 5px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; }
        .contact-form-container button { background: #5cb85c; color: white; padding: 10px 15px; border: none; border-radius: 4px; cursor: pointer; margin-top: 15px; width: 100%; font-size: 16px; transition: background-color 0.3s; }
        .contact-form-container button:hover { background-color: #4cae4c; }

        /* Product Catalog */
        .product-catalog h2 { border-bottom: 2px solid #007bff; color: #333; padding-bottom: 5px; margin-top: 40px; }
        .product-catalog h3 { color: #0b5394;; margin-top: 25px; }
        
        /* Table Styling */
        .product-table { width: 100%; border-collapse: collapse; margin-top: 15px; background: white; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
        .product-table th, .product-table td { border: 1px solid #ddd; padding: 10px; text-align: left; }
        .product-table th { background-color: #f2f2f2; color: #333; font-weight: bold; }
        
        /* List Styling for Specialty Chemicals */
        .specialty-list { column-count: 2; column-gap: 30px; list-style-type: square; padding-left: 20px; }
        .specialty-list li { margin-bottom: 5px; }

        /* Footer/Contact Info */
        footer { background: linear-gradient(-180deg, #FF7E31, #E62C03); color: white; text-align: center; padding: 20px 0; margin-top: 40px; font-size: 0.9em; }
        footer p { margin: 5px 0; }

        

/* ---------contact us------------------------------ */
/* Container for the form */
.contact-col {
    background: #ffffff; /* White background for the form area */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    max-width: 500px; /* Keep the form a reasonable size */
    margin: 40px auto; /* Center the form on the page */
}

/* Style the form itself */
.contact-col form {
    display: flex;
    flex-direction: column;
}

/* Labels */
.contact-col label {
    font-size: 16px;
    color: #333; /* Darker text for readability */
    margin-bottom: 5px;
    margin-top: 15px; /* Spacing between fields */
    font-weight: 600; /* Make labels stand out */
}

/* Input Fields (text, tel, email, textarea) */
.contact-col input[type="text"],
.contact-col input[type="tel"],
.contact-col input[type="email"],
.contact-col textarea {
    width: 100%;
    padding: 12px 15px;
    background: #f8f8f8; /* Light gray background for input fields */
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    color: #555;
    box-sizing: border-box; /* Include padding/border in element's total width/height */
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* Textarea specific adjustments */
.contact-col textarea {
    resize: vertical; /* Allow resizing vertically only */
    min-height: 120px;
}

/* Focus state for better user experience */
.contact-col input:focus,
.contact-col textarea:focus {
    border-color: #0b5394;; /* Highlight border on focus (e.g., Mahavir Chemical's blue) */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
    outline: none;
    background: #fff;
}

/* Submit Button */
.contact-col .btn.dark-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    padding: 12px 25px;
    background: #d60a0a; /* Primary button color (Blue) */
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    transition: background-color 0.3s, transform 0.1s;
}

/* Hover state for the button */
.contact-col .btn.dark-btn:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: translateY(-2px);
}

/* Styling for the image/icon inside the button */
.contact-col .btn.dark-btn img {
    width: 20px; /* Size the arrow icon */
    height: auto;
    margin-left: 8px; /* Space between text and icon */
    filter: brightness(0) invert(1); /* Ensure white arrow image is visible on dark background */
}

/* Area for success/error messages */
#result {
    margin-top: 15px;
    font-weight: 600;
    color: #28a745; /* Green for success message (you might add error styling later) */
    text-align: center;
}


/* Container and Heading */
.product-capabilities {
    font-family: Arial, sans-serif;
    padding: 40px 20px;
    background-color: #f8f9fa; /* Light background for the section */
}

.product-capabilities h2 {
    text-align: center;
    color: #0b5394;; /* Mahavir Blue */
    margin-bottom: 30px;
    font-size: 2.2em;
    border-bottom: 3px solid #dee2e6;
    padding-bottom: 15px;
}

/* Grid Layout for Categories */
.category-grid {
    display: grid;
    /* 2 columns on desktop, 1 on mobile (handled by media query) */
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px;
}

/* Individual Category Card */
.category-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #cf681e; /* Green accent line */
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Titles and Text */
.category-title {
    color: #333;
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.category-card p {
    color: #555;
    font-size: 1.05em;
    line-height: 1.5;
}

/* Sub-Categories (Specialty Chemicals) */
.sub-categories h4 {
    color: #be0a0a;
    font-size: 1.1em;
    margin-top: 15px;
    margin-bottom: 5px;
}

/* List Styling */
.key-items-list {
    list-style-type: none; /* Remove default bullet */
    padding-left: 0;
}

.key-items-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
    color: #333;
}

/* Custom bullet point */
.key-items-list li::before {
    content: "•"; 
    color: #5cb85c; /* Green bullet */
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .category-grid {
        /* Switch to a single column layout on smaller screens */
        grid-template-columns: 1fr; 
    }
}
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      line-height: 1.6;
      background-color: #f4f4f9;
      color: #333;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
      padding: 20px 0;
    }

    /* ---------- Header ---------- */
    header {
      background: linear-gradient(-180deg, #FF7E31, #E62C03);
      color: white;
      padding: 15px 0;
      text-align: center;
    }

    header h1 {
      margin: 0;
      font-size: 2em;
    }

    .logo-text {
      color: #390bcf;
      font-weight: bold;
    }

    header p {
      font-size: 1em;
      margin-top: 5px;
    }

    /* ---------- Search + Inquiry Section ---------- */
    .search-inquiry-section {
      display: flex;
      justify-content: space-between;
      gap: 30px;
      padding: 20px 0;
      flex-wrap: wrap;
    }

    .search-form {
      flex: 2;
      min-width: 280px;
    }

    #productSearch {
      width: 100%;
      padding: 12px 15px;
      margin-bottom: 20px;
      border: 2px solid #ccc;
      border-radius: 4px;
      font-size: 16px;
    }

    .contact-col {
      flex: 1;
      background: #ffffff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      min-width: 280px;
    }

    /* ---------- Inquiry Form ---------- */
    .contact-col form {
      display: flex;
      flex-direction: column;
    }

    .contact-col h2 {
      color: #111ea9;
      margin-bottom: 15px;
      border-bottom: 2px solid #eee;
      padding-bottom: 8px;
    }

    .contact-col label {
      margin-top: 10px;
      font-weight: 600;
    }

    .contact-col input[type="text"],
    .contact-col input[type="tel"],
    .contact-col input[type="email"],
    .contact-col textarea {
      width: 100%;
      padding: 12px;
      margin-top: 5px;
      border: 1px solid #ddd;
      border-radius: 6px;
      background: #f8f8f8;
      font-size: 15px;
      transition: 0.3s;
    }

    .contact-col input:focus,
    .contact-col textarea:focus {
      border-color: #007bff;
      box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
      background: #fff;
      outline: none;
    }

    .contact-col textarea {
      resize: vertical;
      min-height: 100px;
    }

    .contact-col .btn.dark-btn {
      margin-top: 20px;
      padding: 12px;
      background: #ff5500;
      color: white;
      border: none;
      border-radius: 6px;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s;
      font-size: 16px;
    }

    .contact-col .btn.dark-btn:hover {
      background: #0056b3;
      transform: translateY(-2px);
    }

    .contact-col .btn.dark-btn img {
      width: 18px;
      margin-left: 8px;
      filter: brightness(0) invert(1);
    }

    #result {
      margin-top: 10px;
      text-align: center;
      font-weight: bold;
      color: #28a745;
    }

    /* ---------- Product Capabilities ---------- */
    .product-capabilities {
      padding: 30px 0;
      background-color: #f8f9fa;
    }

    .product-capabilities h2 {
      text-align: center;
      color: #02070c;
      border-bottom: 3px solid #dee2e6;
      padding-bottom: 10px;
      margin-bottom: 30px;
    }

    .category-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }

    .category-card {
      background: white;
      padding: 25px;
      border-radius: 8px;
      border-top: 5px solid  linear-gradient(-180deg, #FF7E31, #E62C03);;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transition: 0.3s;
    }

    .category-card:hover {
      transform: translateY(-5px);
    }

    .category-title {
      color: #333;
      font-size: 1.5em;
      margin-bottom: 10px;
      border-bottom: 1px solid #eee;
      padding-bottom: 5px;
    }

    .key-items-list {
      list-style: none;
      padding-left: 0;
    }

    .key-items-list li {
      padding-left: 20px;
      position: relative;
      margin-bottom: 6px;
    }

    .key-items-list li::before {
      content: "•";
      color: #0e9338;
      position: absolute;
      left: 0;
    }

    /* ---------- Product Table ---------- */
    .product-catalog h2 {
      border-bottom: 2px solid #007bff;
      padding-bottom: 8px;
      margin-top: 40px;
    }

    .product-table {
      width: 100%;
      border-collapse: collapse;
      background: white;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .product-table th,
    .product-table td {
      padding: 10px;
      border: 1px solid #ddd;
      font-size: 0.95em;
    }

    .product-table th {
      background: #f2f2f2;
      color: #333;
      text-align: left;
    }

    /* ---------- Specialty Lists ---------- */
    .specialty-list {
      column-count: 2;
      column-gap: 30px;
      list-style-type: square;
      padding-left: 20px;
    }

    /* ---------- Footer ---------- */
    footer {
      background: linear-gradient(-180deg, #FF7E31, #E62C03);
      color: white;
      text-align: center;
      padding: 20px 10px;
      font-size: 0.9em;
      margin-top: 40px;
    }

    footer p {
      margin: 4px 0;
    }

    /* ---------- Responsive Design ---------- */
    @media (max-width: 992px) {
      .category-grid {
        grid-template-columns: 1fr;
      }
      .search-inquiry-section {
        flex-direction: column;
      }
    }

    @media (max-width: 768px) {
      header h1 {
        font-size: 1.6em;
      }

      .category-card {
        padding: 20px;
      }

      .product-table th,
      .product-table td {
        font-size: 0.85em;
      }

      .specialty-list {
        column-count: 1;
      }
    }

    @media (max-width: 480px) {
      .container {
        width: 95%;
        padding: 10px 0;
      }

      .contact-col {
        padding: 20px;
      }

      .contact-col h2 {
        font-size: 1.2em;
      }

      header h1 {
        font-size: 1.4em;
      }

      #productSearch {
        font-size: 14px;
        padding: 10px;
      }

      .category-title {
        font-size: 1.2em;
      }

      .btn.dark-btn {
        font-size: 14px;
      }
    }

    /* ---------------------contact us-------------- */
    .contact-col {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  color: #333;
  max-width: 100%;
  margin: 30px auto;
  line-height: 1.6;
  transition: 0.3s ease;
}

/* Section Heading */
.contact-col h3 {
  color: #111ea9;
  font-size: 1.6em;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.contact-col h3 img {
  width: 26px;
  height: 26px;
}

/* Paragraph Styling */
.contact-col p {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
}

/* Contact Details List */
.contact-col ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.contact-col ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95em;
  color: #444;
  transition: 0.3s;
}

.contact-col ul li img {
  width: 22px;
  height: 22px;
  filter: invert(35%) sepia(90%) saturate(700%) hue-rotate(-10deg);
}

.contact-col ul li:hover {
  color: #150704;
  transform: translateX(5px);
}

/* Google Map */
.contact-col iframe {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  border: 2px solid #E62C03;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* Hover Lift Effect */
.contact-col:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* ✅ Responsive for Mobile */
@media (max-width: 768px) {
  .contact-col {
    padding: 25px;
  }

  .contact-col h3 {
    font-size: 1.3em;
  }

  .contact-col ul li {
    font-size: 0.9em;
  }

  .contact-col iframe {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .contact-col {
    padding: 20px;
  }

  .contact-col h3 {
    font-size: 1.2em;
  }

  .contact-col iframe {
    height: 200px;
  }
}


/* -------------back button---------------------- */

/* ---------- Header ---------- */
header {
  background: linear-gradient(-180deg, #FF7E31, #E62C03);
  color: white;
  padding: 15px 0;
  text-align: center;
  position: relative;
}

header h1 {
  margin: 0;
  font-size: 2em;
}

.logo-text {
  color: #390bcf;
  font-weight: bold;
}

header p {
  font-size: 1em;
  margin-top: 5px;
}

/* ---------- Back Button ---------- */

/* ---------- Header ---------- */
header {
  background: linear-gradient(-180deg, #FF7E31, #E62C03);
  color: white;
  padding: 15px 0;
  text-align: center;
  position: relative;
  width: 100%;
}

header h1 {
  margin: 0;
  font-size: 2.2rem;
}

.logo-text {
  color: #ffe600;
  font-weight: 700;
}

header p {
  font-size: 1rem;
  margin-top: 5px;
}

/* ---------- Back Button ---------- */
.back-btn {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1.8px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 8px 14px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.back-btn img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* Hover effect */
.back-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.05);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  header h1 {
    font-size: 1.8rem;
  }
  header p {
    font-size: 0.9rem;
  }
  .back-btn {
    left: 15px;
    padding: 7px 12px;
    font-size: 14px;
  }
  .back-btn img {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 600px) {
  header {
    padding: 12px 0;
  }
  header h1 {
    font-size: 1.5rem;
  }
  header p {
    font-size: 0.8rem;
  }
  .back-btn {
    left: 10px;
    top: 50%;
    padding: 6px 10px;
    font-size: 13px;
  }
  .back-btn img {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 400px) {
  header h1 {
    font-size: 1.3rem;
  }
  .back-btn {
    padding: 5px 8px;
    gap: 6px;
  }
}

 

/* ---------------------product table=------------------- */
/* ---------- Product Table ---------- */
.product-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  overflow-x: auto; /* Allow horizontal scroll if needed */
  display: block;   /* Make block for scrolling on mobile */
}

.product-table th,
.product-table td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
  font-size: 0.95em;
}

.product-table th {
  background: #f2f2f2;
  color: #333;
}

/* Optional: make table rows hoverable */
.product-table tr:hover {
  background-color: #f9f9f9;
}

/* ---------- Mobile Responsive ---------- */
@media (max-width: 768px) {
  .product-table {
    display: block;  /* Force block layout */
    overflow-x: auto; /* Scroll horizontally if needed */
    white-space: nowrap; /* Prevent cell text from wrapping */
  }

  .product-table th,
  .product-table td {
    padding: 8px;
    font-size: 0.85em;
  }
}

@media (max-width: 480px) {
  .product-table th,
  .product-table td {
    padding: 6px;
    font-size: 0.8em;
  }
}





/* new code */
/* ---------- Header ---------- */
header {
  background: linear-gradient(-180deg, #FF7E31, #E62C03);
  color: white;
  padding: 15px 0;
  text-align: center;
  position: relative;
  width: 100%;
}

header h1 {
  margin: 0;
  font-size: 2.2rem;
}

.logo-text {
  color: #ffe600;
  font-weight: 700;
}

header p {
  font-size: 1rem;
  margin-top: 5px;
}

/* ---------- Back Button ---------- */
.back-btn {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 8px 14px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.back-btn img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* Hover effect */
.back-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.05);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  header h1 {
    font-size: 1.8rem;
  }
  header p {
    font-size: 0.9rem;
  }
  .back-btn {
    left: 15px;
    padding: 7px 12px;
    font-size: 14px;
  }
  .back-btn img {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 600px) {
  header {
    padding: 12px 0;
  }
  header h1 {
    font-size: 1.5rem;
  }
  header p {
    font-size: 0.8rem;
  }
  .back-btn {
    left: 10px;
    padding: 6px 10px;
    font-size: 13px;
    gap: 5px;
  }
  .back-btn img {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 400px) {
  header h1 {
    font-size: 1.3rem;
  }
  .back-btn {
    padding: 5px 8px;
    gap: 5px;
  }
}


/* serach bar------------------------------------------- */
/* ---------- Search Bar ---------- */
#productSearch {
  width: 100%;
  padding: 12px 20px;
  border: 2px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

/* Focus effect */
#productSearch:focus {
  border-color: #007bff;  /* Mahavir blue */
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
  outline: none;
  background-color: #fff;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  #productSearch {
    font-size: 15px;
    padding: 10px 15px;
  }
}

@media (max-width: 768px) {
  #productSearch {
    font-size: 14px;
    padding: 10px 12px;
  }
}

@media (max-width: 480px) {
  #productSearch {
    font-size: 13px;
    padding: 8
  }}