* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Cairo", Sans-serif;
}
html {
    scroll-behavior: smooth;
}
/* Loading screen styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f8f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  

  /* HTML: <div class="loader"></div> */
  .loader {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid;
    border-color: #000 #0000;
    animation: l1 1s infinite;
  }
  @keyframes l1 {to{transform: rotate(.5turn)}}
  /* Hide loading screen when JavaScript is loaded */
  .loaded .loading-screen {
    display: none;
  }
  .loader-hidden {
      display: none;
  }

  
  .floating-icon {
    z-index: 99;
    display: block;
    width: 60px;
    height: 60px;
    background-color: #333;
    color: #fff;
    text-align: center;
    line-height: 60px;
    font-size: 28px;
    border-radius: 50%;
    text-decoration: none;
    margin: 10px;
    transition: background-color 0.3s ease;
  }
  
  .floating-icon:hover {
    background-color: #1474bb;
  }
  
  .left-icon {
    position: fixed;
    padding-top: 15px;
    bottom: 10px;
    left: 10px;
    background: #128c7e;
  }
  
  .right-icon {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: #276191;
  }



/* ---  contact section  --- */
.contact-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 5px 5%;
    background-color: #405351;
    color: #eee;
}

.contact-section a {
  color: inherit;
}

.right {
    display: flex;
    flex-direction: row;
}
.contact-section i {
    margin-right: 5px;
}

.contact-section p {
    margin: 0 20px;
    font-size: 16px;
}

.contact-section .phone {
    margin-bottom: 5px;
}

/* ---  contact section @media  --- */
@media(max-width: 800px) {
  .contact-section p {
    font-size: 14px;
  }
}

/* ---  Navbar --- */

.navbar {
    padding: 0 3%;
    font-weight: bold;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
    transition: ease-in-out 0.3s;
    background: #fff;
}

.navbar.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px !important;
    border-bottom: 1px solid #eee;
}

.navbar.hidden {
    top: -100px;
}
.navbar img {
    width: 100px;
}
.nav-menu {
    list-style: none;
}
.nav-menu.open {
    display: flex;
}
.nav-menu li {
    display: inline-block;
    padding: 20px;
}
.nav-menu li a {
    font-size: 20px;
    color: #000;
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
    padding-bottom: 10px;
}

/* hover animation */
nav ul li a,
nav ul li a:after,
nav ul li a:before {
  transition: all .5s;
}
nav ul li a:hover {
  color: #555;
}
nav.stroke ul li a,
nav.fill ul li a {
  position: relative;
}
nav.stroke ul li a:after,
nav.fill ul li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: '.';
  color: transparent;
  background: #405351;
  height: 1px;
}
.navbar .selected:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    content: '.';
    color: transparent;
    background: #405351;
    height: 2px;
  }
nav.stroke ul li a:hover:after {
  width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}
.bar {
    display: block;
    width: 30px;
    height: 5px;
    margin: 5px auto;
    border-radius: 50px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: #405351;
}



/* ---  Navbar @media  --- */
@media(max-width: 1024px) {
    .nav-menu li a {
        font-size: 18px;
    }
    .navbar {
        padding: 0;
        justify-content: space-between;
    }
    .navbar .hamburger,
    .navbar img {
        padding: 0 20px;
    }
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2){
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1){
        transform: translateY(10px) rotate(44deg);
    }
    .hamburger.active .bar:nth-child(3){
        transform: translateY(-10px) rotate(-44deg);
    }
    .nav-menu.active {
        top: 100px;
        opacity: 1;
        display: flex !important;
    }
    .nav-menu {
        display: none !important;
        padding-right: 0;
        z-index: 99;
        position: fixed;
        top: -100%;
        opacity: 0;
        gap: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: #405351;
        width: 100%;
        transition: 0.3s;
    }
    .nav-menu a {
        color: #fff !important;
    }
    .navbar li {
        margin: 10px;
        padding: 5px 20px;
    }
}




/* ---  Hero --- */
.hero {
    position: relative;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #405351;
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.568); /* this is a transparent black color, you can adjust the opacity by changing the last value (0.5) */
    z-index: 9; /* to make sure the layer is on top of the image */
}

.hero .text {
    z-index: 10;
    margin: 0 auto;
    max-width: 800px;
    font-size: 20px;
}
.hero h1 {
    color: #fff;
    font-size: 42px;
}


.hero .text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero .text li {
  display: inline-block;
  margin-right: 5px;
}
.hero .text li:last-child {
  margin-right: 0;
}

.hero .text span {
    margin: 5px;
}

.hero .text li a {
  text-decoration: none;
  color: #c5c6c7;
  margin: 5px;
}

.hero .text li {
  color: #fff;
}
/* ---  Hero @media  --- */
@media(max-width: 800px) {
    .hero {
        padding: 10px;
        height: 500px;
    }
    .hero h1 {
        font-size: 28px;
    }
    .hero p {
        font-size: 18px;
    }
    .hero button {
        font-size: 14px;
    }
}





/* --- Services Starts --- */


.services {
    padding: 100px 20px !important;
    width: 100%;
    display: grid;
    place-items: center;
  }
  .services  .row {
    display: flex;
    flex-wrap: wrap;
  }
  .services .column {
    width: 100%;
    padding: 0 1em 1em 1em;
    text-align: center;
  }
  .card {
    width: 100%;
    height: 100%;
    padding: 2em 1.5em;
    background: linear-gradient(#ffffff 50%, #313f3e 50%);
    background-size: 100% 200%;
    background-position: 0 2.5%;
    border-radius: 5px;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: 0.5s;
  }
  .services h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f194c;
    margin: 1em 0;
  }
  .services p {
    color: #575a7b;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.03em;
  }
  .icon-wrapper {
    background-color: #405351;
    position: relative;
    margin: auto;
    font-size: 30px;
    height: 2.5em;
    width: 2.5em;
    color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: 0.5s;
  }
  .card:hover {
    background-position: 0 100%;
  }
  .card:hover .icon-wrapper {
    background-color: #ffffff;
    color: #405351;
  }
  .card:hover h3 {
    color: #ffffff;
  }
  .card:hover p {
    color: #f0f0f0;
  }
  @media screen and (min-width: 768px) {
    .services {
      padding: 0 2em;
    }
    .services .column {
      flex: 0 50%;
      max-width: 50%;
    }
  }
  @media screen and (min-width: 992px) {
    .services {
      padding: 1em 3em;
    }
    .services .column {
      flex: 0 0 33.33%;
      max-width: 33.33%;
    }
  }
/* Contact.html */


.contact-form {
    max-width: 700px;
    border-radius: 5px;
    text-align: right;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: bold;
}

.contact-form input[type="text"],
.contact-form textarea {
    width: 100%;
    padding: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.contact-form button {
  width: 100%;
  cursor: pointer;
}

.contact-info {
    padding-top: 20px;
    text-align: right;
}

.contact-info p {
    font-size: 22px;
    line-height: 1.5;
}

.contact-info p.email {
    font-weight: bold;
    margin-top: 10px;
}

.contact-form .btn {
    margin: 0 auto;
    display: inline-block;
    padding: 5px 20px;
    margin-bottom: 20px;
    background-color: #405351;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    transition: background-color 0.3s ease;
  }
/* ----- Clients Page ----- */

.services-section {
    background-color: #f6f6f6;
    padding: 50px 20px;
  }

  .services-section h2 {
    color: #333;
    font-size: 30px;
    margin-bottom: 10px;
  }

  .services-section ul {
    list-style-type: none;
  }

  .services-section li {
    color: #666;
    font-size: 18px;
    margin-bottom: 5px;
  }

  .services-section i {
    color: #666;
    font-weight: bold;
    margin: 10px;
  }

  .services-section p {
    color: #666;
    font-size: 18px;
    margin-top: 20px;
  }

  .clients-section {
    background-color: #fff;
    padding: 20px;
  }

  .clients-section h2 {
    color: #333;
    font-size: 30px;
    margin-bottom: 10px;
  }

  .clients-section p {
    color: #666;
    font-size: 16px;
    margin-top: 20px;
  }

  .strategies-section {
    padding: 20px 20px 50px;
  }

  .strategies-section h2 {
    color: #333;
    font-size: 30px;
    margin-bottom: 10px;
  }

  .strategies-section p {
    color: #666;
    font-size: 18px;
    margin-top: 20px;
    padding-bottom: 10px;
  }

  .strategies-section ul {
    list-style-type: none;
    margin-left: 20px;
  }

  .strategies-section li {
    color: #666;
    font-size: 18px;
    margin-bottom: 5px;
  }

  .strategies-section i {
    color: #666;
    font-weight: bold;
    margin: 10px;
  }

  .quote {
    display: flex;
    justify-content: center;
    align-items: center;
}
.services-section .row {
    z-index: 99;
    background-color: #fff;
    padding: 20px;
    border-left: 5px solid #313f3e;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin: 20px;
    max-width: 1000px;
  }

  .text-column {
    text-align: center;
    font-style: italic;
    color: #333;
  }
  /* ---  @media --- */
  @media (max-width: 800px){
      .row {
          font-size: 14px;
      }
  }


/* ---  Solutions Page --- */
.desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about {
  padding: 50px 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.about img {
  max-width: 400px;
}
.about:nth-child(even) {
    flex-direction: row-reverse;
}
.about .text {
  width: 50%;
  padding: 0 20px;
}
.about h3 {
    font-size: 24px;
}
.about p {
    color: #333;
    font-size: 18px;
}
/* About @media */
@media (max-width: 1024px){
    .about {
        flex-wrap: wrap;
    }
    .about img {
        width: 100%;
    }
}
@media (max-width: 800px){
    .about {
        padding: 80px 15px;
    }
    .about img {
        margin: 20px 0;
    }
    .about h2 {
        font-size: 24px;
    }
    .about p {
        font-size: 18px;
    }
    .about .text {
        width: 100%;
    }
}
/* ----- blog sec ----- */
.blog-sec {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}
.blog-sec .container{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.blog-sec .socials {
    padding-top: 50px;
}
.blog-sec a {
    border-bottom: 2px solid #405351;
    padding-bottom: 10px;
    transition: ease-in-out 0.1s;
    margin: 5px;
}
.blog-sec a:hover {
    padding-bottom: 15px;
}
.blog-sec i {
    color: #333;
    font-size: 52px;
    margin: 20px;
}
.blog-sec img{
    margin: 0 20px
}
.blog-sec p {
    font-size: 20px;
    margin-bottom: 30px;
}

.contact-form {
    width: 100%;
    border-radius: 5px;
    text-align: right;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: bold;
}

.contact-form input[type="text"],
.contact-form textarea {
    width: 100%;
    padding: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.contact-form button {
    width: 100%;
    cursor: pointer;
}

.contact-info {
    padding-top: 20px;
    text-align: right;
}

.contact-info p {
    font-size: 22px;
    line-height: 1.5;
}

.contact-info p.email {
    font-weight: bold;
    margin-top: 10px;
}

.custom-button {
    margin: 0 auto;
    display: inline-block;
    padding: 5px 20px;
    margin-bottom: 20px;
    background-color: #333;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    transition: background-color 0.3s ease;
  }
/* ---  Hero @media  --- */
@media(max-width: 800px) {
    .blog-sec i {
        font-size: 32px;
    }
}



/* --- Why Starts --- */
.why {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.why h3 {
    font-size: 26px;
}

.why p {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

.why li {
    font-size: 18px;
}
.why .text {
    margin: 0 50px;
}
.list-menu {
    list-style-type: none;
    padding: 0;
}

.list-menu li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.star {
    width: 20px !important;
    height: 20px !important;
    margin: 0 5px;
    vertical-align: middle;
}

.why img {
    max-width: 500px;
    border-radius: 20px;
}
.image-container {
    position: relative;
    width: 500px; /* Adjust the width as needed */
}

.background-image {
    position: absolute;
    top: 0; /* Adjust the top offset as needed */
    right: 0; /* Adjust the right offset as needed */
    z-index: 1; /* Ensure the background image is behind the foreground image */
}

.foreground-image {
    position: absolute;
    top: 70px;
    right: 120px;
    z-index: 2; /* Ensure the foreground image is on top */
}


/* About @media */
@media (max-width: 1024px){
    .why .image-container {
        display: none;
    }
}

@media (max-width: 800px){
    .why {
        padding: 60px 15px;
    }
    .why .text {
        margin: 0 10px;
    }
}




/* --- Clients Start --- */

.client {
    padding: 50px;
    text-align: center;
    background-size: cover;
    background-attachment: fixed;
    color: #000;
}
.slider-container {
    padding: 20px 0;
    border-radius: 0 150px;
    overflow: hidden;
}
.client-slider {
    padding: 20px;
    max-width: 1300px;
    margin: 0 auto;
}
.client-slider a {
    color: #000;
}
.client .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
    align-items: center;
}
.client h2 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #313f3e;
}
.client p {
    font-size: 18px;
}
.client img {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    border: 3px solid #fff;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.507);
}

.client-slider .item {
    padding: 15px;
    justify-content: center;
    margin: 0 10px;
}
.slick-dots {
    left: 0 !important;
}
.slick-dots li.slick-active button:before {
    color: #000 !important;
}

.slick-dots li button:before {
    font-size: 12px !important;
    color: #333 !important;
}

.slick-prev:before,
.slick-next:before {
    color: #333 !important;
}
.client a button {
    margin-top: 40px;
    border: 1px solid #c5cac6;
    border-radius: 10px;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    background: #fff;
}

.client a button:hover {
    background: #405351;
    color: #fff;
}



/* Packages Style */
.packages {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: right;
}
.package-list {
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 50px;
    padding-bottom: 100px;
}
.package-list:not(:last-child):after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 70%;
  height: 2px;
  background-color: black;
}

.package-list li {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.package-list h2 {
  font-size: 28px;
  color: #333;
}

.package-list p {
  font-size: 20px;
  color: #666;
  margin-bottom: 10px;
}

.package-list .sub-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 600px; /* Adjust the max-width as needed */
  margin-top: 20px;
}

.package-list .sub-list li {
  font-size: 18px;
  color: #888;
  width: 45%; /* Adjust the width as needed */
  position: relative;
  margin-right: 20px;
}

.package-list .sub-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: #BD1823;
}
.package-list p.price {
  font-size: 20px;
  padding: 5px;
  color: #333;
  font-weight: bold;
  margin-top: 10px;
  background: linear-gradient(-90deg, #bd1823b7 10%, white 30%);
}

@media (max-width: 800px){
    .package-list img {
        width: 100%;
    }
    .package-list .sub-list li {
        width: 100%;
    }
}


#footer{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 50px 15px;
    background: #eee;
    background-size: cover;
    background-position: center;
}
footer .loc {
    color: #000;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.footer-div {
    margin: 10px 0;
    z-index: 99;
}
.footer-about {
    max-width: 500px;
}
.logo {
    max-width: 300px;
}
.logo img {
    width: 100%;
    height: 200px;
    border-radius: 5px;
}
.logo p {
    color: #333;
}
.social-links{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: left;
}
.social-links h2{
    color: #000;
    padding-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}
.social-links img{
    padding-bottom: 25px;
}
.social-icons{
    display: flex;
    gap: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #333;
}
.social-icons a{
    font-size: 18px;
    padding: 0.4rem 1rem 0.4rem 1rem;
    border-radius: 3px;
    margin-right: 20px;
    color: #333;
}
.social-icons a:hover{
    color: #444;
}
.social-icons a i{
    box-shadow: #b31c0b23 0px 4px 12px;
    padding: 0.4rem 1rem 0.4rem 1rem;
    border-radius: 3px;
    color: #000;
    font-size: 16px;
    margin-right: 12px;
}
li{
    list-style: none;
}
.useful-link h2{
    color: #000;
    padding-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}
  .useful-link img{
    padding-bottom: 15px;
}
.use-links{
    line-height: 32px;
}
.use-links li i{
    font-size: 14px;
    padding-right: 8px;
    color: #333;
}
.use-links li a{
    font-size: 14px;
    padding-right: 8px;
    margin-bottom: 10px;
    color: #333;
}
  .use-links li a:hover{
    color: #ccc;
  }
  .copy-right-sec{
    padding: 10px;
      background: #405351;
      color: #fff;
      text-align: center;
  }
  .copy-right-sec a{
    color: #fcd462;
      font-weight: 500;
  }
  a{
    text-decoration:none;
  }
  
  @media (max-width: 800px) {
    .footer-div {
        margin: 10px;
    }
    .logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .social-icons a{
        font-size: 16px;
    }
    .social-icons a i{
        font-size: 14px;
    }
  }
  
  /* footer section end */