/*!
 * Template Name: Hostina Template
 * Author: hostk.com
 * Version: 1.0
 * Description: Modern Responsive Bootstrap Hosting Template
 * Created: 2025
 */
/* Sidebar Styles - Fixed according to image */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 25rem;
  background-color: var(--color-primary);
  z-index: 1000;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding-bottom: 3rem;
  box-shadow: 8px 0 15px rgba(0, 0, 0, 0.2);
}
.sidebar-nav {
  margin-top: 1rem;
  margin-bottom: 2rem;
  flex: 1;
}
.sidebar-nav .nav-link {
  color: var(--color-text-dark);
  font-size: 1.6rem;
  transition: var(--transition-base);
  border-radius: 0;
  margin: 0 15px;
  padding: 12px 15px;
}
.sidebar-nav .nav-link:hover {
  background-color: #0b384b;
  color: white;
  transform: translateX(5px);
  border-radius: 8px;
}
.sidebar-nav .nav-link.active {
  background-color: white;
  color: var(--color-primary);
  border-radius: 8px;
  margin: 0 15px;
}
.sidebar-nav .nav-link i {
  width: 20px;
  margin-right: 12px;
  opacity: 0.8;
}
.sidebar-nav .nav-link.active i {
  opacity: 1;
}
/* Submenu Styles */
.sidebar-nav .submenu-arrow {
  transition: transform 0.3s ease;
  font-size: 12px;
}
.sidebar-nav .submenu-arrow.rotated {
  transform: rotate(180deg);
}
.sidebar-nav .submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.sidebar-nav .submenu.show {
  max-height: 300px;
}
.sidebar-nav .submenu .nav-link {
  padding-left: 50px;
}
/* Close button for mobile */
.sidebar-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  z-index: 1001;
}
/* Logout button */
.logout-btn {
  background-color: transparent;
  border: 1px solid #ff5d5d;
  color: #ff5d5d;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 1.4rem;
  margin: 0 2rem;
  transition: var(--transition-base);
}
.logout-btn:hover {
  background-color: #c82333;
  transform: translateY(-2px);
  color: #fff;
}
#dashb-main {
  margin-left: 25rem;
}
/* Header Styles */
.breadcrumb-item:not(.active):hover a {
  color: #000;
  transition: var(--transition-base);
}
#dashb-header .input-search .icon {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  color: var(--color-text);
}
#dashb-header .input-search input {
  border-radius: var(--radius-16);
  padding-left: 3.5rem;
  width: 300px;
  max-width: 100%;
}
#dashb-header :is(.cart-icon, .bell-icon) {
  color: var(--color-text);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
#dashb-header .user-pic,
#dashb-header :is(.cart-icon, .bell-icon) {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-text);
  overflow: hidden;
}
#dashb-header .user-name {
  white-space: nowrap;
}
/* /////////////////// BANNER SLIDER DASHBOARD STYLES /////////////// */
/* /////////////////////////////////////////////////////// */
#banner-dashb .content {
  border-radius: var(--radius-24);
  overflow: hidden;
  position: relative;
  z-index: 3;
  min-height: 20rem;
  padding: 1rem 3rem;
}
#banner-dashb .content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      3px 3px at 10% 10%,
      rgba(255, 255, 255, 0.9),
      transparent
    ),
    radial-gradient(
      2.5px 2.5px at 25% 85%,
      rgba(255, 255, 255, 0.7),
      transparent
    ),
    radial-gradient(3px 3px at 90% 70%, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(3px 3px at 40% 70%, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(3px 3px at 60% 20%, rgba(255, 255, 255, 0.8), transparent);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: -1;
}
#banner-dashb .section-heading {
  font-size: 2.2rem;
  margin-bottom: 1.4rem;
}
#banner-dashb .description {
  font-size: 1.4rem;
}
/* /////////////////// SERVICES COUNTER STYLES /////////////// */
/* ///////////////////////////////////////////////////////////////// */
#services-counter .service-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  background-color: #fff;
  border-radius: var(--radius-16);
  padding: 2rem;
  box-shadow: var(--drop-shadow);
  transition: var(--transition-base);
  min-height: 10rem;
}
#services-counter .service-item:hover {
  transform: translateY(-5px);
  background-color: var(--color-light-gray);
}
#services-counter .service-icon {
  font-size: 2rem;
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  background-color: #f1f1f1;
  display: flex;
  justify-content: center;
  align-items: center;
}
#services-counter .service-item:hover .service-icon {
  background-color: #ffffff;
}
#services-counter .service-info span {
  display: block;
}
#services-counter .counter {
  font-size: 2.4rem;
  font-weight: 800;
}
#services-counter .service-name {
  font-size: 1.6rem;
  color: #030229;
  white-space: nowrap;
}
/* /////////////////// ACTIVE PRODUCTS SECTION STYLES /////////////// */
/* ///////////////////////////////////////////////////////////////// */
#active-products .product-list {
  box-shadow: var(--drop-shadow);
  border-radius: var(--radius-16);
}
#active-products .product-item:not(:last-child) {
  border-bottom: 1px solid #eaeaea;
}
#active-products .product-status {
  background-color: #00017;
  border-radius: 8px;
  color: #000;
  font-size: 1.4rem;
}
#active-products .product-btn {
  background-color: #0000001a;
  font-size: 1.4rem;
  border-radius: 8px;
}
#active-products .register-wrapper {
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-radius: var(--radius-16);
  box-shadow: var(--drop-shadow);
}
#active-products .register-wrapper .dashb-btn {
  display: inline-block;
  height: 5rem;
  width: 18rem;
  font-size: 1.4rem;
  border-radius: 8px;
}
#active-products .register-wrapper .btn-light {
  background-color: #0000001a;
}
/* /////////////////// NEWS DASHBOARD SECTION STYLES /////////////// */
/* ///////////////////////////////////////////////////////////////// */
#card-dashb .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}
#card-dashb .list-items {
  border-radius: var(--radius-16);
  box-shadow: var(--drop-shadow);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#card-dashb .list-item {
  transition: var(--transition-base);
}
#card-dashb .list-item:not(:last-child) {
  border-bottom: 1px solid #eaeaea;
}
#card-dashb .list-item:hover {
  background-color: #f5f5f5;
}
/*/////////////////// Progress Steps //////////////////// */
/* ////////////////////////////////////////////////////// */
#progress-container {
  padding-left: 6rem;
}
.progress-step {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.progress-step-number {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.progress-step-text {
  font-size: 1.3rem;
  transition: color 0.3s ease;
  position: absolute;
  top: 4rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.progress-step.active .progress-step-number {
  background-color: #000;
  color: #fff;
}
.progress-step.active .progress-step-text {
  font-weight: 600;
  color: #000;
}
.progress-step:not(.active) .progress-step-number {
  background-color: #e5e7eb;
  color: #6b7280;
}
.progress-step:not(.active) .progress-step-text {
  color: #6b7280;
}
.progress-line-container {
  position: absolute;
  width: 85%;
  height: 2px;
  background-color: #e5e7eb;
  top: 15px;
  left: 13%;
  z-index: 0;
}
.progress-line {
  height: 100%;
  width: 0%;
  background-color: var(--color-primary);
  transition: width 0.4s ease-in-out;
}
/*/////////////////////////// Table Styling ////////////////////*/
.table-responsive {
  overflow-x: auto;
}
#sortableTable {
  min-width: 900px;
  width: 100%;
  box-shadow: var(--drop-shadow);
}
#sortableTable .table-header th {
  color: var(--color-text);
  font-size: 1.4rem;
}
#sortableTable .sort-icons {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  margin-left: 5px;
  margin-top: -1.2rem;
  vertical-align: middle;
}
#sortableTable .sort-icons i {
  height: 5px;
  line-height: 1;
  font-size: 1.5rem;
}
#sortableTable .table-body td {
  vertical-align: middle;
  padding: 1.5rem 1.25rem;
  background-color: transparent;
}
.table-body tr:nth-child(odd) {
  background-color: #f5f5f5;
}
#sortableTable .status-badge {
  padding: 8px 1.5rem;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  border-radius: 8px;
}
#sortableTable :is(.status-unpaid, .status-paid) {
  display: inline-flex;
  gap: 8px;
  width: 9rem;
  color: var(--color-text);
}
#sortableTable :is(.status-unpaid, .status-paid) .icon {
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#sortableTable .status-unpaid .icon {
  background-color: #fd3d3d3b;
  color: #fd3d3de5;
}
#sortableTable .status-paid .icon {
  background-color: #0003b;
  color: #000;
}
#sortableTable .status-active {
  color: #000;
  background-color: #00017;
}
#sortableTable .status-inactive {
  color: rgba(160, 29, 29, 0.723);
  background-color: rgba(183, 0, 0, 0.101);
}
#sortableTable .action-dots {
  font-size: 1.5rem;
  color: #6c757d;
}
#sortableTable .dropdown-item {
  font-size: 1.4rem;
}
/*//////////// CAROUSEL CODE ////////////*/
.carousel-indicators {
  bottom: 7px;
}
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  margin: 0 5px;
}
.carousel-indicators .active {
  background-color: white;
}
.carousel-item {
  min-height: 27rem;
  padding: 2rem;
}
/* ///////////////// ORDER SUMMARY CARD IN CART //////////////// */
.order-sum-wrap {
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-16);
  overflow: hidden;
}
.order-sum-wrap h4 {
  background-color: var(--color-light-gray);
}
.order-sum-wrap li {
  color: var(--color-text);
}
.order-sum-wrap li:not(:last-child) {
  border-bottom: 1px solid #eaeaea;
}
.order-sum-wrap li strong {
  color: var(--color-primary);
}
/* //////////////// CART CONFIGURE /////////////// */
#cart-configure .premium-wrap,
#cart-configure .addon-content {
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-16);
}
/* //////////////// CART CHECKOUT /////////////// */
/* Checkout Section */
.checkout-card,
.billing-card,
.payment-card {
  border-radius: var(--radius-18);
  box-shadow: var(--drop-shadow);
}
.checkout-card .product-item {
  padding: 1.2rem 2rem;
}
.checkout-card .product-item:not(:last-child),
.payment-card ul li:not(:last-child) {
  border-bottom: 1px solid #eaeaea;
}
.checkout-card .product-item h4 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.checkout-card .product-item p {
  font-size: 1.4rem;
  color: var(--color-text);
  margin-bottom: 0;
}
.checkout-card .product-item select {
  padding: 8px 12px;
  border-radius: 11px;
  font-size: 1.4rem;
}
.checkout-card .product-item .action-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.8rem;
  color: var(--color-text);
  transition: color 0.2s;
}
.checkout-card .product-item .action-btn:hover {
  color: #000;
}
/* Billing Section */
.billing-section form {
  border-bottom: 1px solid #eaeaea;
}
.payment-card .icon {
  font-size: 3rem;
}
/* /////////////////// PRICING HOME STYLES /////////////// */
/* /////////////////////////////////////////////////////// */
#pricing-home .pricing-toggle {
  margin-bottom: 3rem;
}
#pricing-home .toggle-buttons {
  background-color: white;
  border-radius: var(--radius-28);
  padding: 0 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: inline-flex;
}
#pricing-home .toggle-btn {
  padding: 12px 24px;
  border: none;
  background: transparent;
  border-radius: var(--radius-28);
  font-size: 1.4rem;
  color: var(--color-text);
}
#pricing-home .toggle-btn.active {
  background-color: var(--color-primary);
  color: white;
}
#pricing-home .pricing-card {
  border-radius: var(--radius-24);
  padding: 3rem 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s linear;
  display: flex;
  flex-direction: column;
}
#pricing-home .pricing-card.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      2.5px 2.5px at 25% 65%,
      rgba(255, 255, 255, 0.7),
      transparent
    ),
    radial-gradient(3px 3px at 80% 45%, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(2px 2px at 50% 15%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(
      2.5px 2.5px at 90% 75%,
      rgba(255, 255, 255, 0.5),
      transparent
    );
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: -1;
}
#pricing-home .pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
#pricing-home .pricing-card.featured {
  background: var(--color-primary);
}
#pricing-home .best-choice {
  position: absolute;
  background: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15), 0 2px 5px rgba(0, 0, 0, 0.1);
}
#pricing-home .plan-name {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
#pricing-home .price-container {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 2rem;
}
#pricing-home .plan-price {
  font-size: 4rem;
  font-weight: 700;
}
#pricing-home .plan-period {
  font-size: 1.4rem;
  color: var(--color-text);
}
#pricing-home .pricing-card.featured :is(.plan-period, .plan-description, li) {
  color: #ffffff;
}
#pricing-home .plan-description {
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 3rem;
  line-height: 1.4;
}
#pricing-home .plan-features {
  margin-bottom: 3rem;
  flex: 1;
}
#pricing-home .plan-features li {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  color: var(--color-text);
}
#pricing-home .feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}
#pricing-home .feature-icon.check {
  background: var(--color-primary);
  color: white;
}
#pricing-home .feature-icon.cross {
  background: transparent;
  border: 1px solid #dc354540;
  color: var(--color-text);
}
#pricing-home .pricing-card.featured .feature-icon.check {
  background: white;
  color: var(--color-primary);
}
#pricing-home .explore-btn {
  width: 100%;
  padding: 15px 24px;
  background: transparent;
  border: 2px solid #e9ecef;
  border-radius: var(--radius-24);
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
#pricing-home .explore-btn:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}
#pricing-home .pricing-card.featured .explore-btn {
  background: white;
  border-color: white;
}
#pricing-home .pricing-card.featured .explore-btn:hover {
  background: var(--color-primary);
}
/*//////////// DEDICATED FEATURES SECTION /////////////////////*/
/* /////////////////////////////////////////////////////////// */
#dedicated-features .card-item {
  border-radius: var(--radius-24);
  overflow: hidden;
  box-shadow: var(--drop-shadow);
  transition: 0.3s linear;
}
#dedicated-features .card-title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 1rem;
}
#dedicated-features .card-desc {
  font-size: 1.4rem;
  color: var(--color-text);
  margin-bottom: 2rem;
}
/* /////////////////// ACADEMY HOME STYLES /////////////// */
/* /////////////////////////////////////////////////////// */
#academy-home .card-item {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--drop-shadow);
  transition: 0.3s linear;
}
#academy-home figure {
  height: 20rem;
  width: 100%;
}
#academy-home figure img {
  transition: 0.3s linear;
}
#academy-home .card-item:hover img {
  transform: scale(1.05);
}
#academy-home .card-title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
#academy-home .card-date {
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 700;
}
#academy-home .card-desc {
  font-size: 1.4rem;
  color: var(--color-text);
  margin-bottom: 2rem;
}
#academy-home .dashb-btn {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
/*//////////////////// POPULAR DOMAINS SECTION /////////////////////////*/
/* //////////////////////////////////////////////////////////////////// */
.domain-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: var(--radius-18);
  box-shadow: var(--shadow-sm);
  border: 2px solid #f1f3f4;
  transition: var(--transition-base);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.domain-card:hover {
  border-color: var(--color-primary);
}
.domain-card .domain-info {
  margin-bottom: 2rem;
}
.domain-card .domain-name {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.domain-card .domain-price {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0;
}
.domain-card .ellipse {
  position: absolute;
  border-radius: 50%;
  background-color: #0000000f;
}
.domain-card .ellipse-1 {
  top: -5rem;
  right: -2rem;
  width: 10rem;
  height: 10rem;
}
.domain-card .ellipse-2 {
  top: 3.4rem;
  right: -3rem;
  width: 5rem;
  height: 5rem;
}
/*//////////////////// FAQ SECTION ////////////////////////////*/
/* /////////////////////////////////////////////////////////// */
.accordion-item {
  border-radius: 22px !important;
  overflow: hidden;
  box-shadow: 0 0 31px #184f7817;
  border: none;
}
.accordion-header button {
  font-weight: 600;
  cursor: pointer;
  border: none;
}
.accordion-icon {
  transition: transform 0.3s ease;
  background-color: #e6e6e66b;
  padding: 1rem;
  border-radius: 50%;
  font-size: 1.3rem;
}
.accordion-button:not(.collapsed) .accordion-icon {
  transform: rotate(180deg);
}
.accordion-button::after {
  display: none;
}
/* /////////////////// CHOICE HOME STYLES /////////////// */
/* /////////////////////////////////////////////////////// */
#choice-home .card-item {
  border-radius: var(--radius-24);
  box-shadow: var(--drop-shadow);
  gap: 2rem;
  overflow: hidden;
  transform: rotate(0deg);
  transition: all 0.3s ease;
}
#choice-home .card-item:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}
#choice-home .card-icon {
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.card-item:hover .card-icon {
  transform: scale(1.1) rotate(10deg);
}
#choice-home .card-icon span {
  background-color: #f3f3f3;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 600;
}
#choice-home .card-title {
  font-size: 1.8rem;
}
#choice-home .card-desc {
  font-size: 1.2rem;
  padding-right: 2rem;
  color: var(--color-text);
  margin-bottom: 0;
}
#choice-home .card-item:hover {
  background-color: var(--color-primary);
}
#choice-home .card-item:hover .card-title {
  color: #fff;
}
#choice-home .card-item:hover .card-desc {
  color: var(--color-text-dark);
}
#choice-home .card-item:hover button {
  background-color: #fff;
  color: var(--color-primary);
}
/*//////////////////// BLOG SECTION ////////////////////////////*/
/* ///////////////////////////////////////////////////////////// */
#blog-section .blog-image {
  height: 40rem;
}
#blog-section .blog-tag:hover {
  background: var(--color-secondary) !important;
  color: white !important;
}
#blog-section .social-icons li a {
  background-color: var(--color-light-gray);
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
}
/*//////////////////// PAGINATION ////////////////////////////*/
/* ////////////////////////////////////////////////////////// */
.pagination .page-item .page-link {
  color: black;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin: 0 0.25rem;
  padding: 6px 1.3rem;
  font-size: 1.4rem;
}
.pagination .page-item.active .page-link,
.pagination .page-item:hover .page-link {
  background-color: black;
  color: white;
  border-color: black;
}
/*///////////// CONTACT FORM AND OTHER FORM FIELDS/////////////////*/
/* //////////////////////////////////////////////////////////////// */
/* Contact Form Styles */
.contact-form-container {
  background: white;
  padding: 4rem 3rem;
  border-radius: var(--radius-24);
  box-shadow: var(--shadow-special);
  border: 1px solid #f1f3f4;
}
.contact-form-container .form-heading {
  font-size: 2.4rem;
  color: var(--color-primary);
  margin-bottom: 3rem;
}
.contact-form-container .form-input,
.contact-form-container .form-textarea {
  padding: 1.5rem 2rem !important;
  font-size: 1.5rem;
  font-weight: 500;
}
.contact-form-container .form-input::placeholder,
.contact-form-container .form-textarea::placeholder {
  color: var(--color-text);
  font-weight: 400;
}
.contact-form-container .form-textarea {
  resize: vertical;
  min-height: 120px;
  background-color: var(--color-light-gray);
}
/*/////////////////////// MEDIA QUERIES /////////////////// */
/* //////////////////////////////////////////////////////// */
@media (max-width: 991px) {
  #dashb-main {
    margin-left: 0;
  }
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .sidebar.show {
    transform: translateX(0);
    width: 27rem;
    border-top-right-radius: var(--radius-16);
    border-bottom-right-radius: var(--radius-16);
  }
  .sidebar-close {
    display: block !important;
  }
  #dashb-header .user-pic,
  #dashb-header :is(.cart-icon, .bell-icon) {
    width: 24px;
    height: 24px;
  }
  #dashb-header .input-search input {
    width: 20rem;
  }
}
@media (max-width: 767px) {
  #progress-container {
    padding-left: 3rem;
  }
  .progress-step-text {
    white-space: wrap;
  }
  #dashb-header :is(.cart-icon, .bell-icon) i {
    font-size: 1.3rem !important;
  }
  .carousel-item {
    min-height: 27rem;
    padding: 0.5rem 0;
  }
  #pricing-home .plan-features li,
  #pricing-home .plan-description {
    font-size: 1.5rem;
  }
  #blog-section .blog-image {
    height: 200px;
  }
  .contact-form-container {
    padding: 3rem 2rem;
  }
  .contact-form-container .form-heading {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .contact-form-container .form-input,
  .contact-form-container .form-textarea {
    padding: 1.2rem 1.5rem;
    font-size: 1.4rem;
  }
  .contact-form-container .submit-btn {
    padding: 1.5rem 3rem;
    font-size: 1.4rem;
    width: 100%;
  }
}
/* ================== MOBILE MENU ================== */
/* زر الهمبرجر */
.mobile-menu-toggle {
  position: fixed;
  top: 15px;
  left: 15px;
  background: #000;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  z-index: 1101;
  display: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: background 0.3s ease;
}
.mobile-menu-toggle:hover {
  background: #333;
}
/* Overlay */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}
.sidebar-overlay.show {
  opacity: 1;
  visibility: visible;
}
/* Sidebar الأساسي */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 23rem; /* ✅ العرض الجديد */
  background-color: var(--color-primary, #000);
  z-index: 1102;
  overflow-y: auto;
  transition: transform 0.35s ease, opacity 0.35s ease;
  opacity: 1;
  transform: translateX(0); /* ظاهرة في الديسكتوب */
}
/* عند الفتح */
.sidebar.show {
  transform: translateX(0);
  opacity: 1;
}
/* يمنع التمرير أثناء الفتح */
body.sidebar-open {
  overflow: hidden;
}
/* ================== MEDIA QUERY ================== */
@media (max-width: 991px) {
  .mobile-menu-toggle {
    display: block;
  }
  /* إخفاء السايدبار افتراضياً في الموبايل */
  .sidebar {
    transform: translateX(-100%);
    opacity: 0;
    width: 23rem; /* ✅ ثابت أيضاً في الموبايل */
  }
  .sidebar.show {
    transform: translateX(0);
    opacity: 1;
  }
  #dashb-main {
    margin-left: 0 !important;
  }
  .qwe {
    padding-right: 0 !important;
  }
}
.custom-control-label::before, .custom-file-label, .custom-select {
  transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.card {
  background-color: #fff;
  border-radius: var(--radius-16);
  box-shadow: var(--drop-shadow);
  transition: var(--transition-base);
  margin-top: 20px;
  margin-bottom: 20px;
}
/* Fix extra horizontal spacing around dashboard content */
.main-content,
.main-container,
#main-body .container {
  max-width: 100%;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.master-breadcrumb {
	background: #f2f2f2!important;
}
.breadcrumb {
		background: #f2f2f2!important;
}
a {
	text-decoration: none!important;
}
.breadcrumb {
  background: #fff !important;
}
#active-products .product-item:not(:last-child) {
	border-bottom: 0px!important;
}
body, html {
  font-family: "Cairo", sans-serif!important;
}
.register-wrapper .form-control {
outline: none;
  border: 1px solid transparent;
  background-color: var(--color-light-gray);
  padding: 1.3rem 1.7rem;
  border-radius: var(--radius-16);
  width: 100%;
  transition: 0.3s linear;
  padding-top: 30px;
  padding-bottom: 30px;
  font-size: 20px;
}
.register-wrapper .btn{
	height: 5rem;
	width: 18rem;
	font-size: 1.4rem;
	border-radius: 8px;
	line-height: 3;
}
/* ================================
   Hostina - My Products Table Styling
   Updated: Premium Card Design + Pagination
   ================================ */
.table-container {
  font-family: "Cairo", sans-serif;
  background-color: #fff;
  border-radius: var(--radius-16, 16px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  padding: 2rem;
  margin-top: 2rem;
  overflow: hidden;
}
/* Table Base */
.table-container table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  font-size: 1.45rem;
  color: #222;
}
/* Header */
.table-container thead tr {
  background-color: #f8f8f8;
}
.table-container thead th {
  color: #555;
  font-weight: 700;
  padding: 1.4rem 2rem;
  border: none;
  text-transform: none;
  font-size: 1.45rem;
}
/* Rows */
.table-container tbody tr {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}
.table-container tbody tr:hover {
  transform: scale(1.005);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.09);
}
.table-container tbody td {
  padding: 1.5rem 2rem;
  border: none;
  vertical-align: middle;
  font-size: 1.45rem;
}
/* Text & Links */
.table-container tbody td strong {
  font-weight: 700;
  color: #0a0a0a;
}
.table-container tbody td a {
  color: var(--color-primary, #5b33ff);
  text-decoration: none;
  transition: 0.2s;
  font-size: 1.4rem;
}
.table-container tbody td a:hover {
  color: #000;
  text-decoration: underline;
}
/* Alternate Background */
.table-container tbody tr:nth-child(even) {
  background-color: #fafafa;
}
/* ===== STATUS LABELS ===== */
.status {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
  text-transform: capitalize;
}
.status-active {
  background-color: #03b42417;
  color: #03b424;
}
.status-inactive,
.status-suspended {
  background-color: #ff000017;
  color: #b3001b;
}
.status-pending {
  background-color: #ffb8001a;
  color: #d38b00;
}
/* ===== Pagination Styling ===== */
.dataTables_wrapper .dataTables_paginate {
  margin-top: 2.5rem;
  text-align: right;
}
/* ===== Info Text (below table) ===== */
.dataTables_info {
  font-size: 1.35rem;
  color: #555;
  margin-top: 2rem;
}
/* ===== Loading Spinner ===== */
#tableLoading {
  padding: 3rem 0;
  color: #666;
  font-size: 1.4rem;
}
#tableLoading i {
  color: var(--color-primary, #5b33ff);
  margin-right: 6px;
}
/* ===== Responsive ===== */
@media (max-width: 768px) {
  .table-container {
    box-shadow: none;
    border-radius: 0;
    padding: 1rem;
  }
  .table-container table {
    font-size: 1.3rem;
  }
  .table-container tbody td {
    padding: 1rem 1.2rem;
  }
  .dataTables_wrapper .dataTables_paginate {
    text-align: center;
  }
}
/* ================================
   Hostina - Action Buttons Style
   ================================ */
.action-icon-btns a {
  display: block;
  margin: 0 0 12px 0;
  padding: 1.2rem 0;
  text-align: center;
  text-decoration: none;
  font-family: "Cairo", sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: #333;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
/* Hover effect */
.action-icon-btns a:hover {
  background-color: var(--color-primary, #5b33ff);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(91, 51, 255, 0.25);
}
/* Optional subtle overlay animation */
.action-icon-btns a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.action-icon-btns a:hover::after {
  opacity: 1;
}
/* Icon inside button */
.action-icon-btns a i {
  display: block;
  font-size: 2rem;
  margin-bottom: 6px;
  opacity: 0.8;
  transition: all 0.25s ease;
}
.action-icon-btns a:hover i {
  opacity: 1;
  transform: scale(1.15);
}
/* Active state */
.action-icon-btns a.active {
  background-color: var(--color-primary, #5b33ff);
  color: #fff;
  box-shadow: 0 5px 18px rgba(91, 51, 255, 0.25);
}
/* Responsive */
@media (max-width: 768px) {
  .action-icon-btns a {
    font-size: 1.3rem;
    padding: 1rem 0;
  }
  .action-icon-btns a i {
    font-size: 1.7rem;
  }
}
/* Primary Violet */
.card-accent-teal,
.card-accent-pomegranate,
.card-accent-sun-flower,
.card-accent-asbestos,
.card-accent-green,
.card-accent-midnight-blue {
border-color: #000;
}
.home-domain-search {
	background: #0c2e43!important;
	color: #fff!important;
}
.home-domain-search a {
	color: #fff!important;
}
.home-domain-search h2 {
	color: #fff!important;
}
.breadcrumb {
  padding-bottom: 0px !important;
}
/* ================================
   Hostina - Home Domain Search Box
   ================================ */
.home-domain-search {
  color: #fff;
  padding: 3rem 2rem;

  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
/* subtle glow overlay */
.home-domain-search::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.7;
  pointer-events: none;
}
/* Heading and text inside */
.home-domain-search h2,
.home-domain-search p {
  color: #fff;
  margin-bottom: 1.5rem;
}
.home-domain-search input[type="text"],
.home-domain-search input[type="search"] {
  width: 100%;
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  border: none;
  outline: none;
  font-size: 1.5rem;
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.08);
  transition: all 0.25s ease;
}
.home-domain-search input[type="text"]:focus {
  box-shadow: 0 0 0 2px rgba(91, 51, 255, 0.4);
}
/* Buttons */
.home-domain-search .btn {
  height: 4.5rem;
  border-radius: 8px;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 0.25s ease;

}
.home-domain-search .btn-light {
  color: #000;
}
.home-domain-search .btn-dark {
  color: #fff;
  box-shadow: 0 6px 18px rgba(91, 51, 255, 0.35);
}
.home-domain-search .btn-dark:hover {
  box-shadow: 0 10px 25px rgba(91, 51, 255, 0.45);
  transform: translateY(-2px);
}
/* Hover elevation */
.home-domain-search:hover {
  transform: translateY(-4px);

}
/* Responsive */
@media (max-width: 768px) {
  .home-domain-search {
    padding: 2rem 1.5rem;
  }
  .home-domain-search h2 {
    font-size: 1.6rem;
  }
}
.margin-bottom {
	margin-bottom: 50px;
}


.bg-new {
	
	background: #0b384b!important;
	
}