/*dsbgvdfughrd */

body {
  font-family: "Arial", sans-serif;
  background-color: #fcfcfc;
  height: 100vh;
  margin: 0;
  color: #333;
}

.loader {
  display: none;
}
.loader.show {
  display: block !important;
}

.social-loader,
.social-success-indicator {
  display: none;
}
.social-loader.show,
.social-success-indicator.show {
  display: block !important;
}

.serv-loader,
.serv-success-indicator {
  display: none;
}
.serv-loader.show,
.serv-success-indicator.show {
  display: block !important;
}

.port-loader,
.port-success-indicator {
  display: none;
}
.port-loader.show,
.port-success-indicator.show {
  display: block !important;
}

.sidebar {
  width: 80px;
  height: 100vh;
    background: linear-gradient(135deg, #1F065A 0%, #DA4B67 100%);

  color: white;
  transition: width 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 10px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000; /* Ensure sidebar is on top */
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

.sidebar:hover {
  width: 200px;
}

::-webkit-scrollbar {
  display: none;
}

/* Initial small circular logo */
.logo-section {
  width: 45px;
  height: 45px;
  background: #f8f9fa;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease-in-out;
}

/* Logo image style */
.logo {
  width: 80%;
  height: 80%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease-in-out;
}

/* On hover: enlarge logo section */
.logo-section:hover {
  width: 140px;
  height: 140px;
}

/* Optional: add zoom effect to image */
.logo-section:hover .logo {
  transform: scale(1.05);
}

.logo-text {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.sidebar:hover .logo-text {
  opacity: 1;
}

hr {
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.46);
  margin: 10px 0;
}

/* Sidebar Icons */
.icon-item {
  padding: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.3s ease;
  border-radius: 8px;
  text-decoration: none;
}

.icon-item i {
  font-size: 20px;
  width: 24px;
  text-align: center;
  color: white;
  text-decoration: none;
}

.icon-item:hover {
  /* background-color: #5750df; */
  text-decoration: none;
  color: white;
}

.icon-label {
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  font-size: 16px;
}

.sidebar:hover .icon-label {
  opacity: 1;
}

/* Top and Bottom Icon Section */
.top-icons,
.bottom-icons {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.top-icons {
  margin-top: 10px;
  flex-grow: 1;
}
/* 
/* Header/Navbar Styling */
.navbar {
  background-color: #ffffff;
  height: 60px;
  padding: 0 20px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;

  right: 0;
  display: flex;
  align-items: center;

  z-index: 999;
  transition: left 0.3s ease;
  flex-wrap: wrap;
}

.navbar-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-title {
  font-size: 24px;
  font-weight: bold;
  margin-left: 90px;
  
  background: linear-gradient(135deg, #1F065A 0%, #DA4B67 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

*/
/* Main Content Styling */



.sidebar:hover {
  margin-left: 200px; /* Match expanded sidebar width */
}
/* Form Styling */
/* .form-container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 420px;
    text-align: center;
    transition: box-shadow 0.3s ease;
    
}

.form-title {
    font-size: 24px;
    font-weight: bold;
    color: #6c63ff;
    margin-bottom: 20px;
} */

/* .form-select,
.form-control {
    margin-bottom: 0px;
    width: 100%;
    font-size: 16px;
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #ccc;
    transition: border-color 0.2s ease;
    outline: none;
}

.form-select:focus,
.form-control:focus {
    border-color: #6c63ff;
} */



.navbar-title :hover{
color:#AB147C;
}


.btn {
  background-color: #62009b;
  color: white;
  border-radius: 8px;
  padding: 11px;
  width: 100%;
  /* margin-top: 20px; */
  font-size: 16px;
}

.btn:hover {
  background: linear-gradient(135deg, #DA4B67 0%, #1F065A 100%);
}

/* Style for the Add New link */
.add-business-link {
  float: right;
  font-size: 14px;
  color: #62009b;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s ease;
  margin-top: 20px;
}

.icon-item {
  color: white;
  text-decoration: none;
}

a {
  text-decoration: none;
}

/* Navbar */
/* .navbar {
padding: 12px 24px;

border-bottom: 1px solid #e0e0e0;
font-size: 20px;
font-weight: 500;
} */

/* Form Container */
.form-container {
  flex: 2;
  max-width: 70%;
  background-color: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Tabs */
.nav-tabs .nav-link {
  color: #62009B;
  font-size: 17px;
  font-weight: 600;
  padding: 10px 10px 10px 10px;
  border: none;
}

.nav-tabs .nav-link.active {
  color: #62009B;
  border-bottom: 2px solid #62009b;
}
/* Left align the form labels */
/* .form-label {
text-align: left;
display: block;
} */

/* Add padding between tabs and form */
.tab-content {
  padding-top: 10px; /* Adjust as needed */
}

/* .form-control {
border-radius: 8px;
padding: 10px;
border: 1px solid #e0e0e0;
} */

/* Button Styling */
.btn-cancel {
  background-color: #e0e0e0;
  color: #333;
  width: 120px;
  height: 40px;
  border-radius: 8px;
  font-weight: 500;
  padding: 5px;
  transition: background-color 0.3s ease;
}

.btn-cancel:hover {
  background-color: #d6d6d6;
}

.btn-save {
  background: linear-gradient(135deg, #1F065A 0%, #DA4B67 100%);

  color: #fff;
  width: 120px;
  height: 40px;
  border-radius: 8px;
  font-weight: 500;
  padding: 5px;
  transition: background-color 0.3s ease;
}

.btn-save:hover {
  background: linear-gradient(135deg, #DA4B67 0%, #1F065A 100%);

}

/* Align Buttons to Bottom Right */
.button-container {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding-top: 20px;
}

/* New Class for Business Form */
.business-form-container {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
}

.business-form-title {
  font-size: 24px;
  font-weight: bold;
  color: #6c63ff;
  margin-bottom: 25px;
  text-align: center;
}

.business-form-group {
  margin-bottom: 20px;
}

.business-form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: #333;
}

.business-form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.business-form-control:focus {
  border-color: #6c63ff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(108, 99, 255, 0.1);
}

.business-form-textarea {
  min-height: 120px;
  resize: vertical;
}

.business-form-file {
  padding: 10px;
  background-color: #f8f9fa;
  border: 2px dashed #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.business-form-file:hover {
  border-color: #7b1bb7;
  background-color: #f0f0ff;
}

.business-form-submit {
 background: linear-gradient(135deg, #1F065A 0%, #DA4B67 100%);

  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  margin-top: 20px;
}

.business-form-submit:hover {
 background: linear-gradient(135deg, #DA4B67 0%, #1F065A 100%);

}

.business-list-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.business-list-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.business-list-table th {
  background: linear-gradient(135deg, #1F065A 0%, #DA4B67 100%);

  color: white;
  padding: 12px;
  text-align: left;
  font-weight: 500;
}

.business-list-table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
}

.business-list-table tr:last-child td {
  border-bottom: none;
}

.business-list-table tr:hover {
  background-color: #f8f9fa;
}

/* Business Actions */
.business-actions {
  display: flex;
  gap: 10px;
}

.business-edit-btn {
  background-color: #6c63ff;
  color: white;
  border: none;
}

.business-edit-btn:hover {
  background-color: #7b1bb7;
}

.business-delete-btn {
  background-color: #ff4d4d;
  color: white;
  border: none;
}

.business-delete-btn:hover {
  background-color: #ff3333;
}

/* Business Logo Preview */
.business-logo-preview {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #eee;
  margin-top: 10px;
}

/* Add New Business Button */
.add-business-btn {
  background-color: #6c63ff;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.add-business-btn:hover {
  background-color: #7b1bb7;
}

/* Business Form Validation */
.business-form-error {
  color: #ff4d4d;
  font-size: 14px;
  margin-top: 5px;
}

.business-form-success {
  color: #28a745;
  font-size: 14px;
  margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .business-form-container {
    padding: 20px;
  }

  .business-list-table {
    display: block;
    overflow-x: auto;
  }

  .business-actions {
    flex-direction: column;
  }

  .business-action-btn {
    width: 100%;
    margin-bottom: 5px;
  }
}

/* Main Content */
.mainnn-content {
  height: calc(100vh - 80px); /* Full height minus navbar */
  overflow-y: auto; /* Enable vertical scrolling */
  margin-left: 80px; /* Match sidebar width */
  flex-grow: 1;

  overflow-y: auto;
  transition: margin-left 0.3s ease;
}

@media (max-width: 576px) {
  .mainnn-content {
    margin-left: 0; /* Remove sidebar space */
    height: auto;   /* Optional: let content height adjust naturally */
    padding: 10px;  /* Optional: add some spacing */
    margin-top:-33px;
  }
}


/* Product Card Styling */
/* .product-card { */
/* border: 1px solid #ddd;
border-radius: 10px;
padding: 15px;
background-color: #fff;
transition: transform 0.3s ease;
height: 100%; 
display: flex;
align-items: center;
flex-direction: column;
justify-content: space-between; */

/* } */

.product-card {
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  padding: 20px;
  background-color: #f7f7fc;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
}

.product-card:hover {
  /* transform: translateY(-5px); */
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Product Image */
.product-image img {
  width: 250px; /* Set a fixed width */
  height: 250px; /* Set a fixed height */
  object-fit: cover; /* Ensures the image covers the area without distortion */
  border-radius: 8px;
}

/* Product Details */
.product-details h5 {
  margin-top: 10px;
  font-size: 22px;
  font-weight: bold;
  text-align: center;

  /* Gradient Text */
  background: linear-gradient(135deg, #1F065A 0%, #DA4B67 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}


.product-details .description {
  font-size: 14px;
  color: #666;
  text-align: justify;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* Separator Line */
.separator {
  width: 100%;
  height: 1px;
  background-color: #e0e0e0;
  margin: 10px 0;
}


/* Button Styling */
.buy-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  width: 170px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

#sidebar {
  width: 250px;
  margin-left: 60px;
  padding: 8px 60px 0px 60px;

  /* Gradient Text */
  background: linear-gradient(135deg, #1F065A 0%, #DA4B67 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.sidebar-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 30px;
  text-align: center;
}

#sidebar .nav-link {
  padding: 10px 10px;
  margin-bottom: 10px;
  border-radius: 6px;
  transition: background-color 0.2s ease;

  /* Gradient Text */
  background: linear-gradient(135deg, #1F065A 0%, #DA4B67 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

#sidebar .nav-link:hover,
#sidebar .nav-link.active {
  
  width: 150px;
}

/* .vertical-divider {
width: 2px;
height: 70%; 
background-color: #e0e0e0;
margin: auto; 
} */

.loader {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-left: 10px;
  vertical-align: middle;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.main-content {
  margin-left: 80px;
  padding: 20px;
  flex-grow: 1;
  display: flex;
  justify-content: center; /* Horizontal center */
  align-items: center; /* Vertical center */
  min-height: 88vh; /* Full height */
  overflow-y: auto;
  transition: margin-left 0.3s ease;
}

/* Content Section */
.content-section {
  display: none;
}

.content-section h3 {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 20px;

  /* Gradient Text */
  background: linear-gradient(135deg, #1F065A 0%, #DA4B67 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Avatar */
.avatar {
  width: 58px;
  height: 58px;
  background-color: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;

  /* Gradient Text */
  background: linear-gradient(135deg, #1F065A 0%, #DA4B67 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Upload Box */
.upload-box {
  width: 58px;
  height: 58px;
  background-color: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 17px;
  cursor: pointer;

  /* Gradient Text */
  background: linear-gradient(135deg, #1F065A 0%, #DA4B67 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Subscription Section Styling */
.subscription-section {
  margin-top: 5%;
}

.subscription-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f9fafb;
  border: 1px solid #e0e0e0;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s ease;

  /* Take full width of the parent container */
  width: 60%;
}

.subscription-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.subscription-icon {
  width: 70px;
  height: 70px;
  background-color: #f1f3f5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.subscription-icon i {
  font-size: 40px;
  background: linear-gradient(135deg, #1F065A 0%, #DA4B67 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.subscription-details {
  flex-grow: 1;
  margin-left: 12px;
}

.subscription-details h4 {
  font-size: 16px;
  font-weight: 600;

  margin-bottom: 2px;
}

.subscription-details p {
  font-size: 14px;
  color: #6c757d;
}

.btn-upgrade {
  background-color: #fff;
  border: 1px solid #62009B;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: background-color 0.2s ease;

  /* Gradient Text */
  background: linear-gradient(135deg, #1F065A 0%, #DA4B67 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.btn-upgrade i {
  margin-left: 15px;

  font-size: 12px;
}

.btn-upgrade:hover {
  background:#d1d1d1 ;
  color: #fff;
}

label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: #333;
}

/* Form Control */
.form-control {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

/* Color Input */
.form-control-color {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.form-control-color:hover {
  background-color: #f0f0f0;
}

/* Logo Styling */
.logo-img {
  width: 80px !important;
  height: 80px !important;
  object-fit: cover !important;
  border-radius: 8px;
  border: 1px solid #ddd;
}

/* QR Code Box */
.qr-box {
  width: 120px;
  height: 120px;
  background-color: #fafafa;
  border: 2px dashed #ccc;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* QR Code Logo */
.qr-logo {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  display: block;
}

/* Save Button */
.btnn {
  background-color: #7b1bb7;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  width: 18%;
  font-size: 16px;
  transition: background-color 0.2s ease;
}

.btnn:hover {
  background-color: #7b1bb7;
}

/* Success Button */
.btn-success {
  background-color: #62009b;
  color: #fff;
  border: none;
}

.btn-success:hover {
  background-color: #bbb8ff;
}

.form-control {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 12px;
}

/* Submit Button */
.btn3 {
  background-color: #62009B;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  width: 20%;
  font-size: 16px;
  transition: background-color 0.2s ease;
}

.btn3:hover {
  background-color:#7b1bb7;
}

/* FAQ Section */
.accordion-button {
  background-color: #f9f9f9;
  color: #333;
  font-weight: 500;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  font-size: 14px;
  color: #555;
}

.accordion-item {
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.accordion-button:not(.collapsed) {
  background-color: #62009b;
  color: #fff;
}

.accordion-button::after {
  color: #62009B;
}

.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 5px solid white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  margin: 0 auto 20px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #999;
  transition: transform 0.3s ease;
}

.profile-img:hover {
  transform: scale(1.1);
}

/* Profile Section Styling */
.profile-card {
  background-color: #ffffff;
  padding: 24px;
  margin-top: 10%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Profile Image */
/* .profile-img img {
width: 120px;
height: 120px;
object-fit: cover;
border-radius: 50%;
} */

.profile-img button {
  margin-top: 12px;
  background-color: #fff;
  color: #62009B;
  border: 1px solid #62009B;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.profile-img button:hover {
  background-color: #7b1bb7;
  color: #fff;
}

/* Profile Info */
.profile-info h4 {
  font-size: 22px;
  color: #333;
  font-weight: bold;
}

.profile-info p {
  font-size: 14px;
  color: #666;
}

/* Edit Profile Form */
.edit-profile-form {
  background-color: #fff;
  padding: 24px;
  margin-top: 5%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 24px;
  font-weight: bold;
  background: linear-gradient(135deg, #1F065A 0%, #DA4B67 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  /* margin-bottom: 15px; */
}

.section-title2 {
  font-size: 23px;
  font-weight: bold;
  color: #62009B;
  margin-bottom: 5px;
}

/* Form Styling */
.form-control {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px;
}

/* Business Logo Image */
.business-logo-container img {
  max-width: 100px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

/* Business Logo Container */
.business-logo-container {
  display: flex;
  /* align-items: center;
  justify-content: center; */
  /* gap: 10px; */
  padding: 0px 10px 10px 10px;
}

/* Logo Styling */
#previewBusinessLogo {
  width: 25%; /* Adjust as needed */
  height: 25%;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Business Info */
/* .business-info {
display: flex;
flex-direction: column;
/* justify-content: center;
width:65%; 
} */

/* Default: stacked layout for mobile & desktop */
.business-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.business-info-left,
.business-info-right {
  width: 100%;
}


/* Business Name Styling */
#previewBusinessName {
  font-size: 22px;
  font-weight: bold;
  /* font-family: 'Times New Roman', Times, serif; */
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;

  margin-bottom: 5px;

  word-wrap: break-word;
  word-break: break-word;
  /* white-space: normal; */
  /* overflow-wrap: break-word; */
  max-width: 100%;
}

/* Address Styling */
#address {
  font-family: "Trebuchet MS", "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #444;
  line-height: 1.4;
  /* text-align: center; */
}

#address span {
  display: inline;
}

/* #address span:not(:last-child)::after {
    content: ", ";
} */

.profile-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 655px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 15px 15px 15px 20px; /* Add left space for the pseudo-border */
    border-radius: 12px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out;
    overflow: hidden;
        box-sizing: border-box;
    margin: 0 auto; /* This centers it */
}

.profile-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, #1F065A 0%, #DA4B67 100%);
    border-radius: 12px 0 0 12px; /* match left side rounding */
}

.buttons-container {
  display: flex;
  flex-wrap: wrap; /* ✅ allow wrapping */
  justify-content: center;
  gap: 10px; /* more spacing between buttons */
  margin: 10px 0;
}

.contact-btn {
  flex: 1 1 calc(50% - 10px); /* ✅ 2 per row with gap compensation */
  min-width: 130px; /* optional: for better layout */
  padding: 10px;
  text-align: center;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  background-color: #007bff;
  color: white;
  cursor: pointer;
}

.profile-container:hover {
  transform: scale(1.02);
}

@media (max-width: 480px) {
    .profile-container {
        
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin: 20px auto; /* Ensure vertical space & center */
        text-align: center;
    }
}

/* Profile Text */
.profile-text {
  flex: 1;
  text-align: left;
  padding-right: 10px;

  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
  /* overflow-wrap: break-word; */
  max-width: 100%;
}

/* Name & Position Styling */
#previewPersonName {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;

  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
  /* overflow-wrap: break-word; */
  max-width: 100%;
}

.profile-picture {
  padding: 3px; /* thickness of the "border" */
  border-radius: 50%;
  background: linear-gradient(135deg, #1F065A 0%, #DA4B67 100%);
  display: inline-block;
}

.profile-picture img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  background: white;
  padding: 4px; /* optional: creates white ring inside gradient */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}


/* Hover Effect */
.profile-picture img:hover {
  transform: scale(1.08);
  box-shadow: 0px 5px 15px rgba(90, 84, 227, 0.4);
}

#previewTagline {
  font-size: 1.3rem; /* More consistent font scaling */
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-weight: 600; /* Adds slight boldness for emphasis */

  margin-bottom: 10px;
  color: #333; /* Ensures good contrast */
  letter-spacing: 0.5px; /* Enhances readability */
  text-align: center;

  word-wrap: break-word;
  word-break: break-word;
  /* overflow-wrap: break-word; */
  max-width: 100%;
}

/* Main contact container */
.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin: 15px auto;
  padding: 10px 0;
  border-bottom: 2px solid #ddd;
}

/* Nested inside .social-icons */
.social-icons .contact-container {
  justify-content: center;
  max-width: 100%;
  overflow: hidden;
}

/* Contact Info: Both Left & Right */
.contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  color: #333;
  width: 48%;
  transition: all 0.3s ease-in-out;
}

/* Social Icons */
.social-icons {
  justify-content: center;
  border-bottom: none;
}

.social-icons .contact-info {
  width: auto;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 490px;
}

/* Hover Effect for Contact Items */
.contact-info:hover {
  transform: scale(1.05);
  cursor: pointer;
}

/* Circular Icon Styling */
.contact-info i {
  font-size: 20px;
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}
/* Background Colors */
.contact-info .fa-phone {
    background: linear-gradient(135deg, #1F065A 0%, #DA4B67 100%);

}
.contact-info .whatsapp-icon {
    background: linear-gradient(135deg, #1F065A 0%, #DA4B67 100%);

}
.contact-info .email-icon {
   background: linear-gradient(135deg, #1F065A 0%, #DA4B67 100%);

}
.contact-info .website-icon {
    background: linear-gradient(135deg, #1F065A 0%, #DA4B67 100%);

} /* Added website icon */
/* Social Media Colors */
.linkedin-icon {
  background-color: #0077b5;
}
.instagram-icon {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}
.youtube-icon {
  background-color: #ff0000;
}
.facebook-icon {
  background-color: #1877f2;
}
.skype-icon {
  background-color: #00aff0;
}
.twitter-icon {
  background-color: #1da1f2;
} /* Twitter blue */
.pinterest-icon {
  background-color: #e60023;
} /* Pinterest red */
.telegram-icon {
  background-color: #0088cc;
} /* Telegram blue */
.reddit-icon {
  background-color: #ff4500;
} /* Reddit orange */
.discord-icon {
  background-color: #5865f2;
} /* Discord purple */

/* Adjust icon size for social media */

.contact-info a {
  text-decoration: none;
  color: #343434;

  font-size: 16px;
}

.contact-info a:hover {
  background: linear-gradient(135deg, #1F065A, #DA4B67);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.speciality-container {
  text-align: center;
  margin-top: 15px;
  padding: 10px;
}

#speciality-title {
  position: relative;
  font-size: 22px;
  font-weight: bold;
  display: block;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  padding-bottom: 6px;
  margin-bottom: 12px;
  color: #333;
  letter-spacing: 0.5px;
  text-transform: uppercase;

  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  overflow: hidden;
  max-width: 100%;
}

#speciality-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(135deg, #1F065A 0%, #DA4B67 100%);
  border-radius: 2px;
}

#speciality-description {
  /* font-family: 'Roboto', sans-serif; */
  font-family: "Poppins", sans-serif;

  font-size: 16px; /* Optimized for readability */
  /* font-family: 'Georgia', serif; Classy serif font for a refined look */
  color: #555; /* Softer contrast */
  line-height: 1.6; /* Improves text spacing */
  text-align: center; /* Enhances readability on different screen sizes */

  word-wrap: break-word; /* ✅ break long words */
  overflow-wrap: break-word; /* ✅ newer, more reliable */
}

/* Default: Stacked layout (mobile & desktop) */
.logo-and-info-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .card-stats {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 10px; /* spacing between boxes */
  }

  .card-stats .stat-box {
    flex: 1;
    max-width: none;
    width: 100%;
    min-height: 120px; /* 👈 Set desired height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}



/* Services Section */
/* .services-container {

text-align: center;
} */
.services-title {
  position: relative;
  font-size: x-large;
  font-weight: bold;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  display: inline-block;
  padding-bottom: 3px;
  margin-bottom: 20px;
}

.services-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(135deg, #1F065A 0%, #DA4B67 100%);
  border-radius: 2px;
}

#previewPersonName span {
  display: inline;
}

/* Swiper Container */
.swiper {
  width: 100%;
  /* max-width: 600px; */
  margin: auto;
}

/* Ensure all service items have the same height */
.service-item {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;

  /* Same height for all */
  min-height: 130px; /* Adjust as needed */
  height: 160px;
}

/* Hover Effect */
.service-item:hover {
  transform: translateY(-5px);
}

/* Service Image */
.service-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
}

/* Service Content */
.service-content {
  flex: 1;
  margin-left: 15px;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
}

.service-name {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;

  word-break: break-word; /* ✅ Breaks long unbroken words */
  max-width: 100%; /* ✅ Prevents overflow */
  overflow-wrap: break-word; /* 🔄 Extra safety for older browsers */
}

.service-description {
  font-size: 14px;
  color: #535353;
  line-height: 1.4;
  text-align: left;

  word-break: break-word; /* ✅ Breaks long unbroken words */
  max-width: 100%; /* ✅ Prevents overflow */
  overflow-wrap: break-word; /* 🔄 Extra safety for older browsers */
}

/* Swiper Pagination Dots */
.swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.swiper-pagination-bullet {
  background: linear-gradient(135deg, #1F065A 0%, #DA4B67 100%);

  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background-color: #7b1bb7;
  opacity: 1;
}

html {
  margin-top: 0px !important;
}

.prod-container {
  display: grid; /* Always 2 products per row */
  gap: 20px;
  padding: 20px;
  /* justify-content: center; */

  overflow-y: auto;
}

@media (max-width: 768px) {
  .prod-container {
    grid-template-columns: 1fr; /* 1 product per row on smaller screens */
  }

}

/* Product Card */
.prod-card {
  display: flex;
  flex-direction: column;
  align-items: center;

  width: 100%;
  max-width: 350px; /* Consistent width */
  height: auto; /* Fixed height */
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  margin: auto;
}

.prod-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Image Styling */
.prod-image {
  width: 100%;
  height: 150px;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.3s ease-in-out;
}

.prod-card:hover .prod-image {
  transform: scale(1.05);
}

.prod-name {
  font-size: 18px;
  font-weight: bold;
  padding: 0px 10px;
  margin: 10px 0;
  max-width: 90%;
  word-break: break-word;
  transition: color 0.3s ease-in-out;

  /* Gradient Text */
  background: linear-gradient(135deg, #1F065A 0%, #DA4B67 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.prod-card:hover .prod-name {
  background: linear-gradient(135deg, #DA4B67 0%, #1F065A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Product Price */
.prod-price {
  font-size: 18px;
  font-weight: bold;
  margin-top: 15px;
  color: #ffffff;
  transition: color 0.3s ease-in-out;
}

.prod-hover {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #1F065A 0%, #DA4B67 100%);

  color: white;

  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.prod-card:hover .prod-hover {
  opacity: 1;
  transform: translateY(0);
}

/* Description */
.prod-desc {
  font-size: 14px;
  font-weight: 600;
  max-width: 90%; /* 👈 Controls how wide the text can go inside the card */
  word-break: break-word; /* 👈 Breaks long words */
  line-height: 1.4;
  padding: 0px 5px;
}
.prod-title {
  position: relative;
  font-size: x-large;
  font-weight: bold;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  display: inline-block;
  padding-bottom: 3px;
  margin-bottom: 5px;
  text-align: center;
  margin-top: 15px;
}

.prod-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(135deg, #1F065A 0%, #DA4B67 100%);
  border-radius: 2px;
}

/* Ensure full container centers it */
.prod-title-wrapper {
  text-align: center;
  width: 100%;
   display: none;
}

/* Load More and Load Less Icons (Inside Circle) */
.load-more-icon,
.load-less-icon {
  font-size: 24px; /* Adjust icon size */
  color: white;
  cursor: pointer;
  transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;

  /* Circle Shape */
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #1F065A 0%, #DA4B67 100%);

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover Effect */
.load-more-icon:hover {
  background: linear-gradient(135deg, #1F065A 0%, #DA4B67 100%);

}

.load-less-icon {
  display: none; /* Initially hidden */
    background: linear-gradient(135deg, #DA4B67  0%, #1F065A 100%);

}




.btn-container {
    display: none; /* 🔴 Hidden by default */
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
    margin-top: 0px;
    transition: all 0.3s ease-in-out;
}


/* Hover Effect for Buttons */
.btn-container:hover {
  transform: scale(1.05);
}

/* Circular Icon Buttons */
.btn-container i {
  font-size: 18px;
  color: #fff;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2); /* Soft shadow effect */
  transition: transform 0.3s ease-in-out;
}

/* Hover Effect for Icons */
.btn-container i:hover {
  transform: scale(1.2);
}

/* Background Colors */
.btn-container .fa-facebook {
  background-color: #1877f2;
}

.portfolio-container {
  padding: 28px 20px;
  background-color: #f9f9f9;
}
.portfolio-title {
  position: relative;
  font-size: 28px;
  font-weight: bold;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  display: inline-block !important;
  padding-bottom: 5px;
  margin-bottom: 30px;
  color: #333;
}

.portfolio-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(135deg, #1F065A 0%, #DA4B67 100%);
  border-radius: 2px;
}

input.is-invalid {
  border: 1px solid red;
}

.portfolio-carousel {
  /* display: flex; */
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 20px;
  box-sizing: border-box;
}
.portfolio-card {
  width: 100%;
  max-width: 360px;
  height: auto;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  justify-content: center;
}

.portfolio-card.active {
  display: flex;
}

.portfolio-card img {
  width: 100%;
  height:250px;
  max-height: 230px;
  object-fit: contain;
}

.portfolio-card h4 {
  font-size: x-large;
  margin-top: 20px;
  text-align: left;
  padding: 0 10px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;

  /* Gradient Text Color */
  background: linear-gradient(135deg, #1F065A 0%, #DA4B67 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.portfolio-desc {
  font-size: 16px;
  color: #666;
  flex-grow: 1;
  padding: 10px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  height: 70px;
}

.portfolio-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.carousel-btn {
    background: linear-gradient(135deg, #1F065A 0%, #DA4B67 100%);

  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #DA4B67 0%, #1F065A 100%);

  transform: scale(1.1);
}

@media (max-width: 768px) {
  .portfolio-card {
    max-width: 100%;
    height: auto;
  }

  .portfolio-navigation {
    gap: 40px;
    margin-top: 15px;
  }

  .portfolio-title {
    font-size: 24px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .portfolio-card h4 {
    font-size: 18px;
  }

  .portfolio-desc {
    font-size: 14px;
  }

  .carousel-btn {
    font-size: 18px;
    padding: 8px 12px;
  }
}

.portfolio-link {
  text-align: right;
  padding: 10px 10px 0;
}

.portfolio-link a {
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;

  /* Gradient Text */
  background: linear-gradient(135deg, #1F065A 0%, #DA4B67 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}


.portfolio-link a:hover {
  
  text-decoration: underline;
}

.estimated-date-container {
  text-align: center;
  margin-top: 25px;
}

.estimated-date {
  font-size: 20px;
  font-weight: bold;
  color: #7b1bb7;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
}

.btn-circle {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.btn1 {
  width: 350px;
  height: 45px;
  font-size: 16px;
  margin-top: 20px;
  background: #62009B;
  color: white;
  border: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.btn1:hover {
  background: #7b1bb7;
}

.buy-btn {
  width: 350px;
  height: 45px;
  font-size: 16px;
  margin-top: 20px;
    background: linear-gradient(135deg, #1F065A 0%, #DA4B67 100%);

  color: white;
  border: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.buy-btn:hover {
    background: linear-gradient(135deg, #DA4B67 0%, #1F065A 100%);

}

.btn2 {
  width: 350px;
  height: 45px;
  font-size: 16px;
  margin-top: 20px;
  background: #5a54e8;
  color: white;
  border: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.btn2:hover {
  background: #7b1bb7;
}

.forgot {
  width: 350px;
  height: 45px;
  font-size: 16px;
  margin-top: 20px;
  background: #5a54e8;
  color: white;
  border: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.forgot {
  background: #62009B;
}

/*
.bus_save{

width: 69px;
height: 39px;
font-size: 16px;
margin-top: 20px;
background: #5A54E8;
color: white;
border: none;
border-radius: 5px;
transition: background 0.3s ease;

}
.bus_cancel{


width: 75px;
height: 39px;
font-size: 16px;
margin-top: 20px;
background: #5A54E8;
color: white;
border: none;
border-radius: 5px;
transition: background 0.3s ease;


}

*/
/* Centering the form container */
.auth-container {
  max-width: 400px; /* Increase width */
  width: 80%; /* Ensures responsiveness */
  margin: 50px auto;
  padding: 25px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
}

/* Input Fields */
.auth-container input[type="text"],
.auth-container input[type="email"],
.auth-container input[type="password"] {
  width: 100%;
  padding: 12px; /* Slightly larger padding */
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

/* Adjusting Form Title */
.modal-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 18px;
}

/* Link to Switch Forms */
.auth-container p {
  text-align: center;
  margin-top: 10px;
}

.auth-container a {
  color: #62009B;
  text-decoration: none;
  font-weight: bold;
}

.auth-container a:hover {
  text-decoration: none;
}

/* Error and Success Messages */
p[style*="color:red"] {
  text-align: center;
  font-size: 14px;
  background: #ffdddd;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid red;
}

p[style*="color:green"] {
  text-align: center;
  font-size: 14px;
  background: #ddffdd;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid green;
}

.business-dropdown {
  padding: 12px 14px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  border: 2px solid transparent; /* Transparent border for gradient visibility */
  outline: none;
  max-width: 230px;
  background: 
    linear-gradient(#ffffff, #ffffff), /* Inner background */
    linear-gradient(135deg, #1F065A 0%, #DA4B67 100%); /* Gradient border */
  background-origin: border-box;
  background-clip: padding-box, border-box;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);

  /* margin-left: 814px; */ /* optional */
}

/* Hover Effect */
.business-dropdown:hover {
  background: #ffffff;
}

/* Focus Effect */
.business-dropdown:focus {
  border: 2px solid #62009B;
}

/* Manage Business Button */
.manage-business-btn {
  padding: 12px 14px;
  font-size: 16px;
  font-weight: 500;
  background: linear-gradient(135deg, #1F065A 0%, #DA4B67 100%);

  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.manage-business-btn:hover {
  background: linear-gradient(135deg, #DA4B67 0%, #1F065A 100%);

}

.business-info p {
  margin: 5px 0 2px 0;
  font-size: 14px;
  color: #555;
}

#gstNum {
  font-weight: 500;
  color: #333;
  font-size: 15px;
}

/* ------start evisting and sos card ---- */

/* Preview Container */
.prev-container {
  flex: 1;
  max-width: 30%;
  background-color: #fff;
  padding: 20px; /* Reduced padding */
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  min-height: 300px; /* Reduced min-height */

  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease-in-out;
}


.prev-container_sos {
  flex: 1;
  max-width: 30%;
  background-color: #fff;
  padding: 20px; /* Reduced padding */
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  min-height: 300px; /* Reduced min-height */

  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease-in-out;
}

/* ------- end ------- */

#businessPopup {
  display: none; /* Ensure popup is hidden when the page loads */
}

.add_prod {
  width: 150px;
  height: 45px;
  font-size: 16px;
  margin-top: 20px;
  background: #62009B;
  color: white;
  border: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.add_prod:hover {
  background-color: #62009b;
}

.rem_pro {
  background-color: #62009B;
  color: #fff;
  padding: 7px 12px;
  border: 2px solid #62009B;
  border-radius: 20%;
}

.rem_pro:hover {
  background-color: #c82333;
}

.serv_rem {
  background-color: #62009B;
  color: #fff;
  padding: 7px 12px;
  border: 2px solid #62009B;
  border-radius: 20%;
}

.serv_rem:hover {
  background-color: #c82333;
}

.serv_add {
  width: 150px;
  height: 45px;
  font-size: 16px;
  margin-top: 20px;
  background: #62009B;
  color: white;
  border: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.serv_add:hover {
  background-color: #7b1bb7;
}

.port_rem {
  background-color: #62009B;
  color: #fff;
  padding: 7px 12px;
  border: 2px solid #62009B;
  border-radius: 20%;
}

.port_rem:hover {
  background-color: #ff0019a2;
}

.port_add {
  width: 150px;
  height: 45px;
  font-size: 16px;
  margin-top: 20px;
  background: #5a54e8;
  color: white;
  border: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.port_add:hover {
  background-color: #7b1bb7;
}

/*

.card_cancel{

width: 150px;
height: 45px;
font-size: 16px;
margin-top: 20px;
background-color: #d0d0d0;
color: rgb(0, 0, 0);
border: none;
border-radius: 8px;
transition: background 0.3s ease;


}
.card_cancel:hover{

background-color: ;
color: white;
}

*/
/*
.card_save{

width: 150px;
height: 45px;
font-size: 16px;
margin-top: 20px;
background: #5A54E8;
color: white;
border: none;
border-radius: 8px;
transition: background 0.3s ease;


}

.card_save:hover{

}
*/
