@import url('https://fonts.googleapis.com/css2?family=Changa:wght@400;500;700&display=swap');

:root {
    --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Raleway",  sans-serif;
    --nav-font: "Poppins",  sans-serif;
    --arabic-font: "Changa", sans-serif;
  }
  
  :root { 
    --background-color: #f8f8f8; 
    --heading-color: #5a5a5a; 
    --color01: #41459B; 
    --color02:#ffffff;
    --color03: #444444; 
    --color04:#585CD4;
    --color05:#807EFF;
    --color06:#5a5a5a;
    --topbar-height: 40px;
    --header-height: 110px;
    --fixed-header-offset: calc(var(--topbar-height) + var(--header-height));
  }

  :root {
    --nav-color: #444444;
    --nav-hover-color: #41459B;
    --nav-mobile-background-color: #ffffff; 
  }

  
  /*--------------------------------------------------------------
  # General Styling
  --------------------------------------------------------------*/
  html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--fixed-header-offset) + 12px);
  }

  * {
    box-sizing: border-box; 
  }

  body {
    color: var(--color03);
    background-color: var(--background-color);
    font-family: var(--default-font);
    width: 100%;
    overflow-x: hidden; 
    padding-top: var(--fixed-header-offset);
  }
  
  a {
    color: var(--color01);
    text-decoration: none;
    transition: 0.3s;
  }
  
  a:hover {
    color: color-mix(in srgb, var(--color05), transparent 25%);
    text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
  }
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    --background-color: #f8f8f8;
    color: var(--default-color);
    padding: 40px 0;
    transition: all 0.5s;
    z-index: 997;
    top: var(--topbar-height);
    width: 100%;
  }
  
  .header .header-container {
    background-color: var(--background-color);
    transition: all 0.5s;
    position: relative;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 0px;
  }
  
  .header .logo {
    /* background: var(--accent-color); */
    position: absolute;
    inset: 0 auto 0 0;
    padding: 0 20px;
  }
  
  .header .logo img {
    /* max-height: 60px;
    width: 160px; */
    margin-right: 8px;
  }
  
  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    color: var(--background-color);
    background: var(--color02);
    font-size: 14px;
    padding: 8px 20px;
    margin: 0 5px 0 30px;
    border-radius: 50px;
    transition: 0.3s;
  }
  
  /* .header .btn-getstarted:hover,
  .header .btn-getstarted:focus:hover {
    color: var(--color02);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
  } */
  
  .scrolled .header {
    padding: 0;
    background-color: var(--background-color);
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  }
  
  @media (max-width: 1200px) {
    .header {
      padding: 0;
    }
  
    .header .header-container {
      padding: 10px 0;
    }
  
    .header .logo {
      order: 1;
    }
  
    .header .btn-getstarted {
      order: 2;
      margin: 0 15px 0 0;
      padding: 6px 15px;
    }
  
    .header .navmenu {
      order: 3;
    }
  }
  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /* Navmenu - Desktop */
  @media (min-width: 1200px) {
    .navmenu {
      padding: 0;
    }
  
    .navmenu ul {
      margin: 0;
      padding: 0;
      display: flex;
      list-style: none;
      align-items: center;
    }
  
    .navmenu li {
      position: relative;
    }
  
    .navmenu a,
    .navmenu a:focus {
      color: var(--nav-color);
      padding: 18px 15px;
      font-size: 15px;
      font-family: var(--nav-font);
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
    }
  
    .navmenu a i,
    .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      transition: 0.3s;
    }
  
    .navmenu li:last-child a {
      padding-right: 0;
    }
  
    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
      color: var(--nav-hover-color);
    }
  
    .navmenu .dropdown ul {
      margin: 0;
      padding: 10px 0;
      background: var(--nav-dropdown-background-color);
      display: block;
      position: absolute;
      visibility: hidden;
      left: 14px;
      top: 130%;
      opacity: 0;
      transition: 0.3s;
      border-radius: 4px;
      z-index: 99;
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
  
    .navmenu .dropdown ul li {
      min-width: 200px;
    }
  
    .navmenu .dropdown ul a {
      padding: 10px 20px;
      font-size: 15px;
      text-transform: none;
      color: var(--nav-dropdown-color);
    }
  
    .navmenu .dropdown ul a i {
      font-size: 12px;
    }
  
    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
      color: var(--nav-dropdown-hover-color);
    }
  
    .navmenu .dropdown:hover>ul {
      opacity: 1;
      top: 100%;
      visibility: visible;
    }
  
    .navmenu .dropdown .dropdown ul {
      top: 0;
      left: -90%;
      visibility: hidden;
    }
  
    .navmenu .dropdown .dropdown:hover>ul {
      opacity: 1;
      top: 0;
      left: -100%;
      visibility: visible;
    }
  }
  
  /* Navmenu - Mobile */
  @media (max-width: 1199px) {
    .mobile-nav-toggle {
      color: var(--nav-color);
      font-size: 28px;
      line-height: 0;
      margin-right: 10px;
      cursor: pointer;
      transition: color 0.3s;
    }
  
    .navmenu {
      padding: 0;
      z-index: 9997;
    }
  
    .navmenu ul {
      display: none;
      list-style: none;
      position: absolute;
      inset: 60px 20px 20px 20px;
      padding: 10px 0;
      margin: 0;
      border-radius: 6px;
      background-color: var(--nav-mobile-background-color);
      overflow-y: auto;
      transition: 0.3s;
      z-index: 9998;
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
  
    .navmenu a,
    .navmenu a:focus {
      color: var(--nav-dropdown-color);
      padding: 10px 20px;
      font-family: var(--nav-font);
      font-size: 17px;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
    }
  
    .navmenu a i,
    .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: 0.3s;
      background-color: color-mix(in srgb, var(--color01), transparent 90%);
    }
  
    .navmenu a i:hover,
    .navmenu a:focus i:hover {
      background-color: var(--color01);
      color: var(--color02);
    }
  
    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
      color: var(--nav-dropdown-hover-color);
    }
  
    .navmenu .active i,
    .navmenu .active:focus i {
      background-color: var(--accent-color);
      color: var(--color02);
      transform: rotate(180deg);
    }
  
    .navmenu .dropdown ul {
      position: static;
      display: none;
      z-index: 99;
      padding: 10px 0;
      margin: 10px 20px;
      background-color: var(--nav-dropdown-background-color);
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
      box-shadow: none;
      transition: all 0.5s ease-in-out;
    }
  
    .navmenu .dropdown ul ul {
      background-color: rgba(33, 37, 41, 0.1);
    }
  
    .navmenu .dropdown>.dropdown-active {
      display: block;
      background-color: rgba(33, 37, 41, 0.03);
    }
  
    .mobile-nav-active {
      overflow: hidden;
    }
  
    .mobile-nav-active .mobile-nav-toggle {
      color: #fff;
      position: absolute;
      font-size: 32px;
      top: 15px;
      right: 15px;
      margin-right: 0;
      z-index: 9999;
    }
  
    .mobile-nav-active .navmenu {
      position: fixed;
      overflow: hidden;
      inset: 0;
      background: rgba(33, 37, 41, 0.8);
      transition: 0.3s;
    }
  
    .mobile-nav-active .navmenu>ul {
      display: block;
    }
  } 
  
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero #heroVideo {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  
  .hero:before {
    content: "";
    background: color-mix(in srgb, var(--color01), transparent 80%);
    position: absolute;
    inset: 0;
    z-index: 2;
  }
  
  .hero .container {
    position: relative;
    z-index: 3;
  }
  
  .hero h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
  }
  
  .hero p {
    margin: 10px 0 0 0;
    font-size: 24px;
    color: var(--heading-color);
  }
  
  
  
  @media (max-width: 768px) {
    .hero h2 {
      font-size: 32px;
    }
  
    .hero p {
      font-size: 18px;
    }
  }
/*--------------------------------------------------------------
# Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 40px;
    position: relative;
    margin-top: 60px;
  }
  
  .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    color: var(--color01);
  }
  
  .section-title h2::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 70px;
    background: url(../images/section-title-bg.png) no-repeat;
    z-index: -1;
  }
  
  .section-title p {
    margin-bottom: 0;
  }

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about{
    margin-top: 60px;
}
  .about .content p {
    margin-top: 0px;
    font-size: 15px;
    color: var(--color03);
  }
  .about .content p span {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 30px;
    color: var(--color01);
    font-style: italic;
  }
  .about .icon-box  {
    position: relative;
    padding-top: 5px;
  }
.about .icon-box .icon {
    background-color: color-mix(in srgb, var(--color01), transparent 90%);
    width: 72px;
    height: 72px;
    position: relative;
    margin-right: 15px;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.3s;
  }
  
  .about .icon-box  .icon i {
    color: var(--color01);
    font-size: 32px;
    z-index: 2;
    position: relative;
  }
  
  .about .icon-box .title {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
  }
  
  .about .icon-box .title a {
    color: var(--color04);
  }
  
  .about .icon-box .title a:hover {
    color: var(--color05);
  }
  
  .about .icon-box .description {
    font-size: 15px;
    color: var(--color03);
  }
  /* .about .content .about-btn {
    padding: 8px 30px 9px 30px;
    color: var(--color01);
    border-radius: 50px;
    transition: 0.3s;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--color01);
  } */
  /* .about .content .icon-box {
    background-color: color-mix(in srgb, var(--color01), transparent 90%);
    width: 72px;
    height: 72px;
    position: relative;
    margin-right: 15px;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.3s;
  } */
  /* .about .content .about-btn i {
    /* font-size: 16px;
    padding-left: 5px; 
   
  } 
  
  .about .content .about-btn:hover {
    background: var(--color01);
    color: var(--color02);
  }
   */
  /* .about .icon-box i {
    color: var(--color01);
    font-size: 32px;
    z-index: 2;
    position: relative;
  }
  
  .about .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
  }
  
  .about .icon-box h4 a {
    color: var(--heading-color);
    transition: 0.3s;
  }
  
  .about .icon-box p {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 0;
  }
  
  .about .icon-box:hover h4 a {
    color: var(--color01);
  } */
  
/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .card-item {
    background: var(--color02);
    padding: 30px 30px 50px 30px;
    transition: all ease-in-out 0.3s;
    height: 90%;
    position: relative;
    border-radius: 5px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }
  
  .why-us .card-item span {
    color: var(--color04);
    display: block;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
  }
  
  .why-us .card-item h4 {
    font-size: 18px;
    font-weight: 700;
    padding: 0;
    margin:  5px 0;
    color: var(--color04);
  }
  
  .why-us .card-item h4 a {
    color: var(--color01);
  }
  
  .why-us .card-item p {
    font-size: 14px;
    color: var(--color03);
    margin: 0;
    padding: 0;
  }
  
  .why-us .card-item:hover {
    background: var(--color01);
    padding: 30px 30px 70px 30px;
  }
  
  .why-us .card-item:hover span,
  .why-us .card-item:hover h4 a,
  .why-us .card-item:hover p {
    color: var(--color02);
  }
  
/*--------------------------------------------------------------
# Products Section
--------------------------------------------------------------*/
.products .content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color04);
}

.products .content .fst-italic {
  font-size: 15px;
  color: var(--color03);
}

.products .content ul {
  list-style: none;
  padding: 0;
}

.products .content ul li {
  padding: 10px 0 0 0;
  display: flex;
  font-size: 14px;
}

.products .content ul i {
  color: var(--color05);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 16px;
}

.products .content p:last-child {
  margin-bottom: 0;
}

.products img {
  width: 450px;
  height: 300px;
  /* box-shadow: #41459B; */
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--color02);
  padding: 30px;
  transition: 0.3s;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.services .service-item .icon {
  font-size: 32px;
  line-height: 0;
  margin-right: 30px;
  color: var(--color04);
}

.services .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .service-item .title a {
  color: var(--color04);
}

.services .service-item .description {
  line-height: 24px;
  font-size: 14px;
  margin: 0;
}

.services .service-item:hover {
  background-color: color-mix(in srgb, var(--color04), transparent 20%);
}

.services .service-item:hover .description,
.services .service-item:hover .title a,
.services .service-item:hover .icon{
  color: var(--color02);
}

/*--------------------------------------------------------------
# Success Stories Section
--------------------------------------------------------------*/
/* .successStories {
  /* background-color: color-mix(in srgb, var(--color01), transparent 90%); 

} */
/* .successStories .successStories-carousel,
.successStories .successStories-slider {
  overflow: hidden;
}

.successStories .successStories-item .successStories-content {
  border-left: 3px solid var(--accent-color);
  padding-left: 30px;
}

.successStories .successStories-item .successStories-img {
  border-radius: 50%;
  border: 4px solid var(--color01);
  margin: 0 auto;
}

.successStories .successStories-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.successStories .successStories-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 0 10px 0;
}

.successStories .successStories-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.successStories .successStories-item .quote-icon-left,
.successStories .successStories-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .successStories-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .successStories-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.successStories .successStories-item p {
  font-style: italic;
}

.successStories .swiper-wrapper {
  height: auto;
}

.successStories .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.successStories .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--color04), transparent 85%);
  opacity: 1;
}

.successStories .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color01);
}

.successStories .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.successStories .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.successStories .progress .skill .val {
  float: right;
  font-style: normal;
}

.successStories .progress-bar-wrap {
  background: color-mix(in srgb, var(--color01), transparent 90%);
  height: 10px;
}

.successStories .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--color01);
} */

/*--------------------------------------------------------------
# Success Stories Section
--------------------------------------------------------------*/
.successStories {
  /* margin-bottom: 60px; */
  width: 80%;
  margin: auto;
}
.successStories .successStories-wrap {
  padding-left: 20px;
  margin-top: -20px;
}

.successStories .successStories-carousel,
.successStories .successStories-slider {
  overflow: hidden;
}

.successStories .successStories-item {
  background-color: var(--color02);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  position: relative;
}

.successStories .successStories-item .successStories-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid var(--background-color);
  position: absolute;
  left: -45px;
}

.successStories .successStories-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0 5px 0;
  color: var(--color01);
}

.successStories .successStories-item h4 {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
  margin: 0;
}

.successStories .successStories-item p {
  /* font-style: italic; */
  margin: 15px auto 15px auto;
  font-size: 14px;
}

.successStories .swiper-wrapper {
  height: auto;
}

.successStories .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.successStories .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color:color-mix(in srgb, var(--color04), transparent 70%);
  opacity: 1;
  /* border: 1px solid var(--color01); */
}

.successStories .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color01);
}

.successStories .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0px;
  margin-top: 20px;
}

.successStories .progress .skill {
  color: var(--color01);
  padding: 0;
  margin: 0 0 6px 0;
  display: block;
  font-weight: 400;
}

.successStories .progress .skill .val {
  float: right;
  font-style: normal;
  font-size: 12px;
}

.successStories .progress-bar-wrap {
  background: color-mix(in srgb, var(--color04), transparent 90%);
  height: 10px;
  border-radius: 15px;
}

.successStories .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--color04);
  border-radius: 15px;
}

@media (max-width: 767px) {
  .successStories .successStories-wrap {
    padding-left: 0;
  }

  .successStories .successStories-carousel,
  .successStories .successStories-slider {
    overflow: hidden;
  }

  .successStories .successStories-item {
    padding: 30px;
    margin: 15px;
  }

  .successStories .successStories-item .successStories-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--color01), transparent 90%);
  font-size: 14px;
  /* padding-bottom: 50px; */
  position: relative;
  margin-top: 60px;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 0px;
}

.footer .footer-about .logo img {
  /* max-height: 40px; */
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 16px;
  font-family: var(--heading-font);
}
.footer .social-links {
  margin-left: 10px;
}
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--color04), transparent 50%);
  font-size: 14px;
  color: color-mix(in srgb, var(--color04), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: var(--color01);
}

.footer .footer-links {
  /* margin-bottom: 30px; */
  margin-top: 55px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  font-weight: 700;
  line-height: 0;
  color: var(--color01);
}

.footer .footer-links ul li {
  padding: 0 0 5px  0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  /* line-height: 1; */
  font-size: 14px;
  font-weight: 500;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact {
  margin-left: -60px;
}

.footer .footer-map {
  margin-left: 20px;
}

.footer .footer-map iframe {
  display: block;
  width: 100%;
  min-height: 220px;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(65, 69, 155, 0.12);
}

.footer .footer-contact p {
  margin-bottom: 5px;
  font-size: 14px;
}

.footer .footer-contact i {
  font-style:normal;
  color: var(--color01);
}
.footer .footer-contact i a,
.footer .footer-contact i span {
  padding-left: 5px;
  color: var(--color03);
}
.footer .copyright {
  padding-top: 15px;
  padding-bottom: 15px;
  /* background-color: color-mix(in srgb, var(--default-color), transparent 95%); */
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .copyright .sitename {
  color: var(--color01);
}


.topbar {
  background-color: var(--color01);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 998;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar .contact-info i {
  font-style: normal;
  color: var(--color02);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar .contact-info {
  gap: 18px;
  flex-wrap: wrap;
}

.topbar .contact-info i a,
.topbar .contact-info i span {
  padding-left: 0;
  color: var(--color02);
}

.topbar .contact-info .bi-whatsapp {
  margin-left: 0 !important;
}

@media (max-width: 575px) {

.topbar .contact-info i a,
.topbar .contact-info i span {
    font-size: 13px;
  }

  .topbar .contact-info {
    gap: 14px;
  }
}

.topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.topbar .contact-info i a:hover {
  color: var(--color02);
  text-decoration: underline;
}

.topbar .social-links a {
  color: color-mix(in srgb, var(--color02), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.topbar .social-links a:hover {
  color: var(--color02);
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--color01);
  width: 35px;
  height: 45px;
  border-radius: 15px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 26px;
  color: var(--color02);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--color04), transparent 20%);
  color: var(--color02);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  padding: 0 0 0 24px;
  margin-left: 12px;
  border: none;
  background: transparent;
  color: var(--color01);
  font-size: 13px;
  font-weight: 700;
  transition: 0.3s ease;
  position: relative;
  min-height: 20px;
}

.topbar .lang-switch {
  color: var(--color02);
  margin-left: auto;
  margin-right: 0;
  min-width: auto;
  font-size: 14px;
  z-index: 1002;
}

.lang-switch:hover {
  color: var(--color04);
  opacity: 0.85;
}

.topbar .lang-switch:hover {
  color: var(--color02);
  opacity: 0.8;
}

.lang-switch::before {
  content: "\F3EE";
  font-family: "bootstrap-icons";
  font-size: 14px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color02);
}

html[lang="ar"] body,
body.lang-ar {
  font-family: var(--arabic-font);
}

html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4,
html[lang="ar"] h5,
html[lang="ar"] h6,
html[lang="ar"] p,
html[lang="ar"] span,
html[lang="ar"] li,
html[lang="ar"] a,
html[lang="ar"] .navmenu a,
html[lang="ar"] .btn-getstarted,
body.lang-ar h1,
body.lang-ar h2,
body.lang-ar h3,
body.lang-ar h4,
body.lang-ar h5,
body.lang-ar h6,
body.lang-ar p,
body.lang-ar span,
body.lang-ar li,
body.lang-ar a,
body.lang-ar .navmenu a,
body.lang-ar .btn-getstarted {
  font-family: var(--arabic-font);
}

html[lang="ar"] body,
body.lang-ar {
  direction: rtl;
  text-align: right;
}

html[lang="ar"] .header .logo,
body.lang-ar .header .logo {
  inset: 0 0 0 auto;
}

html[lang="ar"] .header .header-container,
body.lang-ar .header .header-container {
  justify-content: space-between;
}

html[lang="ar"] .hero-actions,
body.lang-ar .hero-actions {
  justify-content: flex-start;
}

html[lang="ar"] .hero-panel li,
body.lang-ar .hero-panel li {
  flex-direction: row;
  justify-content: flex-start;
  text-align: right;
}

html[lang="ar"] .hero-panel li i,
body.lang-ar .hero-panel li i {
  margin-top: 4px;
  margin-left: 0;
  margin-right: 0;
  flex-shrink: 0;
  order: 1;
}

html[lang="ar"] .hero-panel li span,
body.lang-ar .hero-panel li span {
  flex: 0 1 auto;
  text-align: right;
  order: 2;
}

html[lang="ar"] .detail-list li,
html[lang="ar"] .feature-list li,
html[lang="ar"] .product-detail-list li,
body.lang-ar .detail-list li,
body.lang-ar .feature-list li,
body.lang-ar .product-detail-list li {
  flex-direction: row;
  justify-content: flex-start;
  text-align: right;
}

html[lang="ar"] .detail-list li i,
html[lang="ar"] .feature-list li i,
html[lang="ar"] .product-detail-list li i,
body.lang-ar .detail-list li i,
body.lang-ar .feature-list li i,
body.lang-ar .product-detail-list li i {
  margin-top: 4px;
  margin-left: 0;
  margin-right: 0;
  flex-shrink: 0;
  order: 1;
}

html[lang="ar"] .detail-list li span,
html[lang="ar"] .feature-list li span,
html[lang="ar"] .product-detail-list li span,
body.lang-ar .detail-list li span,
body.lang-ar .feature-list li span,
body.lang-ar .product-detail-list li span {
  order: 2;
  text-align: right;
}

html[lang="ar"] .topbar .contact-info i a,
html[lang="ar"] .topbar .contact-info i span,
html[lang="ar"] .footer .footer-contact i a,
html[lang="ar"] .footer .footer-contact i span,
body.lang-ar .topbar .contact-info i a,
body.lang-ar .topbar .contact-info i span,
body.lang-ar .footer .footer-contact i a,
body.lang-ar .footer .footer-contact i span {
  padding-left: 0;
  padding-right: 5px;
}

html[lang="ar"] .topbar .bi-whatsapp a,
html[lang="ar"] .topbar .bi-whatsapp span,
html[lang="ar"] .footer .bi-whatsapp a,
html[lang="ar"] .footer .bi-whatsapp span,
body.lang-ar .topbar .bi-whatsapp a,
body.lang-ar .topbar .bi-whatsapp span,
body.lang-ar .footer .bi-whatsapp a,
body.lang-ar .footer .bi-whatsapp span {
  direction: ltr;
  unicode-bidi: embed;
  display: inline-block;
}

html[lang="ar"] .footer .footer-links ul li,
body.lang-ar .footer .footer-links ul li {
  justify-content: flex-start;
}

html[lang="ar"] .footer .footer-contact,
body.lang-ar .footer .footer-contact {
  text-align: right;
  margin-left: 0;
  margin-right: -60px;
}

html[lang="ar"] .footer .footer-contact h4,
html[lang="ar"] .footer .footer-contact p,
body.lang-ar .footer .footer-contact h4,
body.lang-ar .footer .footer-contact p {
  text-align: right;
}

html[lang="ar"] .footer .footer-about p,
body.lang-ar .footer .footer-about p {
  font-family: var(--arabic-font);
  font-size: 14px;
  line-height: 1.9;
}

html[lang="ar"] .metric-box,
body.lang-ar .metric-box {
  text-align: center;
}

html[lang="ar"] .scroll-top,
body.lang-ar .scroll-top {
  left: auto;
  right: 15px;
}

html[lang="ar"] body.index-page .lang-switch,
body.lang-ar.index-page .lang-switch {
  padding: 0 24px 0 0;
}

html[lang="ar"] .topbar .lang-switch,
body.lang-ar .topbar .lang-switch {
  margin-left: 0;
  margin-right: auto;
}

html[lang="ar"] body.index-page .lang-switch::before,
body.lang-ar.index-page .lang-switch::before {
  left: auto;
  right: 0;
}

@media (max-width: 1200px) {
  .lang-switch {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .topbar {
    display: flex !important;
    align-items: center;
    min-height: 40px;
    z-index: 1001;
  }

  .topbar .container {
    display: flex !important;
    align-items: center;
    justify-content: space-between !important;
    gap: 12px;
  }

  .topbar .contact-info {
    display: flex !important;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 4px;
  }

  .topbar .social-links {
    display: flex !important;
    align-items: center;
  }

  .hero-content,
  .detail-page .main {
    padding-top: 130px;
  }

  .lang-switch {
    display: inline-flex !important;
    position: relative;
    top: auto;
    right: auto;
    font-size: 12px;
    color: var(--color02);
    z-index: 1003;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    min-width: auto;
    padding: 0 0 0 22px;
    line-height: 1;
  }

  html[lang="ar"] body.index-page .lang-switch,
  body.lang-ar.index-page .lang-switch {
    padding: 0 22px 0 0;
  }
}

/*--------------------------------------------------------------
# New Content Sections
--------------------------------------------------------------*/
.section {
  scroll-margin-top: calc(var(--fixed-header-offset) + 20px);
}

[data-aos] {
  will-change: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media (max-width: 767px) {
  [data-aos] {
    transition-duration: 0.55s !important;
  }
}

.section-bg {
  background-color: color-mix(in srgb, var(--color01), transparent 96%);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--color02);
  background: var(--color01);
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(65, 69, 155, 0.18);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--color02);
  background: var(--color04);
}

.hero {
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(20, 23, 72, 0.72), rgba(65, 69, 155, 0.38));
  z-index: 2;
}

.hero-content {
  padding-top: 110px;
}

.hero-content h1 {
  color: var(--color02);
  font-size: 54px;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 18px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 24px;
}

.hero-kicker,
.detail-kicker {
  display: inline-block;
  padding: 8px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--color02);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-page .detail-kicker {
  background: color-mix(in srgb, var(--color01), transparent 8%);
  color: var(--color02);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary-hero,
.btn-secondary-hero,
.btn-inline,
.detail-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn-primary-hero {
  background: var(--color02);
  color: var(--color01);
}

.btn-primary-hero:hover {
  background: var(--color05);
  color: var(--color02);
}

.btn-secondary-hero {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--color02);
}

.btn-secondary-hero:hover {
  background: rgba(255, 255, 255, 0.16);
  color: var(--color02);
}

.hero-panel {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(11, 18, 58, 0.18);
}

.hero-panel h3 {
  color: var(--color02);
  margin-bottom: 18px;
  font-size: 24px;
}

.hero-panel ul,
.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-panel li,
.detail-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 14px;
  line-height: 1.6;
}

.hero-panel li i,
.detail-list li i,
.feature-list li i,
.product-detail-list li i {
  color: var(--color05);
  margin-top: 4px;
}

.product-grid,
.customer-logos,
.metrics-row {
  margin-top: 26px;
}

.product-card,
.case-study-card,
.blog-card,
.detail-card,
.customer-logo-card,
.metric-box {
  background: var(--color02);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(35, 43, 90, 0.08);
}

.product-card {
  padding: 28px;
  border: 1px solid rgba(65, 69, 155, 0.08);
}

.product-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--color04);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-card h4,
.blog-card h4,
.case-study-card h3,
.detail-card h3,
.detail-section h2 {
  color: var(--color01);
}

.product-card p,
.blog-card p,
.case-study-card p,
.detail-card p,
.detail-section p {
  font-size: 15px;
  line-height: 1.8;
}

.product-link,
.btn-inline,
.detail-action {
  color: var(--color01);
  font-weight: 700;
}

.product-link i,
.btn-inline i,
.detail-action i {
  transition: transform 0.3s ease;
}

.product-link:hover i,
.btn-inline:hover i,
.detail-action:hover i {
  transform: translateX(4px);
}

.customer-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.customer-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  min-height: 140px;
}

.customer-logo-card img {
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
}

.case-study-image,
.blog-card img,
.detail-hero-image {
  border-radius: 18px;
}

.case-study-card {
  padding: 34px;
}

.metric-box {
  padding: 20px;
  text-align: center;
  height: 100%;
}

.metric-box strong {
  display: block;
  color: var(--color01);
  font-size: 34px;
  line-height: 1;
  margin-bottom: 8px;
}

.metric-box span {
  display: block;
  color: var(--color03);
  font-size: 14px;
}

.blog-card {
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card-body {
  padding: 24px;
}

.detail-page .main {
  padding-top: 110px;
}

.detail-hero {
  padding: 40px 0 20px;
}

.detail-hero .detail-card {
  padding: 36px;
}

.detail-hero-image {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  box-shadow: 0 14px 40px rgba(35, 43, 90, 0.1);
}

.detail-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--color01), transparent 92%);
  color: var(--color01);
  font-size: 13px;
  font-weight: 600;
}

.detail-section {
  padding: 22px 0;
}

.detail-section h2 {
  margin-bottom: 14px;
  font-size: 28px;
}

.detail-card {
  padding: 30px;
}

.feature-list,
.product-detail-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.feature-list li,
.product-detail-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  line-height: 1.7;
}

.detail-cta {
  margin-top: 30px;
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--color01), transparent 4%), color-mix(in srgb, var(--color04), transparent 10%));
  color: var(--color02);
}

.detail-cta h3,
.detail-cta p,
.detail-cta a {
  color: var(--color02);
}

.footer .footer-contact,
.footer .footer-map {
  margin-left: 0;
}

.footer .footer-about p {
  margin-top: 10px;
}

.products img,
.product-lead img {
  width: 100%;
  height: auto;
  border-radius: 18px;
}

@media (max-width: 1199px) {
  .hero-content h1 {
    font-size: 44px;
  }
}

@media (max-width: 991px) {
  .customer-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header .logo {
    position: relative;
    padding: 0 12px;
    display: flex;
    align-items: center;
  }

  .header .header-container {
    justify-content: space-between;
    padding: 6px 12px;
    min-height: 84px;
  }

  .header .logo img {
    max-height: 58px;
    width: auto;
    margin-right: 0;
    display: block;
  }

  .header .btn-getstarted {
    margin: 0 12px 0 0;
  }

  .detail-page .main {
    padding-top: 90px;
  }

  html[lang="ar"] .header .header-container,
  body.lang-ar .header .header-container {
    justify-content: flex-start;
    padding-right: 128px;
    padding-left: 12px;
  }

  html[lang="ar"] .header .logo,
  body.lang-ar .header .logo {
    position: absolute;
    right: 12px;
    left: auto;
    inset: auto 12px auto auto;
    order: 3;
    margin: 0 !important;
    padding: 0;
    z-index: 2;
  }

  html[lang="ar"] .header .logo img,
  body.lang-ar .header .logo img {
    margin-right: 0;
  }

  html[lang="ar"] .header .btn-getstarted,
  body.lang-ar .header .btn-getstarted {
    order: 2;
    margin: 0 12px 0 0 !important;
  }

  html[lang="ar"] .header .navmenu,
  body.lang-ar .header .navmenu {
    order: 1;
    margin-right: 0;
  }

  html[lang="ar"] .mobile-nav-toggle,
  body.lang-ar .mobile-nav-toggle {
    margin-right: 0;
    margin-left: 10px;
  }
}

@media (max-width: 767px) {
  .topbar {
    height: auto;
    padding: 8px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 90px;
    padding-bottom: 40px;
  }

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

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

  .customer-logos {
    grid-template-columns: 1fr;
  }

  .case-study-card,
  .detail-hero .detail-card,
  .detail-card {
    padding: 24px;
  }

  .blog-card img {
    height: 200px;
  }

  .footer .footer-contact {
    text-align: left;
  }

  .footer .footer-contact h4,
  .footer .footer-contact p {
    text-align: left;
  }

  .footer .footer-contact i {
    justify-content: flex-start;
    width: 100%;
  }

  body.lang-ar .footer .footer-contact,
  body.lang-ar .footer .footer-contact h4,
  body.lang-ar .footer .footer-contact p,
  html[lang="ar"] .footer .footer-contact,
  html[lang="ar"] .footer .footer-contact h4,
  html[lang="ar"] .footer .footer-contact p {
    text-align: right;
  }

  body.lang-ar .footer .footer-contact,
  html[lang="ar"] .footer .footer-contact {
    margin-right: 0;
    margin-left: auto;
    width: fit-content;
    max-width: 100%;
    display: block;
  }

  body.lang-ar .footer .footer-contact p,
  html[lang="ar"] .footer .footer-contact p {
    display: block;
    width: 100%;
  }

  body.lang-ar .footer .footer-contact i,
  html[lang="ar"] .footer .footer-contact i {
    display: inline-flex !important;
    width: 100%;
    justify-content: flex-end;
    flex-direction: row-reverse;
    text-align: right;
  }

  body.lang-ar .footer .footer-contact i::before,
  html[lang="ar"] .footer .footer-contact i::before {
    order: 2;
    margin-right: 0;
    margin-left: 6px;
  }

  body.lang-ar .footer .bi-envelope a,
  body.lang-ar .footer .bi-whatsapp span,
  body.lang-ar .footer .bi-globe2 a,
  html[lang="ar"] .footer .bi-envelope a,
  html[lang="ar"] .footer .bi-whatsapp span,
  html[lang="ar"] .footer .bi-globe2 a {
    order: 1;
    direction: ltr;
    unicode-bidi: embed;
    display: inline-block;
  }
}
