body {
  font-family: "Inter", sans-serif;
  background-color: #f9f9ff;
}

.btn.active {
  background: linear-gradient(45deg, #8e44ad, #6f42c1);
  border: none !important;
  color: white !important;
}

.navbar {
  transition: background-color 0.3s ease-in-out;
}

.navbar-brand {
  font-weight: 800 !important;
}

.hero-section {
  background: linear-gradient(
    135deg,
    rgba(245, 240, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  padding: 30px 0;
}

.hero-section h1 {
  font-weight: 800;
  color: #2c3e50;
  font-size: calc(1.5rem + 2.5vw);
}

.hero-section .lead {
  color: #555;
  max-width: 650px;
  margin: 20px 0 40px 0;
  font-size: 1.1rem;
}

.btn-gradient {
  background: linear-gradient(45deg, #8e44ad, #6f42c1);
  border: none !important;
  color: white !important;
  padding: 14px 35px !important;
  font-weight: 600 !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
  border-radius: 50px !important;
}

.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(111, 66, 193, 0.45);
  color: white;
}
.btn-gradient-sm {
  background: linear-gradient(45deg, #8e44ad, #6f42c1);
  border: none !important;
  color: white !important;
  font-weight: 600 !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
  border-radius: 50px !important;
}

.btn-gradient-sm:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(111, 66, 193, 0.45);
  color: white;
}

.section-title {
  font-weight: 700 !important;
  color: #343a40 !important;
  margin-bottom: 50px;
  text-align: center;
}

.service-card {
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(111, 66, 193, 0.1);
}

.service-card .icon {
  font-size: 3.5rem;
  color: #6f42c1;
  margin-bottom: 20px;
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(142, 68, 173, 0.1),
    rgba(111, 66, 193, 0.1)
  );
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #6f42c1;
  height: 100%;
}

.testimonial-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 20px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #fff;
  background: linear-gradient(45deg, #8e44ad, #6f42c1);
  border-radius: 0.75rem;
}

.cta-section {
  background: linear-gradient(45deg, #6f42c1, #8e44ad);
  color: white;
  padding: 80px 0;
  border-radius: 20px;
}

.footer {
  background-color: #2c3e50;
  color: #f8f9fa;
  padding: 60px 0 20px 0;
}

.footer a {
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.2s;
}

.footer a:hover {
  color: #ffffff;
}

.whatsapp-fab {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.2s;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  color: white;
}

/* Signin page */

.signin-form-container {
  max-width: 450px;
  margin: 5rem auto;
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.signin-form-container h1 {
  font-weight: 700;
  color: #2c3e50;
}

.form-control:focus {
  border-color: #a486d8;
  box-shadow: 0 0 0 0.25rem rgba(111, 66, 193, 0.25);
}

:root {
  --primary-color: #6f42c1;
  --secondary-color: #8e44ad;
  --light-purple: #f9f9ff;
  --dark-text: #2c3e50;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--light-purple);
}

.wrapper {
  display: flex;
  width: 100%;
  min-height: 100vh;
}

/* PAGINATION */
.page-link {
  color: #000 !important;
}
.page-item.active .page-link {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #fff !important;
}

/* Sidebar Styles */
#sidebar {
  width: 250px;
  min-width: 250px;
  background: var(--dark-text);
  color: #fff;
  transition: all 0.3s;
}

#sidebar.collapsed {
  margin-left: -250px;
}

.sidebar-header {
  padding: 20px;
  background: #34495e;
  text-align: center;
}

.sidebar-header .navbar-brand {
  color: #fff;
  font-weight: 800;
}

#sidebar ul.components {
  padding: 20px 0;
  border-bottom: 1px solid #47748b;
}

#sidebar ul p {
  color: #fff;
  padding: 10px;
}

#sidebar ul li a {
  padding: 15px 20px;
  font-size: 1.1em;
  display: block;
  color: #ced4da;
  text-decoration: none;
  transition: all 0.2s;
}

#sidebar ul li a:hover {
  color: #fff;
  background: var(--primary-color);
}

#sidebar ul li.active > a,
a[aria-expanded="true"] {
  color: #fff;
  background: var(--primary-color);
  border-left: 5px solid #ffffff;
}
/* Footer for Sign Out button */
.sidebar-footer {
  padding: 20px;
}

/* Main Content Styles */
#content {
  width: 100%;
  min-height: 100vh;
  transition: all 0.3s;
}

.main-content {
  padding: 10px;
}

.navbar-main {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* .rounded-pill {
  border: 1px solid #6f42c1 !important;
} */

.btn-gradient {
  background: linear-gradient(
    45deg,
    var(--secondary-color),
    var(--primary-color)
  );
  border: none;
  color: white;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  border-radius: 50px;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(111, 66, 193, 0.4);
}

.btn-outline-gradient {
  background: transparent;
  border: 1px solid var(--primary-color) !important;
  font-weight: 600;
  color: transparent;
  background-image: linear-gradient(
    45deg,
    var(--secondary-color),
    var(--primary-color)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
  position: relative;
}

.btn-outline-gradient:hover {
  background: linear-gradient(
    45deg,
    var(--secondary-color),
    var(--primary-color)
  );
  color: white;
  -webkit-text-fill-color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.stat-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  border-left: 5px solid var(--primary-color);
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card .stat-icon {
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.8;
}

.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-text);
}

.table-responsive {
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #dee2e6;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #sidebar {
    margin-left: -250px;
  }
  #sidebar.collapsed {
    margin-left: 0;
  }
  #sidebarCollapse span {
    display: none;
  }
}
