body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  scroll-behavior: smooth;
  background: #fafafa;
  
  #svgImg {
    position: absolute;
    width: 20px;
    height: 20px;
    pointer-events: none;
    transform: translate(1%, 1%)
  }
}

a {
  text-decoration: none;
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.3;
}

/* Header */
header {
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('images/oil3.jpeg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

header p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 25px;
  margin-top: 25px;
  background: #4caf50;
  color: #fff;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s ease-in-out;
}

.btn:hover {
  background: #388e3c;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* FB button */
.fb-btn {
  background: #1877f2;
}

.fb-btn:hover {
  background: #145dbf;
}

/* TikTok button */
.tiktok-btn {
  background: #000;
}

.tiktok-btn:hover {
  background: #444;
}

/* Section */
section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

section h2 {
  margin-bottom: 40px;
  font-weight: 600;
  text-align: center;
  font-size: 2rem;
  color: #222;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Sinhala font */
.sinhala-text {
  font-family: 'Noto Sans Sinhala', sans-serif;
  line-height: 1.8;
  font-size: 1rem;
}

/* Gallery */
.gallery,
.feedback-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery img,
.feedback-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery img:hover,
.feedback-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

/* Lightbox Overlay */
.lightbox-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}

.lightbox-overlay.show {
  display: flex;
}

.lightbox-overlay img.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease-in-out;
}

.lightbox-overlay .close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}

.lightbox-overlay .close:hover {
  color: #4caf50;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Price Section */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  justify-content: center;
  max-width: 900px;
  margin: auto;
}

.price-grid .card {
  text-align: center;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}


.price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #4caf50;
}


.delivery-note {
  margin-top: 30px;
  font-size: 1rem;
  color: #555;
  text-align: center;
}

/* Footer */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  margin-top: 40px;
}