body {
      font-family: 'Segoe UI', sans-serif;
    }


.top-bar {
    background:white;
    color: black;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: top 0.3s;
    border-bottom: 2px solid rgb(219, 218, 218); /* Added border-bottom */

}
.top-bar a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}
/* Contact Icons (Phone & Email) */
.contact-icons {
    display: flex;
}

.contact-icons a {
    font-size: 14px;
    color:black;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.contact-icons a i {
    margin-right: 5px;
    font-size: 14px;
    color: rgb(4, 4, 77);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

/* Hover Effect */
.contact-icons a:hover {
    color: gray;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    font-size: 14px;
    color:rgb(4, 4, 77);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

/* Hover Effect */
.social-icons a:hover {
    color: gray;
}
@media (max-width: 768px) {
    .top-bar {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 10px 15px;
    }

    .contact-icons {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px; /* Adds spacing between phone and email */
    }

    .social-icons {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .contact-icons a,
    .social-icons a {
        font-size: 12px; /* Adjusts font size for better readability */
    }
    .contact-icons a:nth-child(2) { /* Hide the email on small screens */
        display: none;
    }
}
@media (max-width: 576px) {
    .top-bar {
        flex-direction: row; /* Keeps left and right sections separate */
        align-items: center;
        justify-content: space-between;
    }

    .contact-icons {
        flex-direction: column;
        align-items: flex-start;
    }

    .social-icons {
        justify-content: flex-end;
    }
}
/* Hide Free Quote button and Search icon on small screens */
@media (max-width: 768px) {
    .search-icon,
    .for-more-btn {
        display: none !important;
    }
}



/*navbar*/
   .navbar {
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position:sticky;
    padding-top: 70px;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: top 0.3s;
    padding:7px ;
    font-size: 15px;
}

    .navbar-brand img {
      height: 40px;
    }

    .nav-link {
      color: #000;
    }

    .nav-link.active {
      color: #021b6f;
      border-bottom: 2px solid #021b6f;
    }
    .navbar .btn-primary{
        background-color: #021b6f;
    }
    .hero {
      text-align: center;
      padding: 2rem 2rem 4rem;
      z-index: 1;
      position: relative;
      color: #000;
      justify-content: center;
      align-items: center;
    }


    
/*whatsapp floating */
.whatsapp-button {
    position: fixed;
    left: 20px; /* Positioned on the left */
    bottom: 20px; /* Stays at the bottom */
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    padding: 15px;
    font-size: 24px;
    text-decoration: none;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    z-index: 9999; /* Ensures it's above other elements */
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.whatsapp-button:hover {
    background-color: #1ebe57;
    text-decoration: none;
}

/*Inquiry button-form css*/
.inquiry-button {
    position: fixed;
    right: 0;
    top: 60%;
    transform: translateY(-50%);
    background-color: #192655;
    color: white;
    padding: 15px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 5px;
    writing-mode: vertical-rl;
    text-align: center;
    cursor: pointer;
    z-index: 9999;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.inquiry-button:hover{
    text-decoration: none;
    color: white;
}
.inquiry-form {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: auto;
    background: white;
    box-shadow: -2px 0 5px rgba(0,0,0,0.5);
    transition: right 0.3s;
    z-index: 10000;
}

.inquiry-form .form-header {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    background: #192655;
    color: white;
    padding: 12px;
    font-weight: bold;
    width: 100%;
    box-sizing: border-box;
}

.close-button {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    outline: none;
}

.close-button:hover {
    color: #ccc;
}

.inquiry-form .form-container {
    padding: 12px;
}

.inquiry-form label {
    font-weight: bold;
    display: block;
    margin-top: 8px;
    color: #333;
    font-size: 14px;
}

.inquiry-form input, .inquiry-form select, .inquiry-form textarea {
    width: 100%;
    padding: 6px;
    margin-top: 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.inquiry-form textarea {
    resize: none;
    height: 60px;
}

.submit-button {
    background-color: #0e1739;
    color: white;
    font-size: 14px;
    padding: 8px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.submit-button:hover {
    background-color: #0d1b38;
}








    .product-section {
      padding: 60px 15px;
    }

   .product-image img {
  width: 100%;
  max-width: 290px;
  border-radius: 20px;
  transition: transform 0.5s ease;
  background-color: transparent !important;
  box-shadow: none; /* removed shadow to hide background edges */
}



    .product-image img:hover {
      transform: scale(1.05);
    }

    .product-description {
      font-size: 0.9rem;
      margin-top: 20px;
      color: #333;
      text-align: justify;
    }

    .styled-spec-table {
      width: 100%;
      max-width: 700px;
      margin: 40px auto;
      font-size: 0.85rem;
      overflow: hidden;
      text-align: left;
      padding-left: 20px;
    }

    .styled-spec-table table {
      width: 100%;
      border-collapse: collapse;
    }

    .styled-spec-table thead th {
      background-color: #1c2660;
      color: #fff;
      padding: 6px 10px;
      font-size: 0.95rem;
      text-align: left;
    }

    .styled-spec-table tbody td {
      background-color: #f7f7f7;
      padding: 6px 10px;
      border-bottom: 1px solid #ddd;
    }

    .styled-spec-table tbody tr:nth-child(even) td {
      background-color: #e9e9e9;
    }

    .styled-spec-table tbody tr:hover td {
      background-color: #cfe2ff;
    }

    @media (max-width: 767px) {
      .section-title {
        font-size: 2rem;
      }

      .section-subtitle {
        font-size: 1rem;
      }

      .product-description {
        font-size: 1rem;
        text-align: justify;
      }

      .styled-spec-table {
        max-width: 100%;
        font-size: 0.8rem;
      }

      .styled-spec-table thead th {
        font-size: 0.9rem;
        padding: 6px 8px;
      }

      .styled-spec-table tbody td {
        padding: 5px 8px;
      }
    }

      .btn-enquiry {
    color: white;
    background-color: #1c2660;
    border: 2px solid #1c2660;
    padding: 5px 16px;
    transition: all 0.4s ease;
    border-radius: 6px;
    display: inline-block;
    margin-top: 15px;
    text-decoration: none;
  }

  .btn-enquiry:hover {
    background-color: white;
    color: #1c2660;
    border-color: #1c2660;
  }





    /*footer*/
    .light-footer {
  background-color: #f8f9fa;
  color: #212529;
  font-family: 'Segoe UI', sans-serif;
  padding: 40px 20px;
  border-top: 1px solid #dee2e6;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1 1 220px;
  margin: 20px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #111;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #0128c5;
}

.footer-col.company .logo {
  max-width: 120px;
  margin-bottom: 12px;
}

.footer-col.company p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #333;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #021fae;
}

.contact-info i {
  margin-right: 8px;
  color: #0216ae;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #dee2e6;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  margin: 0 10px;
  font-size: 14px;
  color: #555;
  text-decoration: none;
}

.footer-links a:hover {
  color: #060365;
}
