/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

/* 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: Arial, sans-serif;
  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);
}

header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px;
  text-align: center;
  z-index: 1000;
}

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: 120px;
  height: 80px;
  border-radius: 0; /* Removes rounding for a square shape */
  object-fit: cover;
  border: 3px solid #00bcd4;
}

/* Titles */
h1 {
  margin: 10px 0;
  font-size: 1.8rem;
  color: #222;
}
.title {
  font-size: 1.1rem;
}
.title .small {
  font-size: 0.9rem;
  color: #777;
}

/* Contact Buttons */
.contact-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0;
}

.btn {
  padding: 10px 16px;
  font-size: 1rem;
  border-radius: 25px;
  text-decoration: none;
  color: #ffffff;
  min-width: 130px;
  text-align: center;
  transition: 0.3s;
  font-weight: bold;
}

.call { background-color: #28a745; }
.whatsapp { background-color: #25D366; }
.mail { background-color: #007bff; }
.website { background-color: #6f42c1; }

.btn:hover {
  opacity: 0.9;
}

/* 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 ===== */
.shop-section {
  padding: 20px 0;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.product-card {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  width: 200px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 200px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.product-card h4 {
  font-size: 1rem;
  margin: 10px 0;
}

/* WhatsApp Inquiry Button */
.shop-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 14px;
  background-color: #25D366;
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.95rem;
  min-width: 160px;
  text-align: center;
  transition: 0.3s ease;
}

.shop-btn:hover {
  background-color: #1ebe5d;
}

/* Bottom Navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  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: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.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: 600px;
  padding: 40px 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  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 */
}
