/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
.table-scroll {
  overflow-x: auto;
  /* Enables horizontal scrolling */
  white-space: nowrap;
  /* Prevents line breaks */
}

:root {
  /* Modern Color Palette */
  --primary-color: #4a2c7a;
  --primary-light: #6c4ba3;
  --primary-dark: #351e5a;
  --secondary-color: #8e44ad;
  --accent-color: #ffd700;
  --success-color: #2ecc71;
  --info-color: #3498db;
  --warning-color: #f1c40f;
  --danger-color: #e74c3c;

  /* Backgrounds */
  --bg-body: var(--genie-bg);
  --bg-card: var(--genie-panel);
  --bg-sidebar: var(--genie-panel);
  --bg-header: var(--genie-panel);

  /* Text - Using theme variables */
  --text-primary: var(--text-primary);
  --text-secondary: var(--text-secondary);
  --text-muted: var(--text-label);

  /* Shadows & Borders */
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --header-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  --sidebar-shadow: 4px 0 20px rgba(0, 0, 0, 0.05);
  --border-color: #eef2f7;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --header-height: 70px;
  --sidebar-width: 280px;
  --sidebar-collapsed-width: 70px;

  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Open Sans", sans-serif;
  background: var(--bg-body);
  color: var(--text-primary);
  overflow-x: hidden;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  color: var(--text-primary);
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
  margin-top: var(--header-height);
  padding: 30px;
  transition: var(--transition-normal);
  min-height: calc(100vh - var(--header-height));
}

@media (max-width: 1199px) {
  #main {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
  margin-bottom: 25px;
}

.pagetitle h1 {
  font-size: 26px;
  margin-bottom: 0;
  font-weight: 700;
  color: var(--primary-color);
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  background: var(--primary-color);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(74, 44, 122, 0.3);
}

.back-to-top i {
  font-size: 20px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
  border-radius: var(--radius-md);
  padding: 10px 0;
  animation-name: dropdown-animate;
  animation-duration: 0.2s;
  animation-fill-mode: both;
  border: 0;
  box-shadow: var(--card-shadow);
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
  text-align: center;
  font-size: 15px;
  padding: 10px 25px;
}

.dropdown-menu .dropdown-footer a {
  color: var(--text-secondary);
  text-decoration: underline;
}

.dropdown-menu .dropdown-footer a:hover {
  text-decoration: none;
}

.dropdown-menu .dropdown-divider {
  color: var(--border-color);
  margin: 0;
}

.dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 10px 20px;
  transition: 0.3s;
  color: var(--text-primary);
}

.dropdown-menu .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
  color: var(--primary-color);
}

.dropdown-menu .dropdown-item:hover {
  background-color: var(--genie-panel);
  color: var(--primary-color);
}

@media (min-width: 768px) {
  .dropdown-menu-arrow::before {
    content: "";
    width: 13px;
    height: 13px;
    background: var(--genie-panel);
    position: absolute;
    top: -7px;
    right: 20px;
    transform: rotate(45deg);
    border-top: 1px solid #eaedf1;
    border-left: 1px solid #eaedf1;
  }
}

@keyframes dropdown-animate {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Card */
.card {
  margin-bottom: 30px;
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  background: var(--bg-card);
  transition: var(--transition-normal);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-header,
.card-footer {
  border-color: var(--border-color);
  background-color: transparent;
  padding: 20px;
  font-weight: 600;
  color: var(--text-primary);
}

.card-title {
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  font-family: "Poppins", sans-serif;
  margin-bottom: 15px;
}

.card-title span {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 400;
}

.card-body {
  padding: 20px;
}

/* Alerts */
.alert {
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.alert-heading {
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
}

/* Close Button */
.btn-close:focus {
  outline: 0;
  box-shadow: none;
}

/* Accordion */
.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-button:focus {
  outline: 0;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: var(--genie-panel);
}

.accordion-flush .accordion-button {
  padding: 15px 0;
  background: none;
  border: 0;
}

.accordion-flush .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: var(--primary-color);
}

.accordion-flush .accordion-body {
  padding: 0 0 15px 0;
  color: #3e4f6f;
  font-size: 15px;
}

/* Breadcrumbs */
.breadcrumb {
  font-size: 14px;
  font-family: "Inter", sans-serif;
  color: var(--text-secondary);
  font-weight: 500;
  background: transparent;
  padding: 0;
}

.breadcrumb a {
  color: var(--text-secondary);
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: var(--primary-color);
}

.breadcrumb .breadcrumb-item::before {
  color: var(--text-muted);
}

.breadcrumb .active {
  color: var(--primary-color);
  font-weight: 600;
}

/* Bordered Tabs */
.nav-tabs-bordered {
  border-bottom: 2px solid var(--border-color);
}

.nav-tabs-bordered .nav-link {
  margin-bottom: -2px;
  border: none;
  color: var(--text-secondary);
  font-weight: 500;
}

.nav-tabs-bordered .nav-link:hover,
.nav-tabs-bordered .nav-link:focus {
  color: var(--primary-color);
}

.nav-tabs-bordered .nav-link.active {
  background-color: transparent;
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 1000;
  /* Higher than sidebar */
  height: var(--header-height);
  box-shadow: var(--header-shadow);
  background-color: var(--bg-header);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding-left: 20px;
  position: fixed;
  width: 100%;
  top: 0;
  display: flex;
  align-items: center;
}

.logo {
  line-height: 1;
}

@media (min-width: 1200px) {
  .logo {
    width: 280px;
  }
}

.logo img {
  max-height: 40px;
  margin-right: 10px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.1);
}

.logo span {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  font-family: "Poppins", sans-serif;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
  list-style: none;
}

.header-nav>ul {
  margin: 0;
  padding: 0;
}

.header-nav .nav-icon {
  font-size: 22px;
  color: var(--text-primary);
  margin-right: 25px;
  position: relative;
  transition: var(--transition-fast);
}

.header-nav .nav-icon:hover {
  color: var(--primary-color);
}

.header-nav .nav-profile {
  color: var(--text-primary);
}

.header-nav .nav-profile img {
  max-height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
}

.header-nav .nav-profile span {
  font-size: 14px;
  font-weight: 600;
  margin-left: 10px;
}

.header-nav .badge-number {
  position: absolute;
  inset: -2px -5px auto auto;
  font-weight: normal;
  font-size: 11px;
  padding: 3px 6px;
  border-radius: 50%;
  background: var(--danger-color);
  color: white;
}

.header-nav .notifications {
  inset: 8px -15px auto auto !important;
}

.header-nav .notifications .notification-item {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .notifications .notification-item i {
  margin: 0 20px 0 10px;
  font-size: 24px;
}

.header-nav .notifications .notification-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.header-nav .notifications .notification-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .notifications .notification-item:hover {
  background-color: rgba(0, 240, 255, 0.1);
}

.header-nav .messages {
  inset: 8px -15px auto auto !important;
}

.header-nav .messages .message-item {
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .messages .message-item a {
  display: flex;
}

.header-nav .messages .message-item img {
  margin: 0 20px 0 10px;
  max-height: 40px;
}

.header-nav .messages .message-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #444444;
}

.header-nav .messages .message-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .messages .message-item:hover {
  background-color: rgba(0, 240, 255, 0.1);
}

.header-nav .profile {
  min-width: 240px;
  padding-bottom: 0;
  top: 8px !important;
}

.header-nav .profile .dropdown-header h6 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
  color: #444444;
}

.header-nav .profile .dropdown-header span {
  font-size: 14px;
}

.header-nav .profile .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.header-nav .profile .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.header-nav .profile .dropdown-item:hover {
  background-color: rgba(0, 240, 255, 0.1);
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  position: fixed;
  top: var(--header-height);
  left: 0;
  bottom: 0;
  width: var(--sidebar-collapsed-width);
  z-index: 996;
  /* Lower than header */
  transition: width 0.3s ease;
  padding: 20px 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #aab7cf transparent;
  box-shadow: var(--sidebar-shadow);
  background-color: var(--bg-sidebar);
}

.sidebar:hover {
  width: var(--sidebar-width);
}

@media (max-width: 1199px) {
  .sidebar {
    left: -300px;
  }

  .sidebar.active {
    left: 0;
    width: var(--sidebar-width);
  }
}

.sidebar-nav {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar .nav-item {
  margin-bottom: 5px;
}

.sidebar .nav-heading {
  font-size: 11px;
  text-transform: uppercase;
  color: #899bbd;
  font-weight: 600;
  margin: 10px 0 5px 15px;
}

.sidebar .nav-link {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  transition: 0.3s;
  background: transparent;
  padding: 12px 15px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin-right: 10px;
}

.sidebar .nav-link i {
  font-size: 18px;
  margin-right: 15px;
  color: var(--text-secondary);
  transition: 0.3s;
  min-width: 20px;
  text-align: center;
}

.sidebar .nav-link span {
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.sidebar:hover .nav-link span {
  opacity: 1;
}

.sidebar .nav-link:hover {
  color: var(--primary-color);
  background: #f6f9ff;
}

.sidebar .nav-link:hover i {
  color: var(--primary-color);
}

.sidebar .nav-link.active {
  color: var(--primary-color);
  background: #f6f9ff;
  border-left: 4px solid var(--primary-color);
}

.sidebar .nav-link.active i {
  color: var(--primary-color);
}

/* Submenu styling */
.sidebar .nav-content {
  background-color: rgba(0, 240, 255, 0.1);
  border-radius: 4px;
  margin: 0 6px;
  overflow: hidden;
}

.sidebar .nav-content li {
  list-style: none;
}

.sidebar .nav-content a {
  display: flex;
  align-items: center;
  padding: 8px 15px 8px 30px;
  color: #444444;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  border-radius: 4px;
  margin: 2px 4px;
  font-size: 13px;
}

.sidebar .nav-content a:hover {
  background-color: rgba(0, 240, 255, 0.15);
  color: #4154f1;
}

.sidebar .nav-content a i {
  min-width: 20px;
  margin-right: 8px;
  text-align: center;
  font-size: 12px;
}

.sidebar .nav-content a span {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sidebar:hover .nav-content a span {
  opacity: 1;
}

/* Chevron for collapsible menus */
.sidebar .nav-link .bi-chevron-down {
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 12px;
}

.sidebar:hover .nav-link .bi-chevron-down {
  opacity: 1;
}

/* Tooltip for collapsed sidebar items */
.sidebar .nav-item::before {
  content: attr(data-tooltip);
  position: absolute;
  left: 65px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #012970;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1001;
}

.sidebar .nav-item::after {
  content: '';
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid #012970;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sidebar:not(:hover) .nav-item:hover::before,
.sidebar:not(:hover) .nav-item:hover::after {
  opacity: 1;
  visibility: visible;
}

.sidebar:hover .nav-item::before,
.sidebar:hover .nav-item::after {
  opacity: 0;
  visibility: hidden;
}

/* Prevent Bootstrap collapse when sidebar is collapsed */
.sidebar:not(:hover) .nav-content.collapse {
  display: none !important;
}

/* Logout button styling */
.sidebar .nav-item:last-child .nav-link {
  margin-top: 20px;
  border-top: 1px solid #ebeef4;
  padding-top: 15px;
}

/* Scrollbar styling */
.sidebar {
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #aab7cf transparent;
}

.sidebar::-webkit-scrollbar {
  width: 4px;
}

.sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: #aab7cf;
  border-radius: 2px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
  background-color: #899bbd;
}

.sidebar:not(:hover) {
  scrollbar-width: none;
}

.sidebar:not(:hover)::-webkit-scrollbar {
  display: none;
}

/* Adjust main content to accommodate sidebar */
.main {
  margin-left: 60px;
  transition: margin-left 0.3s ease;
}

/* Responsive design */
@media (max-width: 768px) {
  .sidebar {
    width: 0;
    overflow: hidden;
  }

  .sidebar:hover {
    width: 280px;
  }

  .main {
    margin-left: 0;
  }

  .sidebar-trigger {
    position: fixed;
    left: 0;
    top: 60px;
    width: 15px;
    height: calc(100vh - 60px);
    z-index: 1001;
    background-color: rgba(65, 84, 241, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .sidebar-trigger:hover {
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/
/* Filter dropdown */
.dashboard .filter {
  position: absolute;
  right: 0px;
  top: 15px;
}

.dashboard .filter .icon {
  color: #aab7cf;
  padding-right: 20px;
  padding-bottom: 5px;
  transition: 0.3s;
  font-size: 16px;
}

.dashboard .filter .icon:hover,
.dashboard .filter .icon:focus {
  color: #4154f1;
}

.dashboard .filter .dropdown-header {
  padding: 8px 15px;
}

.dashboard .filter .dropdown-header h6 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #aab7cf;
  margin-bottom: 0;
  padding: 0;
}

.dashboard .filter .dropdown-item {
  padding: 8px 15px;
}

/* Info Cards */
.dashboard .info-card {
  padding-bottom: 10px;
}

.dashboard .info-card h6 {
  font-size: 28px;
  color: #012970;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.dashboard .card-icon {
  font-size: 32px;
  line-height: 0;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  flex-grow: 0;
}

.dashboard .sales-card .card-icon {
  color: #4154f1;
  background: #f6f6fe;
}

.dashboard .revenue-card .card-icon {
  color: #2eca6a;
  background: #e0f8e9;
}

.dashboard .customers-card .card-icon {
  color: #ff771d;
  background: #ffecdf;
}

/* Activity */
.dashboard .activity {
  font-size: 14px;
}

.dashboard .activity .activity-item .activite-label {
  color: #888;
  position: relative;
  flex-shrink: 0;
  flex-grow: 0;
  min-width: 64px;
}

.dashboard .activity .activity-item .activite-label::before {
  content: "";
  position: absolute;
  right: -11px;
  width: 4px;
  top: 0;
  bottom: 0;
  background-color: #eceefe;
}

.dashboard .activity .activity-item .activity-badge {
  margin-top: 3px;
  z-index: 1;
  font-size: 11px;
  line-height: 0;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--genie-panel);
  flex-grow: 0;
}

.dashboard .activity .activity-item .activity-content {
  padding-left: 10px;
  padding-bottom: 20px;
}

.dashboard .activity .activity-item:first-child .activite-label::before {
  top: 5px;
}

.dashboard .activity .activity-item:last-child .activity-content {
  padding-bottom: 0;
}

/* News & Updates */
.dashboard .news .post-item+.post-item {
  margin-top: 15px;
}

.dashboard .news img {
  width: 80px;
  float: left;
  border-radius: 5px;
}

.dashboard .news h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
  margin-bottom: 5px;
}

.dashboard .news h4 a {
  color: #012970;
  transition: 0.3s;
}

.dashboard .news h4 a:hover {
  color: #4154f1;
}

.dashboard .news p {
  font-size: 14px;
  color: #777777;
  margin-left: 95px;
}

/* Recent Sales */
.dashboard .recent-sales {
  font-size: 14px;
}

.dashboard .recent-sales .table thead {
  background: #f6f6fe;
}

.dashboard .recent-sales .table thead th {
  border: 0;
}

.dashboard .recent-sales .dataTable-top {
  padding: 0 0 10px 0;
}

.dashboard .recent-sales .dataTable-bottom {
  padding: 10px 0 0 0;
}

/* Top Selling */
.dashboard .top-selling {
  font-size: 14px;
}

.dashboard .top-selling .table thead {
  background: #f6f6fe;
}

.dashboard .top-selling .table thead th {
  border: 0;
}

.dashboard .top-selling .table tbody td {
  vertical-align: middle;
}

.dashboard .top-selling img {
  border-radius: 5px;
  max-width: 60px;
}

/*--------------------------------------------------------------
# Profie Page
--------------------------------------------------------------*/
.profile .profile-card img {
  max-width: 120px;
}

.profile .profile-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #2c384e;
  margin: 10px 0 0 0;
}

.profile .profile-card h3 {
  font-size: 18px;
}

.profile .profile-card .social-links a {
  font-size: 20px;
  display: inline-block;
  color: rgba(1, 41, 112, 0.5);
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}

.profile .profile-card .social-links a:hover {
  color: #012970;
}

.profile .profile-overview .row {
  margin-bottom: 20px;
  font-size: 15px;
}

.profile .profile-overview .card-title {
  color: #012970;
}

.profile .profile-overview .label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit img {
  max-width: 120px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  padding: 28px 30px;
}

.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color: #4154f1;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #012970;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: var(--genie-panel);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #4154f1;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #4154f1;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #5969f3;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404 {
  padding: 30px;
}

.error-404 h1 {
  font-size: 180px;
  font-weight: 700;
  color: #4154f1;
  margin-bottom: 0;
  line-height: 150px;
}

.error-404 h2 {
  font-size: 24px;
  font-weight: 700;
  color: #012970;
  margin-bottom: 30px;
}

.error-404 .btn {
  background: #51678f;
  color: #fff;
  padding: 8px 30px;
}

.error-404 .btn:hover {
  background: #3e4f6f;
}

@media (min-width: 992px) {
  .error-404 img {
    max-width: 50%;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  padding: 20px 0;
  font-size: 14px;
  transition: all 0.3s;
  border-top: 1px solid #cddfff;
}

.footer .copyright {
  text-align: center;
  color: #012970;
}

.footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #012970;
}

/*--------------------------------------------------------------
# Logo Design
--------------------------------------------------------------*/
.container-fluid-logo {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  margin: 0;
  /* Removes any default margins */
  padding: 0;
  /* Removes any default padding */
}

.logo-container {
  width: 60%;
  height: 100vh;
  /* Full height of the viewport */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Ensures the image doesn't overflow its container */
  margin: 0;
  /* Removes any default margins */
}

.logo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures the image covers the whole container */
  transition: transform 0.3s ease, filter 0.3s ease;
  /* Adds transition effects for smooth hover */
}

.logo-container img:hover {
  transform: scale(1.05);
  /* Slightly scales up the image on hover */
  filter: brightness(90%);
  /* Darkens the image on hover */
}

.form-container {
  width: 40%;
  height: 100vh;
  /* Full height of the viewport */
  background-color: var(--genie-panel-transparent);
  /* Slightly opaque background for contrast */
  padding: 60px;
  /* Adjusted padding for more form space */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  /* Add shadow for depth */
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  /* Includes padding in the element's total width and height */
}