:root {
  --main_color: #254F22;
  --secondary_color: #973610;
  --white_color: #FBFADA;
  --background_color: #eef2f7;
}

html {
  overflow-x: hidden;
}

body {
  direction: rtl;
  text-align: right;
  font-family: "Cairo", sans-serif;
  overflow-x: hidden;
  overflow-y: hidden;
}

.section-title {
  color: var(--secondary_color);
  font-weight: 800;
  font-size: 36px;
  margin-bottom: 20px;
}

.section-title2 {
  color: var(--secondary_color);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}

.header {
  background: var(--main_color);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.navbar-inner {
  background: var(--white_color);
  box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.3);
  height: 80px;
}

.navbar-inner .nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.navbar .navbar-brand img {
  width: 100%;
}

.navbar-inner .navbar-brand img {
  width: 200px;
  height: 80px;
  margin-right: -50px;
}

@media(max-width:991px) {
  .navbar-inner .navbar-brand img {
    width: 150px;
    height: 60px;
    margin-right: -40px;
  }
}

.navbar-nav {
  margin-top: 20px;
  margin-right: 50px;
  display: flex;
  justify-content: flex-end;
}

.header .form_content a {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
}

.navbar-nav .nav-link {
  color: var(--white_color);
  margin-left: 25px;
  font-family: "Cairo", sans-serif;
  white-space: nowrap;
  font-size: 20px;
}

.navbar-inner .navbar-nav .nav-link {
  color: var(--main_color);
  margin-left: 0;
  margin-right: 25px;
}

@media(min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-link {
    margin-left: 20px;
    font-size: 16px;
  }
}

.navbar-nav .active .nav-link {
  color: var(--secondary_color) !important;
  font-weight: 800;
}

.navbar-nav .nav-link:hover {
  color: var(--secondary_color) !important;
}

#openSideMenu {
  font-size: 20px;
  padding-right: 24px;
  cursor: pointer;
  display: none;
  position: absolute;
  top: 30px;
  left: 50px;
  color: var(--white_color);
}

.navbar-inner #openSideMenu {
  font-size: 20px;
  padding-right: 24px;
  cursor: pointer;
  display: none;
  position: absolute;
  top: 25px;
  left: 0;
  color: var(--main_color);
}

@media(max-width:991px) {
  .navbar-nav {
    position: fixed;
    top: -20px;
    bottom: 0;
    left: -300px;
    width: 266px;
    background-color: var(--white_color);
    z-index: 9999;
    box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease-in-out;
    text-align: right;
    display: block;
    padding-top: 50px;
    margin-right: 0;
  }

  .navbar-nav .nav-link {
    text-decoration: none;
    color: var(--main_color) !important;
    padding-top: 15px;
    padding-bottom: 15px;
    display: block;
    width: 100%;
  }

  #openSideMenu {
    display: block;
  }

  .navbar-inner #openSideMenu {
    display: block;
  }
}

.header .content .text-content {
  text-align: right;
  margin-top: 140px;
  color: white;
}

.header .content .text-content p {
  margin-bottom: 40px;
  font-size: 20px;
  font-family: "Cairo", sans-serif;
}

.header .content span {
  display: block;
  margin-bottom: 10px;
  font-weight: 800;
  font-family: "Cairo", sans-serif;
  color: #fff;
  font-size: 26px;
}

.header .content span i {
  color: var(--secondary_color);
  font-size: 32px;
}

.contact {
  display: flex;
  flex-flow: row wrap;
  background-color: var(--background_color);
  min-height: 50px;
  margin-bottom: 30px;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
}

.contact span {
  display: flex;
  align-items: center;
  height: 100%;
}

.contact p {
  font-size: 20px;
  color: var(--main_color);
  font-weight: 500;
  margin-left: 20px;
  padding-top: 10px;
}

.contact span i {
  color: var(--secondary_color);
  font-size: 32px;
  margin-left: 10px;
}

.contact span a {
  font-size: 22px;
  color: var(--main_color);
  font-weight: 500;
  margin-left: 20px;
  text-decoration: none;
}

@media (max-width: 767.98px) {
  .contact {
    margin-top: 30px;
  }

  .contact p {
    margin-bottom: 5px;
  }

  .contact span i {
    color: var(--secondary_color);
    font-size: 24px;
    margin-left: 5px;
  }

  .contact span a {
    font-size: 16px;
    color: var(--main_color);
    font-weight: 500;
    margin-left: 10px;
    text-decoration: none;
  }
}

.header .content .img-contnet {
  position: absolute;
  top: 80px;
  left: 0;
}

.header .content .img-contnet img {
  width: auto;
  height: 500px;
}

@media (max-width: 767.98px) {
  .header .content .text-content {
    margin-top: 100px;
    text-align: center;
  }

  .header .content span {
    text-align: center;
  }

  .header .form_content a {
    font-size: 16px;
  }

  .header .content span i {
    font-size: 20px;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .header .content .text-content {
    margin-top: 100px;
    text-align: center;
  }

  .header .content span {
    text-align: center;
    font-size: 18px;
  }

  .header .content span i {
    color: var(--secondary_color);
    font-size: 26px;
  }

  .header .content .img-contnet {
    left: 0px;
    text-align: center;
  }

  .header .content .img-contnet img {
    width: auto;
    height: 450px;
  }
}

/*//////////////////*/
.about {
  text-align: right;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 50px 0;
}

.about img {
  width: 100%;
  max-height: 100%;
}

.about-inner {
  margin-top: 30px;
  padding: 0;
  margin-bottom: 20px;
}

.about-inner .logo {
  text-align: center;
  margin-bottom: 20px;
}

.about-inner img {
  width: 50%;
  height: 180px;
}

.about .about-content {
  margin-bottom: 70px;
}

.about .about-content p {
  color: grey;
  line-height: 1.9;
  font-family: "Cairo", sans-serif;
}

.about .about-content span {
  display: block;
  color: var(--main_color);
  font-size: 40px;
  font-family: "Aref Ruqaa", serif;
}

@media (max-width: 767px) {
  .about {
    text-align: center;
    margin-top: 100px;
  }

  .about-inner {
    margin-top: 0;
  }

  .about-inner img {
    width: 100%;
    height: auto;
  }
}

/*//////////////start devices style///////////////////*/
.devices {
  background-color: var(--background_color);
  padding: 50px 0;
  margin-bottom: 50px;
}

.devices p {
  line-height: 1.4;
  margin-bottom: 30px;
  color: var(--main_color);
  font-weight: 500;
  font-size: 24px;
}

.devices-inner {
  margin-bottom: 0;
}

.devices-inner p {
  line-height: 1.2;
  margin-bottom: 30px;
  color: var(--main_color);
  font-weight: 500;
  font-size: 22px;
}

.devices .device-contnet {
  margin-bottom: 30px;
}

.devices .device-contnet img {
  width: auto;
  height: 100px;
}

.devices .device-contnet h5 {
  margin-top: 15px;
  color: var(--secondary_color);
  font-weight: 500;
  font-size: 24px;
}

.devices-inner {
  margin-bottom: 0;
}

.devices-inner p {
  line-height: 1.2;
  margin-bottom: 30px;
  color: var(--main_color);
  font-weight: 300;
  font-size: 18px;
}

.devices-inner .device img {
  width: auto;
  height: 180px;
  margin-bottom: 20px;
}

.devices-inner .device h4 {
  color: var(--secondary_color);
  font-weight: 500;
  font-size: 20px;
}

.devices-inner .device p {
  color: #000;
  font-weight: 300;
  font-size: 14px;
}

@media (max-width: 767.98px) {
  .devices-inner .device p {
    font-size: 12px;
  }

  .devices-inner .device img {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
  }
}

/*/////////////start services style////////////////////*/
.services {
  margin-bottom: 50px;
  padding: 50px 0;
}

.services-inner {
  margin-bottom: 20px;
  padding: 0;
}

.services p {
  line-height: 1.4;
  margin-bottom: 30px;
  color: var(--main_color);
  font-weight: 500;
  font-size: 24px;
}

.services .last p {
  line-height: 1.4;
  margin-bottom: 30px;
  color: var(--secondary_color);
  font-weight: 500;
  font-size: 24px;
  text-align: center;
  width: 80%;
  margin: auto;
}

@media(max-width: 767px) {
  .services .last p {
    width: 90%;
    font-size: 22px;
  }
}

.services .service-item {
  display: flex;
  margin-bottom: 30px;
  background: var(--background_color);
  padding: 15px;
  border-radius: 15px;
}

.services .service-item .service-image {
  margin-left: 15px;
}

.services .service-item .service-image img {
  width: 100px;
  height: 100px;
}

.services .service-item .service-content .service-title {
  margin-bottom: 10px;
  color: var(--secondary_color);
  font-weight: 500;
  font-size: 22px;
}

.services .service-item .service-content p {
  line-height: 1.4;
  color: var(--main_color);
  font-weight: 300;
  font-size: 16px;
}

/*////////////strat branding style////////////////////*/

.brand-item {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
}

.brand-item a {
  height: 100%;
  width: 100%;
  align-self: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.branding {
  background-color: var(--background_color);
  padding: 80px 0px;
  margin-bottom: 50px;
}

.branding button:focus {
  outline: none !important;
}

.branding h2 {
  font-family: "Cairo", sans-serif;
  font-weight: bolder;
}

.branding p {
  width: 65%;
  color: #3d3d3d;
  margin: auto;
  margin-bottom: 40px;
  font-family: "Cairo", sans-serif;
  line-height: 1.8;
}

.branding a {
  color: #3d3d3d;
  text-decoration: none;
}

.branding .item {
  background-color: white;
  height: 170px;
  margin: auto;
}

@media (max-width: 767px) {
  .branding .item {
    height: 180px;
    width: 200px;
  }
}

.branding .item img {
  max-width: 100% !important;
  height: 60px !important;
  margin: auto;
  margin-top: 30px;
  display: unset !important;
}

.branding .item h5 {
  margin-top: 30px;
  font-family: "Cairo", sans-serif;
}

.branding .owl-dots {
  display: none;
}

.branding .owl-nav.owl-nav {
  margin-top: 70px;
}

.branding .owl-nav.owl-nav .owl-next.owl-next,
.branding .owl-nav.owl-nav .owl-prev.owl-prev {
  margin-top: 0px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  border: 1px solid grey;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 17px;
}

.branding .owl-nav.owl-nav .owl-next.owl-next span,
.branding .owl-nav.owl-nav .owl-prev.owl-prev span {
  margin-top: -23px;
  font-weight: 420;
  font-size: 42px;
  color: #999999;
  margin-left: 1px;
}

.branding .owl-nav.owl-nav .owl-next.owl-next:hover span,
.branding .owl-nav.owl-nav .owl-prev.owl-prev:hover span {
  background: transparent !important;
  color: var(--secondary_color);
}

.branding .owl-nav.owl-nav .owl-next.owl-next:hover,
.branding .owl-nav.owl-nav .owl-prev.owl-prev:hover {
  background: transparent !important;
}

.branding .owl-nav.owl-nav .owl-next.owl-next span:focus,
.branding .owl-nav.owl-nav .owl-prev.owl-prev span:focus {
  outline: none;
}

/*/////////////start testimonials style////*/
.testimonials {
  padding: 50px 0;
  margin-bottom: 50px;
}

.testimonials h4 {
  font-family: "Cairo", sans-serif;
  font-weight: bolder;
  margin-bottom: 50px;
}

.testimonials .carousel-inner {
  width: 60%;
  margin: auto;
}

.testimonials .carousel-inner .d-block {
  margin: auto;
  margin-bottom: 30px;
}

.testimonials .carousel-inner p {
  line-height: 1.8;
  color: #999999;
  font-family: "Cairo", sans-serif;
}

.testimonials .carousel-inner strong {
  font-family: "Cairo", sans-serif;
}

.testimonials a:hover {
  text-decoration: none;
}

.testimonials .crousal-icons {
  margin-top: 30px;
  padding: 2px 9px;
  display: inline-block;
  border: 1px solid #999999;
  border-radius: 50%;
  color: #999999;
  margin-left: 10px;
}

.testimonials .crousal-icons:hover {
  color: var(--secondary_color);
}

/*/////////////start privacy policy style////*/
.privacy {
  padding: 50px 0;

  background-color: var(--background_color);
}

.privacy h2 {
  font-family: "Cairo", sans-serif;
  font-weight: bolder;
  margin-bottom: 50px;
}

.privacy .card {
  border: none;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}

.privacy .card-header {
  background-color: #fff;
  border-bottom: none;
  padding: 0;
  border-radius: 8px !important;
}

.privacy .card-header .btn-link {
  color: var(--main_color);
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  font-size: 18px;
  width: 100%;
  text-align: right;
  text-decoration: none;
  padding: 20px;
}

.privacy .card-header .btn-link i {
  transition: transform 0.3s ease;
  color: var(--secondary_color);
}

.privacy .card-header .btn-link[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.privacy .card-header .btn-link:hover,
.privacy .card-header .btn-link:focus {
  color: var(--secondary_color);
  text-decoration: none;
}

.privacy .card-header .btn-link[aria-expanded="true"] {
  color: var(--secondary_color);
}

.privacy .card-body {
  font-family: "Cairo", sans-serif;
  color: #555;
  line-height: 1.8;
  font-size: 16px;
  padding: 0 20px 20px 20px;
}

.footer {
  background-image: url(../img/Maintenance.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 830px;
  position: relative;
}

@media (max-width: 767px) {
  .footer {
    height: 1200px;
  }
}

.footer .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #31343de8;
}

.footer .overlay .footer-content {
  margin-top: 150px;
  color: white;
}

.footer .overlay .footer-content img {
  margin-bottom: 20px;
  width: 60%;
  height: auto;
}

.footer .footer-content .social-icon {
  margin-top: 30px;
  text-align: right;
}

.footer .footer-content .social-icon a {
  display: inline-block;
  margin-left: 20px;
}

.footer .footer-content .social-icon a i {
  font-size: 34px;
  color: var(--white_color);
}

.footer .footer-content .social-icon a i:hover {
  color: var(--secondary_color);
}

.footer .overlay .footer-content p {
  width: 60%;
  margin-bottom: 20px;
  font-family: "Cairo", sans-serif;
  text-align: right;
}

@media (max-width: 530px) {
  .footer .overlay .footer-content {
    text-align: center;
    margin-top: 50px;
  }

  .footer .overlay .footer-content img {
    margin-bottom: 30px;
  }

  .footer .overlay .footer-content p {
    text-align: center;
    width: 100%;
  }

  .footer .overlay .footer-content .social-icon {
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .footer .overlay .footer-content {
    text-align: center;
  }

  .footer .overlay .footer-content p {
    text-align: center;
    width: 100%;
  }

  .footer .overlay .footer-content .social-icon {
    text-align: center;
  }

  .footer .footer-content .social-icon a i {
    font-size: 30px;
  }
}

.footer .overlay span {
  display: block;
  margin-bottom: 10px;
  font-weight: 800;
  font-family: "Cairo", sans-serif;
  color: #fff;
  font-size: 28px;
}

.footer .overlay span i {
  color: var(--secondary_color);
  font-size: 30px;
}

.footer .overlay .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "Cairo", sans-serif;
}

.footer .form_content {
  text-align: center;
  margin-bottom: 30px;
}

.footer .form_content a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 767.98px) {
  .footer .form_content a {
    font-size: 20px;
  }

  .footer .overlay span i {
    font-size: 20px;
  }
}

.footer h3 {
  color: var(--secondary_color);
  margin-top: 50px;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 800;
}

.footer p {
  color: #fff;
  text-align: center;
}

.footer form {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  padding: 30px;
  text-align: right;
}

.footer form input {
  height: 40px;
  color: var(--main_color);
}

.footer form label {
  color: var(--secondary_color);
}

.footer form textarea {
  color: var(--main_color);
  height: 100px;
  resize: none;
}

.footer form button {
  background: var(--main_color);
  color: var(--secondary_color);
  font-weight: 800;
  font-size: 20px;
  border: none;
  outline: none;
}

#scroll {
  color: var(--secondary_color);
  background: var(--main_color);
  right: 20px;
  width: 48px;
  height: 48px;
  position: fixed;
  z-index: 9999;
  text-align: center;
  padding: 13px 18px;
  bottom: 20px;
  cursor: pointer;
  display: none;
  border-radius: 50%;
}

@media (max-width: 767px) {
  #scroll {
    width: 38px;
    height: 38px;
    padding: 7px 12px;
  }
}

/*////////////////////////*/
.success {
  background: #fff;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  height: 70%;
  margin-top: 15%;
}

.success img {
  width: 150px;
  height: auto;
}

.success h2 {
  color: #00305c;
  font-weight: 800;
  font-size: 32px;
  margin-bottom: 20px;
}

.success h3 {
  color: #ff7900;
  font-weight: 500;
  font-size: 30px;
  margin-top: 0;
  text-align: center;
  line-height: 1.3;
}

@media (max-width: 557px) {
  .success {
    height: 50%;
    margin-top: 25%;
  }

  .success h3 {
    font-size: 28px;
  }
}

@media (min-width: 767px) and (max-width: 991px) {
  .success {
    height: 40%;
    margin-top: 30%;
  }
}

/* Sticky Call Button */
.sticky-call-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: var(--secondary_color);
  color: var(--white_color);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: bold;
  font-family: "Cairo", sans-serif;
  text-decoration: none;
  display: flex;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.sticky-call-btn i {
  margin-left: 10px;
  font-size: 24px;
}

.sticky-call-btn:hover {
  background-color: var(--main_color);
  color: var(--white_color);
  text-decoration: none;
  transform: scale(1.05);
}

@media (max-width: 767px) {
  .sticky-call-btn {
    bottom: 20px;
    left: 20px;
    font-size: 16px;
    padding: 8px 16px;
  }

  .sticky-call-btn i {
    font-size: 20px;
  }
}