/*
Template Name: Softek | Software and App Landing Website Template
Author: Pillarix
Author URI: https://wrapbootstrap.com/user/pillarix
Version: 1.0
*/
/*
-- Body
-- Custom Bootstrap
-- Index
-- Navbar
-- Back To Top
-- Mobile Sidebar
-- Page Loading
*/

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.2/font/bootstrap-icons.min.css");
@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100;200;300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Changa:wght@200..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

/* Body */
:root {
  --primary-color: #01c0c8;
  --secondary-color: #fb9678;
  --font-primary: "Changa", "Plus Jakarta Sans", sans-serif;
  --font-arabic: "Changa", "Rubik", sans-serif;
}

body {
  font-family: var(--font-primary);
  font-size: 14px;
}

/* RTL Support */
body.rtl {
  direction: rtl;
  text-align: right;
  font-family: var(--font-arabic);
}

body.rtl .navbar-nav {
  padding-right: 0;
}

body.rtl .dropdown-menu {
  text-align: right;
}

body.rtl .ms-auto {
  margin-right: auto !important;
  margin-left: 0 !important;
}

body.rtl .ms-2 {
  margin-right: 0.5rem !important;
  margin-left: 0 !important;
}

body.rtl .me-2 {
  margin-left: 0.5rem !important;
  margin-right: 0 !important;
}

body.rtl .text-start {
  text-align: right !important;
}

body.rtl .text-end {
  text-align: left !important;
}

/* Font weights for both directions */
.fw-light {
  font-weight: 300 !important;
}
.fw-normal {
  font-weight: 400 !important;
}
.fw-medium {
  font-weight: 500 !important;
}
.fw-semibold {
  font-weight: 600 !important;
}
.fw-bold {
  font-weight: 700 !important;
}
.fw-bolder {
  font-weight: 800 !important;
}

/* Links */
a {
  text-decoration: none;
  color: #1b1b1b;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

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

/* Custom Bootstrap */
.btn {
  font-size: 14px;
  padding: 12px 30px !important;
  font-weight: 600;
}

.btn-primary {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--primary-color);
  border-color: var(--primary-color);
  opacity: 0.9;
}

.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

/* Index */
.transition-3d-hover {
  transition: all 0.2s ease-in-out;
}
.transition-3d-hover:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}
.gradient-text {
  color: #000000;
}
.icon {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.user-img {
  width: 40px;
}
.admin-icon {
  height: 25px;
  width: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-icon {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-sm {
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Navbar */
.app-nav a.nav-link.py-4 {
  padding-top: 35px !important;
  padding-bottom: 35px !important;
  color: #000;
  font-size: 15px;
}
.app-nav .navbar-nav .nav-link:hover {
  color: var(--primary-color);
}
.app-nav .navbar-nav .nav-link.active {
  color: var(--primary-color);
}
.osahan-header-logo .logo {
  height: 30px;
}
.navbar-nav .dropdown-menu {
  box-shadow: 0px 24px 21px rgb(0 0 0 / 11%) !important;
}
.dropdown:hover > .dropdown-menu {
  display: block;
  animation: dropdown-show 0.25s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@keyframes dropdown-show {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.dropdown-menu:hover .dropdown-item {
  opacity: 0.6;
}
.dropdown-menu .dropdown-item:hover {
  opacity: unset;
  font-weight: 500;
}
.dropdown-item {
  transition: all 0.2s ease-in-out;
  padding-right: 40px;
}
.dropdown-item:hover {
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
}
.dropdown-item:after {
  content: "\ea6c";
  font-family: remixicon !important;
  font-style: normal;
  position: absolute;
  right: 0;
  font-size: 14px;
  line-height: 24px;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.dropdown-item:hover:after {
  opacity: unset;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.dropdown-item {
  position: relative;
}

/* Navigation Login Button */
.nav-item .btn-outline-primary {
  border-width: 2px;
  transition: all 0.3s ease;
  height: 40px;
  margin: 12px 0 12px 12px;
}

.nav-item .btn-outline-primary:hover {
  background: rgb(1, 192, 200);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(1, 192, 200, 0.15);
}

.tag {
  background-color: rgb(251, 150, 120);
  color: white;
  padding: 2px 2px;
  border-radius: 3px;
  font-size: 0.5em;
  text-transform: uppercase;
}

.list-center {
  padding: 0px !important;
}

.border-bottom {
  border-bottom: #f2f2f2 solid !important;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

/* Services Section */
.waves {
  width: 100%;
  height: 200px;
}

.icon-circle {
  width: 80px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.service-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 1rem 3rem rgba(251, 150, 120, 0.1) !important;
}

.service-card .icon-wrapper {
  position: relative;
}

.service-card:hover .icon-circle {
  background: rgb(251, 150, 120) !important;
}

.service-card:hover .icon-circle i {
  color: white !important;
}

.service-card .icon-circle i {
  transition: all 0.3s ease;
}

/* Image Container */
.image-container {
  position: relative;
  /* border-radius: 20px; */
  overflow: hidden;
  /* box-shadow: 0 10px 30px rgba(251, 150, 120, 0.1); */
  transition: all 0.3s ease;
  padding: 10px;
}

/* .image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* border: 2px solid rgb(1, 192, 200); */
/* border-radius: 20px; */
/* opacity: 0.3;
  transition: all 0.3s ease;
} */

/* .image-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(251, 150, 120, 0.2);
}
.image-container:hover::before {
  opacity: 0.6;
} */

.image-container img {
  border-radius: 20px;
  transition: all 0.3s ease;
}

/* Product Showcase */
.product-showcase .image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.product-showcase .image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid #6c757d;
  border-radius: 20px;
  opacity: 0.1;
  transition: all 0.3s ease;
}

.product-showcase .image-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.product-showcase .image-container:hover::before {
  opacity: 0.2;
}

.product-showcase .image-container img {
  border-radius: 20px;
  transition: all 0.3s ease;
}

.product-showcase .btn {
  transition: all 0.3s ease;
}

.product-showcase .btn:hover {
  transform: translateY(-3px);
}

/* Back To Top */
#back-to-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  box-shadow: 0 10px 40px 0 rgba(47, 47, 47, 0.1) !important;
  background-color: #fff;
  color: #2d2a3e;
  width: 50px;
  border-radius: 100px;
  cursor: pointer;
  height: 50px;
  border: 3px solid #ebebeb;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
}
#back-to-top:hover {
  box-shadow: 0 10px 40px 0 rgba(47, 47, 47, 0.1) !important;
  background-color: #2d2a3e;
  color: #ffffff;
}

/* Mobile Sidebar */
#sidebar .offcanvas-header .link-light {
  color: #000 !important;
}
#sidebar .offcanvas-body .nav-item .nav-link {
  text-align: center;
  padding: 15px 20px !important;
}
#sidebar .offcanvas-body .nav-item.dropdown {
  position: unset !important;
}
#sidebar .offcanvas-body .dropdown-menu {
  position: relative !important;
  transform: unset !important;
  box-shadow: none !important;
}
#sidebar .offcanvas-body .dropdown-menu .dropdown-mega-content .col-lg-3 {
  border: none !important;
  padding: 15px 15px !important;
  text-align: center;
}

/* Page Loading */
.page-loading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s 0.2s ease-in-out;
  transition: all 0.4s 0.2s ease-in-out;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
}
[data-bs-theme="dark"] .page-loading {
  background-color: #121519;
}
.page-loading.active {
  opacity: 1;
  visibility: visible;
}
.page-loading-inner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  opacity: 0;
}
.page-loading.active > .page-loading-inner {
  opacity: 1;
}
.page-loading-inner > span {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: normal;
  color: #6f788b;
}
[data-bs-theme="dark"] .page-loading-inner > span {
  color: #fff;
  opacity: 0.6;
}
.page-spinner {
  display: inline-block;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.75rem;
  vertical-align: text-bottom;
  background-color: #d7dde2;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: spinner 0.75s linear infinite;
  animation: spinner 0.75s linear infinite;
}
[data-bs-theme="dark"] .page-spinner {
  background-color: rgba(255, 255, 255, 0.25);
}
@-webkit-keyframes spinner {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
