*
{
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Section */
#Product {
    width: auto;
    height: auto;
    margin-top: 10px;
}
#Product img
{
     width: 100%;
    /* height: 600px;                       */
    margin-top: 30px;
}
.text
{
   margin-top: 30px;
  font-weight: 600;
  font-size: 30px !important;
}
.product-section {
    width: 80%;
    margin: auto;
}
 #Product h2 {
    text-align: center;
    font-weight: 700;
    color: #000;
    margin-top: 30px;
}
h3 {
    color: #000;
    margin-top: 40px;
}

.btn {
    background: linear-gradient(135deg, #6a11cb, #2575fc); 
  color: #fff;
  border: none;
  padding: 6px 10px;       
  font-size: 13px;
  font-weight: 500;
  border-radius: 12px;   
  cursor: pointer;
  display: block;       
  margin: 10px auto;     
  box-shadow: 0 3px 8px rgba(37, 117, 252, 0.35);
  transition: all 0.3s ease;
}
.btn:hover {
   background: linear-gradient(135deg, #0056d2, #003c99);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 86, 210, 0.4);
}

footer {
  background: linear-gradient(180deg,#111827,#0f172a);
}
footer input {
  border:1px solid #374151;
}
footer button {
  background: linear-gradient(90deg,#0ea5e9,#1e3a8a);
  color:#fff;
  font-weight:600;
  transition: all 0.3s;
}
footer button:hover {
  transform: scale(1.05);
}
footer a {
  text-decoration: none !important;
  color: #d1d5db; /* light gray */
  transition: color 0.3s ease;
}
footer a:hover {
  color: #0ea5e9;
}
  nav a {
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
    color: #000;
  text-decoration: none !important;
  font-size: 19px;
  padding: 10px;
  font-weight: 600;
}
nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: red;
  transition: 0.3s;
}
nav a:hover {
  color: #000;
}
nav a:hover::after {
  width: 100%;
}
nav a:active::after
{
  width:100%;
}
nav .contact-btn {
  background: linear-gradient(90deg,#0ea5e9,#0369a1);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(14,165,233,0.3);
}
nav .contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(14,165,233,0.5);
}
.overlay a {
  /* background: linear-gradient(90deg,#0ea5e9,#0369a1); */
  color: #000 !important;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(14,165,233,0.3);
  text-decoration: none;
}


                                            /* ************* Product css *********** */

       .container {
            width: 80%;
            margin: 50px auto;
            background-color: white;
            margin-top: 20px;
        }
   .container h2 {
            color: black;
            font-weight: 600;
            text-align: center;
            margin-top: 10px;
        }
        .uses-list {
            color: black;
            margin-bottom: 30px;
            margin-top: 20px;
        }
        .uses-list li {
            margin-bottom: 10px;
            color: #000;
            font-size: 20px;
        }
.products-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;       /* Center alignment */
  gap: 15px;
  margin: 30px auto 20px auto;  /* Top 30px, bottom 20px, center horizontally */
  width: 70%;                    /* Container width 70% */
}

.product-box {
  flex: 0 0 23%;                 /* 4 boxes per row (100/4 ≈ 25%) minus gap */
  border: 1px solid #333;
  padding: 12px 4px;
  border-radius: 6px;
  background-color: #f0f0f0;
  color: black;
  text-align: center;
  font-size: 15px;
  box-sizing: border-box;        /* Ensure padding + border included in width */
}

span
{
    font-weight: 600;
}
 .product-box small {
  font-weight: 600;
  font-size: 20px;
  display: block;
}
.product-specs th,
.product-specs td {
  border: 1px solid #ddd;
  padding: 12px 15px;
  text-align: center;
  vertical-align: top;
  font-size: 14px;
}
tbody tr td:first-child {
 text-align: center;
  vertical-align: middle;
  font-weight: bold;
  font-size: 17px;
}

.product-specs th {
  background-color: #0073e6; 
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
}

.product-specs tbody tr:nth-child(even) {
  background-color: #f9f9f9; 
}

.product-specs tbody tr:hover {
  background-color: #f1f1f1; 
}

.product-specs h2 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}

.table-container {
  overflow-x: auto; 
}

.product-specs table {
  width: 80%;
  border-collapse: collapse;
  min-width: 800px;
  margin: 20px auto;
}

#contact .contact-card {
  border: 1px solid #e5e7eb;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  background: #fff;
}
#contact .contact-card:hover {
  border-left-color: #0ea5e9;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(14,165,233,0.15);
}
#contact .contact-card h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #111827;
}
#contact .contact-card h4 i {
  color: #0ea5e9;
  font-size: 1.2rem;
}
#contact form input,
#contact form textarea {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 10px 14px;
  transition: all 0.3s ease;
}
#contact form input:focus,
#contact form textarea:focus {
  border-color: #0ea5e9;
  outline: none;
  box-shadow: 0 0 6px rgba(14,165,233,0.4);
}
#contact form button {
  background: linear-gradient(90deg,#0ea5e9,#1e3a8a) !important;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#contact form {
  min-height: 100px;   
  max-height: 490px;   
  resize: vertical; 
  margin-top: 95px;   
  transition: color 0.3s ease, transform 0.2s ease;
    border: 1px solid #e5e7eb;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  background: #fff;
}
#contact form:hover {
    border-left-color: #0ea5e9;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(14,165,233,0.15);
}

#contact form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(14,165,233,0.4)
}
#contact a {
  text-decoration: none;  
}
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none; 
  }

  .logo-img {
    height: 60px;
    object-fit: contain;
  }

    .logo-text {
    margin-left: 2px;
    font-size: 21px;
    margin-top: 5px;
    font-weight: 600;
    color: #d71920;
    font-family: 'Segoe UI', Arial, sans-serif;
  }

  .logo-link:hover .logo-text {
    color: #b11216;
    transition: color 0.3s ease;
  }


.view-btn {
  display: block;            
  margin: 8px auto 0;       
  background: transparent;    /* No background */
  color: #000;            /* Primary color text */
  padding: 6px 12px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.view-btn:hover {
  background: #007bff;       /* Fill color on hover */
  color: #fff;               /* Text color change */
  transform: scale(1.05);    /* Slight zoom effect */
}
.extra-info {
  display: none;
  background: #f9f9f9;
  overflow: hidden;
}

.inner-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 14px;
}

.inner-table td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
}

/* Smooth slide animation */
.extra-info.show {
  display: table-row;
  animation: slideDown 0.3s ease forwards;
}

.pdf-btn {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 6px;
  color: #111827;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.pdf-btn:hover {
  background: #f3f4f6; /* light hover shade */
  border-color: #4b5563;
  color: #111827;
   transform: scale(1.05);
}






/* =============== Responsive Design =============== */
@media (max-width: 992px) {
 
}

 @media (max-width: 1024px)
   {
    #contact form
    {
      margin-top: 0px
    }
   }
@media (max-width: 887px) {
  .logo-img {
    height: 50px;
  }
  .logo-text {
    font-size: 16px;
  }
}
@media (max-width: 800px) {
  .logo-img {
    height: 50px;
  }
  .logo-text {
    font-size: 14px;
  }
}
   @media (max-width: 767px) {
      nav {
        display: none;
      }

      .menu-btn {
        display: block;
      }

      .mobile-nav.show {
        display: flex;
      }
        .product-box {
    flex: 0 0 30%;  
    padding: 14px 8px;
  }
    }
     @media (max-width: 767px) and (min-width: 468px) {
  .logo-img {
    height: 50px;
  }
  .logo-text {
    font-size: 19px;
    margin-left: 2px;
  }
}

@media (max-width: 600px) {
  
     .text {
    font-size: 20px !important;
  }

    h3 {
        text-align: center;
    }
}
  @media (max-width: 480px) {
  .product-box {
    flex: 0 0 45%;   
    padding: 16px 10px;
  }
}
  @media (max-width: 467px) {
    .product-img {
      height: 220px;
    }
     .logo-text {
    font-size: 17px;
    margin-left: 2px;
  }
  }
 @media (max-width: 399px) {
  .logo-img {
    height: 40px;
  }
  .logo-text {
    font-size: 13ssspx;
    margin-left: 0px;
  }
}
