/**
* Template Name: BizPage - v5.10.1
* Template URL: https://bootstrapmade.com/bizpage-bootstrap-business-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #666666;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #df0e3b;
  transition: 0.5s;
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  color: #18d36e;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #df0e3b;
  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: #df0e3b;
  color: #fff;
}

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

/* Prelaoder */
#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 #f2f2f2;
  border-top: 6px solid #df0e3b;
  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);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  background: rgba(0, 0, 0, 0.9);
  height: 80px;
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: rgba(0, 0, 0, 0.9);
  height: 60px;
}

#header .logo {
  font-size: 34px;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  padding-left: 10px;
  border-left: 4px solid #df0e3b;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  text-transform: uppercase;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #df0e3b;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  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;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
  color: #666666;
}

.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: #df0e3b;
}

.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;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 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;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #333333;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #df0e3b;
}

.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: #df0e3b;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: #000;
  overflow: hidden;
  position: relative;
}

@media (max-height: 500px) {
  #hero {
    height: 150vh;
  }
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}

#hero .container {
  text-align: center;
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

#hero p {
  width: 80%;
  margin: 0 auto 30px auto;
  color: #fff;
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
}

#hero .carousel-fade {
  overflow: hidden;
}

#hero .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}

#hero .carousel-fade .carousel-inner .carousel-item,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-fade .carousel-inner .active,
#hero .carousel-fade .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-fade .carousel-inner .carousel-item-next,
#hero .carousel-fade .carousel-inner .carousel-item-prev,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
}

@media (min-width: 1024px) {

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

#hero .carousel-indicators li {
  cursor: pointer;
}

#hero .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #df0e3b;
}

#hero .btn-get-started:hover {
  background: #fff;
  color: #df0e3b;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header h3 {
  font-size: 32px;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.section-header h3::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-header h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #df0e3b;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-header p {
  text-align: center;
  padding-bottom: 30px;
  color: #333;
}

/* Section with background
--------------------------------*/
.section-bg {
  background: #f7f7f7;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f7f7f7;
  min-height: 40px;
  margin-top: 80px;
}

.breadcrumbs h2 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 400;
}

.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;
  }
}

/* Featured Services Section
--------------------------------*/
#featured-services {
  background: #000;
}

#featured-services .box {
  padding: 30px 20px;
}

#featured-services .box-bg {
  background-image: linear-gradient(0deg, #000000 0%, #242323 50%, #000000 100%);
}

#featured-services i {
  color: #df0e3b;
  font-size: 48px;
  display: inline-block;
  line-height: 1;
}

#featured-services h4 {
  font-weight: 400;
  margin: 15px 0;
  font-size: 18px;
}

#featured-services h4 a {
  color: #fff;
}

#featured-services h4 a:hover {
  color: #df0e3b;
}

#featured-services p {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 0;
}

/* About Us Section
--------------------------------*/
#about {
  background: url("../img/about-bg.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 40px 0;
  position: relative;
}

#about::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 9;
}

#about .container {
  position: relative;
  z-index: 10;
}

#about .about-col {
  background: #fff;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

#about .about-col .img {
  position: relative;
}

#about .about-col .img img {
  border-radius: 4px 4px 0 0;
}

#about .about-col .icon {
  width: 64px;
  height: 64px;
  text-align: center;
  position: absolute;
  background-color: #df0e3b;
  border-radius: 50%;
  border: 4px solid #fff;
  left: calc(50% - 32px);
  bottom: -30px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#about .about-col i {
  font-size: 28px;
  line-height: 0;
  color: #fff;
  transition: 0.3s;
}

#about .about-col:hover .icon {
  background-color: #fff;
}

#about .about-col:hover i {
  color: #df0e3b;
}

#about .about-col h2 {
  color: #000;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  padding: 0;
  margin: 40px 0 12px 0;
}

#about .about-col h2 a {
  color: #000;
}

#about .about-col h2 a:hover {
  color: #df0e3b;
}

#about .about-col p {
  font-size: 14px;
  line-height: 24px;
  color: #333;
  margin-bottom: 0;
  padding: 0 20px 20px 20px;
}

/* Services Section
--------------------------------*/
#services {
  background: #fff;
  background-size: cover;
  padding: 60px 0 40px 0;
}

#services .box {
  margin-bottom: 30px;
}

#services .icon {
  float: left;
}

#services .icon i {
  color: #df0e3b;
  font-size: 36px;
  line-height: 0;
  transition: 0.5s;
}

#services .title {
  margin-left: 60px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#services .title a {
  color: #111;
}

#services .box:hover .title a {
  color: #df0e3b;
}

#services .description {
  font-size: 14px;
  margin-left: 60px;
  line-height: 24px;
  margin-bottom: 0;
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
  background: linear-gradient(rgba(0, 142, 99, 0.1), rgba(0, 0, 0, 0.1)), url(../img/call-to-action-bg.jpg) fixed center center;
  background-size: cover;
  padding: 60px 0;
}

#call-to-action h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action p {
  color: #fff;
}

#call-to-action .cta-btn {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: #df0e3b;
  border: 2px solid #df0e3b;
}

/* Call To Action Section
--------------------------------*/
#skills {
  padding: 60px 0;
}

#skills .progress {
  height: 35px;
  margin-bottom: 10px;
  border-radius: 0;
}

#skills .progress .skill {
  font-family: "Open Sans", sans-serif;
  line-height: 35px;
  padding: 0;
  margin: 0 0 0 20px;
  text-transform: uppercase;
}

#skills .progress .skill .val {
  float: right;
  font-style: normal;
  margin: 0 20px 0 0;
}

#skills .progress-bar {
  width: 1px;
  text-align: left;
  transition: 0.9s;
}

/* Facts Section
--------------------------------*/
#facts {
  background: url("../img/facts-bg.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 0 0;
  position: relative;
}

#facts::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.88);
  z-index: 9;
}

#facts .container {
  position: relative;
  z-index: 10;
}

#facts .counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #df0e3b;
}

#facts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #111;
}

#facts .facts-img {
  text-align: center;
  padding-top: 30px;
}

/* Portfolio Section
--------------------------------*/
#portfolio {
  padding: 60px 0;
}

#portfolio #portfolio-flters {
  padding: 0;
  margin: 5px 0 35px 0;
  list-style: none;
  text-align: center;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #666666;
  border-radius: 4px;
  text-transform: uppercase;
  background: #fff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

#portfolio #portfolio-flters li:hover,
#portfolio #portfolio-flters li.filter-active {
  background: #df0e3b;
  color: #fff;
}

#portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

#portfolio .portfolio-wrap {
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

#portfolio .portfolio-wrap:hover {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}

#portfolio .portfolio-item {
  position: relative;
  height: 360px;
  overflow: hidden;
}

#portfolio .portfolio-item figure {
  background: #000;
  overflow: hidden;
  height: 240px;
  position: relative;
  border-radius: 4px 4px 0 0;
  margin: 0;
}

#portfolio .portfolio-item figure:hover img {
  opacity: 0.4;
  transition: 0.3s;
}

#portfolio .portfolio-item figure .link-preview,
#portfolio .portfolio-item figure .link-details {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  line-height: 1;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s linear;
}

#portfolio .portfolio-item figure .link-preview i,
#portfolio .portfolio-item figure .link-details i {
  font-size: 22px;
  color: #333;
  line-height: 0;
}

#portfolio .portfolio-item figure .link-preview:hover,
#portfolio .portfolio-item figure .link-details:hover {
  background: #df0e3b;
}

#portfolio .portfolio-item figure .link-preview:hover i,
#portfolio .portfolio-item figure .link-details:hover i {
  color: #fff;
}

#portfolio .portfolio-item figure .link-preview {
  left: calc(50% - 38px);
  top: calc(50% - 18px);
}

#portfolio .portfolio-item figure .link-details {
  right: calc(50% - 38px);
  top: calc(50% - 18px);
}

#portfolio .portfolio-item figure:hover .link-preview {
  opacity: 1;
  left: calc(50% - 44px);
}

#portfolio .portfolio-item figure:hover .link-details {
  opacity: 1;
  right: calc(50% - 44px);
}

#portfolio .portfolio-item .portfolio-info {
  background: #fff;
  text-align: center;
  padding: 30px;
  height: 90px;
  border-radius: 0 0 3px 3px;
}

#portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  line-height: 1px;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 0;
}

#portfolio .portfolio-item .portfolio-info h4 a {
  color: #333;
}

#portfolio .portfolio-item .portfolio-info h4 a:hover {
  color: #df0e3b;
}

#portfolio .portfolio-item .portfolio-info p {
  padding: 0;
  margin: 0;
  color: #b8b8b8;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #df0e3b;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #df0e3b;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(51, 51, 51, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/* Clients Section
--------------------------------*/
#clients {
  padding: 60px 0;
}

#clients img {
  opacity: 0.5;
  transition: 0.3s;
}

#clients img:hover {
  opacity: 1;
}

#clients .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

#clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #df0e3b;
}

#clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #df0e3b;
}

/* Testimonials Section
--------------------------------*/
#testimonials {
  padding: 60px 0;
}

#testimonials .section-header {
  margin-bottom: 40px;
}

#testimonials .testimonials-carousel,
#testimonials .testimonials-slider {
  overflow: hidden;
}

#testimonials .testimonial-item {
  text-align: center;
}

#testimonials .testimonial-item .testimonial-img {
  width: 240px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
  height: 260px;
}

#testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

#testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
}

#testimonials .testimonial-item .quote-sign-left {
  margin-top: -15px;
  padding-right: 10px;
  display: inline-block;
  width: 37px;
}

#testimonials .testimonial-item .quote-sign-right {
  margin-bottom: -15px;
  padding-left: 10px;
  display: inline-block;
  max-width: 100%;
  width: 37px;
}

#testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

@media (min-width: 992px) {
  #testimonials .testimonial-item p {
    width: 80%;
  }
}

#testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

#testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #df0e3b;
}

#testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #df0e3b;
}

/* Team Section
--------------------------------*/
#team {
  background: #fff;
  padding: 60px 0;
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #000;
  position: relative;
}

#team .member .member-info {
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

#team .member .member-info-content {
  margin-top: -50px;
  transition: margin 0.2s;
}

#team .member:hover .member-info {
  background: rgba(0, 0, 0, 0.7);
  opacity: 1;
  transition: 0.4s;
}

#team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

#team .member .social {
  margin-top: 15px;
}

#team .member .social a {
  transition: none;
  color: #fff;
}

#team .member .social a:hover {
  color: #df0e3b;
}

#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/* Contact Section
--------------------------------*/
#contact {
  padding: 60px 0;
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #df0e3b;
}

#contact .contact-info address,
#contact .contact-info p {
  margin-bottom: 0;
  color: #000;
}

#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #999;
}

#contact .contact-info a {
  color: #000;
}

#contact .contact-info a:hover {
  color: #df0e3b;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 20px;
}

@media (min-width: 768px) {

  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email {
    padding: 20px 0;
  }
}

@media (min-width: 768px) {
  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}

#contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}

#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: #df0e3b;
  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 #df0e3b;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

#contact .php-email-form .form-group {
  margin-bottom: 20px;
}

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

#contact .php-email-form input::focus,
#contact .php-email-form textarea::focus {
  background-color: #df0e3b;
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #333333;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: #df0e3b;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #df0e3b;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li+li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.blog .entry .entry-meta a {
  color: #666666;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content p {
  line-height: 24px;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #fff;
  color: #333333;
  padding: 6px 30px 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 50px;
  border: 2px solid #df0e3b;
}

.blog .entry .entry-content .read-more a:hover {
  background: #df0e3b;
  color: #fff;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #666666;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #df0e3b;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #df0e3b;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #666666;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #df0e3b;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li+li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}

.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #333333;
}

.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
  color: rgba(51, 51, 51, 0.4);
  margin-right: 5px;
  transition: 0.3s;
}

.blog .blog-author .social-links a:hover {
  color: #df0e3b;
}

.blog .blog-author p {
  font-style: italic;
  color: #666666;
}

.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
  width: 60px;
}

.blog .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #666666;
  transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
  color: #333333;
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #df0e3b;
}

.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #999999;
  margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .blog-comments .reply-form p {
  font-size: 14px;
}

.blog .blog-comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #666666;
}

.blog .blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #666666;
}

.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
  border-radius: 50px;
  padding: 10px 30px;
  border: 0;
  background-color: #df0e3b;
}

.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #df0e3b;
}

.blog .blog-pagination {
  color: #df0e3b;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #df0e3b;
  padding: 6px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-weight: bold;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: #df0e3b;
  border-radius: 50px;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: #fff;
}

.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #333333;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
}

.blog .sidebar .search-form form input {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 70px);
  box-shadow: none;
}

.blog .sidebar .search-form form input:focus {
  box-shadow: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 30px;
  margin: -1px;
  background: #df0e3b;
  color: #fff;
  transition: 0.3s;
  line-height: 0;
  border-radius: 50px;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: #df0e3b;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #333333;
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: #df0e3b;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #b3b3b3;
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: #333333;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #df0e3b;
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #b3b3b3;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #333333;
  font-size: 14px;
  padding: 6px 20px;
  margin: 0 6px 8px 0;
  border: 1px solid #df0e3b;
  display: inline-block;
  border-radius: 50px;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  background: #df0e3b;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: white;
  font-size: 14px;
}

/* التنسيقات الجديدة */

/* =========================================
   STOP GERMAN HERO
   ISOLATED CSS
========================================= */

#stop-premium-hero {
    width: 100%;
    height: 720px;
    position: relative;
    overflow: hidden;
    direction: rtl;
}

#stop-premium-hero .carousel,
#stop-premium-hero .carousel-inner,
#stop-premium-hero .carousel-item {
    height: 100%;
}

#stop-premium-hero .carousel-item {
    position: relative;
    background-size: cover;
    background-position: center;
}

.stop-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.15),
            rgba(0,0,0,.50) 45%,
            rgba(0,0,0,.90)
        );
}

.stop-hero-content {
    position: relative;
    z-index: 3;

    width: 90%;
    max-width: 760px;

    margin-right: auto;
    margin-left: auto;

    padding-top: 145px;

    color: #fff;
}

.stop-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 9px 18px;
    margin-bottom: 20px;

    border-radius: 50px;

    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);

    backdrop-filter: blur(10px);

    font-size: 15px;
    font-weight: 600;
}

.stop-hero-badge i {
    color: #f5b400;
    font-size: 18px;
}

.stop-hero-content h1 {
    margin: 0 0 20px;

    font-size: 56px;
    line-height: 1.2;

    font-weight: 800;

    color: #fff;
}

.stop-hero-content h1 strong {
    display: block;

    color: #f5b400;

    font-weight: 800;
}

.stop-hero-content p {
    max-width: 680px;

    margin: 0 0 30px;

    color: rgba(255,255,255,.88);

    font-size: 18px;
    line-height: 1.9;
}

.stop-hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 28px;
}

.stop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-width: 190px;

    padding: 15px 22px;

    border-radius: 10px;

    text-decoration: none !important;

    font-size: 16px;
    font-weight: 700;

    transition: .3s;
}

.stop-btn-main {
    background: #f5b400;
    color: #111 !important;

    box-shadow: 0 10px 30px rgba(245,180,0,.25);
}

.stop-btn-main:hover {
    background: #ffc928;
    color: #111 !important;

    transform: translateY(-3px);
}

.stop-btn-phone {
    color: #fff !important;

    background: rgba(255,255,255,.10);

    border: 1px solid rgba(255,255,255,.35);

    backdrop-filter: blur(10px);
}

.stop-btn-phone:hover {
    background: #fff;
    color: #111 !important;

    transform: translateY(-3px);
}

.stop-hero-features {
    display: flex;
    align-items: center;
    gap: 25px;

    flex-wrap: wrap;
}

.stop-hero-features span {
    display: flex;
    align-items: center;
    gap: 7px;

    color: rgba(255,255,255,.90);

    font-size: 14px;
    font-weight: 600;
}

.stop-hero-features i {
    color: #f5b400;
}

.stop-hero-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: rgba(255,255,255,.12);

    border: 1px solid rgba(255,255,255,.25);

    backdrop-filter: blur(10px);
}

#stop-premium-hero .carousel-control-prev,
#stop-premium-hero .carousel-control-next {
    width: 90px;
    z-index: 5;
}

.stop-hero-dots {
    position: absolute;

    z-index: 10;

    bottom: 30px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    gap: 8px;
}

.stop-hero-dots button {
    width: 10px;
    height: 10px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: rgba(255,255,255,.45);
}

.stop-hero-dots button.active {
    width: 30px;

    border-radius: 20px;

    background: #f5b400;
}


/* =========================================
   SERVICES
========================================= */

#stop-premium-services {
    position: relative;

    z-index: 20;

    margin-top: -65px;

    direction: rtl;
}

.stop-services-container {
    width: 90%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.stop-service-card {
    display: flex;

    gap: 18px;

    padding: 27px 24px;

    background: #fff;

    border-radius: 16px;

    box-shadow: 0 15px 45px rgba(0,0,0,.13);

    border: 1px solid rgba(0,0,0,.05);

    transition: .3s;
}

.stop-service-card:hover {
    transform: translateY(-7px);
}

.stop-service-icon {
    flex-shrink: 0;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(245,180,0,.12);

    color: #d69d00;

    font-size: 27px;
}

.stop-service-card small {
    display: block;

    margin-bottom: 4px;

    color: #a17a00;

    font-size: 13px;

    font-weight: 700;
}

.stop-service-card h3 {
    margin: 0 0 8px;

    font-size: 21px;

    font-weight: 800;

    color: #faf4f4;
}

.stop-service-card p {
    margin: 0 0 12px;

    color: #777;

    font-size: 14px;

    line-height: 1.8;
}

.stop-service-dark {
    background: #111;
}

.stop-service-dark h3 {
    color: #fff;
}

.stop-service-dark p {
    color: rgba(255,255,255,.7);
}

.stop-service-dark small {
    color: #f5b400;
}

.stop-service-tag {
    display: flex;
    align-items: center;
    gap: 6px;

    font-size: 13px;
    font-weight: 700;

    color: #555;
}

.stop-service-dark .stop-service-tag {
    color: #fff;
}

.stop-service-tag i {
    color: #f5b400;
}

.stop-service-phone {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.stop-service-phone a {
    color: #111;

    text-decoration: none;

    font-weight: 800;

    font-size: 13px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    #stop-premium-hero {
        height: 650px;
    }

    .stop-hero-content {
        padding-top: 110px;
        text-align: center;
    }

    .stop-hero-content h1 {
        font-size: 42px;
    }

    .stop-hero-content p {
        font-size: 16px;
    }

    .stop-hero-buttons {
        justify-content: center;
    }

    .stop-hero-features {
        justify-content: center;
    }

    #stop-premium-services {
        margin-top: -40px;
    }

    .stop-services-container {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 576px) {

    #stop-premium-hero {
        height: 680px;
    }

    .stop-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(0,0,0,.30),
                rgba(0,0,0,.92)
            );
    }

    .stop-hero-content {
        padding-top: 95px;
    }

    .stop-hero-content h1 {
        font-size: 33px;
    }

    .stop-hero-content p {
        font-size: 15px;
    }

    .stop-hero-buttons {
        flex-direction: column;
    }

    .stop-btn {
        width: 100%;
    }

    #stop-premium-hero .carousel-control-prev,
    #stop-premium-hero .carousel-control-next {
        display: none;
    }

    .stop-hero-features {
        gap: 10px;
        justify-content: center;
    }

    .stop-hero-features span {
        font-size: 12px;
    }

    .stop-services-container {
        width: 92%;
    }

}



/* القديم ----------------------------------------------------------------------------------------------------------------------- */




















/* هدر */
/* =====================================================
   BLUE PREMIUM HEADER
===================================================== */

#blue-premium-header {

    --bph-navy: #09264D;
    --bph-blue: #1769D2;
    --bph-blue-dark: #0E56B7;
    --bph-light: #EDF5FF;
    --bph-text: #24364A;
    --bph-muted: #718096;
    --bph-border: #E5EBF2;
    --bph-white: #FFFFFF;

    position: relative;

    width: 100%;

    background: rgba(255,255,255,.97);

    border-bottom: 1px solid var(--bph-border);

    direction: rtl;

    font-family:
        "Alexandria",
        "IBM Plex Sans Arabic",
        sans-serif;

    z-index: 9999;

    box-shadow:
        0 5px 25px rgba(9,38,77,.04);
}


/* =====================================================
   CONTAINER
===================================================== */

#blue-premium-header .bph-container {

    width: min(1240px, calc(100% - 40px));

    min-height: 82px;

    margin: auto;

    display: flex;

    align-items: center;

    gap: 30px;

    position: relative;
}


/* =====================================================
   LOGO
===================================================== */

#blue-premium-header .bph-logo {

    display: flex;

    align-items: center;

    gap: 12px;

    text-decoration: none;

    flex-shrink: 0;
}


#blue-premium-header .bph-logo-mark {

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--bph-navy);

    color: white;

    font-size: 21px;

    position: relative;

    overflow: hidden;
}


#blue-premium-header .bph-logo-mark::after {

    content: "";

    position: absolute;

    width: 35px;
    height: 35px;

    border: 1px solid rgba(255,255,255,.15);

    border-radius: 50%;

    top: -12px;
    left: -12px;
}


#blue-premium-header .bph-logo-content strong {

    display: block;

    color: var(--bph-navy);

    font-size: 16px;

    font-weight: 800;

    line-height: 1.4;
}


#blue-premium-header .bph-logo-content small {

    display: block;

    color: #7B8897;

    font-size: 8px;

    margin-top: 3px;
}


/* =====================================================
   NAVIGATION
===================================================== */

#blue-premium-header .bph-navigation {

    flex: 1;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 4px;
}


#blue-premium-header .bph-nav-item,
#blue-premium-header .bph-services-button {

    height: 42px;

    padding: 0 13px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 6px;

    border: 0;

    background: transparent;

    color: #506074;

    text-decoration: none;

    font-family: inherit;

    font-size: 11px;

    font-weight: 600;

    cursor: pointer;

    position: relative;

    white-space: nowrap;

    transition: .25s ease;
}


#blue-premium-header .bph-nav-item::after,
#blue-premium-header .bph-services-button::after {

    content: "";

    position: absolute;

    width: 0;

    height: 2px;

    right: 50%;

    bottom: 1px;

    background: var(--bph-blue);

    transition: .25s ease;
}


#blue-premium-header .bph-nav-item:hover,
#blue-premium-header .bph-services-button:hover,
#blue-premium-header .bph-nav-item.bph-active {

    color: var(--bph-blue);
}


#blue-premium-header .bph-nav-item:hover::after,
#blue-premium-header .bph-nav-item.bph-active::after,
#blue-premium-header .bph-services-button:hover::after {

    width: 24px;

    right: calc(50% - 12px);
}


#blue-premium-header .bph-services-button i {

    font-size: 9px;

    transition: .25s ease;
}


/* =====================================================
   DESKTOP DROPDOWN
===================================================== */

#blue-premium-header .bph-services {

    position: relative;
}


#blue-premium-header .bph-services-menu {

    position: absolute;

    top: calc(100% + 12px);

    right: 50%;

    transform:
        translateX(50%)
        translateY(8px);

    width: 250px;

    padding: 8px;

    background: white;

    border: 1px solid var(--bph-border);

    box-shadow:
        0 20px 50px rgba(9,38,77,.13);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition: .25s ease;
}


#blue-premium-header .bph-services.bph-desktop-open
.bph-services-menu {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translateX(50%)
        translateY(0);
}


#blue-premium-header .bph-services.bph-desktop-open
.bph-services-button i {

    transform: rotate(180deg);
}


#blue-premium-header .bph-services-menu a {

    display: flex;

    align-items: center;

    gap: 11px;

    min-height: 42px;

    padding: 0 12px;

    color: #536477;

    text-decoration: none;

    font-size: 10px;

    transition: .2s ease;
}


#blue-premium-header .bph-services-menu a i {

    width: 27px;
    height: 27px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--bph-light);

    color: var(--bph-blue);

    font-size: 11px;

    transition: .2s ease;
}


#blue-premium-header .bph-services-menu a:hover {

    background: #F7FAFD;

    color: var(--bph-blue);

    padding-right: 16px;
}


#blue-premium-header .bph-services-menu a:hover i {

    background: var(--bph-blue);

    color: white;
}


/* =====================================================
   CALL BUTTON
===================================================== */

#blue-premium-header .bph-call {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 7px 8px 7px 14px;

    background: var(--bph-light);

    border: 1px solid #DCEBFC;

    text-decoration: none;

    transition: .25s ease;

    flex-shrink: 0;
}


#blue-premium-header .bph-call:hover {

    background: var(--bph-blue);

    border-color: var(--bph-blue);

    transform: translateY(-2px);
}


#blue-premium-header .bph-call-icon {

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--bph-blue);

    color: white;

    font-size: 13px;

    transition: .25s ease;
}


#blue-premium-header .bph-call:hover .bph-call-icon {

    background: white;

    color: var(--bph-blue);
}


#blue-premium-header .bph-call-content {

    text-align: right;
}


#blue-premium-header .bph-call-content small {

    display: block;

    color: #7C8A99;

    font-size: 7px;

    margin-bottom: 3px;
}


#blue-premium-header .bph-call-content strong {

    display: block;

    color: var(--bph-navy);

    font-size: 11px;

    direction: ltr;
}


#blue-premium-header .bph-call:hover
.bph-call-content small,
#blue-premium-header .bph-call:hover
.bph-call-content strong {

    color: white;
}


/* =====================================================
   MOBILE BUTTON
===================================================== */

#blue-premium-header .bph-mobile-button {

    display: none;

    width: 43px;
    height: 43px;

    border: 1px solid var(--bph-border);

    background: white;

    color: var(--bph-navy);

    font-size: 21px;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    margin-right: auto;
}


/* =====================================================
   MOBILE MENU
===================================================== */

#blue-premium-header .bph-mobile-menu {

    display: none;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {

    #blue-premium-header .bph-container {

        gap: 15px;
    }


    #blue-premium-header .bph-navigation {

        gap: 0;
    }


    #blue-premium-header .bph-nav-item,
    #blue-premium-header .bph-services-button {

        padding: 0 8px;

        font-size: 10px;
    }


    #blue-premium-header .bph-call {

        padding-left: 8px;
    }


    #blue-premium-header .bph-call-content {

        display: none;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 800px) {

    #blue-premium-header .bph-container {

        min-height: 72px;

        width: calc(100% - 28px);
    }


    #blue-premium-header .bph-navigation,
    #blue-premium-header .bph-call {

        display: none;
    }


    #blue-premium-header .bph-mobile-button {

        display: flex;
    }


    #blue-premium-header .bph-logo-mark {

        width: 43px;
        height: 43px;

        font-size: 18px;
    }


    #blue-premium-header .bph-logo-content strong {

        font-size: 14px;
    }


    #blue-premium-header .bph-logo-content small {

        font-size: 7px;
    }


    /* MOBILE MENU */

    #blue-premium-header .bph-mobile-menu {

        display: block;

        position: absolute;

        top: calc(100% + 1px);

        right: 0;

        width: 100%;

        padding: 0 0 15px;

        background: white;

        border: 1px solid var(--bph-border);

        border-top: 0;

        box-shadow:
            0 20px 40px rgba(9,38,77,.10);

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        transform: translateY(-8px);

        transition: .25s ease;
    }


    #blue-premium-header .bph-mobile-menu.bph-mobile-open {

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform: translateY(0);
    }


    #blue-premium-header .bph-mobile-menu-inner {

        padding: 10px 14px 0;
    }


    /* MOBILE LINKS */

    #blue-premium-header .bph-mobile-link {

        min-height: 54px;

        display: flex;

        align-items: center;

        gap: 11px;

        padding: 0 10px;

        color: #526275;

        text-decoration: none;

        border-bottom: 1px solid #EEF2F6;

        font-size: 11px;

        transition: .2s ease;
    }


    #blue-premium-header .bph-mobile-link > span:nth-child(2) {

        flex: 1;
    }


    #blue-premium-header .bph-mobile-link > i {

        color: #A0ACB9;

        font-size: 12px;
    }


    #blue-premium-header .bph-mobile-icon {

        width: 32px;
        height: 32px;

        display: flex;

        align-items: center;
        justify-content: center;

        background: #F1F6FC;

        color: var(--bph-blue);

        font-size: 13px;
    }


    #blue-premium-header .bph-mobile-link:hover,
    #blue-premium-header .bph-mobile-link.bph-mobile-active {

        color: var(--bph-blue);
    }


    /* MOBILE SERVICES */

    #blue-premium-header .bph-mobile-services {

        border-bottom: 1px solid #EEF2F6;
    }


    #blue-premium-header
    .bph-mobile-services-button {

        width: 100%;

        min-height: 54px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        border: 0;

        background: transparent;

        color: #526275;

        font-family: inherit;

        font-size: 11px;

        cursor: pointer;
    }


    #blue-premium-header
    .bph-mobile-services-button > span {

        display: flex;

        align-items: center;

        gap: 11px;
    }


    #blue-premium-header
    .bph-mobile-services-button > i {

        color: #8D9AAA;

        font-size: 10px;

        transition: .25s ease;
    }


    #blue-premium-header .bph-mobile-services-list {

        max-height: 0;

        overflow: hidden;

        opacity: 0;

        transition:
            max-height .3s ease,
            opacity .25s ease;
    }


    #blue-premium-header
    .bph-mobile-services-list.bph-services-open {

        max-height: 400px;

        opacity: 1;

        padding-bottom: 8px;
    }


    #blue-premium-header
    .bph-mobile-services-list a {

        display: block;

        padding: 10px 53px 10px 12px;

        color: #718096;

        text-decoration: none;

        font-size: 10px;

        border-right: 2px solid #E6EEF8;

        transition: .2s ease;
    }


    #blue-premium-header
    .bph-mobile-services-list a:hover {

        color: var(--bph-blue);

        border-right-color: var(--bph-blue);

        background: #F8FBFF;
    }


    /* MOBILE CALL */

    #blue-premium-header .bph-mobile-call {

        margin-top: 14px;

        min-height: 56px;

        padding: 0 15px;

        display: flex;

        align-items: center;

        gap: 12px;

        background: var(--bph-navy);

        color: white;

        text-decoration: none;
    }


    #blue-premium-header .bph-mobile-call > i:first-child {

        width: 34px;
        height: 34px;

        display: flex;

        align-items: center;
        justify-content: center;

        background: var(--bph-blue);

        font-size: 13px;
    }


    #blue-premium-header .bph-mobile-call span {

        flex: 1;

        font-size: 10px;

        font-weight: 700;
    }


    #blue-premium-header .bph-mobile-call span small {

        display: block;

        margin-top: 3px;

        color: #91A8C1;

        font-size: 8px;

        direction: ltr;

        text-align: right;
    }


    #blue-premium-header .bph-mobile-call > i:last-child {

        color: #6EA7EA;

        font-size: 13px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 400px) {

    #blue-premium-header .bph-container {

        width: calc(100% - 20px);
    }


    #blue-premium-header .bph-logo-content strong {

        font-size: 13px;
    }


    #blue-premium-header .bph-logo-content small {

        font-size: 6px;
    }


    #blue-premium-header .bph-mobile-button {

        width: 40px;
        height: 40px;
    }

}


















/* منطقة 1 nova-hero */
/* =========================================================
   BLUE EDITORIAL HERO
   FINAL VERSION
========================================================= */

#blue-editorial-hero {
    --beh-navy: #09264D;
    --beh-blue: #1769D2;
    --beh-blue-dark: #0E56B7;
    --beh-light: #EDF5FF;
    --beh-white: #FFFFFF;
    --beh-text: #172A40;
    --beh-muted: #718096;

    position: relative;
    width: 100%;
    height: 760px;
    overflow: hidden;

    direction: rtl;

    background: var(--beh-navy);

    font-family: "Alexandria", "Cairo", sans-serif;

    isolation: isolate;
}

/* =========================================================
   CAROUSEL
========================================================= */

#blue-editorial-hero #blueEditorialCarousel {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
}

#blue-editorial-hero .carousel-inner {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
}

#blue-editorial-hero .carousel-item {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;
}

/* =========================================================
   BACKGROUND IMAGE
========================================================= */

#blue-editorial-hero .beh-slide-image {
    position: absolute;

    top: -3%;
    right: -3%;
    bottom: -3%;
    left: -3%;

    width: 106%;
    height: 106%;

    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    transform: scale(1.04);

    filter:
        brightness(0.48)
        contrast(1.08)
        saturate(0.84);

    transition:
        transform 7s ease,
        filter 0.8s ease;
}

#blue-editorial-hero .carousel-item.active .beh-slide-image {
    transform: scale(1);

    filter:
        brightness(0.46)
        contrast(1.08)
        saturate(0.84);
}

/* =========================================================
   DARK OVERLAY
========================================================= */

#blue-editorial-hero .beh-slide-shade {
    position: absolute;
    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(2, 14, 31, 0.97) 0%,
            rgba(3, 18, 39, 0.92) 18%,
            rgba(4, 24, 49, 0.76) 36%,
            rgba(5, 29, 59, 0.54) 55%,
            rgba(5, 30, 61, 0.30) 76%,
            rgba(5, 30, 61, 0.12) 100%
        );
}

/* =========================================================
   BLUE LIGHT
========================================================= */

#blue-editorial-hero::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 72% 42%,
            rgba(71, 145, 255, 0.18) 0%,
            rgba(71, 145, 255, 0.09) 18%,
            rgba(71, 145, 255, 0.025) 35%,
            transparent 55%
        );

    mix-blend-mode: screen;

    opacity: 0.9;
}

/* =========================================================
   TOP LIGHT
========================================================= */

#blue-editorial-hero::before {
    content: "";

    position: absolute;

    top: -180px;
    right: 12%;

    width: 560px;
    height: 360px;

    z-index: 3;

    pointer-events: none;

    background:
        radial-gradient(
            ellipse,
            rgba(255, 255, 255, 0.11) 0%,
            rgba(255, 255, 255, 0.045) 30%,
            transparent 70%
        );

    filter: blur(30px);

    opacity: 0.8;
}

/* =========================================================
   CONTENT AREA
========================================================= */

#blue-editorial-hero .beh-content {
    position: absolute;

    top: 50%;
    right: 8%;

    z-index: 10;

    width: min(620px, 50%);

    transform: translateY(-50%);

    color: var(--beh-white);
}

/* =========================================================
   MINI LINE
========================================================= */

#blue-editorial-hero .beh-mini-line {
    display: flex;
    align-items: center;

    gap: 14px;

    margin: 0 0 24px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.5px;

    color: rgba(255, 255, 255, 0.78);
}

#blue-editorial-hero .beh-mini-line span {
    display: block;

    width: 48px;
    height: 2px;

    flex: 0 0 auto;

    background: var(--beh-blue);

    box-shadow:
        0 0 14px rgba(23, 105, 210, 0.7);
}

/* =========================================================
   LABEL
========================================================= */

#blue-editorial-hero .beh-content-label {
    display: inline-flex;
    align-items: center;

    padding: 9px 16px;

    margin: 0 0 25px;

    border: 1px solid rgba(255, 255, 255, 0.24);

    border-radius: 50px;

    background:
        rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.18);

    font-size: 14px;
    font-weight: 600;

    color: rgba(255, 255, 255, 0.95);
}

/* =========================================================
   TITLE
========================================================= */

#blue-editorial-hero .beh-content h1 {
    margin: 0;

    max-width: 680px;

    font-size: clamp(48px, 5vw, 76px);

    line-height: 1.18;

    font-weight: 500;

    letter-spacing: -1.8px;

    color: #FFFFFF;

    text-shadow:
        0 4px 24px rgba(0, 0, 0, 0.45);
}

#blue-editorial-hero .beh-content h1 strong {
    display: block;

    margin-top: 10px;

    font-weight: 800;

    color: #72AEFF;

    text-shadow:
        0 0 28px rgba(105, 169, 255, 0.25);
}

/* =========================================================
   DESCRIPTION
========================================================= */

#blue-editorial-hero .beh-content p {
    max-width: 600px;

    margin: 28px 0 0;

    font-size: 18px;

    line-height: 2.05;

    font-weight: 400;

    color: rgba(255, 255, 255, 0.86);

    text-shadow:
        0 3px 16px rgba(0, 0, 0, 0.40);
}

/* =========================================================
   ACTIONS
========================================================= */

#blue-editorial-hero .beh-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 28px;

    margin-top: 36px;
}

/* =========================================================
   PRIMARY BUTTON
========================================================= */

#blue-editorial-hero .beh-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    min-height: 58px;

    padding: 0 24px 0 17px;

    border-radius: 11px;

    background: var(--beh-blue);

    color: #FFFFFF;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    box-shadow:
        0 15px 38px rgba(23, 105, 210, 0.35);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

#blue-editorial-hero .beh-primary-btn i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;

    border-radius: 8px;

    background:
        rgba(255, 255, 255, 0.16);

    font-size: 16px;
}

#blue-editorial-hero .beh-primary-btn:hover {
    transform: translateY(-3px);

    background: var(--beh-blue-dark);

    box-shadow:
        0 20px 45px rgba(23, 105, 210, 0.44);

    color: #FFFFFF;
}

/* =========================================================
   PHONE
========================================================= */

#blue-editorial-hero .beh-call-link {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    color: #FFFFFF;

    text-decoration: none;
}

#blue-editorial-hero .beh-call-link > i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 47px;
    height: 47px;

    border: 1px solid rgba(255, 255, 255, 0.25);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    font-size: 15px;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

#blue-editorial-hero .beh-call-link:hover > i {
    background: rgba(23, 105, 210, 0.9);

    border-color: var(--beh-blue);

    transform: translateY(-2px);
}

#blue-editorial-hero .beh-call-link span {
    display: flex;
    flex-direction: column;

    gap: 4px;

    font-size: 14px;
    font-weight: 700;
}

#blue-editorial-hero .beh-call-link small {
    font-size: 10px;
    font-weight: 500;

    color: rgba(255, 255, 255, 0.60);
}

/* =========================================================
   BIG NUMBER
========================================================= */

#blue-editorial-hero .beh-slide-number {
    position: absolute;

    top: 55px;
    left: 7%;

    z-index: 8;

    display: flex;
    align-items: baseline;

    gap: 7px;

    direction: ltr;

    color: #FFFFFF;
}

#blue-editorial-hero .beh-slide-number span {
    font-size: clamp(52px, 6vw, 92px);

    line-height: 1;

    font-weight: 800;

    letter-spacing: -5px;

    color: rgba(255, 255, 255, 0.13);
}

#blue-editorial-hero .beh-slide-number small {
    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    color: rgba(255, 255, 255, 0.50);
}

/* =========================================================
   INFO CARD
========================================================= */

#blue-editorial-hero .beh-info-card {
    position: absolute;

    left: 7%;
    bottom: 105px;

    z-index: 10;

    width: 285px;

    padding: 23px;

    border-radius: 5px;

    background:
        rgba(255, 255, 255, 0.96);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.20);

    direction: rtl;
}

/* =========================================================
   CARD TOP
========================================================= */

#blue-editorial-hero .beh-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 18px;
}

#blue-editorial-hero .beh-card-top span {
    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

    color: var(--beh-blue);
}

#blue-editorial-hero .beh-card-top i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 10px;

    background: var(--beh-light);

    color: var(--beh-blue);

    font-size: 17px;
}

/* =========================================================
   CARD LINE
========================================================= */

#blue-editorial-hero .beh-card-line {
    width: 100%;
    height: 1px;

    margin-bottom: 18px;

    background: #E7EDF5;
}

/* =========================================================
   CARD TITLE
========================================================= */

#blue-editorial-hero .beh-info-card > strong {
    display: block;

    font-size: 19px;

    line-height: 1.55;

    font-weight: 800;

    color: var(--beh-navy);
}

/* =========================================================
   CARD TEXT
========================================================= */

#blue-editorial-hero .beh-info-card > p {
    margin: 11px 0 20px;

    font-size: 12px;

    line-height: 1.9;

    color: var(--beh-muted);
}

/* =========================================================
   CARD BOTTOM
========================================================= */

#blue-editorial-hero .beh-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 14px;

    border-top: 1px solid #E7EDF5;
}

#blue-editorial-hero .beh-card-bottom span {
    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.2px;

    color: #8A98A8;
}

#blue-editorial-hero .beh-card-bottom i {
    font-size: 13px;

    color: var(--beh-blue);
}

/* =========================================================
   NAVIGATION
========================================================= */

#blue-editorial-hero .beh-navigation {
    position: absolute;

    left: 7%;
    bottom: 38px;

    z-index: 20;

    display: flex;
    align-items: center;

    gap: 13px;

    direction: ltr;
}

#blue-editorial-hero .beh-navigation button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.28);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.07);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    color: #FFFFFF;

    cursor: pointer;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

#blue-editorial-hero .beh-navigation button:hover {
    background: var(--beh-blue);

    border-color: var(--beh-blue);

    transform: translateY(-2px);

    box-shadow:
        0 8px 22px rgba(23, 105, 210, 0.30);
}

/* =========================================================
   PROGRESS
========================================================= */

#blue-editorial-hero .beh-progress {
    position: relative;

    width: 80px;
    height: 2px;

    overflow: hidden;

    background:
        rgba(255, 255, 255, 0.24);
}

#blue-editorial-hero .beh-progress-active {
    display: block;

    width: 33.333%;
    height: 100%;

    background: #FFFFFF;

    box-shadow:
        0 0 8px rgba(255, 255, 255, 0.5);
}

/* =========================================================
   BOTTOM BRAND
========================================================= */

#blue-editorial-hero .beh-bottom-brand {
    position: absolute;

    right: 7%;
    bottom: 38px;

    z-index: 20;

    display: flex;
    align-items: center;

    gap: 12px;

    color: rgba(255, 255, 255, 0.70);
}

#blue-editorial-hero .beh-bottom-brand span {
    font-size: 12px;

    font-weight: 800;

    color: #FFFFFF;
}

#blue-editorial-hero .beh-bottom-brand i {
    width: 25px;
    height: 1px;

    background:
        rgba(255, 255, 255, 0.40);
}

#blue-editorial-hero .beh-bottom-brand small {
    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.5px;
}

/* =========================================================
   ANIMATION
========================================================= */

#blue-editorial-hero .carousel-item .beh-content {
    opacity: 0;

    transform: translateY(-46%);

    transition:
        opacity 0.8s ease,
        transform 0.9s ease;
}

#blue-editorial-hero .carousel-item.active .beh-content {
    opacity: 1;

    transform: translateY(-50%);
}

#blue-editorial-hero .carousel-item .beh-info-card {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.8s ease 0.2s,
        transform 0.8s ease 0.2s;
}

#blue-editorial-hero .carousel-item.active .beh-info-card {
    opacity: 1;

    transform: translateY(0);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    #blue-editorial-hero {
        height: 720px;
    }

    #blue-editorial-hero .beh-content {
        right: 6%;

        width: 58%;
    }

    #blue-editorial-hero .beh-info-card {
        left: 5%;

        width: 250px;
    }

    #blue-editorial-hero .beh-slide-number {
        left: 5%;
    }

    #blue-editorial-hero .beh-bottom-brand {
        right: 6%;
    }

    #blue-editorial-hero .beh-navigation {
        left: 5%;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    /*
       IMPORTANT:
       الارتفاع هنا ثابت.
       الصورة لا تستطيع تكبير القسم.
    */

    #blue-editorial-hero {
        height: 610px;

        min-height: 0;
        max-height: 610px;
    }

    /* =====================================================
       IMAGE
    ===================================================== */

    #blue-editorial-hero .beh-slide-image {

        top: -6%;
        right: -8%;
        bottom: -6%;
        left: -8%;

        width: 116%;
        height: 112%;

        /*
           تكبير الصورة وقص أطرافها
           لمنع الإحساس بطول الصورة
        */

        background-position: 58% center;

        background-size: cover;

        transform: scale(1.05);

        filter:
            brightness(0.42)
            contrast(1.08)
            saturate(0.78);
    }

    #blue-editorial-hero .carousel-item.active .beh-slide-image {

        transform: scale(1);

        filter:
            brightness(0.40)
            contrast(1.08)
            saturate(0.78);
    }

    /* =====================================================
       MOBILE SHADE
    ===================================================== */

    #blue-editorial-hero .beh-slide-shade {

        background:
            linear-gradient(
                180deg,
                rgba(2, 14, 31, 0.50) 0%,
                rgba(3, 18, 39, 0.68) 25%,
                rgba(4, 24, 49, 0.84) 48%,
                rgba(3, 18, 39, 0.95) 72%,
                rgba(2, 13, 29, 1) 100%
            );
    }

    /* =====================================================
       LIGHT
    ===================================================== */

    #blue-editorial-hero::after {

        background:
            radial-gradient(
                circle at 50% 35%,
                rgba(62, 139, 255, 0.13) 0%,
                rgba(62, 139, 255, 0.05) 25%,
                transparent 52%
            );

        opacity: 0.65;
    }

    #blue-editorial-hero::before {

        top: -130px;

        right: 50%;

        width: 340px;
        height: 250px;

        transform: translateX(50%);

        opacity: 0.45;
    }

    /* =====================================================
       CONTENT
       منطقة ثابتة ومضغوطة
    ===================================================== */

    #blue-editorial-hero .beh-content {

        top: 46%;

        right: 20px;
        left: 20px;

        width: auto;

        margin: 0;
        padding: 0;

        transform: translateY(-50%);
    }

    #blue-editorial-hero .carousel-item.active .beh-content {

        transform: translateY(-50%);
    }

    /* =====================================================
       MINI LINE
    ===================================================== */

    #blue-editorial-hero .beh-mini-line {

        gap: 9px;

        margin-bottom: 15px;

        font-size: 8px;

        letter-spacing: 1.5px;
    }

    #blue-editorial-hero .beh-mini-line span {

        width: 27px;
    }

    /* =====================================================
       LABEL
    ===================================================== */

    #blue-editorial-hero .beh-content-label {

        margin-bottom: 15px;

        padding: 6px 11px;

        font-size: 10px;
    }

    /* =====================================================
       TITLE
    ===================================================== */

    #blue-editorial-hero .beh-content h1 {

        max-width: 100%;

        margin: 0;

        font-size: 38px;

        line-height: 1.22;

        letter-spacing: -1px;

        font-weight: 600;
    }

    #blue-editorial-hero .beh-content h1 strong {

        margin-top: 8px;
    }

    /* =====================================================
       DESCRIPTION
    ===================================================== */

    #blue-editorial-hero .beh-content p {

        max-width: 100%;

        margin: 22px 0 0;

        font-size: 14px;

        line-height: 1.95;
    }

    /* =====================================================
       ACTIONS
    ===================================================== */

    #blue-editorial-hero .beh-actions {

        gap: 15px;

        margin-top: 27px;
    }

    /* =====================================================
       BUTTON
    ===================================================== */

    #blue-editorial-hero .beh-primary-btn {

        min-height: 49px;

        padding: 0 15px 0 10px;

        gap: 11px;

        font-size: 11px;
    }

    #blue-editorial-hero .beh-primary-btn i {

        width: 29px;
        height: 29px;

        font-size: 12px;
    }

    /* =====================================================
       PHONE
    ===================================================== */

    #blue-editorial-hero .beh-call-link {

        gap: 8px;
    }

    #blue-editorial-hero .beh-call-link > i {

        width: 37px;
        height: 37px;

        font-size: 11px;
    }

    #blue-editorial-hero .beh-call-link span {

        font-size: 10px;
    }

    #blue-editorial-hero .beh-call-link small {

        font-size: 7px;
    }

    /* =====================================================
       NUMBER
    ===================================================== */

    #blue-editorial-hero .beh-slide-number {

        top: 15px;

        left: 18px;
    }

    #blue-editorial-hero .beh-slide-number span {

        font-size: 43px;

        letter-spacing: -3px;

        color: rgba(255, 255, 255, 0.10);
    }

    #blue-editorial-hero .beh-slide-number small {

        font-size: 7px;
    }

    /* =====================================================
       CARD
    ===================================================== */

    #blue-editorial-hero .beh-info-card {

        display: none;
    }

    /* =====================================================
       BRAND
    ===================================================== */

    #blue-editorial-hero .beh-bottom-brand {

        right: 18px;
        left: 18px;

        bottom: 61px;

        justify-content: flex-start;

        gap: 7px;
    }

    #blue-editorial-hero .beh-bottom-brand span {

        font-size: 8px;
    }

    #blue-editorial-hero .beh-bottom-brand small {

        font-size: 6px;

        letter-spacing: 0.5px;
    }

    /* =====================================================
       NAVIGATION
    ===================================================== */

    #blue-editorial-hero .beh-navigation {

        right: 18px;
        left: auto;

        bottom: 17px;

        gap: 6px;
    }

    #blue-editorial-hero .beh-navigation button {

        width: 33px;
        height: 33px;

        font-size: 10px;
    }

    #blue-editorial-hero .beh-progress {

        width: 43px;
    }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    #blue-editorial-hero {

        height: 570px;

        min-height: 0;
        max-height: 570px;
    }

    #blue-editorial-hero .beh-slide-image {

        top: -8%;
        bottom: -8%;

        height: 116%;

        width: 120%;

        right: -10%;
        left: -10%;

        background-position: 58% center;
    }

    #blue-editorial-hero .beh-content {

        top: 46%;

        right: 17px;
        left: 17px;
    }

    #blue-editorial-hero .beh-mini-line {

        margin-bottom: 12px;

        font-size: 7px;
    }

    #blue-editorial-hero .beh-content-label {

        margin-bottom: 13px;

        padding: 5px 9px;

        font-size: 9px;
    }

    #blue-editorial-hero .beh-content h1 {

        font-size: 34px;

        line-height: 1.20;
    }

    #blue-editorial-hero .beh-content h1 strong {

        margin-top: 7px;
    }

    #blue-editorial-hero .beh-content p {

        margin-top: 18px;

        font-size: 12px;

        line-height: 1.85;
    }

    #blue-editorial-hero .beh-actions {

        margin-top: 22px;

        gap: 10px;
    }

    #blue-editorial-hero .beh-call-link {

        display: none;
    }

    #blue-editorial-hero .beh-primary-btn {

        min-height: 46px;

        font-size: 10px;
    }

    #blue-editorial-hero .beh-bottom-brand {

        bottom: 57px;
    }

    #blue-editorial-hero .beh-navigation {

        bottom: 15px;
    }
}



















/* 
منطقة 2 nova-trust */

/* =====================================================
   LUMINOUS GREEN JOURNEY
===================================================== */

/* =========================================================
   BLUE JOURNEY SECTION
   ========================================================= */

#blue-journey {
  width: 100%;
  padding: 110px 20px;
  background: #ffffff;
  direction: rtl;
  overflow: hidden;
  font-family: "Alexandria", sans-serif;
}

.blue-journey-container {
  width: min(1180px, 100%);
  margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.blue-journey-header {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.blue-journey-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  margin-bottom: 20px;
  border-radius: 50px;
  background: #edf5ff;
  color: #1769d2;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2px;
}

.blue-journey-header h2 {
  margin: 0;
  color: #09264d;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -1px;
}

.blue-journey-header h2 span {
  color: #1769d2;
}

.blue-journey-header p {
  max-width: 650px;
  margin: 22px auto 0;
  color: #68788e;
  font-size: 15px;
  line-height: 2;
  font-weight: 400;
}


/* =========================================================
   STEPS
   ========================================================= */

.blue-journey-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}


/* CONNECTING LINE */

.blue-journey-steps::before {
  content: "";
  position: absolute;
  top: 48px;
  right: 16%;
  left: 16%;
  height: 2px;
  background: linear-gradient(
    to left,
    #d9e8fb,
    #1769d2,
    #d9e8fb
  );
  z-index: 0;
}


/* =========================================================
   CARD
   ========================================================= */

.blue-journey-card {
  position: relative;
  z-index: 1;
  min-height: 330px;
  padding: 30px;
  background: #ffffff;
  border: 1px solid #e4edf8;
  border-radius: 24px;
  box-shadow: 0 15px 45px rgba(19, 66, 120, 0.07);
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

.blue-journey-card:hover {
  transform: translateY(-8px);
  border-color: #c9ddf5;
  box-shadow: 0 22px 55px rgba(19, 66, 120, 0.12);
}


/* =========================================================
   CARD TOP
   ========================================================= */

.blue-journey-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 38px;
}

.blue-journey-step-number {
  color: #dce9f8;
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -2px;
}

.blue-journey-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #edf5ff;
  color: #1769d2;
  font-size: 25px;
  box-shadow: inset 0 0 0 1px #dceafb;
}

.blue-journey-icon i {
  line-height: 1;
}


/* =========================================================
   CONTENT
   ========================================================= */

.blue-journey-card-content {
  position: relative;
}

.blue-journey-label {
  display: block;
  margin-bottom: 10px;
  color: #4384d8;
  font-size: 12px;
  font-weight: 700;
}

.blue-journey-card-content h3 {
  margin: 0 0 14px;
  color: #09264d;
  font-size: 23px;
  line-height: 1.5;
  font-weight: 800;
}

.blue-journey-card-content p {
  margin: 0;
  color: #718096;
  font-size: 14px;
  line-height: 2;
}


/* =========================================================
   FEATURED CARD
   ========================================================= */

.blue-journey-card-featured {
  background: linear-gradient(
    145deg,
    #0d4f9e 0%,
    #1769d2 55%,
    #2782e9 100%
  );
  border-color: transparent;
  box-shadow: 0 25px 65px rgba(23, 105, 210, 0.25);
  transform: translateY(-14px);
}

.blue-journey-card-featured:hover {
  transform: translateY(-21px);
  box-shadow: 0 30px 75px rgba(23, 105, 210, 0.32);
}

.blue-journey-card-featured .blue-journey-step-number {
  color: rgba(255, 255, 255, 0.20);
}

.blue-journey-card-featured .blue-journey-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.blue-journey-card-featured .blue-journey-label {
  color: #bcdcff;
}

.blue-journey-card-featured .blue-journey-card-content h3 {
  color: #ffffff;
}

.blue-journey-card-featured .blue-journey-card-content p {
  color: rgba(255, 255, 255, 0.78);
}


/* =========================================================
   FEATURED BADGE
   ========================================================= */

.blue-journey-featured-badge {
  position: absolute;
  top: -15px;
  right: 25px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 50px;
  background: #ffffff;
  color: #1769d2;
  font-size: 10px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.blue-journey-featured-badge i {
  font-size: 10px;
}


/* =========================================================
   TRUST BOX
   ========================================================= */

.blue-journey-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 65px;
  padding: 22px 25px;
  border: 1px solid #e1ebf6;
  border-radius: 20px;
  background: #f8fbff;
}

.blue-journey-trust-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: #1769d2;
  color: #ffffff;
  font-size: 21px;
}

.blue-journey-trust-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.blue-journey-trust-text strong {
  color: #09264d;
  font-size: 14px;
  font-weight: 800;
}

.blue-journey-trust-text span {
  color: #718096;
  font-size: 12px;
  line-height: 1.8;
}

.blue-journey-trust-arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #edf5ff;
  color: #1769d2;
  font-size: 16px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  #blue-journey {
    padding: 85px 18px;
  }

  .blue-journey-header {
    margin-bottom: 55px;
  }

  .blue-journey-steps {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .blue-journey-steps::before {
    display: none;
  }

  .blue-journey-card {
    min-height: auto;
  }

  .blue-journey-card-featured {
    transform: none;
  }

  .blue-journey-card-featured:hover {
    transform: translateY(-8px);
  }

  .blue-journey-trust {
    margin-top: 45px;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  #blue-journey {
    padding: 70px 15px;
  }

  .blue-journey-header {
    margin-bottom: 45px;
  }

  .blue-journey-eyebrow {
    margin-bottom: 16px;
    padding: 8px 15px;
    font-size: 11px;
  }

  .blue-journey-header h2 {
    font-size: 29px;
    line-height: 1.5;
    letter-spacing: -.5px;
  }

  .blue-journey-header p {
    margin-top: 17px;
    font-size: 13px;
    line-height: 2;
  }

  .blue-journey-card {
    min-height: 0;
    padding: 24px;
    border-radius: 20px;
  }

  .blue-journey-card-top {
    margin-bottom: 30px;
  }

  .blue-journey-step-number {
    font-size: 36px;
  }

  .blue-journey-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    font-size: 22px;
  }

  .blue-journey-card-content h3 {
    font-size: 20px;
  }

  .blue-journey-card-content p {
    font-size: 13px;
    line-height: 2;
  }

  .blue-journey-featured-badge {
    right: 20px;
    top: -13px;
    font-size: 9px;
  }

  .blue-journey-trust {
    align-items: flex-start;
    padding: 18px;
    gap: 13px;
  }

  .blue-journey-trust-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    font-size: 18px;
  }

  .blue-journey-trust-text strong {
    font-size: 12px;
  }

  .blue-journey-trust-text span {
    font-size: 10px;
  }

  .blue-journey-trust-arrow {
    display: none;
  }

}


/* نهاية منطقة 2 nova-trust */




























/* بداية منطقة 3 nova-services */
/* =====================================================
   NOVA SERVICES
===================================================== */

/* =========================================================
   BLUE PREMIUM PROTECTION
   ========================================================= */

#blue-protection {
  position: relative;
  width: 100%;
  min-height: 680px;
  padding: 100px 20px;
  overflow: hidden;
  direction: rtl;
  background: #06172d;
  font-family: "Alexandria", sans-serif;
}


/* =========================================================
   BACKGROUND
   ========================================================= */

.blue-protection-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      110deg,
      rgba(3, 17, 38, .98) 0%,
      rgba(7, 35, 72, .94) 45%,
      rgba(9, 67, 132, .88) 100%
    ),
    url("../images/pest-bg.jpg") center / cover no-repeat;
  transform: scale(1.04);
  z-index: 0;
}

.blue-protection-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(3, 16, 34, .15),
      rgba(3, 16, 34, .72)
    );
}


/* =========================================================
   BLUE LIGHT EFFECTS
   ========================================================= */

.blue-protection-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.blue-protection-glow-one {
  width: 350px;
  height: 350px;
  top: -160px;
  right: -100px;
  background: rgba(36, 132, 255, .22);
}

.blue-protection-glow-two {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -80px;
  background: rgba(0, 101, 255, .16);
}


/* =========================================================
   CONTAINER
   ========================================================= */

.blue-protection-container {
  position: relative;
  z-index: 3;
  width: min(1180px, 100%);
  margin: 0 auto;
}


/* =========================================================
   BADGE
   ========================================================= */

.blue-protection-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 17px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50px;
  background: rgba(255, 255, 255, .07);
  color: #c9e2ff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 700;
}

.blue-protection-badge i {
  color: #54a5ff;
  font-size: 15px;
}


/* =========================================================
   MAIN CONTENT
   ========================================================= */

.blue-protection-content {
  max-width: 720px;
}

.blue-protection-content h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -1.5px;
}

.blue-protection-content h2 span {
  display: block;
  margin-top: 4px;
  color: #55a7ff;
}

.blue-protection-content p {
  max-width: 630px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
  line-height: 2.1;
}


/* =========================================================
   BUTTON
   ========================================================= */

.blue-protection-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 185px;
  padding: 15px 22px;
  border-radius: 12px;
  background: #ffffff;
  color: #0a4d9a;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .18);
  transition:
    transform .3s ease,
    box-shadow .3s ease,
    background .3s ease;
}

.blue-protection-btn i {
  font-size: 17px;
  transition: transform .3s ease;
}

.blue-protection-btn:hover {
  transform: translateY(-4px);
  background: #edf6ff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .25);
}

.blue-protection-btn:hover i {
  transform: translateX(-5px);
}


/* =========================================================
   PROCESS
   ========================================================= */

.blue-protection-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 65px;
}


/* =========================================================
   PROCESS ITEM
   ========================================================= */

.blue-protection-process-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 17px;
  min-height: 125px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 18px;
  background: rgba(255, 255, 255, .075);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition:
    transform .3s ease,
    background .3s ease,
    border-color .3s ease;
}

.blue-protection-process-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, .11);
  border-color: rgba(84, 165, 255, .35);
}


/* =========================================================
   NUMBER
   ========================================================= */

.blue-protection-process-number {
  position: absolute;
  left: 10px;
  bottom: -15px;
  color: rgba(255, 255, 255, .045);
  font-size: 80px;
  line-height: 1;
  font-weight: 800;
}


/* =========================================================
   ICON
   ========================================================= */

.blue-protection-process-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: rgba(53, 145, 255, .16);
  color: #61adff;
  font-size: 21px;
  box-shadow: inset 0 0 0 1px rgba(97, 173, 255, .16);
}


/* =========================================================
   TEXT
   ========================================================= */

.blue-protection-process-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.blue-protection-process-text span {
  margin-bottom: 5px;
  color: #69afff;
  font-size: 10px;
  font-weight: 700;
}

.blue-protection-process-text strong {
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
}

.blue-protection-process-text p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, .55);
  font-size: 10px;
  line-height: 1.7;
}


/* =========================================================
   BOTTOM
   ========================================================= */

.blue-protection-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.blue-protection-bottom-left {
  display: flex;
  align-items: center;
  gap: 13px;
}

.blue-protection-check {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(67, 154, 255, .15);
  color: #61adff;
  font-size: 18px;
}

.blue-protection-bottom-left > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.blue-protection-bottom-left strong {
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.blue-protection-bottom-left span {
  color: rgba(255, 255, 255, .52);
  font-size: 10px;
}


/* =========================================================
   SERVICES
   ========================================================= */

.blue-protection-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.blue-protection-services span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50px;
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .62);
  font-size: 9px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  #blue-protection {
    min-height: auto;
    padding: 80px 18px;
  }

  .blue-protection-content {
    max-width: 650px;
  }

  .blue-protection-process {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 50px;
  }

  .blue-protection-process-item {
    min-height: 105px;
  }

  .blue-protection-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .blue-protection-services {
    justify-content: flex-start;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  #blue-protection {
    padding: 65px 15px;
  }

  .blue-protection-badge {
    margin-bottom: 22px;
    padding: 8px 13px;
    font-size: 10px;
  }

  .blue-protection-content h2 {
    font-size: 31px;
    line-height: 1.45;
    letter-spacing: -.7px;
  }

  .blue-protection-content h2 span {
    margin-top: 2px;
  }

  .blue-protection-content p {
    margin: 18px 0 25px;
    font-size: 12px;
    line-height: 2;
  }

  .blue-protection-btn {
    width: 100%;
    min-width: 0;
    padding: 14px 18px;
    font-size: 12px;
  }

  .blue-protection-process {
    margin-top: 45px;
  }

  .blue-protection-process-item {
    min-height: 100px;
    padding: 18px;
    gap: 13px;
    border-radius: 16px;
  }

  .blue-protection-process-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 13px;
    font-size: 18px;
  }

  .blue-protection-process-text strong {
    font-size: 13px;
  }

  .blue-protection-process-text p {
    font-size: 9px;
  }

  .blue-protection-bottom {
    margin-top: 28px;
    padding-top: 22px;
    gap: 20px;
  }

  .blue-protection-services {
    gap: 6px;
  }

  .blue-protection-services span {
    font-size: 8px;
    padding: 6px 9px;
  }

}

/* نهاية منطقة 3 nova-services */














































/* بداية منطقة 4 nova-services-journey */

/* =====================================================
   NOVA SERVICES JOURNEY
===================================================== */


/* =========================================
   GERMAN PROTECTION ORBIT
========================================= */

 /* =========================================================
    BLUE METHOD
    ========================================================= */

#blue-method {
  width: 100%;
  padding: 110px 20px;
  background: #f6faff;
  direction: rtl;
  overflow: hidden;
  font-family: "Alexandria", sans-serif;
}

.blue-method-container {
  width: min(1180px, 100%);
  margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.blue-method-header {
  max-width: 760px;
  margin: 0 auto 65px;
  text-align: center;
}

.blue-method-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #1769d2;
  font-size: 12px;
  font-weight: 800;
}

.blue-method-kicker span {
  width: 28px;
  height: 2px;
  border-radius: 5px;
  background: #65aaf5;
}

.blue-method-kicker i {
  font-size: 15px;
}

.blue-method-header h2 {
  margin: 0;
  color: #09264d;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: -1px;
}

.blue-method-header h2 strong {
  color: #1769d2;
}

.blue-method-header p {
  max-width: 650px;
  margin: 20px auto 0;
  color: #718096;
  font-size: 14px;
  line-height: 2.1;
}


/* =========================================================
   GRID
   ========================================================= */

.blue-method-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}


/* CONNECTING LINE */

.blue-method-grid::before {
  content: "";
  position: absolute;
  top: 46px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: #c9ddf4;
  z-index: 0;
}


/* =========================================================
   CARD
   ========================================================= */

.blue-method-card {
  position: relative;
  z-index: 1;
  min-height: 345px;
  padding: 27px 23px 24px;
  border: 1px solid #e1ebf7;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(30, 75, 125, .06);
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

.blue-method-card:hover {
  transform: translateY(-8px);
  border-color: #c6dcf4;
  box-shadow: 0 22px 50px rgba(30, 75, 125, .12);
}


/* =========================================================
   NUMBER
   ========================================================= */

.blue-method-card-number {
  position: absolute;
  top: 18px;
  left: 20px;
  color: #e6f0fb;
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -2px;
}


/* =========================================================
   ICON
   ========================================================= */

.blue-method-icon {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
  border-radius: 17px;
  background: #edf5ff;
  color: #1769d2;
  font-size: 22px;
  box-shadow: inset 0 0 0 1px #dceafb;
}


/* =========================================================
   CONTENT
   ========================================================= */

.blue-method-card-content {
  position: relative;
  z-index: 2;
}

.blue-method-card-content span {
  display: block;
  margin-bottom: 9px;
  color: #4384d8;
  font-size: 10px;
  font-weight: 800;
}

.blue-method-card-content h3 {
  margin: 0 0 14px;
  color: #09264d;
  font-size: 19px;
  line-height: 1.5;
  font-weight: 800;
}

.blue-method-card-content p {
  margin: 0;
  color: #718096;
  font-size: 11px;
  line-height: 2;
}


/* =========================================================
   CARD ARROW
   ========================================================= */

.blue-method-card-arrow {
  position: absolute;
  right: 23px;
  bottom: 22px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f1f6fc;
  color: #1769d2;
  font-size: 13px;
  transition:
    background .3s ease,
    color .3s ease,
    transform .3s ease;
}

.blue-method-card:hover .blue-method-card-arrow {
  background: #1769d2;
  color: #ffffff;
  transform: translateX(-4px);
}


/* =========================================================
   FEATURED CARD
   ========================================================= */

.blue-method-featured {
  background: #0d4f9e;
  border-color: #0d4f9e;
  box-shadow: 0 22px 55px rgba(13, 79, 158, .20);
  transform: translateY(-13px);
}

.blue-method-featured:hover {
  transform: translateY(-20px);
  border-color: #0d4f9e;
  box-shadow: 0 28px 65px rgba(13, 79, 158, .27);
}

.blue-method-featured .blue-method-card-number {
  color: rgba(255, 255, 255, .08);
}

.blue-method-featured .blue-method-icon {
  background: rgba(255, 255, 255, .12);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .13);
}

.blue-method-featured .blue-method-card-content span {
  color: #9dcbff;
}

.blue-method-featured .blue-method-card-content h3 {
  color: #ffffff;
}

.blue-method-featured .blue-method-card-content p {
  color: rgba(255, 255, 255, .67);
}

.blue-method-featured .blue-method-card-arrow {
  background: rgba(255, 255, 255, .12);
  color: #ffffff;
}

.blue-method-featured:hover .blue-method-card-arrow {
  background: #ffffff;
  color: #1769d2;
}


/* =========================================================
   CTA
   ========================================================= */

.blue-method-cta {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 55px;
  padding: 20px 23px;
  border: 1px solid #dce8f5;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 35px rgba(30, 75, 125, .05);
}

.blue-method-cta-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: #edf5ff;
  color: #1769d2;
  font-size: 20px;
}

.blue-method-cta-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.blue-method-cta-text span {
  color: #718096;
  font-size: 10px;
  font-weight: 600;
}

.blue-method-cta-text strong {
  color: #09264d;
  font-size: 13px;
  font-weight: 800;
}


/* =========================================================
   CTA BUTTONS
   ========================================================= */

.blue-method-cta-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blue-method-whatsapp,
.blue-method-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 105px;
  padding: 11px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 10px;
  font-weight: 800;
  transition:
    transform .3s ease,
    box-shadow .3s ease;
}

.blue-method-whatsapp {
  background: #1769d2;
  color: #ffffff;
}

.blue-method-call {
  background: #edf5ff;
  color: #1769d2;
}

.blue-method-whatsapp:hover,
.blue-method-call:hover {
  transform: translateY(-3px);
}

.blue-method-whatsapp:hover {
  box-shadow: 0 10px 25px rgba(23, 105, 210, .22);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

  #blue-method {
    padding: 85px 18px;
  }

  .blue-method-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .blue-method-grid::before {
    display: none;
  }

  .blue-method-featured {
    transform: none;
  }

  .blue-method-featured:hover {
    transform: translateY(-8px);
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  #blue-method {
    padding: 70px 15px;
  }

  .blue-method-header {
    margin-bottom: 45px;
  }

  .blue-method-kicker {
    font-size: 10px;
    gap: 7px;
  }

  .blue-method-kicker span {
    width: 20px;
  }

  .blue-method-header h2 {
    font-size: 28px;
    line-height: 1.5;
  }

  .blue-method-header p {
    margin-top: 16px;
    font-size: 11px;
    line-height: 2;
  }

  .blue-method-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .blue-method-card {
    min-height: 270px;
    padding: 23px;
    border-radius: 19px;
  }

  .blue-method-card-number {
    top: 16px;
    left: 17px;
    font-size: 36px;
  }

  .blue-method-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 28px;
    border-radius: 15px;
    font-size: 20px;
  }

  .blue-method-card-content h3 {
    font-size: 18px;
  }

  .blue-method-card-content p {
    font-size: 10px;
    line-height: 2;
  }

  .blue-method-cta {
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 40px;
    padding: 18px;
  }

  .blue-method-cta-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 13px;
    font-size: 18px;
  }

  .blue-method-cta-text {
    min-width: calc(100% - 65px);
  }

  .blue-method-cta-text strong {
    font-size: 11px;
    line-height: 1.7;
  }

  .blue-method-cta-buttons {
    width: 100%;
    margin-top: 5px;
  }

  .blue-method-whatsapp,
  .blue-method-call {
    flex: 1;
    font-size: 9px;
  }

}

/* نهاية منطقة 4 nova-services-journey */
































/* بداية منطقة 5 nova-service-selector */

 /* =========================================================
    BLUE SERVICES EXPERIENCE
    ========================================================= */

#blue-services {
  width: 100%;
  padding: 115px 20px;
  background: #ffffff;
  direction: rtl;
  overflow: hidden;
  font-family: "Alexandria", sans-serif;
}

.blue-services-container {
  width: min(1180px, 100%);
  margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.blue-services-header {
  max-width: 760px;
  margin: 0 auto 65px;
  text-align: center;
}

.blue-services-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #1769d2;
  font-size: 11px;
  font-weight: 800;
}

.blue-services-label i {
  font-size: 14px;
}

.blue-services-header h2 {
  margin: 0;
  color: #09264d;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -1px;
}

.blue-services-header h2 strong {
  color: #1769d2;
}

.blue-services-header p {
  max-width: 650px;
  margin: 20px auto 0;
  color: #718096;
  font-size: 14px;
  line-height: 2.1;
}


/* =========================================================
   EXPERIENCE
   ========================================================= */

.blue-services-experience {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 18px;
  min-height: 500px;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.blue-services-nav {
  padding: 24px;
  border: 1px solid #e2ebf6;
  border-radius: 25px;
  background: #f7faff;
}

.blue-services-nav-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px 18px;
  border-bottom: 1px solid #e3ebf5;
}

.blue-services-nav-title span {
  color: #09264d;
  font-size: 13px;
  font-weight: 800;
}

.blue-services-nav-title small {
  color: #8a9aae;
  font-size: 9px;
}


/* =========================================================
   NAV ITEM
   ========================================================= */

.blue-services-nav-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 83px;
  margin-top: 10px;
  padding: 13px 14px;
  border: 1px solid transparent;
  border-radius: 17px;
  cursor: pointer;
  transition:
    background .3s ease,
    border-color .3s ease,
    transform .3s ease;
}

.blue-services-nav-item:hover {
  background: #ffffff;
  border-color: #dce8f5;
  transform: translateX(-4px);
}

.blue-services-nav-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 11px;
  background: #ffffff;
  color: #8ca4bd;
  font-size: 10px;
  font-weight: 800;
}

.blue-services-nav-item > div {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 4px;
}

.blue-services-nav-item strong {
  color: #294563;
  font-size: 11px;
  font-weight: 800;
}

.blue-services-nav-item small {
  color: #8a9aae;
  font-size: 9px;
}

.blue-services-nav-item > i {
  color: #a6b7ca;
  font-size: 12px;
  transition: transform .3s ease;
}

.blue-services-nav-item:hover > i {
  transform: translateX(-4px);
}


/* ACTIVE */

.blue-services-nav-active {
  background: #1769d2;
  border-color: #1769d2;
  box-shadow: 0 15px 35px rgba(23, 105, 210, .18);
}

.blue-services-nav-active:hover {
  background: #1769d2;
  border-color: #1769d2;
  transform: none;
}

.blue-services-nav-active .blue-services-nav-number {
  background: rgba(255, 255, 255, .14);
  color: #ffffff;
}

.blue-services-nav-active strong {
  color: #ffffff;
}

.blue-services-nav-active small {
  color: rgba(255, 255, 255, .62);
}

.blue-services-nav-active > i {
  color: #ffffff;
}


/* =========================================================
   MAIN SERVICE
   ========================================================= */

.blue-services-main {
  position: relative;
  min-height: 500px;
  padding: 45px;
  overflow: hidden;
  border-radius: 25px;
  background:
    linear-gradient(
      135deg,
      #092d5b 0%,
      #0d4f9e 52%,
      #1769d2 100%
    );
  box-shadow: 0 25px 60px rgba(18, 72, 135, .18);
}


/* GLOW */

.blue-services-main-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  left: -170px;
  bottom: -210px;
  border-radius: 50%;
  background: rgba(78, 169, 255, .17);
  filter: blur(10px);
}


/* =========================================================
   TOP
   ========================================================= */

.blue-services-main-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blue-services-main-top span {
  display: inline-flex;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50px;
  background: rgba(255, 255, 255, .08);
  color: #cce5ff;
  font-size: 9px;
  font-weight: 700;
}

.blue-services-main-top strong {
  color: rgba(255, 255, 255, .14);
  font-size: 34px;
  font-weight: 800;
}


/* =========================================================
   ICON
   ========================================================= */

.blue-services-main-icon {
  position: relative;
  z-index: 2;
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 35px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 21px;
  background: rgba(255, 255, 255, .11);
  color: #ffffff;
  font-size: 29px;
  box-shadow:
    inset 0 0 25px rgba(255, 255, 255, .04),
    0 15px 35px rgba(0, 0, 0, .10);
}


/* =========================================================
   CONTENT
   ========================================================= */

.blue-services-main-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-top: 30px;
}

.blue-services-main-mini {
  display: block;
  margin-bottom: 9px;
  color: #a9d3ff;
  font-size: 10px;
  font-weight: 700;
}

.blue-services-main-content h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.4;
  font-weight: 800;
}

.blue-services-main-content h3 strong {
  display: block;
  color: #ffffff;
}

.blue-services-main-content p {
  max-width: 570px;
  margin: 17px 0 25px;
  color: rgba(255, 255, 255, .67);
  font-size: 12px;
  line-height: 2.1;
}


/* =========================================================
   BUTTON
   ========================================================= */

.blue-services-main-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 13px 19px;
  border-radius: 10px;
  background: #ffffff;
  color: #0d4f9e;
  text-decoration: none;
  font-size: 10px;
  font-weight: 800;
  transition:
    transform .3s ease,
    box-shadow .3s ease;
}

.blue-services-main-button i {
  font-size: 14px;
  transition: transform .3s ease;
}

.blue-services-main-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
}

.blue-services-main-button:hover i {
  transform: translateX(-4px);
}


/* =========================================================
   WATERMARK
   ========================================================= */

.blue-services-main-watermark {
  position: absolute;
  left: 20px;
  bottom: -50px;
  color: rgba(255, 255, 255, .045);
  font-size: 260px;
  line-height: 1;
  font-weight: 800;
  user-select: none;
}


/* =========================================================
   SERVICE STRIP
   ========================================================= */

.blue-services-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
  padding: 18px 22px;
  border: 1px solid #e2ebf5;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 35px rgba(30, 75, 125, .05);
}

.blue-services-strip-item {
  display: flex;
  align-items: center;
  gap: 11px;
}

.blue-services-strip-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #edf5ff;
  color: #1769d2;
  font-size: 16px;
}

.blue-services-strip-item > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.blue-services-strip-item strong {
  color: #173b63;
  font-size: 10px;
  font-weight: 800;
}

.blue-services-strip-item span {
  color: #8a9aae;
  font-size: 8px;
}

.blue-services-strip-divider {
  width: 1px;
  height: 32px;
  background: #e5edf6;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

  #blue-services {
    padding: 90px 18px;
  }

  .blue-services-experience {
    grid-template-columns: 1fr;
  }

  .blue-services-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 18px;
  }

  .blue-services-nav-title {
    grid-column: 1 / -1;
  }

  .blue-services-nav-item {
    margin-top: 0;
  }

  .blue-services-strip {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .blue-services-strip-divider {
    display: none;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  #blue-services {
    padding: 70px 15px;
  }

  .blue-services-header {
    margin-bottom: 42px;
  }

  .blue-services-label {
    font-size: 9px;
  }

  .blue-services-header h2 {
    font-size: 29px;
    line-height: 1.5;
  }

  .blue-services-header p {
    margin-top: 15px;
    font-size: 11px;
    line-height: 2;
  }

  .blue-services-nav {
    grid-template-columns: 1fr;
    padding: 14px;
    border-radius: 20px;
  }

  .blue-services-nav-title {
    padding-bottom: 13px;
  }

  .blue-services-nav-item {
    min-height: 70px;
  }

  .blue-services-main {
    min-height: 470px;
    padding: 27px;
    border-radius: 21px;
  }

  .blue-services-main-icon {
    width: 61px;
    height: 61px;
    margin-top: 28px;
    border-radius: 17px;
    font-size: 24px;
  }

  .blue-services-main-content {
    margin-top: 24px;
  }

  .blue-services-main-content h3 {
    font-size: 27px;
  }

  .blue-services-main-content p {
    font-size: 10px;
    line-height: 2;
  }

  .blue-services-main-button {
    width: 100%;
  }

  .blue-services-main-watermark {
    font-size: 190px;
    left: -5px;
    bottom: -30px;
  }

  .blue-services-strip {
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 16px;
  }

  .blue-services-strip-item {
    padding: 4px 0;
  }

}

/* نهاية منطقة 5 nova-service-selector */


























/* بداية منطقة 6 nova-experience */


/* =====================================================
   BLUE EXPERIENCE
===================================================== */

#blue-experience {
  position: relative;
  width: 100%;
  padding: 110px 20px;
  background: #f7faff;
  direction: rtl;
  overflow: hidden;
  font-family: "Alexandria", sans-serif;
}

#blue-experience::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -280px;
  left: -180px;
  border-radius: 50%;
  background: rgba(23, 105, 210, 0.07);
  pointer-events: none;
}

#blue-experience::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  bottom: -220px;
  right: -150px;
  border-radius: 50%;
  background: rgba(23, 105, 210, 0.05);
  pointer-events: none;
}

#blue-experience .bexp-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

#blue-experience .bexp-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 65px;
}

#blue-experience .bexp-title-wrap {
  max-width: 650px;
}

#blue-experience .bexp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 9px 15px;
  border-radius: 50px;
  background: #e9f2ff;
  color: #1769d2;
  font-size: 13px;
  font-weight: 700;
}

#blue-experience .bexp-eyebrow i {
  font-size: 15px;
}

#blue-experience .bexp-header h2 {
  margin: 0;
  color: #09264d;
  font-size: clamp(32px, 4vw, 53px);
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: -1.5px;
}

#blue-experience .bexp-header h2 strong {
  display: block;
  color: #1769d2;
  font-weight: 800;
}

#blue-experience .bexp-header > p {
  max-width: 410px;
  margin: 0 0 5px;
  color: #718096;
  font-size: 15px;
  line-height: 2.1;
}


/* =====================================================
   MAIN BOARD
===================================================== */

#blue-experience .bexp-board {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  align-items: center;
  gap: 25px;
  min-height: 500px;
}


/* =====================================================
   SIDE COLUMNS
===================================================== */

#blue-experience .bexp-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

#blue-experience .bexp-side-left {
  padding-left: 20px;
}

#blue-experience .bexp-side-right {
  padding-right: 20px;
}

#blue-experience .bexp-mini-card {
  position: relative;
  padding: 28px 27px;
  min-height: 205px;
  border: 1px solid #e4edf8;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 15px 45px rgba(9, 38, 77, 0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  overflow: hidden;
}

#blue-experience .bexp-mini-card::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  left: -45px;
  bottom: -50px;
  border-radius: 50%;
  background: #edf5ff;
  transition: transform 0.35s ease;
}

#blue-experience .bexp-mini-card:hover {
  transform: translateY(-7px);
  border-color: #c9def8;
  box-shadow: 0 22px 55px rgba(9, 38, 77, 0.10);
}

#blue-experience .bexp-mini-card:hover::after {
  transform: scale(1.4);
}

#blue-experience .bexp-mini-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

#blue-experience .bexp-mini-top span {
  color: #a4b4c8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}

#blue-experience .bexp-mini-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: #edf5ff;
  color: #1769d2;
  font-size: 18px;
}

#blue-experience .bexp-mini-card > strong {
  position: relative;
  z-index: 2;
  display: block;
  color: #09264d;
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-size: 35px;
  line-height: 1;
  font-weight: 800;
  direction: ltr;
  text-align: right;
}

#blue-experience .bexp-mini-card > strong span {
  color: #1769d2;
  font-size: 22px;
  margin-right: 3px;
}

#blue-experience .bexp-mini-card h3 {
  position: relative;
  z-index: 2;
  margin: 14px 0 7px;
  color: #09264d;
  font-size: 16px;
  font-weight: 800;
}

#blue-experience .bexp-mini-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #8190a3;
  font-size: 12px;
  line-height: 1.8;
}


/* =====================================================
   CENTER EXPERIENCE
===================================================== */

#blue-experience .bexp-center {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#blue-experience .bexp-center-glow {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: rgba(23, 105, 210, 0.12);
  filter: blur(45px);
}

#blue-experience .bexp-center-inner {
  position: relative;
  z-index: 2;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 35% 25%,
      #2b82ed 0%,
      #1769d2 45%,
      #09264d 100%
    );
  box-shadow:
    0 35px 80px rgba(9, 38, 77, 0.22),
    inset 0 0 0 1px rgba(255,255,255,0.12);
}

#blue-experience .bexp-center-inner::before {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
}

#blue-experience .bexp-center-inner::after {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.14);
}

#blue-experience .bexp-center-label {
  position: relative;
  z-index: 3;
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  font-weight: 600;
}

#blue-experience .bexp-number {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 13px 0;
  direction: ltr;
}

#blue-experience .bexp-number span {
  color: #ffffff;
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-size: 65px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -3px;
}

#blue-experience .bexp-number b {
  color: #8fc0ff;
  font-size: 27px;
  font-weight: 800;
}

#blue-experience .bexp-center-line {
  position: relative;
  z-index: 3;
  width: 45px;
  height: 2px;
  margin: 3px 0 15px;
  border-radius: 5px;
  background: rgba(255,255,255,0.55);
}

#blue-experience .bexp-center-inner p {
  position: relative;
  z-index: 3;
  margin: 0;
  color: rgba(255,255,255,0.72);
  text-align: center;
  font-size: 12px;
  line-height: 2;
}

#blue-experience .bexp-center-inner p strong {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

#blue-experience .bexp-center-badge {
  position: absolute;
  z-index: 4;
  right: 8px;
  bottom: 75px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 50px;
  background: #ffffff;
  color: #09264d;
  box-shadow: 0 15px 35px rgba(9, 38, 77, 0.16);
  font-size: 11px;
  font-weight: 800;
}

#blue-experience .bexp-center-badge i {
  color: #1769d2;
  font-size: 15px;
}


/* =====================================================
   BOTTOM BAR
===================================================== */

#blue-experience .bexp-bottom {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 55px;
  padding: 20px 23px;
  border: 1px solid #e0eaf6;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 40px rgba(9, 38, 77, 0.05);
}

#blue-experience .bexp-bottom-mark {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: #edf5ff;
  color: #1769d2;
  font-size: 19px;
}

#blue-experience .bexp-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#blue-experience .bexp-bottom-content span {
  color: #1769d2;
  font-size: 11px;
  font-weight: 700;
}

#blue-experience .bexp-bottom-content strong {
  color: #09264d;
  font-size: 13px;
  font-weight: 700;
}

#blue-experience .bexp-bottom-line {
  flex: 1;
  height: 1px;
  margin-right: 20px;
  background: #e3ebf4;
}

#blue-experience .bexp-bottom-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 12px;
  background: #1769d2;
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.3s ease;
}

#blue-experience .bexp-bottom-btn i {
  transition: transform 0.3s ease;
}

#blue-experience .bexp-bottom-btn:hover {
  background: #09264d;
  color: #ffffff;
  transform: translateY(-2px);
}

#blue-experience .bexp-bottom-btn:hover i {
  transform: translateX(-4px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

  #blue-experience {
    padding: 85px 18px;
  }

  #blue-experience .bexp-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 45px;
  }

  #blue-experience .bexp-header > p {
    max-width: 600px;
  }

  #blue-experience .bexp-board {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  #blue-experience .bexp-center {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 430px;
  }

  #blue-experience .bexp-side-left {
    grid-column: 1;
    grid-row: 2;
    padding-left: 0;
  }

  #blue-experience .bexp-side-right {
    grid-column: 2;
    grid-row: 2;
    padding-right: 0;
  }

  #blue-experience .bexp-center-inner {
    width: 340px;
    height: 340px;
  }

  #blue-experience .bexp-center-badge {
    right: calc(50% - 205px);
    bottom: 25px;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

  #blue-experience {
    padding: 70px 15px;
  }

  #blue-experience .bexp-header {
    margin-bottom: 35px;
  }

  #blue-experience .bexp-eyebrow {
    font-size: 11px;
  }

  #blue-experience .bexp-header h2 {
    font-size: 32px;
    line-height: 1.5;
  }

  #blue-experience .bexp-header > p {
    font-size: 13px;
    line-height: 2;
  }

  #blue-experience .bexp-board {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  #blue-experience .bexp-center {
    order: 1;
    width: 100%;
    min-height: 350px;
  }

  #blue-experience .bexp-side-left {
    order: 2;
    width: 100%;
  }

  #blue-experience .bexp-side-right {
    order: 3;
    width: 100%;
  }

  #blue-experience .bexp-side {
    gap: 18px;
  }

  #blue-experience .bexp-mini-card {
    min-height: auto;
    padding: 24px 22px;
  }

  #blue-experience .bexp-mini-card > strong {
    font-size: 30px;
  }

  #blue-experience .bexp-center-inner {
    width: 300px;
    height: 300px;
  }

  #blue-experience .bexp-number span {
    font-size: 50px;
  }

  #blue-experience .bexp-number b {
    font-size: 22px;
  }

  #blue-experience .bexp-center-badge {
    right: calc(50% - 145px);
    bottom: 4px;
    padding: 8px 12px;
    font-size: 10px;
  }

  #blue-experience .bexp-bottom {
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 35px;
    padding: 18px;
  }

  #blue-experience .bexp-bottom-line {
    display: none;
  }

  #blue-experience .bexp-bottom-btn {
    width: 100%;
    justify-content: center;
  }

}

/* نهاية منطقة 6 nova-experience */













































/* بداية منطقة 7 nova-journey-container */



/* =====================================================
   BLUE PROCESS
===================================================== */

#blue-process {
    position: relative;
    width: 100%;
    padding: 115px 20px;
    background: #ffffff;
    direction: rtl;
    overflow: hidden;
    font-family: "Alexandria", sans-serif;
}

#blue-process::before {
    content: "";
    position: absolute;
    top: -160px;
    left: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: #f1f7ff;
    pointer-events: none;
}

#blue-process .bprocess-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

#blue-process .bprocess-header {
    max-width: 800px;
    margin-bottom: 65px;
}

#blue-process .bprocess-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    color: #1769d2;
    font-size: 12px;
    font-weight: 800;
}

#blue-process .bprocess-kicker i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: #edf5ff;
    font-size: 15px;
}

#blue-process .bprocess-header h2 {
    margin: 0;
    color: #09264d;
    font-size: clamp(34px, 4.5vw, 58px);
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: -1.7px;
}

#blue-process .bprocess-header h2 strong {
    display: block;
    color: #1769d2;
    font-weight: 800;
}

#blue-process .bprocess-header > p {
    max-width: 650px;
    margin: 22px 0 0;
    color: #718096;
    font-size: 14px;
    line-height: 2.15;
}


/* =====================================================
   MAIN LAYOUT
===================================================== */

#blue-process .bprocess-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 70px;
    align-items: stretch;
}


/* =====================================================
   BLUE FEATURE PANEL
===================================================== */

#blue-process .bprocess-panel {
    position: relative;
    min-height: 570px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 20% 10%,
            rgba(72, 151, 255, 0.35),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #1769d2 0%,
            #0e54ad 52%,
            #09264d 100%
        );
    color: #ffffff;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(9, 38, 77, 0.18);
}

#blue-process .bprocess-panel::before {
    content: "";
    position: absolute;
    width: 270px;
    height: 270px;
    left: -120px;
    bottom: -100px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
}

#blue-process .bprocess-panel::after {
    content: "";
    position: absolute;
    width: 390px;
    height: 390px;
    left: -180px;
    bottom: -160px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 50%;
}

#blue-process .bprocess-panel-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#blue-process .bprocess-panel-top span {
    color: rgba(255,255,255,0.62);
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    direction: ltr;
}

#blue-process .bprocess-panel-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 13px;
    color: #ffffff;
    font-size: 17px;
}

#blue-process .bprocess-panel-number {
    position: absolute;
    top: 105px;
    left: 25px;
    color: rgba(255,255,255,0.07);
    font-family: Arial, sans-serif;
    font-size: 170px;
    line-height: 1;
    font-weight: 900;
    direction: ltr;
}

#blue-process .bprocess-panel-content {
    position: relative;
    z-index: 2;
    margin-top: auto;
    margin-bottom: auto;
    padding-top: 60px;
}

#blue-process .bprocess-panel-content > span {
    display: block;
    margin-bottom: 16px;
    color: #a9d0ff;
    font-size: 12px;
    font-weight: 700;
}

#blue-process .bprocess-panel-content h3 {
    max-width: 320px;
    margin: 0;
    color: #ffffff;
    font-size: 34px;
    line-height: 1.55;
    font-weight: 700;
}

#blue-process .bprocess-panel-content h3 strong {
    display: block;
    color: #ffffff;
    font-weight: 800;
}

#blue-process .bprocess-panel-content p {
    max-width: 310px;
    margin: 22px 0 0;
    color: rgba(255,255,255,0.72);
    font-size: 13px;
    line-height: 2;
}

#blue-process .bprocess-panel-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.78);
    font-size: 11px;
}

#blue-process .bprocess-panel-footer i {
    color: #9bcbff;
    font-size: 17px;
}


/* =====================================================
   STEPS
===================================================== */

#blue-process .bprocess-steps {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#blue-process .bprocess-steps::before {
    content: "";
    position: absolute;
    top: 35px;
    bottom: 35px;
    right: 31px;
    width: 1px;
    background: #dce8f6;
}

#blue-process .bprocess-step {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 64px 1fr 35px;
    align-items: center;
    gap: 22px;
    min-height: 125px;
    padding: 22px 0;
    border-bottom: 1px solid #edf1f6;
    transition: all 0.3s ease;
}

#blue-process .bprocess-step:last-child {
    border-bottom: 0;
}

#blue-process .bprocess-step-number {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dce8f6;
    border-radius: 19px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(9,38,77,0.05);
}

#blue-process .bprocess-step-number span {
    position: absolute;
    top: -8px;
    right: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f0f5fb;
    color: #7d8ea3;
    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 800;
    direction: ltr;
}

#blue-process .bprocess-step-number i {
    color: #1769d2;
    font-size: 22px;
}

#blue-process .bprocess-step-content > span {
    display: block;
    margin-bottom: 6px;
    color: #1769d2;
    font-size: 10px;
    font-weight: 700;
}

#blue-process .bprocess-step-content h3 {
    margin: 0 0 6px;
    color: #09264d;
    font-size: 16px;
    font-weight: 800;
}

#blue-process .bprocess-step-content p {
    max-width: 460px;
    margin: 0;
    color: #8190a3;
    font-size: 11px;
    line-height: 1.9;
}

#blue-process .bprocess-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 11px;
    background: #f5f8fc;
    color: #9aaabd;
    font-size: 13px;
    transition: all 0.3s ease;
}

#blue-process .bprocess-step:hover .bprocess-step-arrow {
    background: #1769d2;
    color: #ffffff;
    transform: translateX(-4px);
}

#blue-process .bprocess-step:hover .bprocess-step-number {
    border-color: #bcd5f3;
    box-shadow: 0 12px 30px rgba(23,105,210,0.10);
}


/* ACTIVE STEP */

#blue-process .bprocess-step-active .bprocess-step-number {
    border-color: #1769d2;
    background: #edf5ff;
}

#blue-process .bprocess-step-active .bprocess-step-number i {
    color: #1769d2;
}


/* =====================================================
   BOTTOM
===================================================== */

#blue-process .bprocess-bottom {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 55px;
    padding: 18px 20px;
    border: 1px solid #e2eaf4;
    border-radius: 20px;
    background: #f8fbff;
}

#blue-process .bprocess-bottom-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #1769d2;
    color: #ffffff;
    font-size: 18px;
}

#blue-process .bprocess-bottom-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

#blue-process .bprocess-bottom-text span {
    color: #1769d2;
    font-size: 10px;
    font-weight: 700;
}

#blue-process .bprocess-bottom-text strong {
    color: #09264d;
    font-size: 13px;
    font-weight: 700;
}

#blue-process .bprocess-bottom-actions {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-right: auto;
}

#blue-process .bprocess-bottom-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 115px;
    padding: 12px 17px;
    border-radius: 11px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    transition: all 0.3s ease;
}

#blue-process .bprocess-whatsapp {
    background: #1769d2;
    color: #ffffff;
}

#blue-process .bprocess-whatsapp:hover {
    background: #09264d;
    color: #ffffff;
    transform: translateY(-2px);
}

#blue-process .bprocess-phone {
    border: 1px solid #dce6f1;
    background: #ffffff;
    color: #09264d;
}

#blue-process .bprocess-phone:hover {
    border-color: #1769d2;
    color: #1769d2;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {

    #blue-process {
        padding: 90px 18px;
    }

    #blue-process .bprocess-layout {
        grid-template-columns: 340px 1fr;
        gap: 35px;
    }

    #blue-process .bprocess-panel {
        min-height: 530px;
    }

    #blue-process .bprocess-panel-content h3 {
        font-size: 28px;
    }

    #blue-process .bprocess-step {
        grid-template-columns: 58px 1fr 30px;
        gap: 15px;
    }

    #blue-process .bprocess-step-number {
        width: 58px;
        height: 58px;
    }

    #blue-process .bprocess-bottom {
        flex-wrap: wrap;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    #blue-process {
        padding: 70px 15px;
    }

    #blue-process .bprocess-header {
        margin-bottom: 40px;
    }

    #blue-process .bprocess-kicker {
        font-size: 10px;
    }

    #blue-process .bprocess-header h2 {
        font-size: 32px;
        line-height: 1.5;
        letter-spacing: -0.8px;
    }

    #blue-process .bprocess-header > p {
        margin-top: 16px;
        font-size: 12px;
        line-height: 2;
    }

    #blue-process .bprocess-layout {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    #blue-process .bprocess-panel {
        min-height: 450px;
        padding: 27px;
        border-radius: 25px;
    }

    #blue-process .bprocess-panel-number {
        top: 85px;
        left: 15px;
        font-size: 130px;
    }

    #blue-process .bprocess-panel-content {
        padding-top: 30px;
    }

    #blue-process .bprocess-panel-content h3 {
        font-size: 28px;
    }

    #blue-process .bprocess-panel-content p {
        font-size: 12px;
    }

    #blue-process .bprocess-steps::before {
        right: 27px;
        top: 30px;
        bottom: 30px;
    }

    #blue-process .bprocess-step {
        grid-template-columns: 54px 1fr 28px;
        gap: 13px;
        min-height: 115px;
        padding: 18px 0;
    }

    #blue-process .bprocess-step-number {
        width: 54px;
        height: 54px;
        border-radius: 16px;
    }

    #blue-process .bprocess-step-number i {
        font-size: 18px;
    }

    #blue-process .bprocess-step-number span {
        width: 21px;
        height: 21px;
        font-size: 8px;
    }

    #blue-process .bprocess-step-content h3 {
        font-size: 14px;
    }

    #blue-process .bprocess-step-content p {
        font-size: 10px;
        line-height: 1.8;
    }

    #blue-process .bprocess-step-content > span {
        font-size: 9px;
    }

    #blue-process .bprocess-step-arrow {
        width: 28px;
        height: 28px;
        border-radius: 9px;
        font-size: 11px;
    }

    #blue-process .bprocess-bottom {
        align-items: flex-start;
        gap: 14px;
        margin-top: 35px;
        padding: 17px;
    }

    #blue-process .bprocess-bottom-icon {
        width: 43px;
        height: 43px;
        flex-basis: 43px;
    }

    #blue-process .bprocess-bottom-text {
        flex: 1;
    }

    #blue-process .bprocess-bottom-text strong {
        font-size: 11px;
        line-height: 1.8;
    }

    #blue-process .bprocess-bottom-actions {
        width: 100%;
        margin-right: 0;
    }

    #blue-process .bprocess-bottom-actions a {
        flex: 1;
        min-width: 0;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 400px) {

    #blue-process .bprocess-panel {
        min-height: 420px;
    }

    #blue-process .bprocess-panel-content h3 {
        font-size: 25px;
    }

    #blue-process .bprocess-step {
        grid-template-columns: 48px 1fr 25px;
        gap: 10px;
    }

    #blue-process .bprocess-step-number {
        width: 48px;
        height: 48px;
    }

    #blue-process .bprocess-step-content p {
        font-size: 9px;
    }

}


/* نهاية منطقة 7 nova-journey-container */
























/* 
بدايمة منطقة 8  nova-protection */

/* =====================================================
   BLUE INSPECTION
===================================================== */

#blue-inspection {
    position: relative;
    width: 100%;
    padding: 110px 20px;
    background: #f7faff;
    direction: rtl;
    overflow: hidden;
    font-family: "Alexandria", sans-serif;
}

#blue-inspection::before {
    content: "";
    position: absolute;
    top: -230px;
    right: -180px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(23, 105, 210, 0.055);
    pointer-events: none;
}

#blue-inspection::after {
    content: "";
    position: absolute;
    bottom: -250px;
    left: -180px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: rgba(23, 105, 210, 0.045);
    pointer-events: none;
}

#blue-inspection .bins-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

#blue-inspection .bins-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px;
}

#blue-inspection .bins-heading {
    max-width: 650px;
}

#blue-inspection .bins-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 50px;
    background: #eaf3ff;
    color: #1769d2;
    font-size: 11px;
    font-weight: 800;
}

#blue-inspection .bins-kicker i {
    font-size: 14px;
}

#blue-inspection .bins-header h2 {
    margin: 0;
    color: #09264d;
    font-size: clamp(34px, 4.2vw, 55px);
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: -1.5px;
}

#blue-inspection .bins-header h2 strong {
    color: #1769d2;
    font-weight: 800;
}

#blue-inspection .bins-header > p {
    max-width: 430px;
    margin: 0 0 4px;
    color: #718096;
    font-size: 13px;
    line-height: 2.15;
}


/* =====================================================
   MAIN LAYOUT
===================================================== */

#blue-inspection .bins-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 75px;
    align-items: center;
}


/* =====================================================
   REPORT
===================================================== */

#blue-inspection .bins-report {
    position: relative;
    padding: 25px;
    border: 1px solid #e0eaf5;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 25px 65px rgba(9, 38, 77, 0.08);
}


/* REPORT TOP */

#blue-inspection .bins-report-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px 3px 22px;
}

#blue-inspection .bins-report-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

#blue-inspection .bins-report-title > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #edf5ff;
    color: #1769d2;
    font-size: 17px;
}

#blue-inspection .bins-report-title div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

#blue-inspection .bins-report-title span {
    color: #a0adbc;
    font-family: Arial, sans-serif;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.5px;
    direction: ltr;
}

#blue-inspection .bins-report-title strong {
    color: #09264d;
    font-size: 11px;
    font-weight: 800;
}

#blue-inspection .bins-report-id {
    color: #a4b2c2;
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 800;
    direction: ltr;
}


/* =====================================================
   SCAN AREA
===================================================== */

#blue-inspection .bins-scan {
    position: relative;
    height: 330px;
    border-radius: 20px;
    background:
        radial-gradient(
            circle at center,
            #edf5ff 0%,
            #f7faff 48%,
            #eef4fa 100%
        );
    overflow: hidden;
}

#blue-inspection .bins-scan-grid {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background-image:
        linear-gradient(#d8e6f5 1px, transparent 1px),
        linear-gradient(90deg, #d8e6f5 1px, transparent 1px);
    background-size: 34px 34px;
}

#blue-inspection .bins-scan-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(23, 105, 210, 0.18);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

#blue-inspection .bins-circle-one {
    width: 210px;
    height: 210px;
}

#blue-inspection .bins-circle-two {
    width: 125px;
    height: 125px;
}

#blue-inspection .bins-scan-center {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    flex-direction: column;
    transform: translate(-50%, -50%);
    text-align: center;
}

#blue-inspection .bins-scan-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 13px;
    border-radius: 50%;
    background: #1769d2;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(23, 105, 210, 0.25);
}

#blue-inspection .bins-scan-icon i {
    font-size: 24px;
}

#blue-inspection .bins-scan-center strong {
    color: #09264d;
    font-size: 13px;
    font-weight: 800;
}

#blue-inspection .bins-scan-center span {
    margin-top: 5px;
    color: #8291a3;
    font-size: 9px;
}


/* SCAN POINTS */

#blue-inspection .bins-scan-point {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 7px;
}

#blue-inspection .bins-scan-point span {
    position: relative;
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1769d2;
    box-shadow: 0 0 0 5px rgba(23, 105, 210, 0.12);
}

#blue-inspection .bins-scan-point small {
    padding: 6px 9px;
    border: 1px solid #e1eaf4;
    border-radius: 7px;
    background: rgba(255,255,255,0.9);
    color: #66778c;
    font-size: 8px;
    font-weight: 700;
    white-space: nowrap;
}

#blue-inspection .bins-point-one {
    top: 55px;
    right: 55px;
}

#blue-inspection .bins-point-two {
    bottom: 55px;
    left: 55px;
}

#blue-inspection .bins-point-three {
    top: 105px;
    left: 32px;
}


/* REPORT FOOTER */

#blue-inspection .bins-report-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 20px 4px 2px;
}

#blue-inspection .bins-report-footer div {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #6f8093;
    font-size: 9px;
    font-weight: 700;
}

#blue-inspection .bins-report-footer i {
    color: #1769d2;
    font-size: 14px;
}


/* =====================================================
   CONTENT
===================================================== */

#blue-inspection .bins-content {
    max-width: 500px;
}

#blue-inspection .bins-number {
    display: flex;
    align-items: baseline;
    gap: 9px;
    margin-bottom: 20px;
}

#blue-inspection .bins-number strong {
    color: #1769d2;
    font-family: Arial, sans-serif;
    font-size: 54px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -3px;
    direction: ltr;
}

#blue-inspection .bins-number span {
    color: #9aa9ba;
    font-size: 11px;
    font-weight: 700;
}

#blue-inspection .bins-content h3 {
    margin: 0;
    color: #09264d;
    font-size: clamp(30px, 3.3vw, 45px);
    line-height: 1.5;
    font-weight: 800;
    letter-spacing: -1px;
}

#blue-inspection .bins-content h3 strong {
    color: #1769d2;
    font-weight: 800;
}

#blue-inspection .bins-content > p {
    max-width: 460px;
    margin: 20px 0 30px;
    color: #718096;
    font-size: 13px;
    line-height: 2.1;
}


/* =====================================================
   CHECKS
===================================================== */

#blue-inspection .bins-checks {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 30px;
}

#blue-inspection .bins-check {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 12px;
    border: 1px solid #e8eef5;
    border-radius: 14px;
    background: #ffffff;
    transition: all 0.3s ease;
}

#blue-inspection .bins-check:hover {
    border-color: #c8dcf5;
    transform: translateX(-4px);
    box-shadow: 0 8px 25px rgba(9,38,77,0.05);
}

#blue-inspection .bins-check > span {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #edf5ff;
    color: #1769d2;
}

#blue-inspection .bins-check > span i {
    font-size: 16px;
}

#blue-inspection .bins-check div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

#blue-inspection .bins-check strong {
    color: #09264d;
    font-size: 11px;
    font-weight: 800;
}

#blue-inspection .bins-check small {
    color: #8795a6;
    font-size: 9px;
    line-height: 1.6;
}


/* =====================================================
   BUTTON
===================================================== */

#blue-inspection .bins-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-width: 200px;
    padding: 15px 20px;
    border-radius: 13px;
    background: #1769d2;
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(23,105,210,0.18);
    transition: all 0.3s ease;
}

#blue-inspection .bins-button i {
    transition: transform 0.3s ease;
}

#blue-inspection .bins-button:hover {
    background: #09264d;
    color: #ffffff;
    transform: translateY(-3px);
}

#blue-inspection .bins-button:hover i {
    transform: translateX(-5px);
}


/* =====================================================
   BOTTOM
===================================================== */

#blue-inspection .bins-bottom {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-top: 50px;
    padding: 18px 21px;
    border: 1px solid #e1eaf4;
    border-radius: 18px;
    background: #ffffff;
}

#blue-inspection .bins-bottom-icon {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #edf5ff;
    color: #1769d2;
    font-size: 17px;
}

#blue-inspection .bins-bottom > div:nth-child(2) {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

#blue-inspection .bins-bottom span {
    color: #1769d2;
    font-size: 10px;
    font-weight: 700;
}

#blue-inspection .bins-bottom strong {
    color: #09264d;
    font-size: 12px;
    font-weight: 700;
}

#blue-inspection .bins-bottom-arrow {
    margin-right: auto;
    color: #a2afbd;
    font-size: 15px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {

    #blue-inspection {
        padding: 90px 18px;
    }

    #blue-inspection .bins-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 45px;
    }

    #blue-inspection .bins-header > p {
        max-width: 650px;
    }

    #blue-inspection .bins-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    #blue-inspection .bins-report {
        max-width: 720px;
        width: 100%;
        margin: 0 auto;
    }

    #blue-inspection .bins-content {
        max-width: 720px;
        width: 100%;
        margin: 0 auto;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    #blue-inspection {
        padding: 70px 15px;
    }

    #blue-inspection .bins-header {
        margin-bottom: 35px;
    }

    #blue-inspection .bins-kicker {
        font-size: 10px;
    }

    #blue-inspection .bins-header h2 {
        font-size: 32px;
        line-height: 1.5;
    }

    #blue-inspection .bins-header > p {
        font-size: 12px;
        line-height: 2;
    }

    #blue-inspection .bins-report {
        padding: 15px;
        border-radius: 22px;
    }

    #blue-inspection .bins-report-top {
        padding-bottom: 16px;
    }

    #blue-inspection .bins-scan {
        height: 280px;
    }

    #blue-inspection .bins-circle-one {
        width: 175px;
        height: 175px;
    }

    #blue-inspection .bins-circle-two {
        width: 105px;
        height: 105px;
    }

    #blue-inspection .bins-point-one {
        top: 35px;
        right: 20px;
    }

    #blue-inspection .bins-point-two {
        bottom: 35px;
        left: 20px;
    }

    #blue-inspection .bins-point-three {
        top: 80px;
        left: 12px;
    }

    #blue-inspection .bins-scan-point small {
        font-size: 7px;
        padding: 5px 7px;
    }

    #blue-inspection .bins-report-footer {
        padding-top: 15px;
    }

    #blue-inspection .bins-report-footer div {
        font-size: 8px;
    }

    #blue-inspection .bins-number strong {
        font-size: 44px;
    }

    #blue-inspection .bins-content h3 {
        font-size: 30px;
    }

    #blue-inspection .bins-content > p {
        font-size: 12px;
        line-height: 2;
    }

    #blue-inspection .bins-check {
        padding: 10px;
    }

    #blue-inspection .bins-check > span {
        flex-basis: 37px;
        width: 37px;
        height: 37px;
    }

    #blue-inspection .bins-check strong {
        font-size: 10px;
    }

    #blue-inspection .bins-check small {
        font-size: 8px;
    }

    #blue-inspection .bins-button {
        width: 100%;
    }

    #blue-inspection .bins-bottom {
        align-items: flex-start;
        padding: 15px;
    }

    #blue-inspection .bins-bottom-icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }

    #blue-inspection .bins-bottom strong {
        font-size: 10px;
        line-height: 1.8;
    }

    #blue-inspection .bins-bottom-arrow {
        display: none;
    }

}

/* نهاية منطقة 8 nova-protection */






























/* بداية منطقة 9 nova-expertise */


/* =====================================================
   BLUE EXPERIENCE DIFFERENCE
===================================================== */

#blue-experience-difference {
    position: relative;
    width: 100%;
    padding: 115px 20px;
    background: #ffffff;
    direction: rtl;
    overflow: hidden;
    font-family: "Alexandria", sans-serif;
}

#blue-experience-difference::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -280px;
    left: -220px;
    border-radius: 50%;
    background: #f1f7ff;
    pointer-events: none;
}

#blue-experience-difference::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    right: -170px;
    bottom: -170px;
    border-radius: 50%;
    background: #f5f9fe;
    pointer-events: none;
}

#blue-experience-difference .bed-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

#blue-experience-difference .bed-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 65px;
}

#blue-experience-difference .bed-heading {
    max-width: 720px;
}

#blue-experience-difference .bed-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    padding: 9px 15px;
    border-radius: 50px;
    background: #edf5ff;
    color: #1769d2;
    font-size: 11px;
    font-weight: 800;
}

#blue-experience-difference .bed-kicker i {
    font-size: 14px;
}

#blue-experience-difference .bed-heading h2 {
    margin: 0;
    color: #09264d;
    font-size: clamp(34px, 4.3vw, 57px);
    line-height: 1.45;
    font-weight: 800;
    letter-spacing: -1.5px;
}

#blue-experience-difference .bed-heading h2 strong {
    display: block;
    color: #1769d2;
    font-weight: 800;
}

#blue-experience-difference .bed-intro {
    max-width: 350px;
    margin-bottom: 5px;
}

#blue-experience-difference .bed-intro > span {
    display: block;
    margin-bottom: 10px;
    color: #a3afbd;
    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    direction: ltr;
}

#blue-experience-difference .bed-intro p {
    margin: 0;
    color: #718096;
    font-size: 12px;
    line-height: 2.1;
}


/* =====================================================
   MAIN
===================================================== */

#blue-experience-difference .bed-main {
    display: grid;
    grid-template-columns: 430px 1fr;
    gap: 75px;
    align-items: stretch;
}


/* =====================================================
   BLUE VISUAL
===================================================== */

#blue-experience-difference .bed-visual {
    position: relative;
    min-height: 570px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(82, 159, 255, 0.28),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            #1769d2 0%,
            #1058b7 48%,
            #09264d 100%
        );
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(9,38,77,0.18);
}

#blue-experience-difference .bed-visual::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    left: -170px;
    bottom: -170px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 50%;
}

#blue-experience-difference .bed-visual::after {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    left: -230px;
    bottom: -230px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 50%;
}

#blue-experience-difference .bed-visual-top {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#blue-experience-difference .bed-visual-top span {
    color: rgba(255,255,255,0.62);
    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    direction: ltr;
}

#blue-experience-difference .bed-visual-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
}

#blue-experience-difference .bed-big-word {
    position: absolute;
    top: 70px;
    left: 10px;
    color: rgba(255,255,255,0.055);
    font-family: Arial, sans-serif;
    font-size: 190px;
    line-height: 1;
    font-weight: 900;
    direction: ltr;
}

#blue-experience-difference .bed-visual-content {
    position: relative;
    z-index: 3;
    margin-top: auto;
    margin-bottom: auto;
    padding-top: 60px;
}

#blue-experience-difference .bed-visual-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 18px;
    background: rgba(255,255,255,0.10);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

#blue-experience-difference .bed-visual-icon i {
    font-size: 27px;
}

#blue-experience-difference .bed-visual-content > span {
    display: block;
    margin-bottom: 12px;
    color: #a8d0ff;
    font-size: 11px;
    font-weight: 700;
}

#blue-experience-difference .bed-visual-content h3 {
    max-width: 330px;
    margin: 0;
    color: #ffffff;
    font-size: 32px;
    line-height: 1.55;
    font-weight: 700;
}

#blue-experience-difference .bed-visual-content h3 strong {
    display: block;
    font-weight: 800;
}

#blue-experience-difference .bed-visual-content p {
    max-width: 320px;
    margin: 18px 0 0;
    color: rgba(255,255,255,0.68);
    font-size: 12px;
    line-height: 2;
}

#blue-experience-difference .bed-visual-footer {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.13);
}

#blue-experience-difference .bed-visual-footer span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.72);
    font-size: 9px;
}

#blue-experience-difference .bed-visual-footer i {
    color: #9bcaff;
    font-size: 12px;
}


/* =====================================================
   CONTENT
===================================================== */

#blue-experience-difference .bed-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#blue-experience-difference .bed-content-title {
    margin-bottom: 30px;
}

#blue-experience-difference .bed-content-title > span {
    display: block;
    margin-bottom: 13px;
    color: #1769d2;
    font-size: 11px;
    font-weight: 800;
}

#blue-experience-difference .bed-content-title h3 {
    max-width: 550px;
    margin: 0;
    color: #09264d;
    font-size: 30px;
    line-height: 1.65;
    font-weight: 800;
}

#blue-experience-difference .bed-content-title h3 strong {
    color: #1769d2;
    font-weight: 800;
}


/* =====================================================
   ROWS
===================================================== */

#blue-experience-difference .bed-rows {
    display: flex;
    flex-direction: column;
}

#blue-experience-difference .bed-row {
    position: relative;
    display: grid;
    grid-template-columns: 40px 52px 1fr 35px;
    align-items: center;
    gap: 17px;
    padding: 19px 0;
    border-bottom: 1px solid #e8eef5;
    transition: all 0.3s ease;
}

#blue-experience-difference .bed-row:first-child {
    border-top: 1px solid #e8eef5;
}

#blue-experience-difference .bed-row-number {
    color: #a7b4c3;
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 800;
    direction: ltr;
}

#blue-experience-difference .bed-row-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #f1f6fc;
    color: #1769d2;
    transition: all 0.3s ease;
}

#blue-experience-difference .bed-row-icon i {
    font-size: 19px;
}

#blue-experience-difference .bed-row-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#blue-experience-difference .bed-row-text strong {
    color: #09264d;
    font-size: 14px;
    font-weight: 800;
}

#blue-experience-difference .bed-row-text span {
    color: #8492a3;
    font-size: 10px;
    line-height: 1.8;
}

#blue-experience-difference .bed-row-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 10px;
    background: #f6f8fb;
    color: #a1adbb;
    font-size: 12px;
    transition: all 0.3s ease;
}

#blue-experience-difference .bed-row:hover {
    padding-right: 8px;
}

#blue-experience-difference .bed-row:hover .bed-row-icon,
#blue-experience-difference .bed-row-active .bed-row-icon {
    background: #1769d2;
    color: #ffffff;
    box-shadow: 0 8px 22px rgba(23,105,210,0.18);
}

#blue-experience-difference .bed-row:hover .bed-row-arrow {
    background: #1769d2;
    color: #ffffff;
    transform: translateX(-4px);
}


/* =====================================================
   BOTTOM
===================================================== */

#blue-experience-difference .bed-bottom {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 55px;
    padding: 18px 20px;
    border: 1px solid #e1eaf4;
    border-radius: 19px;
    background: #f8fbff;
}

#blue-experience-difference .bed-bottom-mark {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #1769d2;
    color: #ffffff;
    font-size: 17px;
}

#blue-experience-difference .bed-bottom-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

#blue-experience-difference .bed-bottom-text span {
    color: #1769d2;
    font-size: 10px;
    font-weight: 700;
}

#blue-experience-difference .bed-bottom-text strong {
    color: #09264d;
    font-size: 12px;
    font-weight: 700;
}

#blue-experience-difference .bed-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 145px;
    margin-right: auto;
    padding: 12px 17px;
    border-radius: 11px;
    background: #1769d2;
    color: #ffffff;
    text-decoration: none;
    font-size: 10px;
    font-weight: 800;
    transition: all 0.3s ease;
}

#blue-experience-difference .bed-button i {
    transition: transform 0.3s ease;
}

#blue-experience-difference .bed-button:hover {
    background: #09264d;
    color: #ffffff;
    transform: translateY(-2px);
}

#blue-experience-difference .bed-button:hover i {
    transform: translateX(-4px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {

    #blue-experience-difference {
        padding: 90px 18px;
    }

    #blue-experience-difference .bed-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 45px;
    }

    #blue-experience-difference .bed-intro {
        max-width: 650px;
    }

    #blue-experience-difference .bed-main {
        grid-template-columns: 330px 1fr;
        gap: 35px;
    }

    #blue-experience-difference .bed-visual {
        min-height: 530px;
    }

    #blue-experience-difference .bed-visual-content h3 {
        font-size: 27px;
    }

    #blue-experience-difference .bed-row {
        grid-template-columns: 30px 48px 1fr 30px;
        gap: 12px;
    }

    #blue-experience-difference .bed-row-icon {
        width: 48px;
        height: 48px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    #blue-experience-difference {
        padding: 70px 15px;
    }

    #blue-experience-difference .bed-header {
        margin-bottom: 38px;
    }

    #blue-experience-difference .bed-kicker {
        font-size: 10px;
    }

    #blue-experience-difference .bed-heading h2 {
        font-size: 32px;
        line-height: 1.5;
    }

    #blue-experience-difference .bed-intro p {
        font-size: 11px;
        line-height: 2;
    }

    #blue-experience-difference .bed-main {
        display: flex;
        flex-direction: column;
        gap: 38px;
    }

    #blue-experience-difference .bed-visual {
        min-height: 440px;
        padding: 26px;
        border-radius: 24px;
    }

    #blue-experience-difference .bed-big-word {
        top: 65px;
        left: 0;
        font-size: 150px;
    }

    #blue-experience-difference .bed-visual-content {
        padding-top: 35px;
    }

    #blue-experience-difference .bed-visual-content h3 {
        font-size: 27px;
    }

    #blue-experience-difference .bed-visual-content p {
        font-size: 11px;
    }

    #blue-experience-difference .bed-content-title h3 {
        font-size: 25px;
        line-height: 1.7;
    }

    #blue-experience-difference .bed-row {
        grid-template-columns: 27px 46px 1fr 27px;
        gap: 10px;
        padding: 17px 0;
    }

    #blue-experience-difference .bed-row-icon {
        width: 46px;
        height: 46px;
        border-radius: 13px;
    }

    #blue-experience-difference .bed-row-text strong {
        font-size: 12px;
    }

    #blue-experience-difference .bed-row-text span {
        font-size: 9px;
        line-height: 1.8;
    }

    #blue-experience-difference .bed-row-arrow {
        width: 27px;
        height: 27px;
        font-size: 10px;
    }

    #blue-experience-difference .bed-bottom {
        align-items: flex-start;
        flex-wrap: wrap;
        margin-top: 35px;
        padding: 15px;
    }

    #blue-experience-difference .bed-bottom-mark {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }

    #blue-experience-difference .bed-bottom-text {
        flex: 1;
    }

    #blue-experience-difference .bed-bottom-text strong {
        font-size: 10px;
        line-height: 1.8;
    }

    #blue-experience-difference .bed-button {
        width: 100%;
        margin-right: 0;
    }

}

/* نهاية منطقة 9 nova-expertise */
































/* بداية منطقة 10  stop-premium-contact */



/* =====================================================
   BLUE CONTACT COMMAND CENTER
===================================================== */

#blue-contact-command {

    --bcc-navy: #09264D;
    --bcc-blue: #1769D2;
    --bcc-light: #EDF5FF;
    --bcc-white: #FFFFFF;
    --bcc-text: #1B2A3A;
    --bcc-muted: #718096;
    --bcc-border: #E3EAF2;

    width: 100%;
    position: relative;
    overflow: hidden;
    background: #F8FAFD;
    padding: 110px 20px 45px;

    direction: rtl;
    font-family: "Alexandria", "IBM Plex Sans Arabic", sans-serif;
}


/* =====================================================
   CONTAINER
===================================================== */

#blue-contact-command .bcc-container {

    width: min(1180px, 100%);
    margin: auto;
}


/* =====================================================
   TOP
===================================================== */

#blue-contact-command .bcc-top {

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 42px;
}


#blue-contact-command .bcc-kicker {

    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--bcc-blue);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;

    direction: ltr;
}


#blue-contact-command .bcc-kicker span {

    width: 28px;
    height: 2px;

    background: var(--bcc-blue);

    display: block;
}


#blue-contact-command .bcc-top-note {

    display: flex;
    align-items: center;
    gap: 8px;

    color: #657487;

    font-size: 12px;
    font-weight: 600;
}


#blue-contact-command .bcc-top-note i {

    color: var(--bcc-blue);
    font-size: 16px;
}


/* =====================================================
   INTRO
===================================================== */

#blue-contact-command .bcc-intro {

    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, .55fr);

    gap: 70px;

    align-items: end;

    padding-bottom: 55px;
}


#blue-contact-command .bcc-title > span {

    display: block;

    color: var(--bcc-blue);

    font-size: 14px;
    font-weight: 800;

    margin-bottom: 12px;
}


#blue-contact-command .bcc-title h2 {

    margin: 0;

    color: var(--bcc-navy);

    font-size: clamp(36px, 5vw, 68px);

    line-height: 1.18;
    font-weight: 500;

    letter-spacing: -2px;
}


#blue-contact-command .bcc-title h2 strong {

    display: block;

    color: var(--bcc-blue);

    font-weight: 800;
}


#blue-contact-command .bcc-intro > p {

    margin: 0;

    max-width: 400px;

    color: var(--bcc-muted);

    font-size: 15px;

    line-height: 2;

}


/* =====================================================
   CONTACT AREA
===================================================== */

#blue-contact-command .bcc-contact-area {

    display: grid;
    grid-template-columns: .78fr 1.22fr;

    gap: 24px;

    direction: ltr;
}


/* =====================================================
   CHOICE SIDE
===================================================== */

#blue-contact-command .bcc-choice {

    direction: rtl;

    background: var(--bcc-navy);

    padding: 38px;

    min-height: 570px;

    position: relative;

    overflow: hidden;
}


#blue-contact-command .bcc-choice::before {

    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 50%;

    left: -150px;
    bottom: -130px;
}


#blue-contact-command .bcc-choice::after {

    content: "";

    position: absolute;

    width: 190px;
    height: 190px;

    border: 1px solid rgba(255,255,255,.06);

    border-radius: 50%;

    left: -80px;
    bottom: -60px;
}


#blue-contact-command .bcc-choice-head {

    position: relative;
    z-index: 2;

    margin-bottom: 35px;
}


#blue-contact-command .bcc-choice-head small {

    color: #8FB8ED;

    font-size: 11px;
    font-weight: 700;
}


#blue-contact-command .bcc-choice-head h3 {

    margin: 12px 0 0;

    color: white;

    font-size: 25px;
    line-height: 1.7;

    font-weight: 500;
}


#blue-contact-command .bcc-choice-head h3 strong {

    color: #6FA7F5;

    font-weight: 800;
}


/* =====================================================
   CHANNELS
===================================================== */

#blue-contact-command .bcc-channel {

    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    gap: 16px;

    text-decoration: none;

    padding: 19px 0;

    border-top: 1px solid rgba(255,255,255,.1);

    transition: .3s ease;
}


#blue-contact-command .bcc-channel:hover {

    transform: translateX(-6px);
}


#blue-contact-command .bcc-channel-icon {

    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.08);

    color: white;

    font-size: 20px;

    transition: .3s ease;
}


#blue-contact-command .bcc-channel:hover .bcc-channel-icon {

    background: var(--bcc-blue);
}


#blue-contact-command .bcc-whatsapp .bcc-channel-icon {

    background: #1769D2;
}


#blue-contact-command .bcc-channel-content {

    min-width: 0;

    flex: 1;
}


#blue-contact-command .bcc-channel-content span {

    display: block;

    color: #7FA6D7;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;

    direction: ltr;

    text-align: right;

    margin-bottom: 5px;
}


#blue-contact-command .bcc-channel-content strong {

    display: block;

    color: white;

    font-size: 14px;
    font-weight: 700;

    margin-bottom: 5px;
}


#blue-contact-command .bcc-channel-content small {

    display: block;

    color: #91A4BC;

    font-size: 10px;

    line-height: 1.8;
}


#blue-contact-command .bcc-channel-arrow {

    color: #6D8DB5;

    font-size: 16px;

    transition: .3s ease;
}


#blue-contact-command .bcc-channel:hover .bcc-channel-arrow {

    color: white;

    transform: translate(-4px, -4px);
}


/* =====================================================
   MINI INFO
===================================================== */

#blue-contact-command .bcc-mini-info {

    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 32px;

    padding-top: 22px;

    border-top: 1px solid rgba(255,255,255,.1);
}


#blue-contact-command .bcc-mini-info > div {

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.07);

    color: #7DB0F7;
}


#blue-contact-command .bcc-mini-info span {

    color: #91A4BC;

    font-size: 10px;
}


/* =====================================================
   FORM WRAP
===================================================== */

#blue-contact-command .bcc-form-wrap {

    direction: rtl;

    background: white;

    border: 1px solid var(--bcc-border);

    padding: 42px 45px;

    position: relative;

    box-shadow: 0 20px 60px rgba(9,38,77,.06);
}


#blue-contact-command .bcc-form-number {

    display: flex;
    align-items: center;
    gap: 9px;

    color: #A4B0BD;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;

    direction: ltr;

    margin-bottom: 22px;
}


#blue-contact-command .bcc-form-number span {

    color: var(--bcc-blue);

    font-size: 14px;
}


#blue-contact-command .bcc-form-title h3 {

    margin: 0;

    color: var(--bcc-navy);

    font-size: 30px;
    font-weight: 500;
}


#blue-contact-command .bcc-form-title h3 strong {

    color: var(--bcc-blue);

    font-weight: 800;
}


#blue-contact-command .bcc-form-title p {

    margin: 10px 0 30px;

    color: var(--bcc-muted);

    font-size: 12px;

    line-height: 1.9;
}


/* =====================================================
   FORM
===================================================== */

#blue-contact-command .bcc-form {

    width: 100%;
}


#blue-contact-command .bcc-fields-row {

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


#blue-contact-command .bcc-field {

    margin-bottom: 18px;
}


#blue-contact-command .bcc-field label {

    display: block;

    color: #46566A;

    font-size: 11px;
    font-weight: 700;

    margin-bottom: 8px;
}


#blue-contact-command .bcc-input {

    height: 55px;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 0 15px;

    background: #F8FAFC;

    border: 1px solid #E4EAF0;

    transition: .25s ease;
}


#blue-contact-command .bcc-input:focus-within {

    background: white;

    border-color: var(--bcc-blue);

    box-shadow: 0 0 0 3px rgba(23,105,210,.08);
}


#blue-contact-command .bcc-input > i {

    flex: 0 0 auto;

    color: #8B9AAD;

    font-size: 16px;

    transition: .25s ease;
}


#blue-contact-command .bcc-input:focus-within > i {

    color: var(--bcc-blue);
}


#blue-contact-command .bcc-input input,
#blue-contact-command .bcc-input select {

    width: 100%;
    height: 100%;

    border: 0;
    outline: 0;

    background: transparent;

    color: var(--bcc-text);

    font-family: inherit;

    font-size: 12px;
}


#blue-contact-command .bcc-input input::placeholder {

    color: #A6B0BC;
}


#blue-contact-command .bcc-input select {

    cursor: pointer;

    appearance: auto;
}


/* =====================================================
   MESSAGE
===================================================== */

#blue-contact-command .bcc-message {

    min-height: 0;

    font-size: 11px;

    color: #D9534F;

    margin: 0 0 8px;
}


/* =====================================================
   SUBMIT
===================================================== */

#blue-contact-command .bcc-submit {

    width: 100%;
    height: 58px;

    border: 0;

    background: var(--bcc-blue);

    color: white;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 22px;

    cursor: pointer;

    font-family: inherit;

    font-size: 12px;
    font-weight: 800;

    transition: .3s ease;
}


#blue-contact-command .bcc-submit:hover {

    background: var(--bcc-navy);

    transform: translateY(-2px);

    box-shadow: 0 12px 25px rgba(23,105,210,.18);
}


#blue-contact-command .bcc-submit i {

    font-size: 18px;

    transition: .3s ease;
}


#blue-contact-command .bcc-submit:hover i {

    transform: translateX(-5px);
}


/* =====================================================
   FORM FOOTER
===================================================== */

#blue-contact-command .bcc-form-footer {

    display: flex;
    justify-content: center;
    gap: 30px;

    padding-top: 18px;
}


#blue-contact-command .bcc-form-footer span {

    display: flex;
    align-items: center;
    gap: 6px;

    color: #8794A3;

    font-size: 9px;
}


#blue-contact-command .bcc-form-footer i {

    color: var(--bcc-blue);

    font-size: 13px;
}


/* =====================================================
   BOTTOM
===================================================== */

#blue-contact-command .bcc-bottom {

    margin-top: 24px;

    padding: 22px 26px;

    background: white;

    border: 1px solid var(--bcc-border);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}


#blue-contact-command .bcc-bottom-main {

    display: flex;
    align-items: center;

    gap: 13px;
}


#blue-contact-command .bcc-bottom-icon {

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--bcc-light);

    color: var(--bcc-blue);

    font-size: 18px;
}


#blue-contact-command .bcc-bottom-main small {

    display: block;

    color: #98A5B4;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.4px;

    direction: ltr;

    text-align: right;

    margin-bottom: 4px;
}


#blue-contact-command .bcc-bottom-main strong {

    color: var(--bcc-navy);

    font-size: 12px;
}


#blue-contact-command .bcc-bottom-points {

    display: flex;
    align-items: center;

    gap: 24px;
}


#blue-contact-command .bcc-bottom-points span {

    display: flex;
    align-items: center;
    gap: 6px;

    color: #68798C;

    font-size: 9px;
}


#blue-contact-command .bcc-bottom-points i {

    color: var(--bcc-blue);

    font-size: 13px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    #blue-contact-command {

        padding-top: 80px;
    }


    #blue-contact-command .bcc-intro {

        grid-template-columns: 1fr;

        gap: 22px;

        padding-bottom: 38px;
    }


    #blue-contact-command .bcc-intro > p {

        max-width: 600px;
    }


    #blue-contact-command .bcc-contact-area {

        grid-template-columns: 1fr;
    }


    #blue-contact-command .bcc-choice {

        min-height: auto;
    }


    #blue-contact-command .bcc-bottom {

        align-items: flex-start;

        flex-direction: column;
    }


    #blue-contact-command .bcc-bottom-points {

        flex-wrap: wrap;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    #blue-contact-command {

        padding: 65px 14px 30px;
    }


    #blue-contact-command .bcc-top {

        margin-bottom: 30px;
    }


    #blue-contact-command .bcc-top-note {

        display: none;
    }


    #blue-contact-command .bcc-title h2 {

        font-size: 36px;

        letter-spacing: -1px;
    }


    #blue-contact-command .bcc-intro {

        padding-bottom: 30px;
    }


    #blue-contact-command .bcc-intro > p {

        font-size: 12px;

        line-height: 2;
    }


    #blue-contact-command .bcc-choice {

        padding: 28px 22px;
    }


    #blue-contact-command .bcc-choice-head h3 {

        font-size: 21px;
    }


    #blue-contact-command .bcc-form-wrap {

        padding: 30px 20px;
    }


    #blue-contact-command .bcc-form-title h3 {

        font-size: 25px;
    }


    #blue-contact-command .bcc-fields-row {

        grid-template-columns: 1fr;

        gap: 0;
    }


    #blue-contact-command .bcc-bottom {

        padding: 20px;
    }


    #blue-contact-command .bcc-bottom-points {

        gap: 12px 20px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    #blue-contact-command .bcc-title h2 {

        font-size: 31px;
    }


    #blue-contact-command .bcc-channel-content small {

        font-size: 9px;
    }


    #blue-contact-command .bcc-form-footer {

        gap: 15px;
    }

}




/* نهاية منطقة  10  stop-premium-contact */























/* فوتر  */


/* =====================================================
   BLUE - PREMIUM FOOTER
===================================================== */

#blue-premium-footer {

    --bpf-navy: #09264D;
    --bpf-blue: #1769D2;
    --bpf-light-blue: #EDF5FF;
    --bpf-white: #FFFFFF;
    --bpf-text: #B7C5D6;
    --bpf-muted: #7F91A7;
    --bpf-line: rgba(255,255,255,.10);

    position: relative;

    width: 100%;

    overflow: hidden;

    background: var(--bpf-navy);

    color: var(--bpf-white);

    direction: rtl;

    font-family:
        "Alexandria",
        "IBM Plex Sans Arabic",
        sans-serif;
}


/* =====================================================
   BACKGROUND
===================================================== */

#blue-premium-footer::before {

    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    left: -320px;
    top: -280px;

    background:
        radial-gradient(
            circle,
            rgba(23,105,210,.18) 0%,
            rgba(23,105,210,.05) 38%,
            transparent 70%
        );

    pointer-events: none;
}


#blue-premium-footer::after {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    right: -280px;
    bottom: -280px;

    border: 1px solid rgba(255,255,255,.035);

    pointer-events: none;
}


/* =====================================================
   CONTAINER
===================================================== */

#blue-premium-footer .bpf-container {

    position: relative;

    z-index: 2;

    width: min(1180px, calc(100% - 40px));

    margin: auto;
}


/* =====================================================
   TOP
===================================================== */

#blue-premium-footer .bpf-top {

    display: grid;

    grid-template-columns:
        1.2fr
        1.3fr
        .8fr;

    gap: 55px;

    align-items: center;

    padding: 70px 0 55px;

    border-bottom: 1px solid var(--bpf-line);
}


/* =====================================================
   BRAND
===================================================== */

#blue-premium-footer .bpf-brand {

    display: flex;

    align-items: center;

    gap: 15px;
}


#blue-premium-footer .bpf-brand-mark {

    width: 58px;
    height: 58px;

    flex: 0 0 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--bpf-blue);

    color: white;

    font-size: 25px;

    box-shadow:
        0 15px 35px rgba(23,105,210,.25);
}


#blue-premium-footer .bpf-brand-name strong {

    display: block;

    color: white;

    font-size: 20px;

    font-weight: 800;

    margin-bottom: 6px;
}


#blue-premium-footer .bpf-brand-name span {

    display: block;

    color: #8295AC;

    font-size: 9px;

    line-height: 1.7;
}


/* =====================================================
   DESCRIPTION
===================================================== */

#blue-premium-footer .bpf-description {

    margin: 0;

    max-width: 420px;

    color: var(--bpf-text);

    font-size: 12px;

    line-height: 2;

}


/* =====================================================
   STATUS
===================================================== */

#blue-premium-footer .bpf-status {

    display: flex;

    align-items: center;

    gap: 12px;

    justify-content: flex-start;
}


#blue-premium-footer .bpf-status-dot {

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #4CCB8A;

    box-shadow:
        0 0 0 6px rgba(76,203,138,.08),
        0 0 18px rgba(76,203,138,.35);
}


#blue-premium-footer .bpf-status small {

    display: block;

    color: #61768F;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.4px;

    direction: ltr;

    text-align: right;

    margin-bottom: 5px;
}


#blue-premium-footer .bpf-status strong {

    display: block;

    color: #D8E4F0;

    font-size: 11px;

    font-weight: 600;
}


/* =====================================================
   MAIN
===================================================== */

#blue-premium-footer .bpf-main {

    display: grid;

    grid-template-columns:
        .7fr
        .85fr
        1fr
        1.25fr;

    gap: 45px;

    padding: 55px 0;

    border-bottom: 1px solid var(--bpf-line);
}


/* =====================================================
   COLUMN
===================================================== */

#blue-premium-footer .bpf-column-title {

    display: block;

    color: #6F87A2;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 22px;
}


#blue-premium-footer .bpf-column a {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    width: 100%;

    padding: 7px 0;

    color: #B5C4D5;

    text-decoration: none;

    font-size: 11px;

    transition: .25s ease;
}


#blue-premium-footer .bpf-column a i {

    opacity: 0;

    color: #6EA9F4;

    font-size: 11px;

    transform: translateX(7px);

    transition: .25s ease;
}


#blue-premium-footer .bpf-column a:hover {

    color: white;

    transform: translateX(-3px);
}


#blue-premium-footer .bpf-column a:hover i {

    opacity: 1;

    transform: translateX(0);
}


/* =====================================================
   CONTACT
===================================================== */

#blue-premium-footer .bpf-phone {

    display: flex;

    align-items: center;

    gap: 12px;

    text-decoration: none;

    margin-bottom: 16px;
}


#blue-premium-footer .bpf-contact-icon {

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.05);

    color: #72A9ED;

    font-size: 14px;

    transition: .25s ease;
}


#blue-premium-footer .bpf-phone:hover .bpf-contact-icon {

    background: var(--bpf-blue);

    color: white;
}


#blue-premium-footer .bpf-phone small {

    display: block;

    color: #61768F;

    font-size: 7px;

    letter-spacing: 1px;

    direction: ltr;

    text-align: right;

    margin-bottom: 4px;
}


#blue-premium-footer .bpf-phone strong {

    color: #D6E2EE;

    font-size: 12px;

    font-weight: 700;

    direction: ltr;

    display: block;

    text-align: right;
}


#blue-premium-footer .bpf-address {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #8294A8;

    font-size: 10px;

    margin-top: 20px;
}


#blue-premium-footer .bpf-address i {

    color: #5F99E6;

    font-size: 15px;
}


/* =====================================================
   ACTION
===================================================== */

#blue-premium-footer .bpf-action {

    position: relative;

    padding: 28px;

    background: rgba(255,255,255,.045);

    border: 1px solid rgba(255,255,255,.07);

    overflow: hidden;
}


#blue-premium-footer .bpf-action::after {

    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    border-radius: 50%;

    left: -70px;
    bottom: -70px;

    border: 1px solid rgba(255,255,255,.06);
}


#blue-premium-footer .bpf-action-label {

    color: #6FA5E8;

    font-size: 9px;

    font-weight: 700;
}


#blue-premium-footer .bpf-action h3 {

    position: relative;

    z-index: 2;

    margin: 10px 0 8px;

    color: white;

    font-size: 22px;

    line-height: 1.5;

    font-weight: 500;
}


#blue-premium-footer .bpf-action h3 strong {

    color: #65A2F3;

    font-weight: 800;
}


#blue-premium-footer .bpf-action p {

    position: relative;

    z-index: 2;

    margin: 0 0 20px;

    color: #8295AA;

    font-size: 10px;

    line-height: 1.9;
}


/* =====================================================
   WHATSAPP
===================================================== */

#blue-premium-footer .bpf-whatsapp {

    position: relative;

    z-index: 3;

    display: flex;

    align-items: center;

    gap: 12px;

    min-height: 58px;

    padding: 0 14px;

    background: var(--bpf-blue);

    color: white;

    text-decoration: none;

    transition: .3s ease;
}


#blue-premium-footer .bpf-whatsapp:hover {

    background: #2877DD;

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(23,105,210,.25);
}


#blue-premium-footer .bpf-whatsapp > i {

    font-size: 21px;
}


#blue-premium-footer .bpf-whatsapp span {

    flex: 1;

    font-size: 10px;

    font-weight: 700;
}


#blue-premium-footer .bpf-whatsapp span small {

    display: block;

    margin-top: 4px;

    color: rgba(255,255,255,.65);

    font-size: 8px;

    direction: ltr;

    text-align: right;
}


#blue-premium-footer .bpf-whatsapp b {

    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.12);
}


#blue-premium-footer .bpf-whatsapp b i {

    font-size: 13px;

    transition: .25s ease;
}


#blue-premium-footer .bpf-whatsapp:hover b i {

    transform: translateX(-4px);
}


/* =====================================================
   LARGE BRAND LINE
===================================================== */

#blue-premium-footer .bpf-brandline {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 22px;

    padding: 38px 0;

    color: rgba(255,255,255,.09);

    direction: ltr;
}


#blue-premium-footer .bpf-brandline span,
#blue-premium-footer .bpf-brandline strong {

    font-size: clamp(25px, 4vw, 55px);

    font-weight: 900;

    letter-spacing: 4px;
}


#blue-premium-footer .bpf-brandline-center {

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.12);

    color: #427CBF;

    font-size: 17px;
}


/* =====================================================
   BOTTOM
===================================================== */

#blue-premium-footer .bpf-bottom {

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 25px;

    padding: 22px 0 25px;
}


#blue-premium-footer .bpf-copyright {

    color: #687C93;

    font-size: 9px;
}


#blue-premium-footer .bpf-copyright strong {

    color: #9AABBD;

    font-weight: 600;
}


#blue-premium-footer .bpf-social {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;
}


#blue-premium-footer .bpf-social a {

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.045);

    border: 1px solid rgba(255,255,255,.07);

    color: #8DA2B9;

    text-decoration: none;

    font-size: 13px;

    transition: .25s ease;
}


#blue-premium-footer .bpf-social a:hover {

    background: var(--bpf-blue);

    border-color: var(--bpf-blue);

    color: white;

    transform: translateY(-3px);
}


/* =====================================================
   DEVELOPER
===================================================== */

#blue-premium-footer .bpf-developer {

    text-align: left;

    color: #63778E;

    font-size: 8px;
}


#blue-premium-footer .bpf-developer a {

    color: #8FA5BC;

    text-decoration: none;

    font-weight: 700;

    transition: .25s ease;
}


#blue-premium-footer .bpf-developer a:hover {

    color: #69A5F3;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    #blue-premium-footer .bpf-top {

        grid-template-columns: 1fr 1fr;

        gap: 30px;
    }


    #blue-premium-footer .bpf-status {

        justify-content: flex-start;
    }


    #blue-premium-footer .bpf-main {

        grid-template-columns: 1fr 1fr;

        gap: 40px 35px;
    }


    #blue-premium-footer .bpf-action {

        grid-column: 1 / -1;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    #blue-premium-footer .bpf-container {

        width: min(100% - 28px, 1180px);
    }


    #blue-premium-footer .bpf-top {

        grid-template-columns: 1fr;

        gap: 25px;

        padding: 50px 0 40px;
    }


    #blue-premium-footer .bpf-description {

        max-width: 100%;

        font-size: 11px;
    }


    #blue-premium-footer .bpf-main {

        grid-template-columns: 1fr 1fr;

        gap: 35px 25px;

        padding: 42px 0;
    }


    #blue-premium-footer .bpf-contact {

        grid-column: 1 / -1;
    }


    #blue-premium-footer .bpf-action {

        grid-column: 1 / -1;

        padding: 24px;
    }


    #blue-premium-footer .bpf-brandline {

        gap: 12px;
    }


    #blue-premium-footer .bpf-brandline span,
    #blue-premium-footer .bpf-brandline strong {

        font-size: 25px;

        letter-spacing: 2px;
    }


    #blue-premium-footer .bpf-brandline-center {

        width: 35px;
        height: 35px;

        font-size: 13px;
    }


    #blue-premium-footer .bpf-bottom {

        grid-template-columns: 1fr;

        justify-items: center;

        text-align: center;

        gap: 18px;
    }


    #blue-premium-footer .bpf-developer {

        text-align: center;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 400px) {

    #blue-premium-footer .bpf-main {

        grid-template-columns: 1fr;
    }


    #blue-premium-footer .bpf-contact {

        grid-column: auto;
    }


    #blue-premium-footer .bpf-column a {

        max-width: 240px;
    }


    #blue-premium-footer .bpf-brandline span,
    #blue-premium-footer .bpf-brandline strong {

        font-size: 21px;
    }

}

/* نهاية الفوتر  */
































/* 
منطقة الازرار  */

/* =========================================================
   BLUE CONTACT ICON BUTTONS
========================================================= */

#blue-contact-bar {

    --bcb-navy: #09264D;
    --bcb-blue: #1769D2;
    --bcb-blue-dark: #0E56B7;

    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 9999;

    display: flex;
    gap: 10px;

    direction: rtl;
}


/* =========================================================
   BUTTON
========================================================= */

#blue-contact-bar .blue-contact-icon-btn {

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    width: 150px;
    height: 58px;

    border-radius: 14px;

    color: #fff;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    box-shadow:
        0 12px 35px rgba(9, 38, 77, 0.25);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


/* =========================================================
   ICON
========================================================= */

#blue-contact-bar .blue-contact-icon-btn i {

    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    border-radius: 10px;

    background: rgba(255,255,255,0.13);

    font-size: 16px;
}


/* =========================================================
   PHONE
========================================================= */

#blue-contact-bar .blue-contact-phone {

    background:
        linear-gradient(
            135deg,
            #09264D,
            #1769D2
        );
}


/* =========================================================
   WHATSAPP
========================================================= */

#blue-contact-bar .blue-contact-whatsapp {

    background:
        linear-gradient(
            135deg,
            #09264D,
            #0D4775
        );
}


/* =========================================================
   HOVER
========================================================= */

#blue-contact-bar .blue-contact-icon-btn:hover {

    transform: translateY(-4px);

    box-shadow:
        0 18px 40px rgba(9, 38, 77, 0.35);

    color: #fff;
}

#blue-contact-bar .blue-contact-icon-btn:hover i {

    background: rgba(255,255,255,0.22);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    #blue-contact-bar {

        right: 8px;
        left: 8px;

        bottom: 8px;

        width: auto;

        gap: 6px;
    }


    #blue-contact-bar .blue-contact-icon-btn {

        flex: 1;

        width: 50%;

        height: 56px;

        border-radius: 12px;

        gap: 8px;

        font-size: 12px;
    }


    #blue-contact-bar .blue-contact-icon-btn i {

        width: 34px;
        height: 34px;

        border-radius: 9px;

        font-size: 15px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    #blue-contact-bar {

        right: 6px;
        left: 6px;

        bottom: 6px;

        gap: 5px;
    }

    #blue-contact-bar .blue-contact-icon-btn {

        height: 53px;

        font-size: 11px;
    }

    #blue-contact-bar .blue-contact-icon-btn i {

        width: 31px;
        height: 31px;

        font-size: 14px;
    }
}




















/* =====================================================
   إخفاء زر الصعود لأعلى نهائياً
   ===================================================== */

#back-to-top,
.back-to-top,
.back-to-top-btn,
.scroll-to-top,
.scroll-top,
#scroll-top,
.scroll-top-btn,
.go-top,
#go-top {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ________________________________________ */

/* الخطوط */
/* الخط الأساسي للموقع */
body {
    font-family: "Alexandria", sans-serif;
    font-weight: 400;
    font-size: 15px;
}

p {
    font-size: 14px;
    line-height: 1.8;
}
/* العناوين */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Alexandria", sans-serif;
    font-weight: 700;
}

/* النصوص */
p {
    font-size: 14px;
    line-height: 1.8;
}

/* الموبايل */
@media (max-width: 600px) {

    body {
        font-size: 14px;
    }

    p {
        font-size: 13px;
        line-height: 1.8;
    }

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 27px;
    }

    h3 {
        font-size: 19px;
    }

}



/* 

الخطوط */

/* =========================================================
   GLOBAL FONT
========================================================= */

html,
body,
button,
input,
textarea,
select {
    font-family: "Alexandria", sans-serif;
}

#blue-editorial-hero,
#blue-editorial-hero * {
    font-family: "Alexandria", sans-serif;
}