/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', 'Trebuchet MS';
}

/* Body Background */
body {
  background-color: transparent;
}
/* Fullscreen Video Background */
.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.4; /* adjust transparency */
}

/* Make body and main container transparent */
body {
  margin: 100;
  font-family: 'Trebuchet MS';
  background: transparent;
}

/* Optional: semi-transparent card */
.card-container {
  background: rgba(255, 255, 255, 0.85);
  max-width: 400px;
  margin: 30px auto;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}


body {
  background-color: rgb(245, 247, 247);
  color: #333;
  padding: 20px;
}

/* Card Container */
.card-container {
  text-align: center;
  padding: 20px;
  background-color: transparent;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* Profile Logo */
.profile-logo img {
  width: auto;            /* Auto width to maintain aspect ratio */
  max-width: 110%;       /* Responsive width */
  height: auto;           /* Auto height to maintain aspect ratio */
  max-height: 150px;     /* Limit height for better layout */
  border-radius: 0;         /* No rounding – square shape */
  object-fit: cover;
  border: none;             /* Removes the border */
}

/* Titles */
h1 {
  margin: 5px 0;
  font-size: 1.4rem;
  color: #222;
}
.title {
  font-size: 1.0rem;
}
.title .small {
  font-size: 0.9rem;
  color: #292525;
}

/* Contact Buttons */
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 15px 0;
}

.btn {
  width: 130px;              /* Fixed width for 2/2 grid layout */
  height: 50px;             /* Square shape */
  padding: 12px;
  font-size: 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  color: #ffffff;
  text-align: center;
  transition: 0.1s;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}



/* Optional Hover Color */
.btn:hover {
  background-color: #555;
}

/* Optional: Individual Colors */
.btn.call     { background-color: #183f21; } /* Green */
.btn.whatsapp { background-color: #26dd69; } /* WhatsApp Green */
.btn.mail     { background-color: #007bff; } /* Blue */
.btn.website  { background-color: #6f42c1; } /* Purple */
.btn.location { background-color: #ff0000; } /* Orange */
.btn.pdf      { background-color: #dc3545; } /* Red */
.btn.gstpdf   { background-color: #17a2b8; } /* Teal */
/* Info */
.info p {
  margin: 5px 0;
  font-size: 0.95rem;
}

/* Share Box */
.share-box {
  margin: 20px 0;
}
.share-box input {
  padding: 8px;
  width: 120px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.share-box button {
  padding: 8px 12px;
  background: #00bcd4;
  color: white;
  border: none;
  border-radius: 6px;
  margin-left: 5px;
  cursor: pointer;
}

/* ===== Product Section ===== */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.product-card {
  width: 100%;
  max-width: 240px;
  /* Removed fixed height */
  padding: 20px;
  margin: 10px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  box-sizing: border-box;
}

.product-card:hover {
  transform: scale(1.02);
}

.product-card img {
  width: 100%;
  height: auto; /* ✅ Image size determines card height */
  max-height: 180px; /* Optional: cap very tall images */
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 20px;
}

.product-card h4 {
  font-size: 1.05rem;
  margin: 6px 0 4px;
  color: #222;
  text-align: center;
}

.shop-section h2 {
  font-size: 2rem;
  color: #002555;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 700;
  position: relative;
}

.shop-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #25d366; /* WhatsApp green as accent */
  margin: 10px auto 0;
  border-radius: 2px;
}





/* WhatsApp Inquiry Button - Square Style */
.shop-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 16px;
  background-color: #25D366;
  color: white;
  text-decoration: none;
  border-radius: 4px; /* Changed from 20px to 4px for a square/boxy feel */
  font-weight: 500;
  font-size: 0.8rem;
  min-width: 160px;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.shop-btn:hover {
  background-color: #006168;
  transform: translateY(-2px); /* Optional hover effect */
}


/* Bottom Navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fcfcfc;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  z-index: 1000;
}

.bottom-nav a {
  text-decoration: none;
  color: #444;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.bottom-nav a:hover {
  color: #00bcd4;
}
/* ===== Our Services Section ===== */
.services {
  padding: 60px 20px;
  background-color: transparent;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #095163;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.service-card {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  width: 230px;
  padding: 20px 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  font-size: 1rem;
  font-weight: 500;
  color: #515353;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 188, 212, 0.2);
}
@media (max-width: 600px) {
  .service-card {
    width: 100%;
  }
}
.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  object-fit: cover;
  opacity: 0.3; /* adjust transparency */
}

.location-btn {
      display: inline-block;
      padding: 10px 20px;
      background-color: #f53939; /* Google Blue */
      color: #fff;
      text-decoration: none;
      border: none;
      border-radius: 15px;
      font-size: 16px;
      font-weight: bold;
      transition: background-color 0.3s ease;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .location-btn:hover {
      background-color: #d63333;
    }

    .about-us {
  background-color: #ffffff00; /* Light background */
  color: #000e07; /* Main text color */
  font-family: "Trebuchet MS", sans-serif;
  padding: 60px 40px;
  line-height: 1.8;
  border-radius: 12px;
  max-width: 1000px;
  margin: 40px auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.about-us h1 {
  font-size: 36px;
  color: #095163;;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 1px;
}

.about-us h2 {
  font-size: 24px;
  color: #002e53; /* Dark blue */
  margin-top: 40px;
  margin-bottom: 10px;
}

.about-us p {
  font-size: 16px;
  color: #023b23;
  margin-bottom: 20px;
  text-align: justify;
}

.about-us p:last-child {
  margin-bottom: 0;
}

.download-btn-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-end; /* Align to right */
  padding: 0 20px 40px 0;     /* Bottom spacing before footer */
}

.pdf-button-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}

.pdf-card-btn {
  background-color: #ffffff;
  border: 2px solid #007bff;
  border-radius: 15px;
  width: 300px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  color: #007bff;
  text-decoration: none;
  text-align: center;
  font-family: "Trebuchet MS", sans-serif;
  font-size: 18px;
  font-weight: bold;
  transition: 0.3s;
}

.pdf-card-btn:hover {
  background-color: #007bff;
  color: #fff;
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.pdf-card-btn span {
  display: block;
  font-size: 14px;
  font-weight: normal;
  margin-top: 6px;
}

.company-title {
  font-size: 10px;
  font-weight: bold;
  font-family: "Trebuchet MS", sans-serif;
}

.custom-card {
  width: 1000px; /* or 100%, 100vw, etc. */
}




.btn.pdf {
  display: inline-block;
  padding: 10px 18px;
  font-size: 15px;
  font-family: "Trebuchet MS", sans-serif;
  text-decoration: none;
  color: #fff;
  background-color: #00bcd4;
  border: none;
  border-radius: 6px;
  margin: 6px;
  transition: background-color 0.3s ease;
}

.btn.pdf:hover {
  background-color: #0097a7;
}

.btn.gstpdf {
  display: inline-block;
  padding: 10px 18px;
  font-size: 15px;
  font-family: "Trebuchet MS", sans-serif;
  text-decoration: none;
  color: #fff;
  background-color: #919292;
  border: none;
  border-radius: 6px;
  margin: 6px;
  transition: background-color 0.3s ease;
}

.btn.pdf:hover {
  background-color: #0097a7;
}

.services h3 {
    color: #82ca85; /* Teal blue for main category */
    margin-bottom: 8px;
  }

.services h4 {
  color: #616161;
  text-align: left;
  margin-left: 15px;
  margin-top: 4px;
}




.chemical {
  background-color: #d9e4ff; /* Light background for contrast */
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  margin: 10px auto;
  max-width: 600px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.chemical h3 {
  font-size: 17px;
  font-weight: 700;
  color: #aa3e00; /* Dark blue for pharma look */
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .chemical h3 {
    font-size: 18px;
  }

  .chemical {
    padding: 20px 10px;
  }
}




.video-card {
  width: 100%;
  max-width: 140px;
  padding: 20px;
  margin: 10px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  box-sizing: border-box;
}

.video-card:hover {
  transform: scale(1.02);
}

.video-card video {
  display: block;                /* makes video respect margin auto */
  margin:  auto;                /* center horizontally */
  width: 100%;                   /* responsive width */
  height: auto;
  max-height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

.video-card h4 {
  font-size: 1.05rem;
  margin: 6px 0 4px;
  color: #222;
  text-align: center;
}

.video-header {
  font-size: 14px;
  font-weight: bold;
  color: #2a448b;
  text-align: center;
  margin: 40px 0 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.video-header::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #ff7a00;
  margin: 10px auto 0;
  border-radius: 2px;
}

.scroll-buttons {
  position: fixed;
  right: 20px;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.scroll-buttons button {
  background-color: #ffffff;
  color: #000000;
  border: none;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 25px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: background 0.3s;
}

.scroll-buttons button:hover {
  background-color: #555;
}
