  /******************************************************************************
  * Template URL: https://bootstrapmade.com/bizland-bootstrap-business-template/
  * Author: BootstrapMade.com
  ******************************************************************************/

  /* Fonts */
: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: "Montserrat",  sans-serif;
  --nav-font: "Open Sans",  sans-serif;
  --arabic-font: "Cairo", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #222222; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #2A669E; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --accent-color-dark: #183e61; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #222222;  /* The default color of the main navmenu links */
  --nav-hover-color: #106eea; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #222222; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #106eea; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f5f9ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: var(--accent-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info{
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info a{
  padding-left: 8px;
  color: var(--contrast-color);
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info a:hover {
  text-decoration: underline;
}

@media (max-width: 575px) {

  .header .topbar .contact-info{
    font-size: 13px;
  }

}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  background-color: var(--background-color);
  min-height: 60px;
  padding: 6px 0;
}

.header .logo {
  display: inline-block;
  width: 80px;
}

.header .logo img {
  width: 100%;
}


.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/*--------------------------------------------------------------
# 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 li.langs {
    margin-left: 50px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    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;
    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 - Mobile */

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 36px;
    line-height: 0;
    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 li.langs {
    margin-top: 20px;
  }

  .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(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .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(--contrast-color);
    transform: rotate(180deg);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 40px;
    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;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-about .footer-contact p {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer .footer-about .footer-contact i {
  font-size: 18px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 12px 0 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: var(--accent-color);
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

/*--------------------------------------------------------------
# whatsApp Button
--------------------------------------------------------------*/
.whatsApp-btn {
  position: fixed;
  right: 15px;
  bottom: 25px;
  z-index: 99999;
  background-color: #25D366;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.4s;
}

.whatsApp-btn i {
  font-size: 26px;
  color: var(--contrast-color);
  line-height: 0;
}

.whatsApp-btn:hover i {
  color: var(--accent-color)
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 78px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  min-height: 75vh;
  position: relative;
  padding: 60px 0;
  display: flex;
  align-items: center;
  background: url("../images/hero-bg.jpg") top left;
  background-size: cover;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero h1 span {
  color: var(--accent-color);
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}


@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started{
    font-size: 13px;
  }
}


/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  position: relative;
  z-index: 1;
}

.featured-services .service-item:before {
  content: "";
  position: absolute;
  background: var(--accent-color);
  inset: 100% 0 0 0;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .service-item .icon {
  margin-bottom: 10px;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item h2 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item:hover h2,
.featured-services .service-item:hover .icon i,
.featured-services .service-item:hover p {
  color: var(--contrast-color);
}

.featured-services .service-item:hover:before {
  background: var(--accent-color);
  inset: 0;
  border-radius: 0px;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-content h3 {
  font-weight: 700;
  font-size: 26px;
}

.about .about-content ul {
  list-style: none;
  padding: 0;
}

.about .about-content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.about .about-content ul li:first-child {
  margin-top: 35px;
}

.about .about-content ul i {
  background: var(--surface-color);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  font-size: 24px;
  margin-right: 15px;
  color: var(--accent-color);
  border-radius: 50px;
}

.about .about-content ul h4 {
  font-size: 18px;
  font-weight: 600;
}

.about .about-content ul p {
  font-size: 15px;
}

.about .about-content p:last-child {
  margin-bottom: 0;
}

@media(max-width: 992px){

  .about .about-content{
    margin-top: 20px;
  }

}



/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 6px solid var(--surface-color);
  width: 64px;
  height: 64px;
  font-size: 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  margin-top: -32px;
  padding: 40px 30px 35px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# cta Section
--------------------------------------------------------------*/

.cta{
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: linear-gradient(to right, var(--accent-color), var(--accent-color-dark));
}

.cta .cta-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta .cta-content h3{
  color: #fff;
  font-size: 36px;
  margin-bottom: 0;
}

.cta .cta-content .cta-btn {
  color: var(--accent-color);
  background: var(--contrast-color);
  border: 1px solid var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.cta .cta-content .cta-btn:hover {
  color: var(--contrast-color);
  border: 1px solid var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

@media(max-width: 768px){

  .cta .cta-content{
    flex-direction: column;
    gap: 30px;
  }
  
}




/***************************************************************
****************************************************************
----------------------------------------------------------------

# Pages

----------------------------------------------------------------
*****************************************************************
*****************************************************************/


/********** General in Pages ************/

.hero-pages {
  position: relative;
  padding: 150px 0;
  display: flex;
  align-items: center;
  background: url("../images/pages-hero.jpg") top left;
  background-size: cover;
}

.hero-pages:before {
  content: "";
  background: #333333aa;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.hero-pages h2 {
  color: #fff ;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
}


@media (max-width: 640px) {

  .hero-pages {
  padding: 100px 0;
}

  .hero-pages h2 {
    font-size: 28px;
  }

}


/******************************************************/



/*****************************

  How it works page

*******************************/


/* How It Works Section */
.how-it-works {
  padding: 80px 0;
  background-color: #fff;
}


.timeline {
  position: relative;
  max-width: 800px;
  margin: 50px auto 30px;
}

.timeline-line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #2A669E33;
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 4px 12px #2A669E55;
  z-index: 1;
}

.timeline-content {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
}

.timeline-content:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.timeline-icon {
  width: 40px;
  height: 40px;
  background: #2A669E17;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.timeline-icon i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.timeline-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 8px;
}

.timeline-content p {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (min-width: 768px) {   /* this is for larger screens (min-width) */


  .timeline-line {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .timeline-item {
    width: 50%;
    padding-left: 0;
    padding-right: 60px;
  }
  
  .timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-left: 60px;
    padding-right: 0;
  }
  
  .timeline-number {
    left: auto;
    right: -24px;
  }
  
  .timeline-item:nth-child(even) .timeline-number {
    right: auto;
    left: -24px;
  }


}




/*****************************

  Services and Pricing page

*******************************/



/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  transition: border ease-in-out 0.3s;
  height: 100%;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .service-item .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  border-color: var(--accent-color);
}

.services .service-item:hover h3 {
  color: var(--accent-color);
}


/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/

.pricing .pricing-policy {
  margin-top: 10px;
  margin-bottom: 70px;
  text-align: center;
}

.pricing .pricing-policy h4{
  font-size: 18px;
  color: var(--accent-color);
}

.pricing .pricing-policy p{
  font-size: 16px;
  color: #777;
  width: 75%;
  margin: auto;
}

.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.pricing .pricing-item h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.pricing .pricing-item h4 {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .pricing-item h4 sup img{
  width: 20px;
}

.pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .pricing-item p {
  font-size: 16px;
  color: #777;
  margin-top: 10px;
}

.pricing .btn-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  margin: auto -20px -20px -20px;
  padding: 20px 15px;
  text-align: center;
}

.pricing .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .featured h3 {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .important-note {
  margin-top: 60px;
  margin-bottom: 30px;
}

.pricing .important-note h4{
  font-size: 16px;
  color: var(--accent-color);
}

.pricing .important-note p{
  font-size: 14px;
  color: #777;
  width: 75%;
}



@media(max-width: 768px){

  .pricing .pricing-policy p{
    width: 100%;
  }

  .pricing .important-note p{
    width: 100%;
  }

}



/******************************************************/


/*****************************

  Contact Us page

*******************************/


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  font-size: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .info-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 20px 0;
}

.contact .info-item a {
  padding: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: bold;
}

@media (min-width: 992px) {
  .contact .info-item.info-item-borders {
    border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  }
  
}

/**********/

.contact .contact-form {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-top: 50px;
}

@media (max-width: 575px) {
  
  .contact .contact-form {
    padding: 20px;
  }

}

.contact .contact-form input[type=text],
.contact .contact-form input[type=email],
.contact .contact-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .contact-form input[type=text]:focus,
.contact .contact-form input[type=email]:focus,
.contact .contact-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .contact-form input[type=text]::placeholder,
.contact .contact-form input[type=email]::placeholder,
.contact .contact-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .contact-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
  width:auto;
  margin: 30px auto 0;
}

.contact .contact-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}


/**** Claude Code + staticforms.dev *****/

.contact-form .honeypot{
  display: none;
}

.form-control.input-error {
      border-color: #e74c3c;
      box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.12);
    }

    /* ===== Error Messages ===== */
    .error-msg {
      color: #e74c3c;
      font-size: 13px;
      margin-top: 6px;
      display: none;
      align-items: center;
      gap: 5px;
    }

    .error-msg.visible {
      display: flex;
    }

    .error-msg::before {
      content: "⚠"; /** Ugly with (Cairo) font so I override it with (Roboto) **/
      font-size: 13px;
      font-family: var(--default-font);
    }

    .contact-form button[type="submit"]:active {
      transform: scale(0.98);
    }

    .contact-form button[type="submit"]:disabled {
      cursor: not-allowed;
    }


    /* ===== Popup Overlay ===== */
    .popup-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      backdrop-filter: blur(3px);
      animation: fadeIn 0.25s ease;
    }

    .popup-overlay.active {
      display: flex;
    }

    /* ===== Popup Box ===== */
    .popup-box {
      background: #fff;
      border-radius: 14px;
      padding: 40px 35px 30px;
      text-align: center;
      max-width: 420px;
      width: 90%;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
      animation: popIn 0.3s ease;
      position: relative;
    }

    .popup-icon {
      font-size: 52px;
      margin-bottom: 15px;
      display: block;
    }

    .popup-title {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 10px;
      color: #1f2937;
    }

    .popup-message {
      font-size: 15px;
      color: #6b7280;
      line-height: 1.6;
      margin-bottom: 25px;
    }

    .popup-btn {
      padding: 12px 36px;
      border: none;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s ease, transform 0.15s ease;
    }

    .popup-btn:active {
      transform: scale(0.97);
    }

    .popup-btn.success-btn {
      background: #10b981;
      color: #fff;
    }

    .popup-btn.success-btn:hover {
      background: #059669;
    }

    .popup-btn.error-btn {
      background: #e74c3c;
      color: #fff;
    }

    .popup-btn.error-btn:hover {
      background: #c0392b;
    }

    /* ===== Animations ===== */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes popIn {
      from { opacity: 0; transform: scale(0.85) translateY(10px); }
      to { opacity: 1; transform: scale(1) translateY(0); }
    }

    /* ===== Responsive ===== */
    @media (max-width: 500px) {
      .contact-form {
        padding: 25px 20px;
      }

      .col-md-6 {
        flex: 1 1 100%;
      }

      .popup-box {
        padding: 30px 20px 25px;
      }
    }


/***************************************************/
/***************************************************/
/***************************************************/
/***************************************************/

/**** Arabic Pages Styling ****/

/***************************************************/
/***************************************************/
/***************************************************/
/***************************************************/



/*** dir="rtl" is added to <html> tag ***/


/** Fonts changes only **/

body.ar{
  font-family: var(--arabic-font);
}

.ar h1,
.ar h2,
.ar h3,
.ar h4,
.ar h5,
.ar h6 {
  font-family: var(--arabic-font);
}

.ar .navmenu a,
.ar .navmenu a:focus {
  font-family: var(--arabic-font);
}

.ar .navmenu a,
.ar .navmenu a:focus {
  font-family: var(--arabic-font);
}

.ar .section-title h2 {
  font-family: var(--arabic-font);
}

.ar .section-title p {
  font-family: var(--arabic-font);
}

.ar .hero .btn-get-started {
  font-family: var(--arabic-font);
}

.ar .stats .stats-item p {
  font-family: var(--arabic-font);
}

.ar .cta .cta-content .cta-btn {
  font-family: var(--arabic-font);
}

.ar .pricing .pricing-item h4 {
  font-family: var(--arabic-font);
}

.ar .pricing .btn-buy {
  font-family: var(--arabic-font);
}


/****************/

.ar .whatsApp-btn {
  right: auto;
  left: 20px;
  bottom: 25px;
}

.ar .header .topbar .contact-info
{
  direction: ltr;
}

.ar .header .topbar .social-links a {
  margin-left: 0px;
  margin-right: 20px;
}

.ar .navmenu li.langs {
  margin-left: 0;
  margin-right: 50px;
}

@media (max-width: 1199px){

.ar .navmenu li.langs {
    margin-right: 0;
  }

}

.ar .navmenu li:last-child a {
  padding-right: 20px;
  padding-left: 0;
}

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

@media (max-width: 640px) {

  .ar .hero h1 {
    font-size: 34px;
    line-height: 48px;
  }

}

.ar .hero p {
  margin: 15px 0 30px 0;
}

.ar .about .about-content{
  padding-right: 16px; 
}

@media(max-width: 992px){

  .ar .about .about-content{
    padding-right: 0;
  }

}

.ar .about .about-content ul i {

  margin-right: 0;
  margin-left: 15px;
}

.ar .footer .footer-contact p span{
  direction: ltr;
}

.ar .footer .footer-links ul i {
  margin-right: 0px;
  margin-left: 3px;
}

.ar .footer .social-links a {
  margin-right: 0;
  margin-left: 10px;
}



/***** How it works page *****/


@media (min-width: 768px) {   /* this is for larger screens (min-width) */
  
  .ar .timeline-item {
    padding-left: 60px;
    padding-right: 0;
  }
  
  .ar .timeline-item:nth-child(even) {
    margin-right: 50%;
    padding-left: 0;
    padding-right: 60px;
  }
  
  .ar .timeline-number {
    left: -24px;
    right: auto;
  }
  
  .ar .timeline-item:nth-child(even) .timeline-number {
    right: -24px;
    left: auto;
  }


}



/***** Services and Pricing page *****/


.ar .pricing .pricing-item h4 sup {
  left: 0;
  right: -3px;
}

.ar .pricing .pricing-item h4 span{
  margin-right: 5px;
}



/***** Contact page *****/


.ar .contact .info-item a {
  direction: ltr;
}


/**********/


