/* Workers Section */
.sumedh-workers-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.sumedh-workers-section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #222;
}

.sumedh-workers-section-description {
  font-size: 1.1rem;
  margin-bottom: 50px;
  color: #555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Workers Grid */
.sumedh-workers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
  gap: 20px; /* space between cards */
  margin-top: 30px;
}

.sumedh-worker-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.sumedh-worker-card img {
  width: 100%;
  height: 200px;
  object-fit: cover; /* avoids stretching */
  border-radius: 8px;
  margin-bottom: 15px;
}

.sumedh-worker-card h3 {
  font-size: 1.4rem;
  margin: 15px 0 10px;
  color: #222;
}

.sumedh-worker-card p {
  font-size: 1rem;
  color: #555;
  padding: 0 15px 20px;
}

.sumedh-worker-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Why Choose Us Section */
.sumedh-workers-whyus {
  padding: 80px 20px;
}

.sumedh-workers-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.sumedh-workers-feature-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sumedh-workers-feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #222;
}

.sumedh-workers-feature-card p {
  font-size: 1rem;
  color: #555;
}

.sumedh-workers-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* CTA Section */
.sumedh-workers-cta {
  background-color: #ff6b6b;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.sumedh-workers-cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.sumedh-workers-cta p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.sumedh-workers-cta-btn {
  background-color: #fff;
  color: #ff6b6b;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.sumedh-workers-cta-btn:hover {
  background-color: #ff5252;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .sumedh-workers-grid,
  .sumedh-workers-features-grid {
    grid-template-columns: 1fr; /* only 1 per row */
  }

  .sumedh-worker-card img {
    height: 150px;
  }
}

.loan-service-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.loan-service-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.loan-service-title {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #333;
}

.loan-service-description {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.loan-service-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.loan-service-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 25px;
  width: 320px;
  transition: transform 0.3s ease;
}

.loan-service-card:hover {
  transform: translateY(-8px);
}

.loan-service-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  overflow: hidden;
  border-radius: 50%;
  border: 4px solid #eee;
}

.loan-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loan-service-card-title {
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 10px;
}

.loan-service-highlight {
  font-size: 1.1rem;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: 600;
}

.loan-service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  text-align: left;
}

.loan-service-list li {
  margin-bottom: 10px;
  color: #444;
}

.loan-service-btn {
  display: inline-block;
  padding: 10px 18px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  transition: background 0.3s ease;
}

.loan-service-btn:hover {
  background: #0056b3;
}

.about-gallery {
  padding: 80px 20px;
  background: #f8f8f8;
}

.about-gallery .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.about-gallery .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.about-gallery .section-title p {
  font-size: 16px;
  color: #666;
}

.about-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.about-gallery .gallery-item {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  cursor: pointer;
  background: #fff;
}

.about-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-gallery .gallery-item:hover img {
  transform: scale(1.1);
}

.client-image-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.client-image-container {
  max-width: 400px;
  margin: 0 auto;
  background: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.client-image-photo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #ddd;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.client-image-photo:hover {
  transform: scale(1.05);
}

.client-image-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #222;
}

.client-image-role {
  font-size: 1rem;
  font-weight: 500;
  color: #666;
  margin-bottom: 15px;
}

.client-image-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}
/* Container */
.floating-icons-container {
  position: fixed;
  left: 20px; /* changed from right */
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

/* Buttons */
.floating-icons-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.floating-icons-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

/* Specific platform colors */
.floating-icons-btn.whatsapp {
  background: #25d366;
}

.floating-icons-btn.instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.floating-icons-btn.facebook {
  background: #1877f2;
}

/* Section Container */
.private-fin-loan-section {
  background-color: #ffffff; /* White background */
  color: #000000; /* Black text */
  padding: 40px 20px;
  border: 2px solid #f0f0f0;
  max-width: 700px;
  margin: 40px auto;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

/* Header */
.private-fin-heading {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
  text-align: center;
  color: #000;
}

.private-fin-subheading {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #d60000; /* Red */
  margin-top: 5px;
}

/* Features List */
.private-fin-features {
  margin-top: 30px;
  list-style: none;
  padding: 0;
}

.private-fin-features li {
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  font-size: 16px;
  line-height: 1.5;
}

.private-fin-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #d60000;
  font-weight: bold;
}

/* Contact Section */
.private-fin-contact {
  margin-top: 30px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}

.private-fin-number {
  display: inline-block;
  margin-top: 8px;
  font-size: 24px;
  font-weight: bold;
  color: #d60000;
  text-decoration: none;
}

.private-fin-number:hover {
  text-decoration: underline;
}

/* ===== RO Water Purifier Section ===== */
/* ===== RO Water Purifier Section ===== */
.worker-ro-section {
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
  padding: 80px 20px;
}

.worker-ro-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.worker-ro-content {
  text-align: left;
}

.worker-ro-title {
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 15px;
  font-weight: bold;
  border-left: 5px solid #c40000;
  padding-left: 15px;
}

.worker-ro-description {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 600px;
}

.worker-ro-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.worker-ro-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border-left: 4px solid #c40000;
}

.worker-ro-card h3 {
  color: #222;
  margin-bottom: 8px;
}

.worker-ro-card p {
  color: #555;
  font-size: 0.95rem;
}

.worker-ro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.12);
}

/* Image Styling */
.worker-ro-image img {
  width: 70%;
  border-radius: 15px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 992px) {
  .worker-ro-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .worker-ro-content {
    text-align: left;
  }
  .worker-ro-title {
    border-left: none;
    padding-left: 0;
  }
}

/* ===== Furniture Service Section ===== */
/* ===== Furniture Service Section ===== */
.worker-furni-section {
  background: linear-gradient(135deg, #fefefe, #f7f7f7);
  padding: 80px 20px;
}

.worker-furni-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.worker-furni-content {
  text-align: left;
}

.worker-furni-title {
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 20px;
  font-weight: bold;
  border-left: 6px solid #dc3545; /* warm wood-tone accent */
  padding-left: 15px;
}

.worker-furni-description {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
  max-width: 600px;
}

.worker-furni-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.worker-furni-list li {
  font-size: 1rem;
  color: black;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.worker-furni-list li::before {
  content: "✔";
  color: #dc3545;
  font-weight: bold;
  margin-right: 10px;
}

.worker-furni-btn {
  display: inline-block;
  background: #dc3545; /* wood-tone button */
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  transition: background 0.3s, transform 0.3s;
}

.worker-furni-btn:hover {
  background: #d64453;
  transform: translateY(-3px);
}

.worker-furni-image img {
  width: 70%;
  border-radius: 15px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
  .worker-furni-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .worker-furni-content {
    text-align: left;
  }
  .worker-furni-title {
    border-left: none;
    padding-left: 0;
  }
}

/* ===== Furniture Gallery ===== */
.worker-furni-gallery {
  padding: 60px 20px;
  background: #fff;
}

.worker-furni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.worker-furni-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.worker-furni-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.worker-furni-card h3 {
  margin: 15px 0;
  color: #444;
  font-size: 1.1rem;
}

.worker-furni-card:hover {
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
  .worker-furni-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .worker-furni-grid {
    grid-template-columns: 1fr;
  }
}
/* Our Work Section */
.work-our {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.work-our .work-title {
  font-size: 36px;
  color: #dc3545;
  margin-bottom: 10px;
  font-weight: 700;
}

.work-our .work-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

/* Grid Layout */
.work-our .work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* Work Items */
.work-our .work-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-our .work-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

/* Hover Effects */
.work-our .work-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.work-our .work-item:hover img {
  transform: scale(1.05);
}

/* Optional Neon Glow on Hover */
.work-our .work-item::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 3px solid #00ffff;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.work-our .work-item:hover::after {
  opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .work-our .work-title {
    font-size: 32px;
  }
}

@media (max-width: 992px) {
  .work-our .work-title {
    font-size: 28px;
  }
  .work-our .work-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .work-our .work-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .work-our .work-title {
    font-size: 24px;
  }
  .work-our .work-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .work-our .work-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}
