html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/*hero-section*/
.hero {
  position: relative;
  display: flex;
  align-items: flex-end; /* 👈 Push content toward the bottom */
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 80px 20px 100px;  /* bottom padding for spacing */
  margin-top: 0px;
  min-height: 100vh;
  box-sizing: border-box;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero-content h1, .hero-content p {
  color: #fff;
}

.cta-button {
  display: inline-block;
  background-color: #00b894;         /* Teal green */
  color: rgb(255, 0, 0);
  padding: 12px 24px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  margin: 20px auto;
  text-align: center;
}

.cta-button:hover {
  background-color: #55efc4;         /* Lighter green on hover */
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}


/* Optional animation class */
.fade-slide {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
  animation-delay: 0.2s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== SERVICES SECTION ========== */
.services {
  padding: 80px 20px;
  background: linear-gradient(135deg, #e3ffe7, #d9f8fc);
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

/* === SECTION TITLE === */
.services h2 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 900;
  background: linear-gradient(to right, #0d324d, #7f5a83);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

/* === GRID === */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* === SERVICE CARD === */
.service-card {
  background: linear-gradient(145deg, #ffffff, #d3f4ff);
  border-radius: 20px;
  padding: 35px 25px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: none;
  transform: none;
  color: #2d3436;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  cursor: default;
}


.service-card:hover {
  transform: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  background: linear-gradient(145deg, #ffffff, #d3f4ff);
}

/* ✨ Light shimmer remains for style */
.service-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, transparent 80%);
  animation: shimmer 4s infinite linear;
  opacity: 0.2;
}

@keyframes shimmer {
  0% {
    transform: rotate(0deg) translateX(0);
  }
  100% {
    transform: rotate(360deg) translateX(20%);
  }
}

/* === HEADINGS INSIDE CARDS === */
.service-card h3 {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(to right, #2f3542, #57606f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

/* === PARAGRAPH TEXT === */
.service-card p {
  font-size: 18px;
  font-weight: 500;
  color: #34495e;
  line-height: 1.6;
}

/* ========== WHY CHOOSE US ========== */
.why-choose {
  background: linear-gradient(135deg, #f0ffff, #eaf7ff);
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  transition: background 0.5s ease-in-out;
}

.why-choose h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 60px;
  background: linear-gradient(90deg, #00b894, #0984e3, #d63031);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: pigmentFlow 4s ease-in-out infinite alternate;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

@keyframes pigmentFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.why-choose ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.why-choose li {
  position: relative;
  background: #ffffff;
  padding: 24px 36px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d3436;
  max-width: 800px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.4s ease;
  border-left: 6px solid transparent;
  cursor: pointer;
}

.why-choose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 0%;
  width: 6px;
  background: linear-gradient(to bottom, #00cec9, #00b894, #6c5ce7);
  transition: height 0.5s ease-in-out;
  border-radius: 0 3px 3px 0;
}

.why-choose li:hover {
  transform: translateY(-6px) scale(1.02);
  background: #eafffa;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  color: #000;
}

.why-choose li:hover::before {
  height: 100%;
  background: linear-gradient(to bottom, #00cec9, #6c5ce7);
}

/* Responsive */
@media (max-width: 768px) {
  .why-choose h2 {
    font-size: 2.2rem;
  }
  .why-choose li {
    font-size: 1.1rem;
    padding: 20px;
  }
}

/* ========== CITIES COVERED ========== */
.cities-covered {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #ccc0e9, #67a5b4);
  font-family: 'Poppins', sans-serif;
}

.cities-covered h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 30px;
  background: linear-gradient(to right, #ffeaa7, #fab1a0, #ff7675);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textPulse 3s infinite alternate;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes textPulse {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fab1a0;
  }
  to {
    text-shadow: 0 0 25px #ff7675, 0 0 35px #ffeaa7;
  }
}

.city-links {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.city-links a {
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 17px;
  background: linear-gradient(to right, #00b894, #00cec9);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.5s ease;
  position: relative;
  overflow: hidden;
}

.city-links a::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 10%, transparent 80%);
  transition: opacity 0.5s ease;
  opacity: 0;
  z-index: 0;
}

.city-links a:hover::before {
  opacity: 1;
  animation: shimmerMove 2s infinite linear;
}

@keyframes shimmerMove {
  0% {
    transform: translateX(0) rotate(45deg);
  }
  100% {
    transform: translateX(100%) rotate(45deg);
  }
}

.city-links a:hover {
  transform: scale(1.07);
  background: linear-gradient(to right, #0984e3, #6c5ce7);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  color: #fff;
  z-index: 1;
}


/* ========== ABOUT US SECTION ========== */
.about-us {
  padding: 80px 20px;
  text-align: center;
  background: #cad49d;
}
.about-us h2 {
  font-size: 34px;
  color: #0a3d62;
  margin-bottom: 20px;
}
.about-us p {
  max-width: 800px;
  margin: auto;
  color: #636e72;
  font-size: 18px;
  line-height: 1.8;
  animation: fadeInText 1.2s ease;
}
@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ========== HOW IT WORKS ========== */
.how-it-works {
  background: linear-gradient(to bottom, #4d9b8a, #83bde0ff);
  padding: 80px 20px;
  text-align: center;
}
.how-it-works h2 {
  font-size: 34px;
  color: #000000;
  margin-bottom: 30px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}
.step {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  width: 260px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: all 0.3s ease-in-out;
  position: relative;
}
.step::before {
  content: '';
  width: 50px;
  height: 4px;
  background: linear-gradient(to right, #00cec9, #0984e3);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
}
.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
}
.step h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0984e3;
}
.step p {
  font-size: 15px;
  color: #636e72;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: linear-gradient(to right, #e0f7fa, #f1f8ff);
  padding: 80px 20px;
  text-align: center;
}
.testimonials h2 {
  font-size: 34px;
  margin-bottom: 30px;
  color: #0a3d62;
}
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.testimonial {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  width: 300px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}
.testimonial:hover {
  transform: translateY(-8px);
}
.testimonial p {
  font-style: italic;
  color: #2d3436;
  font-size: 16px;
}
.testimonial strong {
  display: block;
  margin-top: 15px;
  color: #0984e3;
  font-size: 16px;
}
/* === Part-specific style: Services → Contact CTA === */

/* Container and layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  font-weight: 300;
  font-family: 'Poppins', sans-serif;
  color: #000e35;
}
h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #004e9c;
  text-align: center;
}

.card-section {
  background: #f9f9f9;
  padding: 60px 20px;
}

.card-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.info-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.33% - 30px);
  min-width: 300px;
  position: relative;
  text-align: center;
  padding-bottom: 30px;
}

.info-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: #27ae60;
  color: #fff;
  border-radius: 50%;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 180px;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 2;
}

.info-card h3 {
  margin-top: 50px;
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
}

.info-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  padding: 0 20px;
  margin-top: 10px;
}

/* ========== SERVICES DETAILED STYLING ========== */
.services-detailed {
  padding: 80px 30px;
  background: linear-gradient(135deg, #e0eafc, #cfdef3); /* Smooth premium background */
  position: relative;
  z-index: 1;
}

.services-detailed::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent 70%);
  opacity: 0.4;
  z-index: 0;
}

.services-detailed .service-detail-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

/* Premium Card Design */
.service-detail-list .detail {
  background: linear-gradient(135deg, #ffffff, #f4f4f4);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease-in-out;
  border: 1px solid #e0e0e0;
}

.service-detail-list .detail:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #ffffff, #e9f7ef);
  border-color: #b2f2bb;
}

/* Heading */
.service-detail-list .detail h3 {
  font-size: 1.5rem;
  color: #1e8449;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

/* Paragraph */
.service-detail-list .detail p {
  font-size: 1.05rem;
  color: #000000;
  line-height: 1.7;
}

/* Add pigment glow effect */
.service-detail-list .detail::before {
  content: "";
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  background: linear-gradient(45deg, #b2f2bb, #a2d9ce, #f9e79f, #fadbd8);
  background-size: 400% 400%;
  filter: blur(25px);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: -1;
  border-radius: 20px;
}

.service-detail-list .detail:hover::before {
  opacity: 0.6;
  animation: pigmentGlow 6s ease infinite;
}

@keyframes pigmentGlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


/* What We Buy grid */
.what-we-buy .buy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.what-we-buy .item {
  background-color: var(--bg-color, #eee);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.2s ease;
}
.what-we-buy .item:hover {
  transform: translateY(-5px);
}
.what-we-buy .item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.what-we-buy .item p {
  font-size: 1rem;
  color: #ffffff;
}

/* ========== COMPLIANCE SECTION ========== */
.compliance {
  background: linear-gradient(135deg, #f0f4f8, #eaf6fb);
  padding: 60px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.compliance::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at top left, rgba(173, 216, 230, 0.3), transparent 70%);
  z-index: -1;
  filter: blur(35px);
  opacity: 0.6;
}

/* Compliance List Styling */
.compliance ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Each Compliance Item */
.compliance li {
  background: #ffffff;
  padding: 15px 20px;
  border-radius: 15px;
  font-size: 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(41, 128, 185, 0.1);
  transition: transform 0.3s ease;
  border-left: 4px solid #2980b9;
}

.compliance li:hover {
  transform: translateX(8px);
  background: #f9fcff;
}

/* Strong Highlights */
.compliance strong {
  color: #2980b9;
  font-weight: 600;
}

/* Optional: Icon or Bullet Style */
.compliance li::before {
  content: "✔️";
  color: #27ae60;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
/* ========== GALLERY PREVIEW ========== */
.gallery-preview {
  padding: 60px 30px;
  background: linear-gradient(135deg, #fdfcfb, #e2d1c3);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}

.gallery-preview .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

/* Gallery Image Card */
.gallery-grid img {
  width: 100%;
  height: 220px;
  border-radius: 16px;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* CTA Button Styling */
.gallery-preview a.cta-button {
  display: inline-block;
  margin-top: 2rem;
  background: linear-gradient(135deg, #27ae60, #219150);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
  transition: all 0.3s ease-in-out;
}

.gallery-preview a.cta-button:hover {
  background: linear-gradient(135deg, #1e8449, #1a6e3c);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(39, 174, 96, 0.5);
}
/* ========== BLOG RESOURCES SECTION ========== */
.blog-resources {
  padding: 60px 30px;
  background: linear-gradient(135deg, #fef9f9, #e8f0f9);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 1;
}

.blog-resources .blog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 30px;
}

/* Blog Card */
.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 35px rgba(41, 128, 185, 0.2);
}

/* Image */
.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

/* Text */
.blog-card h3 {
  font-size: 1.4rem;
  margin: 1rem 1rem 0.5rem;
  color: #2c3e50;
  font-weight: 600;
}

.blog-card p {
  font-size: 1.05rem;
  color: #555;
  margin: 0 1rem 1.2rem;
  line-height: 1.6;
  flex-grow: 1;
}

/* CTA Button */
.blog-resources a.cta-button {
  display: inline-block;
  margin-top: 2rem;
  background: linear-gradient(135deg, #2980b9, #2573a6);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(41, 128, 185, 0.3);
  transition: all 0.3s ease;
}

.blog-resources a.cta-button:hover {
  background: linear-gradient(135deg, #1c5980, #154c6a);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(41, 128, 185, 0.45);
}
/* ========== FAQ Styling ========== */
.faqs .faq-item {
  margin-bottom: 2rem;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.faqs .faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.faqs .faq-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #b03a2e;
}
.faqs .faq-item p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}

/* ========== Contact Call-to-Action ========== */
.contact-cta {
  text-align: center;
  background: linear-gradient(145deg, #e8f8f5, #d1f2eb);
  padding: 3rem 2rem;
  border-radius: 16px;
  margin: 3rem 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: background 0.4s ease-in-out;
}
.contact-cta h2 {
  color: #229954;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.contact-cta p {
  margin: 1rem 0 2rem;
  font-size: 1.2rem;
  color: #2c3e50;
}
.contact-cta a.cta-button {
  background-color: #27ae60;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
  transition: all 0.3s ease;
}
.contact-cta a.cta-button:hover {
  background-color: #1e8449;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(39, 174, 96, 0.4);
}

.contact-links {
  margin-top: 2rem;
}
.contact-links a {
  margin: 0 1.2rem;
  font-size: 1.05rem;
  color: #2980b9;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-links a:hover {
  text-decoration: underline;
  color: #1f618d;
}




/* ========== FOOTER ========== */
.footer {
  background-color: #0f0f0f;
  color: #fff;
  padding: 3rem 1rem 1rem;
  margin-top: auto;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1 1 300px;
  padding: 1rem;
}

.footer-column h3 {
  font-size: 1.2rem;
  border-bottom: 3px solid #00cec9;
  display: inline-block;
  margin-bottom: 1rem;
  padding-bottom: 0.3rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-column ul li a:hover {
  color: #00cec9;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #222;
  font-size: 0.9rem;
  color: #aaa;
}
/* ========== FLOATING BUTTONS ========== */
.floating-buttons {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.floating-buttons a {
  width: 58px;
  height: 58px;
  background: #25d366;
  color: white;
  font-size: 26px;
  text-align: center;
  line-height: 58px;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, background 0.3s ease;
}
.floating-buttons .call-now {
  background: #0984e3;
}
.floating-buttons a:hover {
  transform: scale(1.15);
}

/* ========== DROPDOWN STYLES ========== */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropbtn {
  font-weight: 600;
  padding: 10px;
  cursor: pointer;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 200px;
  max-height: 300px;
  overflow-y: hidden;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 10000;
  border-radius: 8px;
  padding: 10px 0;
  transition: all 0.3s ease-in-out;
}
.dropdown-content a {
  padding: 10px 15px;
  display: block;
  color: #2d3436;
  font-weight: 500;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.dropdown-content a:hover {
  background-color: #f1f1f1;
}
.dropdown-content.show {
  display: block;
}



/* ========== KSPC Authorities ========== */

#scrap-section {
  padding: 60px 20px;
  background-color: #fdfdfd;
}

.scrap-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.scrap-card {
  flex: 1 1 500px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.scrap-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.scrap-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

