/* General layout and background */
.main-row-div {
  background: #f0f2f5;
  /* Soft gray background */
  padding: 20px 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /* Ensure column layout */
  justify-content: flex-start;
  /* Allow content to stack naturally */
  align-items: center;
  /* Keep centering */
  padding-bottom: 80px;
  /* Add padding to prevent overlap with fixed nav */
}

.div-center-align {
  display: flex;
  flex-direction: column;
  gap: 30px;
  /* Space between Home and About sections */
  max-width: 400px;
  /* Restrict maximum width for centering */
  width: 100%;
  /* Ensure it takes available space */
  margin: 0 auto;
  /* Center the container horizontally */
  flex-grow: 1;
  /* Allow it to grow and push content up */
}



/* Home Section Styling */
.home-div {
  background: #e0e5ec;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 10px 10px 20px #d1d9e6, -10px -10px 20px #ffffff;
  transition: transform 0.3s ease;
  max-width: 400px;
  width: 100%;
}

.home-div:hover {
  transform: translateY(-5px);
}

.home-div-white-div {
  text-align: center;
  padding: 20px;
}

.logo {
  height: 100px;
  /* border-radius: 50%; */
  /* object-fit: cover; */
  margin-bottom: 15px;
  /* box-shadow: 5px 5px 10px #d1d9e6, -5px -5px 10px #ffffff; */
}

.business-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.home-name-designation {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 15px;
}

.home-name-designation span {
  display: block;
  font-weight: 500;
}

.ratings-ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  justify-content: center;
}

.ratings-ul li {
  color: #f39c12;
  margin: 0 3px;
  font-size: 1.2rem;
}

.home-cta-btns-ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.home-cta-btns-ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #e0e5ec;
  border-radius: 15px;
  box-shadow: 5px 5px 10px #d1d9e6, -5px -5px 10px #ffffff;
  text-decoration: none;
  color: #333;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.home-cta-btns-ul li a:hover {
  background: #d1d9e6;
  box-shadow: inset 5px 5px 10px #c0c8d4, inset -5px -5px 10px #f2f6ff;
  transform: translateY(-2px);
}

.home-cta-btns-ul li a span {
  display: none;
}

.counter-number {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
  background: #e0e5ec;
  border-radius: 10px;
  padding: 8px 12px;
  box-shadow: inset 3px 3px 6px #d1d9e6, inset -3px -3px 6px #ffffff;
}

.home-div-content-div {
  padding: 20px;
  background: #e0e5ec;
  border-radius: 15px;
  box-shadow: inset 5px 5px 10px #d1d9e6, inset -5px -5px 10px #ffffff;
}

.home-div-content-div h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
  gap: 10px;
  background: #e0e5ec;
  border-radius: 10px;
  padding: 10px;

}

.shop-now-link {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 15px;
  box-shadow: 6px 6px 12px #d3dbe2, -6px -6px 12px #ffffff;
  /* Enhanced Neumorphic shadow */
  transition: all 0.3s ease;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  /* Initial gradient */
  text-decoration: none;
  text-align: center;
  /* width: 100%; */
  max-width: 200px;
  /* Controlled width */
  animation: colorFadeCycle 18s infinite;
  /* Slower, smoother animation with 18-second cycle */
  font-size: 0.8rem;
}

.shop-now-link:hover {
  background: linear-gradient(135deg, #c0392b, #a93226);
  /* Darker gradient on hover */
  box-shadow: inset 2px 2px 5px #d3dbe2, inset -2px -2px 5px #ffffff;
  /* Inner shadow */
  animation-play-state: paused;
  /* Pause animation on hover */
  opacity: 1;
  /* Full opacity on hover to stop disappearing */
}

.shop-now-link i {
  margin-right: 8px;
}

.shop-now-link:focus {
  outline: none;
  box-shadow: 4px 4px 8px #d3dbe2, -4px -4px 8px #ffffff;
  /* Slight outer focus effect */
}

/* Keyframes for smoother gradient animation with fade effect */
@keyframes colorFadeCycle {
  0% {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    /* Red to dark red */
    opacity: 1;
    /* Fully visible */
  }

  20% {
    background: linear-gradient(135deg, #e74c3c 50%, #3498db 50%);
    /* Red blending into blue */
    opacity: 0.9;
    /* Slight fade */
  }

  40% {
    background: linear-gradient(135deg, #3498db 50%, #2ecc71 50%);
    /* Blue blending into green */
    opacity: 0.8;
    /* More fade */
  }

  60% {
    background: linear-gradient(135deg, #2ecc71 50%, #f1c40f 50%);
    /* Green blending into yellow */
    opacity: 0.7;
    /* Further fade */
  }

  80% {
    background: linear-gradient(135deg, #f1c40f 50%, #c0392b 50%);
    /* Yellow blending back to red */
    opacity: 0.6;
    /* Maximum fade */
  }

  90% {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    /* Back to red */
    opacity: 0.8;
    /* Start fading back */
  }

  100% {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    /* Full red */
    opacity: 1;
    /* Fully visible again */
  }
}

.contact-points-ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-points-ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #333;
}

.contact-points-ul li a {
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  width: 100%;
}

.contact-points-ul li a:hover {
  color: #007bff;
}

.icon-box {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0e5ec;
  border-radius: 10px;
  box-shadow: 3px 3px 6px #d1d9e6, -3px -3px 6px #ffffff;
  margin-right: 10px;
}

.icon-box i {
  font-size: 1.2rem;
  color: #007bff;
}

.whatsapps-share-div {
  margin: 20px 0;
}

.form-inline {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.form-inline .input-group {
  background: #e0e5ec;
  border-radius: 10px;
  box-shadow: 5px 5px 10px #d1d9e6, -5px -5px 10px #ffffff;
}

.form-inline .form-control {
  border: none;
  background: transparent;
  box-shadow: inset 3px 3px 6px #d1d9e6, inset -3px -3px 6px #ffffff;
  border-radius: 10px;
  padding: 10px;
}

.whatsapp-share-btn {
  background: #25d366 !important;
  border: none !important;
  border-radius: 10px !important;
  box-shadow: 5px 5px 10px #d1d9e6, -5px -5px 10px #ffffff !important;
  transition: all 0.3s ease;
}

.whatsapp-share-btn:hover {
  background: #20b958 !important;
  box-shadow: inset 3px 3px 6px #d1d9e6, inset -3px -3px 6px #ffffff !important;
}

.home-2-btns {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.btn-primary {
  background: #007bff;
  border: none;
  border-radius: 10px;
  box-shadow: 5px 5px 10px #d1d9e6, -5px -5px 10px #ffffff;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #0056b3;
  box-shadow: inset 3px 3px 6px #d1d9e6, inset -3px -3px 6px #ffffff;
}

.theme-share-option .dropdown-menu {
  background: #e0e5ec;
  border-radius: 10px;
  box-shadow: 5px 5px 10px #d1d9e6, -5px -5px 10px #ffffff;
}

.dropdown-item {
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;

  .about-div h2 i {
    color: #007bff;
    font-size: 1.3rem;
  }

  background: #d1d9e6;
}

.social-ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-ul li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0e5ec;
  border-radius: 50%;
  box-shadow: 3px 3px 6px #d1d9e6, -3px -3px 6px #ffffff;
  color: #333;
  transition: all 0.3s ease;
}

.social-ul li a:hover {
  background: #d1d9e6;
  box-shadow: inset 3px 3px 6px #d1d9e6, inset -3px -3px 6px #ffffff;
}

.social-ul li a i.active-i {
  color: #007bff;
}

.social-ul li a[style*="cursor: not-allowed"] i {
  color: #ccc;
}

/* About Section Styling */
.about-div {
  background: #e0e5ec;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 10px 10px 20px #d1d9e6, -10px -10px 20px #ffffff;
  transition: transform 0.3s ease;
  max-width: 400px;
  width: 100%;
}

.about-div:hover {
  transform: translateY(-5px);
}

.about-div h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;

  text-align: center;
  gap: 10px;
  background: #e0e5ec;
  border-radius: 10px;
  padding: 10px;
  box-shadow: inset 3px 3px 6px #d1d9e6, inset -3px -3px 6px #ffffff;
}

.about-content {
  padding: 15px;
  background: #e0e5ec;
  border-radius: 15px;
  box-shadow: inset 5px 5px 10px #d1d9e6, inset -5px -5px 10px #ffffff;
}

.about-content h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  text-align: center;
}

.about-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

.about-content p.about-gst {
  font-size: 0.9rem;
  color: #333;
  font-weight: 600;
  background: #e0e5ec;
  border-radius: 10px;
  padding: 8px 12px;
  box-shadow: 3px 3px 6px #d1d9e6, -3px -3px 6px #ffffff;
  text-align: center;
}

.about-content p.about-gst b {
  color: #007bff;
}
/* Products Section Styling */
.section#products,
.section#services {
  background: #f0f2f5;
  /* Soft gray background */
  padding: 20px 0;
  width: 100%;
  max-width: 800px;
  /* Increased width for grid layout */
  margin: 0 auto;
  /* Center the section */
}

.section#products h2,
.section#services h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
  gap: 10px;
  background: #e0e5ec;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 5px 5px 10px #d1d9e6, -5px -5px 10px #ffffff;
  /* Neumorphic shadow */
  text-align: center;
  margin: 0 auto 20px;
  /* Center and add margin */
  max-width: 400px;
}

.products-slider,
.services-slider {
  position: relative;
  overflow: hidden;
  max-width: 400px; /* Adjust based on card width */
  margin: 0 auto;
  padding: 0 20px;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.product-card,
.service-card {
  background: #e0e5ec;
  border-radius: 20px;
  min-height: 320px; /* fixed height */
  padding: 20px;
  box-shadow: 10px 10px 20px #d1d9e6, -10px -10px 20px #ffffff;
  /* Neumorphic shadow */
  transition: transform 0.3s ease;
  flex: 0 0 100%;
  box-sizing: border-box;
}

.product-card:hover,
.service-card:hover {
  transform: translateY(-5px);
  /* Subtle lift effect on hover */
}

.product-card h3,
.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  text-align: center;
}

.product-card img,
.service-card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 5px 5px 10px #d1d9e6, -5px -5px 10px #ffffff;
  /* Neumorphic shadow */
  margin-bottom: 15px;
}

.product-details,
.service-details {
  padding: 15px;
  background: #e0e5ec;
  border-radius: 15px;
  box-shadow: inset 5px 5px 10px #d1d9e6, inset -5px -5px 10px #ffffff;
  /* Inner Neumorphic shadow */
}

/* truncated description */
.desc-short {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 6px;
  text-align: center;
}


/* show more link style */
.read-more-btn {
  background: none;
  border: none;
  color: #007bff;
  font-size: 0.85rem;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
}

/* Unit badge */
.unit-badge {
  display: inline-block;
  margin-top: 5px;
  padding: 2px 8px;
  background: #007bff;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 4px 4px 8px #d1d9e6, -4px -4px 8px #ffffff;
}

.product-details p,
.service-details p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
  text-align: center;
}

.product-details h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
}

.product-details h4 .dashed-price {
  color: #888;
  margin-left: 10px;
}

.product-details h4 .disc {
  color: #e74c3c;
  font-weight: 600;
  margin-left: 10px;
}

.product-details h4 .disc span {
  background: #e74c3c;
  color: #fff;
  padding: 2px 8px;
  border-radius: 5px;
}

.prod-btns,
.serv-btns {
  display: flex;
  justify-content: center;
  gap: 8px;
  /* Reduced gap for tighter spacing */
  margin-top: 12px;
  /* Slightly reduced margin */
}

.prod-btns .btn-primary,
.serv-btns .btn-primary {
  background: #007bff;
  border: none;
  border-radius: 8px;
  /* Slightly smaller radius */
  box-shadow: 4px 4px 8px #d1d9e6, -4px -4px 8px #ffffff;
  /* Reduced shadow size */
  transition: all 0.3s ease;
  padding: 8px 15px;
  /* Reduced padding for smaller size */
  font-size: 0.8rem;
  /* Reduced font size */
  width: auto;
  /* Allow natural width */
  min-width: 120px;
  /* Minimum width to ensure readability */
}

.prod-btns .btn-primary:hover,
.serv-btns .btn-primary:hover {
  background: #0056b3;
  box-shadow: inset 2px 2px 5px #d1d9e6, inset -2px -2px 5px #ffffff;
  /* Adjusted inset shadow */
}

.prod-btns .whatsapp-enquiry,
.serv-btns .whatsapp-enquiry {
  background: #25d366 !important;
}

.prod-btns .whatsapp-enquiry:hover,
.serv-btns .whatsapp-enquiry:hover {
  background: #20b958 !important;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.prev-btn, .next-btn {
  background: #dfe6ed;
  border: none;
  border-radius: 14px;
  font-size: 1.15rem;
  font-weight: 500;
  color: #3c4a6b;
  padding: 0.75rem 1.6rem;
  cursor: pointer;
  box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.15), -5px -5px 12px rgba(255, 255, 255, 0.9);
  transition: background 0.3s ease, box-shadow 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
}

.prev-btn:hover, .next-btn:hover {
  background: #cdd5e0;
  box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.13), inset -4px -4px 8px rgba(255, 255, 255, 0.95);
  transform: translateX(3px);
}

/* for the categiory filter section and no  prodcuftc availabe section */

/* Container aligned to right */
.category-filter-wrapper {
  text-align: right;
  margin-bottom: 1rem;
}

/* Soft UI / Glass dropdown with border */
.category-filter {
  display: inline-block;
  width: auto;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  background: rgba(255, 255, 255, 0.3);  /* translucent background */
  border-radius: 16px;
  border: 2px solid #ccc; /* visible border */
  backdrop-filter: blur(10px); /* frosted effect */
  box-shadow: 4px 4px 12px rgba(0,0,0,0.08),
              -4px -4px 12px rgba(255,255,255,0.6);
  cursor: pointer;
  outline: none;
  transition: all 0.25s ease;
}

.category-filter:hover {
  background: rgba(255, 255, 255, 0.4);
  border-color: #999; /* darker border on hover */
  box-shadow: 6px 6px 14px rgba(0,0,0,0.1),
              -6px -6px 14px rgba(255,255,255,0.7);
}

.category-filter:focus {
  background: rgba(255, 255, 255, 0.45);
  border-color: #6366f1; /* soft focus color */
  box-shadow: inset 2px 2px 8px rgba(0,0,0,0.05),
              inset -2px -2px 8px rgba(255,255,255,0.6);
}


#noProductsMsg {
  display: none; /* hidden by default */
  background: rgba(255, 255, 255, 0.3); /* translucent background */
  border: 2px solid #ccc; /* visible border */
  border-radius: 16px; /* rounded corners */
  box-shadow: 4px 4px 12px rgba(0,0,0,0.08),
              -4px -4px 12px rgba(255,255,255,0.6); /* soft shadow */
  padding: 12px 20px; /* inner spacing */
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px; /* space between icon and text */
  backdrop-filter: blur(10px); /* frosted glass effect */
  transition: all 0.3s ease;
}

#noProductsMsg i {
  font-size: 16px;
  color: #888; /* soft icon color */
}

#noProductsMsg.show {
  display: flex; /* when visible */
  animation: fadeIn 0.3s ease forwards;
}

/* Optional fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* END ----------for the categiory filter section and no  prodcuftc availabe section */

/* Prevent background scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

/* Products and Services Modal Styling */
#products .modal-dialog-centered,
#services .modal-dialog-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100% - 1rem);
    margin: 0 auto;
    max-width: 480px;
    padding: 0 0.5rem;
}

/* Modal content - soft UI card */
#products .modal-content,
#services .modal-content {
    background: #f9fafb; /* soft neutral */
    border-radius: 20px;
    padding: 20px;
    border: none;
    /* box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.08),
                -6px -6px 12px rgba(255, 255, 255, 0.9); */
    position: relative;
    transition: all 0.3s ease-in-out;
}

/* Modal header */
#products .modal-header,
#services .modal-header {
    border-bottom: none;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Title */
#products .modal-title,
#services .modal-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
}

/* Close button */
#products .close,
#services .close {
    background: #f1f5f9;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    border: none;
    font-size: 1.25rem;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 2px 2px 4px rgba(0,0,0,0.08),
                inset -2px -2px 4px rgba(255,255,255,0.9);
    transition: all 0.2s ease;
}
#products .close:hover,
#services .close:hover {
    color: #8b2a03;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Form groups */
#products .form-group,
#services .form-group {
    margin-bottom: 1rem;
}

/* Input wrapper */
#products .input-group,
#services .input-group {
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: 12px;
    background: #f9fafb;
    box-shadow: inset 4px 4px 8px rgba(0,0,0,0.05),
                inset -4px -4px 8px rgba(255,255,255,0.9);
    overflow: hidden;
}

/* Input prefix with icon */
#products .input-group-text.form-prefix,
#services .input-group-text.form-prefix {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 0.5rem;
    background: #f1f5f9;
    padding: 0.5rem 0.9rem;
    border: none;
}

/* Icon */
#products .input-group-text.form-prefix i,
#services .input-group-text.form-prefix i {
    font-size: 1rem;
    color: #64748b;
    flex-shrink: 0;
}

/* Input fields */
#products .form-control,
#services .form-control,
#products .enhanced-input,
#services .enhanced-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.9rem;
    padding: 0.4rem 0;
    color: #1e293b;
}
#products .form-control:focus,
#services .form-control:focus,
#products .enhanced-input:focus,
#services .enhanced-input:focus {
    outline: none;
    box-shadow: none;
}

/* Textarea */
#products textarea.form-control,
#services textarea.form-control {
    border: none;
    background: transparent;
    width: 100%;
    font-size: 0.9rem;
    padding: 0.65rem 0.9rem;
    color: #1e293b;
    resize: none;
}
#products textarea.form-control:focus,
#services textarea.form-control:focus {
    outline: none;
    box-shadow: none;
}

/* Number input */
#products input[type="number"],
#services input[type="number"] {
    border: none;
    background: transparent;
    width: 100%;
    font-size: 0.9rem;
    padding: 0.65rem 0.9rem;
    color: #1e293b;
}
#products input[type="number"]:focus,
#services input[type="number"]:focus {
    outline: none;
    box-shadow: none;
}

/* Footer */
#products .modal-footer,
#services .modal-footer {
    border-top: none;
    padding: 16px;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}


/* Close button */
#products .modal-close-btn,
#services .modal-close-btn {
    background: #f1f5f9;
    color: #1e293b;
    box-shadow: inset 4px 4px 8px rgba(0,0,0,0.05),
                inset -4px -4px 8px rgba(255,255,255,0.9);
}
#products .modal-close-btn:hover,
#services .modal-close-btn:hover {
    background: #e2e8f0;
}

/* Submit button */
#products .form-submit,
#services .form-submit {
    background: #3b82f6;
    color: #fff;
    box-shadow: 4px 4px 8px rgba(0,0,0,0.1),
                -2px -2px 6px rgba(255,255,255,0.7);
}
#products .form-submit:hover,
#services .form-submit:hover {
    background: #2563eb;
}

/* Alerts */
#products .alert,
#services .alert {
    margin-top: 0.5rem;
    border-radius: 8px;
    font-size: 0.85rem;
    padding: 0.6rem 0.8rem;
}
#products .alert-success,
#services .alert-success {
    background: #ecfdf5;
    border: 1px solid #34d399;
    color: #065f46;
}
#products .alert-danger,
#services .alert-danger {
    background: #fef2f2;
    border: 1px solid #f87171;
    color: #991b1b;
}

/* Mobile tweaks */
@media (max-width: 576px) {
    #products .modal-dialog-centered,
    #services .modal-dialog-centered {
        max-width: 95%;
        padding: 0;
    }
    #products .modal-content,
    #services .modal-content {
        padding: 12px;
        border-radius: 16px;
    }
    #products .form-group,
    #services .form-group {
        height: auto;
    }
    #products .input-group,
    #services .input-group {
        flex-direction: row;
        border-radius: 12px;
    }
}


/* Soft ui modal for image view  */
/* Soft UI modal */
.soft-ui-modal {
  background: #e0e5ec;
  border-radius: 20px;
  
  border: none;
  overflow: hidden;
}

.soft-ui-modal img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.15);
}

/* Close button */
.soft-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #e0e5ec;
  border: none;
  color: #555;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 12px;
  box-shadow: 4px 4px 8px #d1d9e6,
              -4px -4px 8px #ffffff;
  transition: all 0.3s ease;
  z-index: 1051;
}

.soft-close:hover {
  box-shadow: inset 3px 3px 6px #d1d9e6,
              inset -3px -3px 6px #ffffff;
  color: #222;
}



/* Modal container */
.booking-modal .modal-dialog-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100% - 1rem);
    margin: 0 auto;
    max-width: 480px;
    padding: 0 0.5rem;
}

/* Modal content - soft UI card */
.booking-modal .modal-content {
    background: #f9fafb; /* soft neutral */
    border-radius: 20px;
    padding: 20px;
    border: none;
    /* box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.08),
                -6px -6px 12px rgba(255, 255, 255, 0.9); */
    position: relative;
    transition: all 0.3s ease-in-out;
}

/* Modal header */
.booking-modal .modal-header {
    border-bottom: none;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Title */
.booking-modal .modal-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
}

/* Close button */
.booking-modal .close {
    background: #f1f5f9;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    border: none;
    font-size: 1.25rem;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 2px 2px 4px rgba(0,0,0,0.08),
                inset -2px -2px 4px rgba(255,255,255,0.9);
    transition: all 0.2s ease;
}
.booking-modal .close:hover {
    color: #2563eb;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Form groups */
.booking-modal .form-group {
    margin-bottom: 1rem;
}

/* Input wrapper */
.booking-modal .input-group {
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: 12px;
    background: #f9fafb;
    box-shadow: inset 4px 4px 8px rgba(0,0,0,0.05),
                inset -4px -4px 8px rgba(255,255,255,0.9);
    overflow: hidden;
}

/* =============================
   Modified Icon + Input Prefix
   ============================= */
.booking-modal .input-group-text.input-prefix {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 0.5rem;
    background: #f1f5f9;
    padding: 0.5rem 0.9rem;
    border: none;
}

/* Icon */
.booking-modal .input-group-text.input-prefix i {
    font-size: 1rem;
    color: #64748b;
    flex-shrink: 0;
}

/* Input full width */
.booking-modal .input-group-text.input-prefix .custom-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.9rem;
    padding: 0.4rem 0;
    color: #1e293b;
}
.booking-modal .input-group-text.input-prefix .custom-input:focus {
    outline: none;
    box-shadow: none;
}

/* Inputs (generic) */
.booking-modal .custom-input {
    border: none;
    background: transparent;
    width: 100%;
    font-size: 0.9rem;
    padding: 0.65rem 0.9rem;
    color: #1e293b;
}
.booking-modal .custom-input:focus {
    outline: none;
    box-shadow: none;
}

/* Date input - styled calendar */
.booking-modal input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(40%) sepia(80%) saturate(250%) hue-rotate(200deg);
    cursor: pointer;
}
.booking-modal input[type="date"] {
    cursor: pointer;
}

/* Dropdown (time slot) */
.booking-modal select.custom-input {
    appearance: none;
    background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 0.75rem center/12px 12px;
    cursor: pointer;
}

/* Footer */
.booking-modal .modal-footer {
    border-top: none;
    padding: 16px;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

/* Buttons - soft neumorphic */
.booking-modal .btn {
    border: none;
    border-radius: 10px;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

/* Close button */
.booking-modal .close-btn {
    background: #f1f5f9;
    color: #1e293b;
    box-shadow: inset 4px 4px 8px rgba(0,0,0,0.05),
                inset -4px -4px 8px rgba(255,255,255,0.9);
}
.booking-modal .close-btn:hover {
    background: #e2e8f0;
}

/* Submit button */
.booking-modal .submit-btn {
    background: #3b82f6;
    color: #fff;
    box-shadow: 4px 4px 8px rgba(0,0,0,0.1),
                -2px -2px 6px rgba(255,255,255,0.7);
}
.booking-modal .submit-btn:hover {
    background: #2563eb;
}

/* Alerts */
.booking-modal .alert {
    margin-top: 0.5rem;
    border-radius: 8px;
    font-size: 0.85rem;
    padding: 0.6rem 0.8rem;
}
.booking-modal .alert-success {
    background: #ecfdf5;
    border: 1px solid #34d399;
    color: #065f46;
}
.booking-modal .alert-danger {
    background: #fef2f2;
    border: 1px solid #f87171;
    color: #991b1b;
}

/* Mobile tweaks */
@media (max-width: 576px) {
    .booking-modal .modal-dialog-centered {
        max-width: 95%;
        padding: 0;
    }
    .booking-modal .modal-content {
        padding: 12px;
        border-radius: 16px;
    }
    .booking-modal .form-group {
        height: auto;
    }
    .booking-modal .input-group {
        flex-direction: row;
        border-radius: 12px;
    }
}


/* Gallery Section Styling */
.section#gallery {
  padding: 50px 20px;
  text-align: center;
  background: #e0e5ec;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 10px 10px 20px #d1d9e6, -10px -10px 20px #ffffff;
  transition: transform 0.3s ease;
  max-width: 400px;
  width: 100%;
}

.section#gallery h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;

  text-align: center;
  gap: 10px;
  background: #e0e5ec;
  border-radius: 10px;
  padding: 10px;
  box-shadow: inset 3px 3px 6px #d1d9e6, inset -3px -3px 6px #ffffff;
}


.section#gallery h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #00c4cc); /* Gradient underline */
  border-radius: 2px;
}

.demo-gallery {
  max-width: 900px;
  margin: 0 auto;
}

#lightgallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
}

#lightgallery li {
  list-style: none;
  width: 30%;
  margin: 1.66%; /* Adjusted for 3 columns with margin */
  box-sizing: border-box;
}

#lightgallery li a {
  display: block;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 8px 8px 16px #d1d9e6, -5px -5px 10px #ffffff; /* Neumorphic shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#lightgallery li img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  cursor: pointer; /* Indicate clickable image */
  transition: transform 0.3s ease;
}

#lightgallery li a:hover {
  transform: translateY(-5px);
  box-shadow: 10px 10px 20px #d1d9e6, -6px -6px 12px #ffffff;
}

#lightgallery li img:hover {
  transform: scale(1.05); /* Slight zoom on hover */
}
#lightgallery li.col-6 {
  width: 48%; /* Approximate width for two columns with margin */
  margin: 0 1%; /* Space between columns */
}




/* Container for the entire video section */
.softui-videos-section {
  background: #f0f2f5;
  padding: 40px 20px;
  max-width: 900px;
  border-radius: 20px;
  box-shadow: 10px 10px 20px #d1d9e6, -10px -10px 20px #ffffff;
}

/* Section title */
.softui-videos-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
  color: #333;
  text-shadow: 1px 1px 1px #fff;
}

/* Card for each video */
.softui-video-card {
  background: #f0f2f5;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: inset 5px 5px 10px #d1d9e6, inset -5px -5px 10px #ffffff;
  transition: all 0.3s ease-in-out;
}

/* Title inside each card */
.softui-video-title {
  font-size: 20px;
  color: #444;
  margin-bottom: 15px;
}

/* Video preview frame */
.softui-video-frame {
  width: 100%;
  height: 250px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  box-shadow: 8px 8px 16px #d1d9e6, -8px -8px 16px #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.softui-video-frame:hover {
  transform: scale(1.02);
  box-shadow: 4px 4px 10px #d1d9e6, -4px -4px 10px #ffffff;
}



.branch-section-soft {
  background: #ecf0f3;
  padding: 60px 20px;
  border-radius: 25px;
  box-shadow: 8px 8px 15px #c3c7cb, -8px -8px 15px #ffffff;
  max-width: 1200px;
  
}

.branch-title-soft {
  text-align: center;
  font-size: 30px;
  color: #333;
  margin-bottom: 50px;
  font-weight: 700;
}

.branch-grid-soft {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.branch-card-soft {
  background: #ecf0f3;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 5px 5px 10px #c3c7cb, -5px -5px 10px #ffffff;
}

.branch-card-soft:hover {
  transform: translateY(-5px);
  box-shadow: 5px 5px 15px #c3c7cb, -5px -5px 15px #ffffff;
}

.branch-icon-soft {
  font-size: 40px;
  color: #0077b6;
  margin-bottom: 15px;
}

.branch-name-soft {
  font-size: 20px;
  color: #222;
  margin-bottom: 10px;
  font-weight: 600;
}

.branch-address-soft {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.branch-map-link {
  color: #007BFF;
  font-weight: 500;
  text-decoration: none;
}

.branch-map-link:hover {
  text-decoration: underline;
}



.clients-section-modern {
  background: #f0f2f5;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 10px 10px 20px #d1d9e6, -10px -10px 20px #ffffff;
}

.client-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-card img {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.client-card .client-name {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #333;
  transition: color 0.3s ease;
}

.client-card:hover .client-name {
  color: #007bff; /* highlight color on hover */
}

.client-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.client-card:hover img {
  filter: grayscale(0%);
}




.payment-section {
  background: #e0e5ec;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 10px 10px 20px #d1d9e6, -10px -10px 20px #ffffff;
  transition: transform 0.3s ease;
  max-width: 400px;
  width: 100%;
}

.section-title {
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
  text-align: center;
}

.payment-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.payment-card {
  background: #fff;
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.payment-card i.fa {
  font-size: 14px;
  color: #00B2A9;
  flex-shrink: 0;
  margin-top: 4px;
}

.payment-card h4 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #444;
}

.payment-card p {
  margin: 4px 0;
  font-size: 15px;
  color: #222;
}

.payment-card p i {
  margin-right: 6px;
  color: #0077B6;
}

.payment-card a {
  color: #0077B6;
  text-decoration: none;
}

.payment-card a:hover {
  text-decoration: underline;
}


/* Soft UI QR Button Styling (Your Provided Class) */
.soft-ui-qr-button {
  margin-left: auto; /* Pushes the button to the right */
  align-self: center; /* Vertically centers the button */
  padding: 8px 16px;
  background: #e0e5ec;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  box-shadow: inset 5px 5px 10px #d1d9e6, inset -5px -5px 10px #ffffff;
  transition: all 0.3s ease;
  text-decoration: none; /* Ensure no underline from anchor */
}

.soft-ui-qr-button:hover {
  box-shadow: 5px 5px 10px #d1d9e6, -5px -5px 10px #ffffff;
  transform: translateY(-2px);
  color: #0077B6;
}

/* Copy Icon Styling */
.payment-card .copy-icon {
  font-size: 16px;
  color: #0077B6;
  cursor: pointer;
  margin-left: 8px;
  transition: color 0.3s ease;
}

.payment-card .copy-icon:hover {
  color: #0056b3;
}


/* New Copy Message Styling */
.payment-card .copy-message {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  background: #e0e5ec;
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 12px;
  color: #333;
  z-index: 10; /* Increased z-index for visibility */
  white-space: nowrap; /* Prevent text wrapping */
}

/* Review Section */
.reviews-section-soft {
  padding: 60px 20px;
  border-radius: 20px;
  background: #f0f2f5;
  box-shadow: 10px 10px 20px #d1d9e6, -10px -10px 20px #ffffff;
}

.reviews-section-soft h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
}

.reviews-swiper {
  margin-bottom: 40px;
}


.swiper-pagination-bullet-active {
  background: #00bfa6;
}

.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  width: 100%;
}

.reviewer-name {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 16px;
  color: #444;
}

.review-stars {
  color: #f1c40f;
  margin-bottom: 10px;
}

.review-content {
  font-size: 15px;
  color: #333;
}

.review-form-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  max-width: 600px;
  margin: 0 auto;
}

.review-form-card h3 {
  margin-bottom: 20px;
  font-size: 20px;
  color: #444;
}

.form-group {
  margin-bottom: 15px;
}

.input-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.input-group-text {
  background: #eee;
  border: none;
  padding: 10px;
  border-radius: 8px;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
}

.btn-primary {
  background: #00bfa6;
  border: none;
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #009e8f;
}


/* Review Section  End*/



/* Get in touch  */
.contact-section-softui {
  background: #e0e5ec;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 10px 10px 20px #d1d9e6, -10px -10px 20px #ffffff;
  transition: transform 0.3s ease;
  max-width: 400px;
  width: 100%;
}

.contact-title-softui {
  text-align: center;
  color: #333;
  font-size: 24px;
  margin-bottom: 25px;
}

.contact-form-softui {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group-softui {
  display: flex;
  flex-direction: column;
}

.input-group-softui {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 10px 15px;
  box-shadow: inset 3px 3px 6px #d1d9e6, inset -3px -3px 6px #ffffff;
}

.input-icon-softui {
  color: #555;
  margin-right: 10px;
  font-size: 16px;
}

.input-softui,
.textarea-softui {
  border: none;
  background: transparent;
  width: 100%;
  font-size: 16px;
  color: #333;
  outline: none;
}

.textarea-softui {
  resize: none;
  background: #ffffff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: inset 3px 3px 6px #d1d9e6, inset -3px -3px 6px #ffffff;
}

.submit-btn-softui {
  background: linear-gradient(135deg, #00B2A9, #0077B6);
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  align-self: center;
}

.submit-btn-softui:hover {
  background: linear-gradient(135deg, #0077B6, #00B2A9);
  transform: translateY(-2px);
}

/* End here  */


.map-section {
  padding: 60px 20px;
  border-radius: 20px;
  background: #f0f2f5;
  box-shadow: 10px 10px 20px #d1d9e6, -10px -10px 20px #ffffff;
}

.map-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.map-header h2 {
  font-size: 26px;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
  text-align: center;
  gap: 10px;
}

.gmap-frame {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gmap-frame:hover {
  transform: scale(1.01);
}



/* Soft UI Footer Styling */
.soft-footer {
  padding: 30px 0;
  justify-content: center;
  align-items: center;
}

.soft-footer-box {
  background: #e0e5ec;
  box-shadow:
    8px 8px 16px #c3c8ce,
    -8px -8px 16px #ffffff;
  padding: 15px 30px;
  border-radius: 20px;
  text-align: center;
}

.soft-footer-box p {
  font-family: 'Segoe UI', sans-serif;
  font-size: 15px;
  color: #4a4a4a;
  margin: 0;
  font-weight: 500;
}

.soft-footer-box a {
  color: #0077b6;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.soft-footer-box a:hover {
  color: #00b2a9;
}

.heart-icon {
  color: #ff6b81;
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.2);
    opacity: 1;
  }
}


/* Navigation Section Styling */
.navigation-div {
  background: #e0e5ec;
  /* Neumorphic base color */

  padding: 10px 20px;
  box-shadow: 10px 10px 20px #d1d9e6, -10px -10px 20px #ffffff;
  /* Neumorphic shadow */

  overflow-x: auto;
  /* Enable horizontal scrolling */
  white-space: nowrap;
  /* Prevent items from wrapping */
  width: 100%;
  /* Full width of parent */
  max-height: 70px;
  /* Fixed height for consistency */
  position: fixed;
  /* Always stick to bottom */
  bottom: 0;
  /* Stick to the bottom of the viewport */
  left: 0;
  /* Align to the left edge */
  z-index: 1000;
  /* Ensure it stays above other content */
  box-sizing: border-box;
  /* Include padding in width calculation */
}


.navigation-div {
  -ms-overflow-style: none;
  /* Hide scrollbar for IE and Edge */

}

.navigation-div ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  /* Horizontal layout */
  align-items: center;
  gap: 15px;
  /* Space between menu items */
}

.navigation-div ul li {
  display: inline-block;
}

.navigation-div ul li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 15px;
  background: #e0e5ec;
  border-radius: 15px;
  box-shadow: 5px 5px 10px #d1d9e6, -5px -5px 10px #ffffff;
  /* Neumorphic shadow */
  transition: all 0.3s ease;
}

.navigation-div ul li a:hover {
  background: #d1d9e6;
  box-shadow: inset 3px 3px 6px #c0c8d4, inset -3px -3px 6px #f2f6ff;
  transform: translateY(-2px);
}

.navigation-div ul li a i {
  margin-right: 8px;
  color: #007bff;
  /* Icon color */
}