
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(135deg, #f9f9f9 0%, #f9f9f9 100%);
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
}
/* ===== Preloader Styles ===== */
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #000; /* fallback background */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  overflow: hidden;
}

#preloader video {
  max-width: 100%;
  max-height: 100%;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s;
}

/* Header Styles */
header {
  background: linear-gradient(to right, #222, #444);
  color: white;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
  margin-bottom: 100px;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: cover;
}

.product-title {
  margin: 0;
  font-size: 2.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  animation: fadeIn 1s ease-out;
}

.product-subtitle {
  font-size: 1rem;
  margin-top: 8px;
  opacity: 0.9;
  font-weight: 300;
  animation: fadeIn 1.2s ease-out;
}

/* Main Content */

.product-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  padding: 25px;
  width: 350px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
  border-top: 4px solid #ff9800;
}

.product-card:nth-child(1) {
  animation-delay: 0.2s;
}

.product-card:nth-child(2) {
  animation-delay: 0.4s;
}

.product-card:nth-child(3) {
  animation-delay: 0.6s;
}

.product-card:nth-child(4) {
  animation-delay: 0.8s;
}

.product-card:nth-child(5) {
  animation-delay: 1s;
}

.product-card:nth-child(6) {
  animation-delay: 1.2s;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.card-header h2 {
  font-size: 1.4rem;
  color: #e65100;
  margin: 0;
}

.card-header .icon {
  background: #fff3e0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e65100;
}

.image-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  height: 260px;
  border: 1px solid #ffe0b2;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures full image shows properly */
}

.card-content ul {
  list-style: none;
  margin-bottom: 25px;
}

.card-content li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.card-content i {
  margin-right: 10px;
  color: #e65100;
  width: 20px;
}

.inquiry-btn {
  background: #ff9800;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  width: 100%;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.inquiry-btn:hover {
  background: #f57c00;
  transform: translateY(-2px);
}

/* Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 60px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .product-section {
    gap: 30px;
  }
  
  .product-card {
    width: 100%;
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .product-title {
    font-size: 2rem;
  }
  
  .product-nav ul {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .product-title {
    font-size: 1.8rem;
  }
  
  .product-card {
    padding: 20px;
  }
  
  .card-header h2 {
    font-size: 1.2rem;
  }
}
/* ✅ Call Floating Button */
.call-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 65px; /* Set above WhatsApp */
  right: 6px;
  z-index: 1000;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.call-float img {
  width: 81%;
  height: 81%;
  border-radius: 20px; /* Optional for rounded effect like your image */
  background: #ffffff;
}

.call-float:hover {
  transform: scale(1.2);
}
/* ✅ WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 11px;
  right: 7px;
  z-index: 1000;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 85%;
  height: 85%;
}

.whatsapp-float:hover {
  transform: scale(1.2);
}
