@font-face {
    font-family: 'Montserrat-Arabic';
    src: url('../fonts/Montserrat-Arabic-Regular.eot');
    src: url('../fonts/Montserrat-Arabic-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat-Arabic-Regular.woff2') format('woff2'),
        url('../fonts/Montserrat-Arabic-Regular.woff') format('woff'),
        url('../fonts/Montserrat-Arabic-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat-Arabic';
    src: url('../fonts/Montserrat-Arabic-SemiBold.eot');
    src: url('../fonts/Montserrat-Arabic-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat-Arabic-SemiBold.woff2') format('woff2'),
        url('../fonts/Montserrat-Arabic-SemiBold.woff') format('woff'),
        url('../fonts/Montserrat-Arabic-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat-Arabic';
    src: url('../fonts/Montserrat-Arabic-Bold.eot');
    src: url('../fonts/Montserrat-Arabic-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat-Arabic-Bold.woff2') format('woff2'),
        url('../fonts/Montserrat-Arabic-Bold.woff') format('woff'),
        url('../fonts/Montserrat-Arabic-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Montserrat-Arabic", sans-serif;
  color: #444444;
}

a {
  color: #3676d1;
  text-decoration: none;
}

a:hover {
  color: #3676d1;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat-Arabic", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #3676d1;
  border-top-color: #d2f9eb;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #3676d1;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #0b5ed7;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: rgba(1, 4, 136, 0.9);
}
#header.header-transparent {
  background: transparent;
}
#header.header-scrolled {
    background: #fff;
    height: 85px;
    box-shadow: 0px 0px 15px 15px rgb(0 0 0 / 10%);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
}
#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}
#header .logo img {
    padding: 0;
    margin: 0;
    height: 56px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
	padding: 0;
}
.navbar ul {
	margin: 0 100px 0 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
	width: 100%;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
	display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: "Montserrat-Arabic", sans-serif;
    color: #333;
    white-space: nowrap;
    transition: 0.3s;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar > ul > li > a:before {
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	bottom: 3px;
	right: 30px;
	background-color: #3676d1;
	visibility: hidden;
	width: 0px;
	transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 25px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #333;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #01036f;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #3676d1;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
	color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}
.mobile-nav-toggle.bi-list{
	color: #3676d1;
}
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
	.navbar ul {
		display: none;
		width: auto;
		margin: 0;
	}
	.navbar-mobile ul {
		padding: 10px 15px!important;
	}
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(1, 3, 91, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile > ul > li > a:before {
  left: 20px;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #333;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #333;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #3676d1;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  /*background: url("../img/hero-bg.jpg");*/
  position: relative;
  padding: 120px 0 0 0;
}
#hero:before {
  content: "";
  background: #fff;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero h1 {
  margin: 0 0 20px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: rgba(255, 255, 255, 0.8);
}
#hero h1 span {
  color: #fff;
  border-bottom: 4px solid #3676d1;
}
#hero h2 {
    color: #333;
    margin-bottom: 40px;
    font-size: 70px;
    font-weight: bold;
}
/*#hero .btn-get-started {
  font-family: "Montserrat-Arabic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #3676d1;
}
#hero .btn-get-started:hover {
  background: #17b57d;
}*/
#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
#hero .animated2 {
  animation: up-down 3s ease-in-out infinite alternate-reverse both;
}
#hero .ani_images {
    position: relative;
    min-height: 650px;
}

#hero .ani_images img {
    position: absolute;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 991px) {
  #hero {
    padding-top: 80px;
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    max-width: 50%;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 10px;
  }
  #hero h2 {
	font-size: 45px;
    line-height: initial;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
.hero-waves {
  display: block;
  margin-top: 60px;
  width: 100%;
  height: 60px;
  z-index: 5;
  position: relative;
}

.wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f5f5ff;
}

.section-title {
  padding-bottom: 40px;
}


.dividers-header {
	position: relative;
    margin: 20px 0;
}

h2.section-title {
    display: block;
    padding-bottom: 0;
    font-size: 40px;
    font-weight: 800;
    height: 55px;
    margin: 0;
	text-align: inherit;
}
h2.section-title span {
    position: relative;
    z-index: 10;
    color: #333;
}

.listAll-wrapper {
	text-align: left;
    margin: 15px 0 0 0;
}
.listAll-wrapper .btn {
    padding: 0 0 5px 0;
    border-bottom: 1px solid #212529;
    border-radius: 0;
    margin: 0 10px;
    font-weight: 800;
}
.listAll-wrapper .btn:hover {
    border-bottom: 1px solid #007d56;
	color:#007d56
}





.section-title h2 {
    margin: 0 0 40px 0;
    font-size: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Montserrat-Arabic", sans-serif;
    color: #333;
}
.section-title h2::after {
    content: "";
    width: 250px;
    height: 5px;
    display: block;
    background: #62dbfb;
    margin: 4px auto;
}
.section-title p {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Montserrat-Arabic", sans-serif;

}

.works-no span {
    color: #3676d1;
    font-size: 90px;
    vertical-align: middle;
    margin: 0 9px;
    font-weight: 800;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #fafaff;
  min-height: 40px;
  margin-top: 80px;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 64px;
  }
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}
@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
    padding: 40px 0 0 0;
    background-image: url(../img/divider.svg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 650px;
}
/*.about {
    padding: 40px 0 0 0;
    height: 650px;
    position: relative;
}
.about .curved {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.about .curved img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-fit: fill;
    object-position: top center;
}*/

/*.about {
  padding: 40px 0 0 0;
    height: 650px;
	position:relative
}
.about:before {
    content: url(../img/divider.svg);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
}*/
.about .icon-boxes h3 {
    font-size: 50px;
    font-weight: 700;
    color: #010483;
    margin-bottom: 30px;
}
.about p {
    line-height: 30px;
}
.about .icon-box {
  margin-top: 40px;
}
.about .icon-box .icon {
  float: right;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #7ceec6;
  border-radius: 50px;
  transition: 0.5s;
}
.about .icon-box .icon i {
  color: #3676d1;
  font-size: 32px;
}
.about .icon-box:hover .icon {
  background: #3676d1;
  border-color: #3676d1;
}
.about .icon-box:hover .icon i {
  color: #fff;
}
.about .icon-box .title {
  margin-right: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}
.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}
.about .icon-box .title a:hover {
  color: #3676d1;
}
.about .icon-box .description {
  margin-right: 85px;
  line-height: 24px;
  font-size: 14px;
}
.about .video-box {
  background: url("../img/about.png") center center no-repeat;
  background-size: contain;
  min-height: 300px;
}
.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#3f43fd 50%, rgba(63, 67, 253, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(63, 67, 253, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.about .play-btn:hover::after {
  border-left: 15px solid #3f43fd;
  transform: scale(20);
}
.about .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# About boxs
--------------------------------------------------------------*/
.about-boxs{
    margin-top: -200px;
}
.list-about {
	width: 100%;
    height: 290px;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: 0px 10px 35px rgb(0 0 0 / 12%);
    overflow: hidden;
    position: relative;
    top: 0;
    text-align: right;
	transition: all 0.3s ease-in-out 0s;
}
.list-about:hover {
    top: -3px;
}
.list-about .img-wrapper {
    margin: 0 0 20px;
}
.list-about img {
	filter: brightness(0) invert(1);
}
.list-about h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 18px;
}

.list-about p {
    color: #fff;
    font-weight: 400;
    font-size: 13px;
}

.list-about.list-about-1 {
    background: linear-gradient(135deg, #97ABFF 0%, #123597 100%);
}

.list-about.list-about-2 {
    background: linear-gradient(314.47deg, #C49403 2.43%, #FFE288 117.63%);
}

.list-about.list-about-3 {
    background: linear-gradient(135deg, #FF7AF5 0%, #513162 100%);
}

.list-about.list-about-4 {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 60%, #1ab0d9 100%);
    position: relative;
    overflow: hidden;
}

/* Ensure content is above pseudo-elements */
.list-about.list-about-4 .img-wrapper,
.list-about.list-about-4 h3,
.list-about.list-about-4 p {
    position: relative;
    z-index: 1;
}

/* Subtle shine overlay for events block */
.list-about.list-about-4::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    pointer-events: none;
    z-index: 0;
}

.list-about.list-about-4::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
    z-index: 0;
}

/* Horizontal Layout for Full Width Block */
.list-about.list-about-horizontal {
    height: auto !important;
    min-height: unset;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    text-align: right;
}

.list-about-horizontal .horizontal-content {
    display: flex;
    align-items: center;
    width: 100%;
}

.list-about-horizontal .img-wrapper {
    margin: 0 0 0 30px !important; /* Space on left for RTL layout */
    flex: 0 0 auto;
}

.list-about-horizontal .img-wrapper img {
    width: 80px;
}

.list-about-horizontal .text-content {
    flex: 1;
}

.list-about-horizontal .text-content h3 {
    margin-bottom: 10px;
}

.list-about-horizontal .text-content p {
    margin-bottom: 0;
}

/* Responsive adjustments for the horizontal block */
@media (max-width: 991px) {
    .list-about.list-about-horizontal {
        padding: 30px;
        text-align: center;
    }
    .list-about-horizontal .horizontal-content {
        flex-direction: column;
    }
    .list-about-horizontal .img-wrapper {
        margin: 0 0 20px 0 !important;
    }
    .list-about-horizontal .text-content {
        text-align: center;
    }
}
/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/
.details .content + .content {
  margin-top: 100px;
}
.details .content h3 {
  font-weight: 600;
  font-size: 26px;
  color: #010483;
}
.details .content ul {
  list-style: none;
  padding: 0;
}
.details .content ul li {
  padding-bottom: 10px;
}
.details .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #3676d1;
}
.details .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}
.gallery .gallery-item:hover img {
  transform: scale(1.1);
}




/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0;
}
.faq .faq-list ul {
  padding: 0;
  list-style: none;
}
.faq .faq-list li + li {
  margin-top: 15px;
}
.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}
.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Montserrat-Arabic", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}
.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  left: 0;
  right: 20px;
  color: #3676d1;
}
.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: auto;
  left: 0;
  top: 0;
}
.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}
.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list a.collapsed {
  color: #343a40;
}
.faq .faq-list a.collapsed:hover {
  color: #3676d1;
}
.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
  display: none;
}
@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
}
.contact .info i {
    font-size: 20px;
    color: #fff;
    float: right;
    width: 44px;
    height: 44px;
    background: #5a3983;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}
.contact .info h3 {
	font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
    text-align: center;
}
.contact .info h4 {
    padding: 0 60px 0 0;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}
.contact .info p {
  padding: 0 60px 0 0;
  margin-bottom: 0;
  font-size: 14px;
  color: #ffffff;
}
.contact .info p a {
    color: #fff;
}
.contact .info p a:hover {
   text-decoration:underline
}
.contact .info p.phone-no {
    direction: ltr;
    text-align: right;
}
.contact .info .email, .contact .info .phone {
  margin-top: 40px;
}
.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
    background: #fff;
    color: #5a3983;
}
.contact .php-email-form {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.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;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 10px;
  box-shadow: none;
  font-size: 14px;
}
.contact .php-email-form input {
    height: 44px;
    text-align: right;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
}
.alertspan {
    font-size: 11px;
}
.alert {
    font-size: 13px;
}
/*.contact .php-email-form button[type=submit] {
  background: #3676d1;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #3676d1;
}*/

.call_us {
    padding: 15px;
    border-radius: 20px;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/************************************************************

				Custom Control Owl Carusel

************************************************************/


.owl-custom-control {
    display: inline-block;
}
.owl-custom-control .owl-theme .owl-nav [class*=owl-] {
	margin: 0 10px 0 0;
    padding: 0;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border: 0;
    color: #444;
    background-color: #0000;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.owl-custom-control .custom-nav.owl-nav {
    margin: 0;
    direction: ltr;
}

.owl-custom-control .owl-theme .owl-nav [class*=owl-] i {
    font-size: 32px;
    vertical-align: middle;
    color: inherit;
}

.owl-custom-control .owl-theme .owl-nav [class*=owl-]:hover {
    background-color: #9d9d9d;
    border-color: #9d9d9d;
    color: #fff;
}

.owl-custom-control .owl-theme .owl-controls {
    background: transparent;
    position: static;
    margin: 0;
}


/*--------------------------------------------------------------
# works
--------------------------------------------------------------*/

.list-work {
    margin: 20px 0;
    text-align: center;
}
.list-work a{
    height: 300px;
    display: block;
    border-radius: 15px;
    overflow: hidden;
    transition: all ease-in-out 0.3s;
    box-shadow: 0px 2px 35px rgb(0 0 0 / 7%);
}
.list-work h3 {
    margin: 20px 0 0 0;
    font-size: 24px;
    font-weight: 600;
}

.list-work img {
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    object-fit: cover;
    object-position: center bottom;
}
.list-work:hover img {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

#events_latest .list-work a {
    height: auto;
    aspect-ratio: 16 / 10;
}
#events_latest .list-work img {
    object-fit: cover;
    object-position: center;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.list-service {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    top: 0;
    background-color: #fff;
    height: 250px;
    margin-bottom: 20px;
    padding: 20px 13px;
    text-align: center;
    overflow: hidden;
    border-radius: 15px;
    transition: all ease-in-out 0.1s;
    box-shadow: 0px 2px 35px rgb(0 0 0 / 7%);
}
.list-service:hover {
	top:-2px
}
.list-service img {
    width: 64px;
}

.list-service .img-wrapper {
    margin: 10px 0 20px 0;
}

.list-service h3 {
    font-size: 23px;
    font-weight: 700;
    color: #333;
    margin: 5px 0 0 0;
}

.list-service .static {
  position:absolute;
  background: white;
}

.list-service:hover .static {
  opacity:0;
}

/* Custom Service Colors */
.service-tech {
    border-top: 3px solid #3676d1;
}
.service-tech:hover {
    box-shadow: 0 0 15px rgba(54, 118, 209, 0.4);
}
.service-tech img {
    filter: hue-rotate(30deg) saturate(1.2);
}

.service-marketing {
    border-top: 3px solid #BC78EC;
}
.service-marketing:hover {
    box-shadow: 0 0 15px rgba(188, 120, 236, 0.4);
}
.service-marketing img {
    filter: hue-rotate(90deg) saturate(1.2);
}

.service-events {
    border-top: 3px solid #62dbfb;
}
.service-events:hover {
    box-shadow: 0 0 15px rgba(98, 219, 251, 0.4);
}

/*--------------------------------------------------------------
# partners
--------------------------------------------------------------*/

.list-partner {
    text-align: center;
    margin-bottom: 25px;
}

.list-partner img {
    height: auto;
    width: auto!important;
    margin: auto;
}
/*--------------------------------------------------------------
# Adviser
--------------------------------------------------------------*/
#adviser {
    background: linear-gradient(180deg, #BC78EC 0%, #3B2667 100%);
    color: #fff;
    padding: 75px 0;
}
#adviser .saying {
    font-size: 30px;
    font-weight: 400;
    display: flex;
    align-items: center;
}
#adviser .saying:before {
    height: 135px;
    width: 10px;
    background-color: #00deff;
    content: "";
    display: inline-block;
    float: right;
    margin-left: 20px;
    border-radius: 20px;
}

#adviser .sign {

}
#adviser .sign-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#adviser .sign h5:nth-child(1) {
    font-size: 18px;
}

#adviser .sign h5:nth-child(2) {
    font-size: 26px;
    margin-bottom: 12px;
}

#adviser .sign h5:nth-child(3) {
    font-size: 14px;
}
/*--------------------------------------------------------------
# Bootstrap
--------------------------------------------------------------*/

.mt-5 {
    margin-top: 5rem!important;
}

.btn-primary {
    color: #fff;
    background-color: #3676d1;
    border-color: #3676d1;
}
.btn-primary:hover {
    color: #fff;
    background-color: #0b5ed7;
    border-color: #0b5ed7;
}
.btn-outline-primary {
    color: #333333;
    border-color: #3676d1;
}
.btn-outline-primary:hover {
    color: #fff;
    background-color: #3676d1;
    border-color: #3676d1;
}
.btn-check:active+.btn-outline-primary, .btn-check:checked+.btn-outline-primary, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show, .btn-outline-primary:active {
    color: #fff;
    background-color: #3676d1;
    border-color: #3676d1;
}
.btn {
    border-width: 3px;
    padding: 10px 25px;
    font-size: 15px;
    border-radius: 10px;
}
.btn-check:focus+.btn-outline-primary, .btn-outline-primary:focus {
    box-shadow: none;
}
.btn-check:focus+.btn-primary, .btn-primary:focus {
    box-shadow: none;
}
.btn-check:active+.btn-primary:focus, .btn-check:checked+.btn-primary:focus, .btn-primary.active:focus, .btn-primary:active:focus, .show>.btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}
.btn-check:active+.btn-outline-primary:focus, .btn-check:checked+.btn-outline-primary:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus, .btn-outline-primary:active:focus {
    box-shadow: none;
}
a.btn.btn-ask {
	color: #fff;
    background-color: #3676d1;
    border: 0;
    font-size: 13px;
    text-align: center;
    display: block;
}

a.btn.btn-ask:hover {
    color: #fff;
    background-color: #0b5ed7;
}
.form-control:focus {
    border-color: #955fc3;
}
/*--------------------------------------------------------------
# Who we are
--------------------------------------------------------------*/

.box-container {
    margin: 20px 0;
}

.box-container h2.front-title {
    margin: 50px 0 0 0;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    color: #03446A;
}

.box-container .img-wrapper {
    text-align: center;
    margin: 30px 0 0 0;
}

.box-container .img-wrapper i {
    font-size: 60px;
    color:#955fc4
    /*background: #BC78EC;
    background: linear-gradient(135deg, #BC78EC 0%, #3B2667 100%);
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text;*/
}

.box-container .front-desc {
    font-size: 14px;
    color: #5b5d5f;
}

.box-container h2.back-title {
    color: #fff;
    font-size: 22px;
}

.box-container .back-desc {
    font-size: 14px;
    color: #fff;
    line-height: 1.8;
}



.flip-container {
	perspective: 1000px;
	transform-style: preserve-3d;
	position:relative;
}
.flip-container:hover .front {transform: rotateY(180deg);}
.flip-container:hover .back {transform: rotateY(0deg);}

.flipper {transition: 1s;transform-style: preserve-3d;position: relative;height: 300px;}


.flip-container, .front, .back {
    width: 100%;
    height: 300px;
    margin: 0;
}
.front, .back {
	backface-visibility: hidden;
	transition: 1s;
	transform-style: preserve-3d;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 20px;
	box-shadow: -13px -13px 58px -13px rgb(0 0 0 / 10%);
}
.front {
    background-color: #fff;
    padding: 30px 25px;
	z-index: 2;
	transform: rotateY(0deg);
}

.back {
    background: #BC78EC;
    background: linear-gradient(135deg, #BC78EC 0%, #3B2667 100%);
	color:#fff;
    padding: 30px 25px;
	transform: rotateY(-180deg);
}
 
 
 .flipper .front {
	height: 100%;
	position: absolute;
	top: 0;
	z-index: 900;
	-webkit-transform: rotateX(0deg) rotateY(0deg);
	-moz-transform: rotateX(0deg) rotateY(0deg);
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}

.flipper .back {
	height: inherit;
	position: absolute;
	top: 0;
	z-index: 1000;
	-webkit-transform: rotateY(-180deg);
	-moz-transform: rotateY(-180deg);
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	 -o-transition: all .4s ease-in-out;
		transition: all .4s ease-in-out;
}
.flipper.flip .front {
	z-index: 900;
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
}
.flipper.flip .back {
	z-index: 1000;
	-webkit-transform: rotateX(0deg) rotateY(0deg);
	-moz-transform: rotateX(0deg) rotateY(0deg);
}

/*--------------------------------------------------------------
# 
--------------------------------------------------------------*/

.ed-gredient {
    background: linear-gradient(135deg, #BC78EC 0%, #3B2667 100%);
}

/*====================================================================
				  Contact Form Activation
====================================================================*/
.alert-wrapper {
  display: none;
  position: fixed;
  width: 100%;
  height:100%;
  background: rgba(0,0,0,0.6);
  top: 0;
  left: 0;
  z-index: 9999999;
    direction: ltr;
}
#success,
#error {
  position: relative;
  width:500px;
  height: 100px;
  top: calc(50% - 50px);
  left:calc(50% - 250px);
  background: rgba(0,0,0,0.8);
  text-align: center;
}
#success .wrapper,
#error .wrapper {
  display: table;
  width:100%;
  height: 100%;
}
#success .wrapper p,
#error .wrapper p{
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}
#success {
  color: #57D1C9;
}
#error {
  color: #C9182B;
}
#error button,
#success button {
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 20px;
    background: #0000;
    border-radius: 50%;
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 20px;
    outline: 0;
    border: 0;
}
label.error {
  display: none !important;
}
input.error,
textarea.error {
  border:1px solid #f03838 !important;
}
/*** 
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
	background-image: url(../img/Footer.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 0 20px 0;
    color: #fff;
    font-size: 14px;
    height: 230px;
}
#footer .footer-top {
  padding: 20px 0;
}

#footer .footer-top .social-links a {
  font-size: 26px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
    background: #422960;
    color: #fff;
    text-decoration: none;
}
#footer .copyright {
    text-align: center;
}
#footer .copyright a {
    color: #fff;
}
#footer .img-wrapper img {
    height: 50px;
}
#footer .social-links {
    text-align: left;
    direction: ltr;
}

@media (min-width:992px) and (max-width:1399px) {
	.list-about {
		height: 340px;
		overflow: hidden;
	}
	/*#footer .footer-top {
		padding: 0;
	}*/
}

@media (min-width: 992px) {
.navbar {
	width: 100%;
}

}
@media (max-width: 991px) {
	#hero .ani_images {
		position: relative;
		min-height: unset;
		margin-top: 50px;
	}
	#hero .hero-img img {
		width: 100%;
		max-width: 100%;
		left: 0;
		top: 0;
	}
	#hero .hero-img img.img1 {
		position: relative;
	}
	h2.section-title {
		height: auto;
		font-size: 32px;
	}
	.list-work {

	}
	.list-service {
		height: auto;
		min-height: 230px;
	}
	.section-title h2 {
		margin: 0 0 15px 0;
		font-size: 35px;
	}
	.list-work a {
		height: auto;
	}
}
@media screen and (max-width: 768px) {
	form.php-email-form {
		margin: 30px 0 0 0;
	}
	.info-wrapper {
		margin: 30px 0 0;
	}
	.call_us {
		padding: 15px 15px 50px;
	}
	#footer {
		font-size: 14px;
		height: auto;
		background-image: none;
		background-color: #71489e;
	}
	#footer .social-links{
		text-align: center;
	}
	.social-links {
		text-align: center;
		margin-top: 20px;
		margin-bottom: 20px;
	}
	.img-wrapper.f-logo {
		text-align: center!important;
		margin: 20px 0 0 0;
	}
	.list-about {
		height: auto;
		overflow: visible;
	}
	.list-service {
		height: auto;
		min-height: 200px;
	}
	.box-container h2.front-title {
		margin: 25px 0 0 0;
	}
	.flipper {
		height: 250px;
	}

	.flip-container, .front, .back {
		height: 250px;
	}
}

@media screen and (max-width: 550px) {
	.about-boxs {
		margin-top: -180px;
	}
}

/*--------------------------------------------------------------
# Odoo Section V2 (Floating UI)
--------------------------------------------------------------*/
.odoo-section-v2 {
    background-color: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.odoo-wave-bg {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(circle, rgba(113, 75, 103, 0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.odoo-content-col {
    padding-right: 40px;
    padding-left: 40px;
    z-index: 2;
}

.odoo-badge-pill {
    background-color: #f1f3f5;
    color: #714B67;
    padding: 6px 16px;
    font-size: 13px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 25px;
    font-weight: 700;
}

.odoo-title-v2 {
    font-weight: 800;
    margin-bottom: 15px;
    color: #222;
    font-size: 38px;
    line-height: 1.3;
}

.odoo-desc-v2 {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.odoo-features-v2 {
    margin-bottom: 35px;
}

.odoo-feature-v2 {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.odoo-icon-line {
    color: #714B67;
    font-size: 24px;
    margin-left: 15px;
}

.odoo-feature-v2 p {
    color: #555;
    font-size: 15px;
    margin: 0;
}

.odoo-btn-v2 {
    background-color: #714B67;
    color: #fff;
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.odoo-btn-v2:hover {
    background-color: #5a3c52;
    color: #fff;
    transform: translateX(-5px);
}

/* Visuals Left Side */
.odoo-visual-v2 {
    position: relative;
    z-index: 2;
}

.odoo-main-logo {
    max-width: 180px;
    position: relative;
    z-index: 10;
    margin-bottom: 30px;
}

.floating-cards-container {
    position: relative;
    height: 350px;
    width: 100%;
}

.float-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    backdrop-filter: blur(5px);
    position: absolute;
    width: 240px;
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(113, 75, 103, 0.1);
}

.float-card .card-header {
    background: rgba(248, 249, 250, 0.8);
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    font-weight: 700;
    font-size: 13px;
    color: #444;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
}

.float-card .card-header i {
    color: #714B67;
    margin-left: 8px;
}

.float-card .card-body {
    padding: 15px;
}

/* Card 1: Chart */
.float-card-1 {
    top: 0;
    right: 10%;
    animation-delay: 0s;
}

.chart-bar-container {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 60px;
    justify-content: center;
}

.chart-bar {
    width: 20px;
    background: #f1f3f5;
    height: 100%;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.bar-fill {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #714B67;
    border-radius: 4px;
}

/* Card 2: Tasks */
.float-card-2 {
    top: 80px;
    right: 40%;
    animation-delay: 1.5s;
    width: 260px;
    z-index: 2;
}

.task-line {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.check-circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #714B67;
    margin-left: 10px;
    flex-shrink: 0;
}

.check-circle.done {
    background: #714B67;
}

.line-ph {
    height: 6px;
    background: #e9ecef;
    border-radius: 4px;
    flex-grow: 1;
}

/* Card 3: Invoice */
.float-card-3 {
    top: 180px;
    right: 15%;
    animation-delay: 3s;
}

.invoice-total {
    font-size: 24px;
    font-weight: 800;
    color: #333;
    margin-bottom: 5px;
}

.invoice-status {
    display: inline-block;
    padding: 3px 10px;
    background: #d4edda;
    color: #155724;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 991px) {
    .odoo-content-col {
        padding-right: 15px;
        padding-left: 15px;
    }
    .float-card {
        width: 200px;
    }
    .float-card-1 { right: 5%; }
    .float-card-2 { right: 30%; }
    .float-card-3 { right: 10%; }
}
