/*

Tooplate 2132 Clean Work

https://www.tooplate.com/view/2132-clean-work

*/



/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #7cb8eb;
  --secondary-color:              #4f83d1;
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #4f83d1;
  --custom-btn-bg-hover-color:    #7cb8eb;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #e9eaeb;
  --link-hover-color:             #4f83d1;

  --body-font-family:             'Poppins', sans-serif;

  --h1-font-size:                 52px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  16px;
  --btn-font-size:                18px;
  --copyright-font-size:          14px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-bold:             700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-medium);
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.page-404-title {
  color: var(--secondary-color);
  font-size: 10rem;
}

/*===========================
    02. HEADER CSS
===========================*/

.navbar-area {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 99;
    display: flex;
    justify-content: center; 
    align-items: center;    
    transition: all 0.3s ease-out;
}


.navbar-area .container {
    padding-left: 0;
    padding-right: 0;
}


.navbar-area.sticky {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(0, 0);
    background-color: #fff;
    box-shadow: 0px 20px 50px rgba(0,0,0,0.05);
    justify-content: flex-start; 
    align-items: center;
    width: 100%;
}

.navbar {
    padding: 20px 0;
    border-radius: 5px;
    position: relative;
    transition: all 0.3s ease-out;
}

@media (max-width: 991px) {
    .navbar {
        padding: 17px 0;
    }
}

.navbar-brand {
    padding: 0;
}
.navbar-brand img {
    max-width: 180px;
}

.navbar-toggler {
    padding: 0;
    border: none;
}
.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}
.navbar-toggler .toggler-icon {
    width: 30px;
    height: 2px;
    background-color: #313450;
    display: block;
    margin: 5px 0;
    transition: all 0.3s ease-out;
}
.navbar-toggler.active .toggler-icon:nth-of-type(1) {
    transform: rotate(45deg);
    top: 7px;
}
.navbar-toggler.active .toggler-icon:nth-of-type(2) {
    opacity: 0;
}
.navbar-toggler.active .toggler-icon:nth-of-type(3) {
    transform: rotate(135deg);
    top: -7px;
}

.navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    margin: 0;
    padding: 0;
}

.navbar-nav .nav-item {
    margin-left: 40px;
    position: relative;
}
@media (max-width: 991px) {
    .navbar-nav .nav-item {
        margin-left: 20px;
    }
}
.navbar-nav .nav-item a {
    font-size: 18px;
    font-weight: 400;
    color: #6B6F92;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease-out;
}
.navbar-nav .nav-item a:hover,
.navbar-nav .nav-item a.active {
    color: #4E6EF1;
}
.navbar-nav .nav-item a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #4E6EF1;
    opacity: 0;
    border-radius: 10px;
    transition: all 0.3s ease-out;
}
.navbar-nav .nav-item a:hover::before,
.navbar-nav .nav-item a.active::before {
    width: 100%;
    opacity: 1;
}

/* Sub-menu */
.navbar-nav .nav-item .sub-menu {
    width: 200px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    position: absolute;
    top: 110%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out;
}
.navbar-nav .nav-item:hover .sub-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
}
.navbar-nav .nav-item .sub-menu li a {
    display: block;
    padding: 8px 20px;
    color: #222;
}
.navbar-nav .nav-item .sub-menu li a:hover,
.navbar-nav .nav-item .sub-menu li a.active {
    color: #4E6EF1;
    padding-left: 25px;
}

/* Sticky color adjustment */
.sticky .navbar-nav .nav-item a {
    color: #313450;
}
.sticky .navbar-toggler .toggler-icon {
    background: #313450;
}



/* =========== footer css =========== */
.footer {
  background-image: url("/images/avatar/footer-bg.svg");
  background-size: cover;
  background-position: top center;
  padding-top: 150px;
}

.footer .widget-wrapper .footer-widget {
  margin-bottom: 40px;
}

.footer .widget-wrapper .footer-widget .desc {
  font-size: 18px;
  line-height: 28px;
}

.footer .widget-wrapper .footer-widget .socials {
  display: flex;
  align-items: center;
}

.footer .widget-wrapper .footer-widget .socials li {
  margin-right: 20px;
}

.footer .widget-wrapper .footer-widget .socials li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #6B6F92;
  background: #fff;
}

.footer .widget-wrapper .footer-widget .socials li a:hover {
  padding-left: 0px;
}

.footer .widget-wrapper .footer-widget h3 {
  margin-bottom: 35px;
}

.footer .widget-wrapper .footer-widget ul li {
  font-size: 18px;
  line-height: 36px;
}

.footer .widget-wrapper .footer-widget ul li a {
  color: #6B6F92;
}

.footer .widget-wrapper .footer-widget ul li a:hover {
  color: #4E6EF1;
  padding-left: 7px;
}

.footer .copy-right {
  text-align: center;
  padding: 30px 0;
  border-top: 2px solid #fff;
}

.call-link {
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.call-link i {
    margin-inline-end: 6px; /* مسافة بين الأيقونة والرقم */
}

.call-link:hover {
    color: #0077ff; /* لون عند الـ hover */
}

.email-link {
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.email-link i {
    margin-inline-end: 6px;
}

.email-link:hover {
    color: #0077ff;
}


 .socials {
        list-style: none;
        display: flex;
        gap: 15px;
        padding: 0;
        margin: 0;
    }

    .socials li a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: #f0f0f0;
        color: #333;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 18px;
    }

    .socials li a:hover {
        background-color: #0077ff;
        color: #fff;
        transform: scale(1.1);
    }

    logo {
    display: inline-block; 
    vertical-align: middle; 
}

.logo img {
    height: 60px; 
    width: auto; 
    display: block; 
}

.highlight {
    color: #0077ff; 
    font-weight: bold; 
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-color: var(--secondary-color);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.testimonial-section .section-overlay {
  opacity: 0.85;
}

.section-overlay + .container {
  position: relative;
}


/*---------------------------------------
  ANIMATED HEADLINE               
-----------------------------------------*/
.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper b {
  color: #e5e50f;
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

.cd-headline.rotate-1 .cd-words-wrapper {
  -webkit-perspective: 300px;
  -moz-perspective: 300px;
  perspective: 300px;
}

.cd-headline.rotate-1 b {
  opacity: 0;
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.cd-headline.rotate-1 b.is-visible {
  opacity: 1;
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-animation: cd-rotate-1-in 1.2s;
  -moz-animation: cd-rotate-1-in 1.2s;
  animation: cd-rotate-1-in 1.2s;
}

.cd-headline.rotate-1 b.is-hidden {
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
  -webkit-animation: cd-rotate-1-out 1.2s;
  -moz-animation: cd-rotate-1-out 1.2s;
  animation: cd-rotate-1-out 1.2s;
}

@-webkit-keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -webkit-transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(360deg);
    opacity: 1;
  }
}

@-moz-keyframes cd-rotate-1-in {
  0% {
    -moz-transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -moz-transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -moz-transform: rotateX(360deg);
    opacity: 1;
  }
}

@keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -webkit-transform: rotateX(120deg);
    -moz-transform: rotateX(120deg);
    -ms-transform: rotateX(120deg);
    -o-transform: rotateX(120deg);
    transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(360deg);
    -moz-transform: rotateX(360deg);
    -ms-transform: rotateX(360deg);
    -o-transform: rotateX(360deg);
    transform: rotateX(360deg);
    opacity: 1;
  }
}

@-webkit-keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -webkit-transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }
}

@-moz-keyframes cd-rotate-1-out {
  0% {
    -moz-transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -moz-transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -moz-transform: rotateX(180deg);
    opacity: 0;
  }
}

@keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -webkit-transform: rotateX(-40deg);
    -moz-transform: rotateX(-40deg);
    -ms-transform: rotateX(-40deg);
    -o-transform: rotateX(-40deg);
    transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }
}


/*---------------------------------------
  CUSTOM LINK               
-----------------------------------------*/
.link {
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}

.link::before,
.link::after {
  position: absolute;
  width: 100%;
  height: 1px;
  background: currentColor;
  top: 100%;
  left: 0;
  pointer-events: none;
}

.link::before {
  content: '';
}

.link--herse::before {
  display: none;
}

.link__graphic {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  fill: none;
  stroke: var(--dark-color);
  stroke-width: 1px;
}

.link__graphic--stroke path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.link:hover .link__graphic--stroke path {
  stroke-dashoffset: 0;
}

.link__graphic--arc {
  top: 73%;
  left: -23%;
}

.link__graphic--arc path {
  transition: stroke-dashoffset 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

.link:hover .link__graphic--arc path {
  transition-timing-function: cubic-bezier(0.8, 1, 0.7, 1);
  transition-duration: 0.3s;
}

.button {
  display: inline-block;
  position: relative;
}

.button::before,
.button::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.button--atlas > span {
  display: inline-block;
}

.button--atlas:hover > span {
  opacity: 0;
}

.marquee {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
}

.marquee__inner {
  width: fit-content;
  display: flex;
  position: relative;
  --offset: 1rem;
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset));
  transform: translate3d(var(--move-initial), 0, 0);
  animation: marquee 1s linear infinite;
  animation-play-state: paused;
  opacity: 0;
}

.button--atlas:hover .marquee__inner {
  animation-play-state: running;
  opacity: 1;
  transition-duration: 0.4s;
}

.marquee span {
  text-align: center;
  white-space: nowrap;
  font-style: italic;
  padding: 15px;
}

@keyframes marquee {
  0% {
    transform: translate3d(var(--move-initial), 0, 0);
  }

  100% {
    transform: translate3d(var(--move-final), 0, 0);
  }
}

.button--pan {
  overflow: hidden;
}

.button--pan span {
  position: relative;
}

.button--pan::before {
  content: '';
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}

.button--pan:hover::before {
  background: transparent;
  transform: translate3d(0,-100%,0);
}


/*---------------------------------------
  CUSTOM BLOCK               
-----------------------------------------*/
.custom-block-wrap {
  position: relative;
}

.custom-block-wrap .custom-block {
  position: absolute;
  bottom: 0;
  right: 0;
}

.custom-block {
  background-color: var(--primary-color);
  border-radius: var(--border-radius-small);
  padding: 35px;
}

.custom-block .custom-icon,
.custom-block a {
  color: var(--white-color);
}


/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}

.bi-star-fill {
  color: var(--custom-btn-bg-color);
}


/*---------------------------------------
  AVATAR IMAGE - TESTIMONIAL               
-----------------------------------------*/
.avatar-image {
  border-radius: var(--border-radius-large);
  width: 60px;
  height: 60px;
  object-fit: cover;
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-normal);
  line-height: normal;
  transition: all 0.3s;
  padding: 15px 25px;
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn {
  margin-top: 8px;
  margin-right: 0;
  padding: 12px 25px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.navbar {
  background: transparent;
  position: absolute;
  top: 49px;
  right: 0;
  left: 0;
  z-index: 9;
  padding-top: 20px;
  padding-bottom: 20px;
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
  font-size: var(--h6-font-size);
  font-weight: var(--font-weight-light);
}

.logo {
  background-color: var(--white-color);
  border-radius: var(--border-radius-large);
  width: 80px;
  height: 80px;
  padding: 15px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  margin: 20px;
  padding: 0;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  background: transparent;
  color: var(--primary-color);
}

.dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border: 0;
  display: inherit;
  opacity: 0;
  min-width: 9rem;
  margin-top: 20px;
  padding: 13px 0 10px 0;
  transition: all 0.3s;
  pointer-events: none;
}

.dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--white-color);
  position: absolute;
  top: -10px;
  left: 10px;
}

.dropdown-item {
  display: inline-block;
  color: var(--p-bg-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
  padding-top: 0;
  padding-bottom: 7px;
}

.dropdown-item.active, 
.dropdown-item:active,
.dropdown-item:focus, 
.dropdown-item:hover {
  background: transparent;
  color: var(--primary-color);
}

.dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    margin-top: 0;
    pointer-events: auto;
  }
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background: var(--primary-color);
  position: relative;
  z-index: 22;
  padding-top: 15px;
  padding-bottom: 15px;
}

.site-header p,
.site-header p a,
.site-header .social-icon-link {
  color: var(--white-color);
  font-size: var(--copyright-font-size);
}

.site-header .social-icon {
  text-align: right;
}

.site-header .social-icon-link {
  background: transparent;
  width: inherit;
  height: inherit;
  line-height: inherit;
  margin-right: 15px;
}

.site-header-icon {
  display: inline-block;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
  min-height: 680px;
      direction: rtl;
    text-align: right;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section svg {
  position: absolute;
  bottom: -50px;
  right: 0;
  left: 0;
  pointer-events: none;
}

@media screen and (min-width: 991px) {
  .hero-section-full-height {
    height: 95vh;
  }
}

.hero-section {
  min-height: 130vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}



/*---------------------------------------
  INTRO        
-----------------------------------------*/
.intro-section {
  padding-top: 50px;
}
.intro-section {
    font-family: 'Cairo', sans-serif;
}

.intro-section {
    direction: rtl;
    text-align: right;
}

.intro-section h2 {
    font-size: 36px;
    font-weight: 700;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.9;
    font-weight: 400;
}


@media screen and (max-width: 768px) {
    .intro-section h2 {
        font-size: 28px;
    }
    
    .intro-section p {
        font-size: 16px;
    }
}

.intro-section.about_shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%; }


.custom-block-wrap img {
    animation: smoothZoom 6s ease-in-out infinite alternate;
}

@keyframes smoothZoom {
    0% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1.05);
    }
}

.contact-paint-box {
    background-color: #00559A;
    padding: 14px 22px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
}


.contact-paint-box::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 22px;
    background: #003f73;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg width='400' height='55' viewBox='0 0 400 55' xmlns='http://www.w3.org/2000/svg'><path d='M0,0 C50,40 100,10 150,30 C200,50 250,5 300,25 C350,45 400,0 400,0 L400,55 L0,55 Z' fill='white'/></svg>") repeat-x;
    mask: url("data:image/svg+xml;utf8,<svg width='400' height='55' viewBox='0 0 400 55' xmlns='http://www.w3.org/2000/svg'><path d='M0,0 C50,40 100,10 150,30 C200,50 250,5 300,25 C350,45 400,0 400,0 L400,55 L0,55 Z' fill='white'/></svg>") repeat-x;
    background-size: cover;
}

.contact-paint-box:hover {
    transform: translateY(-3px);
}

.contact-icon {
    font-size: 24px;
    color: #ffffff;
}

.contact-number {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    direction: ltr;
}

/*---------------------------------------
  categories        
-----------------------------------------*/
.categories-section {
    background: linear-gradient(to bottom, rgba(227,240,255,0), #e3f0ff 50%);
    padding-top: 80px;
    padding-bottom: 80px;
}




.categories-section {
    direction: rtl;
}

.categories-thumb {
    background: #f5f8fa;
    border-radius: 15px;
    padding: 20px;
    transition: 0.3s ease-in-out;
    border: 1px solid #e1e4e7;
}

.categories-thumb:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.categories-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.categories-image {
    width: 100%;
    border-radius: 12px;
    transition: opacity 0.4s ease-in-out;
}

.categories-image-hover {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
}

.categories-image-wrap:hover .categories-image {
    opacity: 0;
}

.categories-image-wrap:hover .categories-image-hover {
    opacity: 1;
}

.categories-title {
    font-size: 22px;
    font-weight: 700;
    color: #0f4c81;
}

.categories-info p {
    font-size: 15px;
    color: #555;
}

.custom-btn {
    background-color: #0f4c81;
    color: #fff;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 15px;
    transition: 0.3s ease-in-out;
}

.custom-btn:hover {
    background-color: #0c3b65;
}

.categories-thumb {
    margin-bottom: 30px; 
}

.categories-thumb:last-child {
    margin-bottom: 0;
}
.categories-section .row > div {
    margin-bottom: 30px;
}




/*---------------------------------------
  BANNER        
-----------------------------------------*/
.banner-section {
  background-image: url('../images/high-angle-woman-cleaning-floors.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  min-height: 340px;
  padding-top: 100px;
  padding-bottom: 50px;
}

.banner-section .breadcrumb {
  margin-bottom: 0;
}

.breadcrumb-item+.breadcrumb-item::before,
.breadcrumb-item.active {
  color: var(--white-color);
}


/*---------------------------------------
  COUNTDOWN              
-----------------------------------------*/
.countdown-section {
  position: relative;
}

.countdown-section-title {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}

.countdown {
  text-align: center;
  padding-left: 0;
}

.countdown-item {
  list-style: none;
  flex: 0 0 13%;
  margin: 15px;
}

.countdown-text {
  background: var(--section-bg-color);
  border-radius: 6px;
  color: var(--secondary-color);
  font-size: var(--p-font-size);
  position: relative;
  padding: 4px 8px;
}

.countdown-text::before {
  content: "";
  display: block;
  margin: auto;
  width: 0;
  height: 0;
  border-bottom: 5px solid var(--section-bg-color);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  position: absolute;
  top: -5px;
  right: 0;
  left: 0;
}


/*---------------------------------------
  FEATURED              
-----------------------------------------*/
.featured-image {
  border-radius: var(--border-radius-medium);
}

.featured-block {
  padding: 20px;
}


/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-image,
.gallery-image {
  border-radius: var(--border-radius-medium);
}

.team-info {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  padding: 30px;
}

.team-info p {
  margin-bottom: 0;
}

.team-info::before {
  content: "";
  display: block;
  margin: auto;
  width: 0;
  height: 0;
  border-right: 20px solid var(--white-color);
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
}

.gallery-image {
  transition: all 0.3s;
}

.gallery-image:hover {
  transform: scale(1.02);
}


/*---------------------------------------
  SERVICES              
-----------------------------------------*/
.services-thumb {
  background-color: var(--white-color);
  border-radius: var(--border-radius-small);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  padding: 30px;
}

.services-thumb.section-bg {
  background: var(--section-bg-color);
}

.services-detail-section .services-image {
  aspect-ratio: 0;
}

.services-image-wrap {
  border-radius: var(--border-radius-small);
  position: relative;
  overflow: hidden;
}

.services-image-wrap:hover .services-image-hover {
  opacity: 1;
}

.services-title-link {
  display: block;
}

.services-image,
.team-image {
  border-radius: var(--border-radius-small);
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
  transition: all 0.5s;
}

.services-image-hover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
}

.services-icon-wrap {
  background: var(--secondary-color);
  color: var(--white-color);
  font-size: var(--h3-font-size);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  transition: opacity 0.5s;
  padding: 8px 12px;
}

.services-icon-wrap .button--skoll {
  width: 100%;
  height: 100%;
}


/*---------------------------------------
  TESTIMONIAL              
-----------------------------------------*/

.testimonial-section {
    background-image: url('../images/coffe-shop-with-wooden-walls-unfocused.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    direction: rtl; 
}

.testimonial-section .featured-block {
    background-color: var(--primary-color);
    border-radius: var(--border-radius-medium);
    margin-bottom: 24px;
    padding: 30px;
    text-align: right; 
}

.testimonial-section .featured-block .d-flex {
    flex-direction: row; 
    align-items: center;
}

.testimonial-section .featured-block .avatar-image {
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

.testimonial-section .featured-block h4,
.testimonial-section .featured-block p {
    color: var(--white-color);
    margin: 0;
}

.testimonial-section .featured-block {
    background-color: var(--primary-color);
    border-radius: var(--border-radius-medium);
    margin-bottom: 24px;
    padding: 30px;
    text-align: right;
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.testimonial-section .featured-block:hover {
    transform: translateY(-10px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.3); 
}

.testimonial-section .featured-block .d-flex {
    flex-direction: row; 
    align-items: center;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px; 
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
    pointer-events: none; 
}

.testimonial-section {
    font-family: 'Cairo', sans-serif;
}

.testimonial-section h2 {
    font-size: 2rem; 
    font-weight: 700; 
    margin-bottom: 2rem;
}

.testimonial-section .featured-block h4 {
    font-size: 1.2rem; 
    font-weight: 700;
    margin: 0;
}

.testimonial-section .featured-block p {
    font-size: 1rem; 
    font-weight: 400;
    margin: 0.5rem 0 0 0;
}

.testimonial-section .featured-block .avatar-image {
    border-radius: 50%;
    width: 60px;
    height: 60px;
}




/*---------------------------------------
  PARTNERS              
-----------------------------------------*/



.partners-section {
  text-align: center;
  padding-top: 25px;
  padding-bottom: 50px;
}

.partners-section-title {
  border-radius: var(--border-radius-large);
  display: inline-block;
  position: relative;
  bottom: 50px;
  margin-bottom: -50px;
  padding: 10px 20px;
}

.partners-image {
  display: block;
  width: 150px;
  margin: auto;
  transition: all 0.3s;
}

.partners-image:hover {
  transform: scale(1.05);
}


/*---------------------------------------
  COUNTER NUMBERS              
-----------------------------------------*/
.counter-thumb {
  margin: 20px;
  margin-top: 0;
}

.counter-number {
  color: var(--secondary-color);
  display: block;
}

.counter-number,
.counter-number-text {
  color: var(--secondary-color);
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control,
.input-group-file {
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  border-color: var(--secondary-color);
}

.custom-form label {
  margin-bottom: 10px;
}

.custom-form .form-check-group {
  margin-bottom: 20px;
}

.donate-form .form-check-group-donation-frequency {
  padding-right: 0;
}

.form-check-group-donation-frequency + .form-check-group-donation-frequency {
  padding-right: 12px;
  padding-left: 0;
}

.form-check-group-donation-frequency .form-check-label {
  font-weight: var(--font-weight-medium);
}

#DonationFrequencyOne {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

#DonationFrequencyMonthly {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-form .form-check-radio {
  position: relative;
  height: 100%;
  padding-left: 0;
}

.custom-form .input-group-text {
  background: var(--secondary-color);
  border: 0;
  color: var(--white-color);
}

.custom-form .form-check-radio .form-check-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.form-check-radio .form-check-input[type=radio] {
  background-color: var(--section-bg-color);
  border-radius: .25rem;
  border: 0;
  box-shadow: none;
  outline: none;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  padding: 25px 50px;
  transition: all 0.3s;
}

.form-check-radio .form-check-input:checked[type=radio] {
  background-image: none;
}

.form-check-radio .form-check-input:checked[type=radio] + .form-check-label,
.form-check-radio .form-check-input:hover + .form-check-label,
.form-check-radio .form-check-input:checked + .form-check-label {
  color: var(--white-color);
}

.form-check-radio .form-check-input:hover,
.form-check-radio .form-check-input:checked {
  background-color: var(--secondary-color);
  border-color: var(--white-color);
}

.input-group-file {
  border-radius: .25rem;
  padding: 13px .75rem;
}

.input-group-file input[type=file] {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  padding: 0;
}

.input-group-file .input-group-text {
  background: transparent;
  color: inherit;
  margin-bottom: 0;
  padding: 0;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}

.consulting-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 45px;
}

.consulting-form-header .form-icon {
  font-size: var(--h2-font-size);
  color: var(--white-color);
}


/*---------------------------------------
  SITE FOOTER
-----------------------------------------*/
.site-footer {
    background-color: var(--primary-color);
    padding-top: 50px;
    direction: rtl;
    font-family: 'Cairo', sans-serif;
}

/* Footer bottom */
.site-footer-bottom {
    border-top: 1px solid #7fbcf0;
    position: relative;
    z-index: 2;
    margin-top: 50px;
    padding-top: 25px;
    padding-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.site-footer .logo {
    background-color: var(--white-color);
    border-radius: var(--border-radius-large);
    width: 80px;
    height: 80px;
    object-fit: cover;
    padding: 15px;
}

.site-footer-title {
    color: var(--white-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.site-footer-link {
    color: var(--white-color);
    text-decoration: none;
    font-size: 1rem;
}

.site-footer-link:hover {
    color: var(--link-hover-color);
}

/* Footer menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-item {
    margin-bottom: 0.5rem;
}

.footer-menu-link {
    display: flex;
    align-items: center;
    color: var(--white-color);
    text-decoration: none;
}

.footer-menu-link-icon {
    margin-left: 0.5rem;
    margin-right: 0;
}
.social-icon {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
}

.social-icon-link {
    color: var(--white-color);
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icon-link:hover {
    color: var(--link-hover-color);
}

.copyright-text {
    color: var(--section-bg-color);
    font-size: var(--copyright-font-size);
    margin-left: 30px; 
}

.site-footer .custom-btn {
    font-size: var(--copyright-font-size);
}

.site-footer .custom-btn:hover {
    background: var(--primary-color);
}

.site-footer-bottom a {
    color: var(--white-color);
}

.site-footer-bottom a:hover {
    color: var(--link-hover-color);
}

.site-footer .col-12.text-start {
    text-align: left;
}

.site-footer .col-12.text-end {
    text-align: right;
}


/*---------------------------------------
  FOOTER MENU               
-----------------------------------------*/
.footer-menu {
  column-count: 2;
  margin: 0;
  padding: 0;
}

.footer-menu-item {
  list-style: none;
  display: block;
}

.footer-menu-link {
  font-size: var(--p-font-size);
  color: var(--white-color);
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
  margin-bottom: 5px;
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: #7fbcf0;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.button--skoll {
  overflow: hidden;
  border-radius: 50%;
  color: var(--white-color);
  width: 35px;
  height: 35px;
}

.button--skoll span {
  display: block;
  position: relative;
}

.button--skoll > span {
  overflow: hidden;
}

.button--skoll:hover > span > span {
  animation: MoveUpInitial 0.2s forwards, MoveUpEnd 0.2s forwards 0.2s;
}

.button--skoll::before {
  content: '';
  background: var(--custom-btn-bg-color);
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  border-radius: 50%;
  transform: translate3d(0,0,0);
  transition: transform 0.3s;
  transition-timing-function: cubic-bezier(0.7, 0, 0.2, 1);
}

.button--skoll:hover::before {
  transform: translate3d(0,100%,0);
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 1600px) {
  .intro-section {
    padding-top: 0;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .team-section {
    padding-bottom: 80px;
  }

  .navbar {
    background-color: var(--white-color);
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .navbar-brand,
  .navbar-brand:hover {
    color: var(--primary-color);
  }

  .navbar-nav .nav-link {
    color: var(--p-color);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    margin: 8px 20px;
  }

  .navbar-expand-lg .navbar-nav .nav-link.custom-btn {
    background-color: var(--custom-btn-bg-color);
    color: var(--white-color);
    margin-left: 0;
  }

  .navbar-nav .dropdown-menu {
    position: relative;
    left: 20px;
    opacity: 1;
    pointer-events: auto;
    max-width: 100px;
    margin-top: 10px;
    margin-bottom: 15px;
  }

  .custom-block-wrap .custom-block {
    right: 12px;
  }

  .site-footer {
    padding-top: 50px;
  }

  .copyright-text-wrap {
    justify-content: center;
  }

  .site-footer-bottom {
    text-align: center;
    margin-top: 50px;
  }

  .site-footer-bottom .footer-menu {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {

  .custom-btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  .hero-section svg {
    bottom: 0;
  }

  .team-info::before {
    border-top: 0;
    border-bottom: 20px solid var(--white-color);
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    top: -20px;
    bottom: auto;
    right: 0;
    left: 0;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
}

body {
    font-family: 'Cairo', sans-serif;
}

/*---------------------------------------
  preloader STYLES               
-----------------------------------------*/

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    display: table;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99999;
}

.preloader .loader {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.preloader .loader .spinner .spinner-container {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    animation: spin 1.5s linear infinite;
}

.preloader .loader .spinner .spinner-container .spinner-box {
    width: 40px;
    height: 40px;
    background-color: #4E6EF1; 
    border-radius: 8px; 
    margin: 0 auto;
}




@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px; 
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease, transform 0.3s ease;
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

.scroll-top .paint-can {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* 
---------------------------------------------
Blog



.blog:before {
  content: '';
  background-image: url(/images/blog-left-dec.jpg);
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0px;
  width: 961px;
  height: 1020px;
  z-index: 0;
}

.blog {
  position: relative;
  padding-top: 130px;
  direction: ltr;
  text-align: left;
}

.blog .section-heading {
  text-align: center;
  margin-bottom: 80px;
}

.blog .section-heading .line-dec {
  margin: 0 auto;
}

.show-up {
  position: relative;
  z-index: 200;
}

.blog-post {
  box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
  border-radius: 25px;
}

.blog-post .thumb img {
  border-top-right-radius: 23px;
  border-top-left-radius: 23px;
  width: 100%;
}

.blog-post .down-content {
  border-bottom-right-radius: 23px;
  border-bottom-left-radius: 23px;
  background-color: #fff;
  padding: 30px;
}

.blog-post .down-content span.category {
  font-size: 15px;
  color: #fff;
  padding: 8px 12px;
  background-color: #726ae3;
  border-radius: 18px;
  display: inline-block;
}

.blog-post .down-content span.date {
  font-size: 15px;
  color: #afafaf;
  float: left;
  text-align: left;
  margin-left: 10px;
  margin-top: 4px;
}

.blog-post .down-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2a2a2a;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 30px;
}

.blog-post .down-content p {
  margin-bottom: 30px;
}

.blog-post .down-content span.author {
  font-size: 15px;
  color: #2a2a2a;
}

.blog-post .down-content span.author img {
  max-width: 56px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog-post .down-content .border-first-button {
  display: inline-block;
  float: left;
}

.blog-posts {
  margin-left: 30px;
}

.post-item {
  margin-bottom: 62px;
}

.last-post-item {
  margin-bottom: 0px;
}

.post-item .thumb {
  display: inline-block;
  float: left;
  margin-right: 20px;
  margin-left: 0 !important;
}

.post-item .thumb img {
  border-radius: 23px;
  display: inline-block;
}

.post-item .right-content {
  padding-top: 20px;
  text-align: left;
}

.post-item .right-content span.category {
  font-size: 15px;
  color: #fff;
  padding: 8px 12px;
  background-color: #726ae3;
  border-radius: 18px;
  display: inline-block;
}

.post-item .right-content span.date {
  font-size: 15px;
  color: #afafaf;
  float: left;
  text-align: left;
  margin-left: 10px;
  margin-top: 4px;
}

.post-item .right-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2a2a2a;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 30px;
}

.post-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.post-item .thumb {
    margin: 0;
    flex-shrink: 0;
}

.post-item .right-content {
    flex: 1;
}

.post-item .thumb img {
    width: 180px; 
    height: 140px; 
    object-fit: cover;
}
  .blog-post .thumb img {
    width: 100%;
    height: 300px; 
    object-fit: cover;
}


--------------------------------------------- 
*/


.properties.section {
    padding: 40px 0 60px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    background: #f8f9fb;
    color: #222;
  }
 
  .section-heading h6 {
    color: #999;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .section-heading h2 {
    font-size: 28px;
    margin: 0;
    font-weight: 800;
  }

  .properties .item {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 22px;
    margin-bottom: 30px;
    box-shadow: 0 6px 22px rgba(17, 24, 39, 0.06);
    transition: transform 0.28s cubic-bezier(.2,.9,.3,1), box-shadow 0.28s;
  }

  .properties .item:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(17,24,39,0.09);
  }

  .properties .item .img-wrap {
    display: block;
    overflow: hidden;
    border-radius: 12px;
  }

  .properties .item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
  }

  .properties .item .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
  }

  .properties .item span.category {
    background-color: #f7d7ca;
    font-weight: 600;
    border-radius: 7px;
    font-size: 14px;
    color: #1e1e1e;
    padding: 7px 12px;
    display: inline-block;
  }

  .properties .item .price {
    color: #0056b3 !important;
    font-weight: 800;
    font-size: 18px;
    margin: 0;
    white-space: nowrap;
  }


  .properties .item .title {
    font-size: 18px;
    margin: 16px 0 12px;
    font-weight: 800;
  }

  .properties .item .title a {
    color: #111;
    text-decoration: none;
  }

  .properties .item .specs {
    list-style: none;
    padding: 0;
    margin: 0 0 22px 0;
    border-bottom: 1px solid #efefef;
    padding-bottom: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    align-items: center;
  }

  .properties .item .specs li {
    font-size: 16px;
    color: #1a1a1d;
    margin: 0;
  }

  .properties .item .specs li span {
    font-weight: 700;
    color: #111;
    margin-right: 6px;
  }

  .properties .item .main-button {
    text-align: center;
    margin-top: 12px;
  }

  .properties .item .main-button a {
    display: inline-block;
    padding: 11px 26px;
    border-radius: 28px;
    background-color: #111;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.1px;
    transition: background-color 0.22s ease, transform 0.22s ease;
  }

  .properties .item .main-button a:hover {
    background-color: #f35525;
    transform: translateY(-3px);
  }

  @media (max-width: 991px) {
    .properties .item img {
      height: 220px;
    }
  }

  @media (max-width: 575px) {
    .properties .item img {
      height: 180px;
    }

    .section-heading h2 {
      font-size: 20px;
    }

    .properties .item .price {
      font-size: 16px;
    }
  }

  .section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h6 {
  font-family: 'Cairo', sans-serif;
  color: #0056b3;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.section-heading h2 {
  font-family: 'Cairo', sans-serif;
  color: #0056b3;
  font-size: 32px;
  font-weight: 800;
}






/* 
---------------------------------------------
About Style
--------------------------------------------- 
*/

#about {
  padding-top: 130px;
}

.about-left-image img {
  margin-right: 45px;
}

.about-right-content p {
  margin-top: 30px;
  margin-bottom: 45px;
}

.skills-content {
  position: relative;
  z-index: 1;
  margin-top: -50px;
  background-color: #f5f5f5;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
  padding: 110px 0px 50px 0px;
}

.skill-item {
  text-align: center;
}

.progress {
  width: 150px;
  height: 150px;
  line-height: 150px;
  background: none;
  margin: 0 auto;
  box-shadow: none;
  position: relative;
}
.progress:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 5px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
}
.progress > span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}
.progress .progress-left {
  left: 0;
}
.progress .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 5px;
  border-style: solid;
  position: absolute;
  top: 0;
  border-color: #fd6a54;
}

.first-skill-item .progress .progress-bar {
  border-color: #fa65b1;
}

.second-skill-item .progress .progress-bar {
  border-color: #726ae3;
}

.third-skill-item .progress .progress-bar {
  border-color: #f58b56;
}

.progress .progress-left .progress-bar {
  left: 100%;
  border-top-right-radius: 75px;
  border-bottom-right-radius: 75px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}
.progress .progress-right {
  right: 0;
}
.progress .progress-right .progress-bar {
  left: -100%;
  border-top-left-radius: 75px;
  border-bottom-left-radius: 75px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
}
.progress .progress-value {
  text-align: center;
  color: #2a2a2a;
  display: flex;
  width: 100%;
  border-radius: 50%;
  font-size: 35px;
  text-align: center;
  line-height: 25px;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-weight: 700;
}
.progress .progress-value div {
  margin-top: 10px;
}
.progress .progress-value span {
  font-size: 18px;
  text-transform: none;
  color: #afafaf;
  font-weight: 300;
}

/* This for loop creates the  necessary css animation names 
Due to the split circle of progress-left and progress right, we must use the animations on each side. 
*/
.progress[data-percentage="10"] .progress-right .progress-bar {
  animation: loading-1 1.5s linear forwards;
}
.progress[data-percentage="10"] .progress-left .progress-bar {
  animation: 0;
}

.progress[data-percentage="20"] .progress-right .progress-bar {
  animation: loading-2 1.5s linear forwards;
}
.progress[data-percentage="20"] .progress-left .progress-bar {
  animation: 0;
}

.progress[data-percentage="30"] .progress-right .progress-bar {
  animation: loading-3 1.5s linear forwards;
}
.progress[data-percentage="30"] .progress-left .progress-bar {
  animation: 0;
}

.progress[data-percentage="40"] .progress-right .progress-bar {
  animation: loading-4 1.5s linear forwards;
}
.progress[data-percentage="40"] .progress-left .progress-bar {
  animation: 0;
}

.progress[data-percentage="50"] .progress-right .progress-bar {
  animation: loading-5 1.5s linear forwards;
}
.progress[data-percentage="50"] .progress-left .progress-bar {
  animation: 0;
}

.progress[data-percentage="60"] .progress-right .progress-bar {
  animation: loading-5 1.5s linear forwards;
}
.progress[data-percentage="60"] .progress-left .progress-bar {
  animation: loading-1 1.5s linear forwards 1.5s;
}

.progress[data-percentage="70"] .progress-right .progress-bar {
  animation: loading-5 1.5s linear forwards;
}
.progress[data-percentage="70"] .progress-left .progress-bar {
  animation: loading-2 1.5s linear forwards 1.5s;
}

.progress[data-percentage="80"] .progress-right .progress-bar {
  animation: loading-5 1.5s linear forwards;
}
.progress[data-percentage="80"] .progress-left .progress-bar {
  animation: loading-3 1.5s linear forwards 1.5s;
}

.progress[data-percentage="90"] .progress-right .progress-bar {
  animation: loading-5 1.5s linear forwards;
}
.progress[data-percentage="90"] .progress-left .progress-bar {
  animation: loading-4 1.5s linear forwards 1.5s;
}

.progress[data-percentage="100"] .progress-right .progress-bar {
  animation: loading-5 1.5s linear forwards;
}
.progress[data-percentage="100"] .progress-left .progress-bar {
  animation: loading-5 1.5s linear forwards 1.5s;
}

@keyframes loading-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(36);
    transform: rotate(36deg);
  }
}
@keyframes loading-2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(72);
    transform: rotate(72deg);
  }
}
@keyframes loading-3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(108);
    transform: rotate(108deg);
  }
}
@keyframes loading-4 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(144);
    transform: rotate(144deg);
  }
}
@keyframes loading-5 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(180);
    transform: rotate(180deg);
  }
}
.progress {
  margin-bottom: 1em;
}
 .about-left-image img {
    margin-right: 0px;
    margin-bottom: 45px;;
  }


  @media (max-width: 992px) {
  .intro-banner:before {
    display: none;
  } 
  form#contact {
    overflow: hidden;
  }
  .header-area .main-nav .logo h4 {
    font-size: 20px;
  }
  .main-banner .left-content {
    margin-right: 0px;
  }
  .main-banner {
    text-align: center;
    padding: 226px 0px 30px 0px;
  }
  .main-banner:before {
    display: none;
  }
  .main-banner .right-image {
    margin: 30px auto 0px auto;
    text-align: center;
  }
  .features-item {
    margin-bottom: 45px;
  }
  .last-features-item,
  .last-skill-item {
    margin-bottom: 0px !important;
  }
  .skill-item {
    margin-bottom: 30px;
  }
  .about-left-image img {
    margin-right: 0px;
    margin-bottom: 45px;;
  }
  .services .naccs .menu div {
    font-size: 15px;
    font-weight: 500;
  }
  .service-item {
    text-align: center;
  }
  .service-item .icon {
    margin-top: 0px;
    margin-bottom: 30px;
  }
  .about-us .left-image {
    margin-right: 30px;
    margin-left: 30px;
    margin-bottom: 45px;
  }
  .blog-posts {
    margin-left: 0px;
    margin-top: 30px;
  }
  .post-item {
    margin-bottom: 70px;
  }
  .our-portfolio .owl-nav {
    display: none !important;
  }
  .contact-info {
    margin-top: 60px;
  }
  form#contact {
    padding: 45px;
  }
  
}


 .our-portfolio .section-heading,
  .about-us .section-heading,
  .about-us .about-item,
  .about-us p,
  .about-us .main-green-button {
    text-align: center;
  }



    .about-us .about-item {
    margin-top: 15px;
  }

#about {
  padding: 150px 0; 
}

.about-right-content {
  direction: rtl;
  text-align: right;
}
.progress[data-percentage] .progress-right .progress-bar {
  animation: loading-right 1.5s linear forwards;
}

.progress[data-percentage] .progress-left .progress-bar {
  animation: loading-left 1.5s linear forwards 1.5s;
}

@keyframes loading-right {
  0% { transform: rotate(0deg); }
  100% {
    transform: rotate(calc(var(--angle-right, 180deg)));
  }
}

@keyframes loading-left {
  0% { transform: rotate(0deg); }
  100% {
    transform: rotate(calc(var(--angle-left, 180deg)));
  }
}
body {
  font-family: 'Cairo', sans-serif;
  font-weight: 700; 
  color: #2a2a2a;
}

#about h4, 
#about h6,
#about p,
#about span,
#about strong {
  font-family: 'Cairo', sans-serif;
  font-weight: 700; 
}

.about-right-content {
  direction: rtl;
  text-align: right;
}

body {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  color: #2a2a2a;
  font-size: 18px; 
  line-height: 1.8;
}

#about h6 {
  font-size: 22px;
  font-weight: 700;
  color: #fd6a54; 
}

#about h4 {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 20px;
}

#about p {
  font-size: 20px;
  font-weight: 700;
  color: #333;
}

#about span {
  font-size: 18px;
  font-weight: 700;
}

.progress .progress-value div {
  font-size: 30px;
}

.progress .progress-value span {
  font-size: 16px;
}

.about-right-content {
  direction: rtl;
  text-align: right;
}


  
/* 
---------------------------------------------
Services Style
--------------------------------------------- 
*/

.services {
  padding-top: 130px;
  position: relative;
}

.services:after {
  content: '';
  background-image: url(/images/services-left-dec.jpg);
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0px;
  width: 786px;
  height: 1217px;
  z-index: 0;
}

.services:before {
  content: '';
  background-image: url(/images/services-right-dec.jpg);
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 400px;
  width: 161px;
  height: 413px;
  z-index: 0;
}

.services .section-heading {
  text-align: center;
  margin-bottom: 80px;
}

.services .section-heading .line-dec {
  margin: 0 auto;
}

.services .naccs {
  position: relative;
  z-index: 1;
}

.services .icon {
  display: block;
  text-align: center;
  margin: 0 auto;
}

.services .naccs .menu div h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  width: 100%;
}

.services .icon img {
  margin-bottom: 10px;
  max-width: 60px;
  min-width: 60px;
}

.services .naccs .menu {
  text-align: center;
  margin-bottom: 30px;
}

.services .naccs .menu div {
  color: #2a2a2a;
  margin: 0px;
  width: 15%;
  font-size: 20px;
  font-weight: 700;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  position: relative;
  border-radius: 15px;
  transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.services .naccs .menu div .thumb {
  display: inline-block;
  width: 100%;
  padding: 30px 0px;
  background-color: #fff;
}

.services .naccs .menu div.active {
  box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
}

.services ul.nacc {
  height: 100% !important;
  position: relative;
  min-height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.services ul.nacc li {
  opacity: 0;
  transform: translateX(-50px);
  position: absolute;
  list-style: none;
  transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.services ul.nacc li.active {
  transition-delay: 0.3s;
  position: relative;
  z-index: 2;
  opacity: 1;
  transform: translateX(0px);
  box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
  background-color: #fff;
  border-radius: 15px;
  padding: 80px 120px 50px 120px;
}

.services ul.nacc li {
  width: 100%;
}

.services ul.nacc li .right-image img {
  max-width: 420px;
  float: right;
}

.services .nacc .thumb h4 {
  color: #2a2a2a;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  margin-bottom: 25px;
}

.services .nacc .thumb .main-white-button {
  text-align: right;
  margin-top: 40px;
}

.services .nacc .thumb .main-white-button a {
  background-color: #8d99af;
  color: #fff;
}

.services .nacc .thumb .main-white-button a i {
  background-color: #fff;
  color: #8d99af;
}

.services .left-text h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fa65b1 !important;
}

.services .left-text p {
  margin-bottom: 30px;
}

.nacc .ticks-list span {
  display: inline-block;
  opacity: 1;
  margin-right: 45px;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 400;
}



/* 
---------------------------------------------
contact
--------------------------------------------- 
*/

.contact-us {
  padding-top: 130px;
}

.contact-us .section-heading .line-dec {
  margin: 0 auto;
}

.contact-us .section-heading {
  text-align: center;
  margin-bottom: 80px;
}


form#contact:before {
  background-image: url(/images/contact-top-right.png);
  position: absolute;
  left: 0; 
  top: 0;
  width: 726px;
  height: 78px;
  background-repeat: no-repeat;
  content: '';
  z-index: 1;
}

.contact-dec img {
  max-width: 224px;
  position: absolute;
  left: 25px;
  top: -242px;
}

form#contact:after {
  background-image: url(/images/contact-bottom-right.png);
  position: absolute;
  left: 0; 
  bottom: 0;
  width: 532px;
  height: 106px;
  background-repeat: no-repeat;
  content: '';
  z-index: 1;
}


form#contact {
  box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
  position: relative;
  background-color: #fff;
  border-radius: 23px;
  text-align: center;
}

form#contact #map iframe {
  border-top-left-radius: 23px;
  border-bottom-left-radius: 23px;
  margin-bottom: -7px;
  position: relative;
  z-index: 2;
}

.fill-form {
  padding: 80px 60px 80px 30px;
}

.fill-form .info-post {
  margin-bottom: 20px;
}

.fill-form .icon {
  text-align: center;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
  border-radius: 23px;
  padding: 25px 15px;
}

.fill-form .icon img {
  max-width: 60px;
  display: block;
  margin: 0 auto;
}

.fill-form .icon a {
  margin-top: 15px;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: #2a2a2a;
  transition: all .3s;
}

.fill-form .icon:hover a {
  color: #fa65b1;
}

form#contact input {
  width: 100%;
  height: 46px;
  background-color: transparent;
  border: 1px solid #eee;
  outline: none;
  font-size: 15px;
  font-weight: 300;
  color: #2a2a2a;
  padding: 0px 20px;
  border-radius: 23px;
  margin-top: 30px;
}

form#contact input::placeholder {
  color: #aaa;
}

form#contact textarea {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  max-height: 200px;
  min-height: 200px;
  height: 200px;
  border-radius: 23px;
  background-color: transparent;
  border: 1px solid #eee;
  outline: none;
  font-size: 15px;
  font-weight: 300;
  color: #2a2a2a;
  padding: 15px 20px;
  margin-top: 30px;
}

form#contact textarea::placeholder {
  color: #aaa;
}

form#contact button {
  display: inline-block;
  background-color: #fff;
  font-size: 15px;
  font-weight: 400;
  color: #fa65b1;
  margin-top: 30px;
  width: 100%;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
  border: 1px solid #fa65b1;
  transition: all .3s;
  outline: none;
}

form#contact button:hover {
  background-color: #fa65b1!important;
  color: #fff!important;
}


form#contact {
  box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
  position: relative;
  background-color: #fff;
  border-radius: 23px;
  text-align: center;
  margin-bottom: 100px; 
}


@media (max-width: 992px) {
  .intro-banner:before {
    display: none;
  } 
  form#contact {
    overflow: hidden;
  }
  .header-area .main-nav .logo h4 {
    font-size: 20px;
  }
  .main-banner .left-content {
    margin-right: 0px;
  }
  .main-banner {
    text-align: center;
    padding: 226px 0px 30px 0px;
  }
  .main-banner:before {
    display: none;
  }
  .main-banner .right-image {
    margin: 30px auto 0px auto;
    text-align: center;
  }
  .features-item {
    margin-bottom: 45px;
  }
  .last-features-item,
  .last-skill-item {
    margin-bottom: 0px !important;
  }
  .skill-item {
    margin-bottom: 30px;
  }
  .about-left-image img {
    margin-right: 0px;
    margin-bottom: 45px;;
  }
  .services .naccs .menu div {
    font-size: 15px;
    font-weight: 500;
  }
  .service-item {
    text-align: center;
  }
  .service-item .icon {
    margin-top: 0px;
    margin-bottom: 30px;
  }
  .about-us .left-image {
    margin-right: 30px;
    margin-left: 30px;
    margin-bottom: 45px;
  }
  .blog-posts {
    margin-left: 0px;
    margin-top: 30px;
  }
  .post-item {
    margin-bottom: 70px;
  }
  .our-portfolio .owl-nav {
    display: none !important;
  }
  .contact-info {
    margin-top: 60px;
  }
  form#contact {
    padding: 45px;
  }
  
}

@media (max-width: 767px) {
  .header-area .main-nav .logo h4 {
    font-size: 30px;
  }
  .header-area .main-nav .logo h4 img {
    max-width: 30px;
    margin-left: 5px;
  }
  .main-banner .info-stat {
    margin-bottom: 15px;
  }
  .service-item {
    text-align: center;
    padding: 30px;
  }
  .service-item .icon {
    float: none;
    margin-right: 0px;
    margin-bottom: 15px;
  }
  .service-item .right-content {
    display: inline-block;
  }
  .services .naccs .menu div .thumb {
    padding: 5px;
  }
  .services .icon img {
    margin: 0px;
  }
  .services ul.nacc li.active {
    padding: 45px;
  }
  .services .naccs .menu div  {
    font-size: 0px;
  }
  .services ul.nacc li .right-image img {
    float: none;
  }
  .our-portfolio .section-heading,
  .about-us .section-heading,
  .about-us .about-item,
  .about-us p,
  .about-us .main-green-button {
    text-align: center;
  }
  .our-portfolio .section-heading .line-dec {
    margin: 0 auto;
  }
  .our-services .section-heading {
    margin-left: 15px;
    margin-right: 15px;
  }
  .free-quote form input {
    margin-left: 0px;
    padding: 0px 30px;
  }
  .free-quote form button {
    margin-left: 0px;
    border-bottom-left-radius: 40px;
    border-top-right-radius: 0px;
  }
  .blog-posts {
    margin-left: 0px;
    margin-top: 30px;
  }
  .post-item {
    margin-bottom: 30px;
  }
  .post-item .thumb img {
    max-width: 140px;
  }
  .post-item .right-content p {
    display: none;
  }
  .about-us .about-item {
    margin-top: 15px;
  }
  form#contact {
    padding: 30px;
  }
}

.services {
  font-family: 'Cairo', sans-serif;
  direction: rtl;
}

.services .section-heading h4,
.services .section-heading h6 {
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  color: #2a2a2a;
}

.services .left-text h4 {
  font-size: 24px;
  font-weight: 800;
  color: #005f73 !important;
}

.services .left-text p {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.services .menu div {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.services .ticks-list span {
  font-size: 16px;
  font-weight: 700;
  color: #444;
}
.services {
  margin-bottom: 280px;
}


/* 
---------------------------------------------
About Style
--------------------------------------------- 
*/

.about-us2 {
  position: relative;
  padding: 0px;
  margin-top: 130px;
}

.about-us2:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 84%;
  height: 100%;
  background-color: #f1f0fe;
  content: '';
  border-top-left-radius: 500px;
  border-bottom-left-radius: 500px;
}

.accordion {
  margin-top: -40px;
  margin-bottom: -40px;
  background-color: #7a6ad8;
  border-radius: 40px;
  padding: 80px 50px 50px 50px;
}

.accordion-item {
  background-color: #fff;
  border-radius: 40px !important;
  margin-bottom: 30px;
  border: none;
}

.accordion-item .accordion-button {
  outline: none;
  box-shadow: none;
  border-radius: 40px !important;
}

.accordion-button:not(.collapsed) {
  color: #7a6ad8;
  background-color: #fff;
}

h2.accordion-header button {
  padding: 15px 25px;
  font-family: 'Poppins';
  font-size: 16px;
  font-weight: 600;
}

.accordion-button::after {
  font-size: 18px;
  font-weight: 500;
  background-image: none;
  content: '+';
  width: 30px;
  height: 30px;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  background-color: #7a6ad8;
  color: #fff;
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
  line-height: 32px;
  content: '-';
}

.accordion-body {
  padding: 0px 25px 30px 25px;
  font-size: 14px;
  line-height: 28px;
  color: #4a4a4a;
}

.about-us2 .section-heading {
  margin-left: 60px;
  margin-bottom: 0px;
}

.about-us2 .section-heading .main-button {
  margin-top: 50px;
}


@media (max-width: 992px) {
  .header-area .main-nav #search input,
  .header-area .main-nav #search i {
    display: none;
  }
  .header-area .main-nav .logo h1 {
    font-size: 34px;
  }
  .header-area .main-nav .logo {
    border-right: none;
  }

  .services {
    margin-top: 80px;
  }
  .about-us2 {
    margin-top: 100px;
  }
  .accordion {
    padding: 40px 25px 10px 25px;
  }
  .about-us2 .section-heading {
    margin-left: 0px;
    margin-top: 120px;
  }
  .about-us2::before,
  .testimonials::before,
  .contact-us::before {
    display: none;
  }
  .about-us2 .section-heading p,
  .testimonials .section-heading p,
  .contact-us .section-heading p {
    margin-top: 30px;
  }
  .about-us2 .section-heading .main-button {
    margin-top: 30px;
  }
  .about-us2 .main-button a {
    background-color: #7a6ad8;
    color: #fff;
  }
  .courses {
    margin-top: 100px;
  }
  .event_filter ul li {
    display: block;
    margin: 12px 5px;
  }
  .fun-facts {
    margin-top: 70px;
  }
  .fun-facts::before {
    width: 95%;
  }
  .team {
    margin-top: 160px;
  }
  .team-member {
    margin-bottom: 140px;
  }
  .testimonials {
    margin-top: -50px;
    padding: 0px;
  }
  .testimonials .section-heading {
    margin-left: 0px;
    margin-top: 40px;
  }
  .testimonials .item {
    padding: 40px 40px 60px 40px;
  }
  .testimonials .item h4 {
    font-size: 17px;
  }
  .testimonials .item img {
    margin-right: 15px;
  }
  .testimonials .owl-nav {
    display: none;
  }


}

.about-us2 {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
}

.about-us2 h2, 
.about-us2 h6,
.about-us2 p,
.about-us2 button {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
}

.about-us2 h2 {
  font-size: 32px;
}

.about-us2 p, 
.about-us2 .accordion-body {
  font-size: 18px;
  line-height: 32px;
}
.about-us2 {
  margin-top: 150px;
  margin-bottom: 150px;
}

.accordion-button {
  line-height: 1.8; 
  letter-spacing: 0.5px;
  padding-top: 18px;
  padding-bottom: 18px;
}


.accordion-button {
  word-spacing: 4px; 
}


.accordion-button::after {
  margin-left: 12px;
  font-size: 22px;
  line-height: 32px;
  width: 32px;
  height: 32px;
}


.accordion-body {
  line-height: 34px;
  font-size: 18px;
}
.about-us2 .section-heading h6 {
  margin-bottom: 20px; 
  font-size: 20px;
}

.about-us2 .section-heading h2 {
  margin-bottom: 25px; 
  line-height: 1.6;
  font-size: 32px;
}

.about-us2 .section-heading p {
  margin-bottom: 40px;
  line-height: 1.9; 
  font-size: 18px;
}
.contact-us .col-lg-6.offset-lg-3 {
  margin: 0 auto;           
  float: none;                
  display: flex;               
  justify-content: center;     
}

.contact-us .section-heading {
  text-align: center;         
  width: 100%;
}

.contact-us .section-heading h6,
.contact-us .section-heading h4,
.contact-us .section-heading .line-dec {
  margin-left: auto;
  margin-right: auto;
}

/* ===== NAMA Slider Section ===== */
.nam-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  padding: 15px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.nam-header.scrolled {
  padding: 10px 40px;
  background: rgba(255,255,255,1);
}

.nam-header .logo {
  height: 60px;
}

.nam-nav a {
  color: #222;
  font-weight: 600;
  text-decoration: none;
  margin-left: 25px;
  transition: color 0.3s;
}

.nam-nav a:hover {
  color: #0077c8;
}

/* ===== Slider ===== */
.nam-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.nam-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.nam-slide.active {
  opacity: 1;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nam-content {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 16px;
  color: #fff;
  max-width: 500px;
}

.nam-content h2 {
  font-size: 52px;
  margin-bottom: 10px;
}

.nam-content p {
  font-size: 20px;
  margin-bottom: 25px;
}

.nam-content a {
  display: inline-block;
  background: #0077c8;
  color: #fff;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.1s;
}

.nam-content a:hover {
  background: #005fa1;
}

.nam-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  background: rgba(0,0,0,0.4);
  color: #fff;
  font-size: 26px;
  display: flex; justify-content: center; align-items: center;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 10;
}

.nam-arrow:hover {background: rgba(0,0,0,0.6);}
.nam-arrow.left {left: 25px;}
.nam-arrow.right {right: 25px;}

.nam-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.nam-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.3s;
}

.nam-dot.active {
  background: #0077c8;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .nam-content {
    right: 5%;
    left: 5%;
    text-align: center;
  }
  .nam-content h2 {
    font-size: 36px;
  }
}
.nam-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nam-header.scrolled {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.nam-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 60px;
}

.logo {
  height: 60px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}
.nam-slider {
  margin-bottom: 80px;
}

.nam-nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 20px;
  font-weight: 600;
  transition: color 0.3s;
}

.nam-header.scrolled .nam-nav a {
  color: #0a1e40;
}

.nam-nav a:hover,
.nam-nav a.active {
  color: #007bff;
}

@media (max-width: 768px) {
  .nam-header .container {
    flex-direction: column;
  }

  .nam-nav a {
    display: block;
    margin: 10px 0;
  }
}
.nam-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: transparent; 
  box-shadow: none; 
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nam-header.scrolled {
  background: #fff; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.nam-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  flex-wrap: wrap;
}

.logo {
  height: 60px;
  transition: transform 0.3s;
}

.nam-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.nam-nav a {
  color: #fff; 
  text-decoration: none;
  margin: 0 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nam-header.scrolled .nam-nav a {
  color: #0a1e40;
}

.nam-nav a:hover,
.nam-nav a.active {
  opacity: 0.8;
  transform: scale(1.05);
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1001;
  border-radius: 6px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown-content a {
  color: #0a1e40;
  padding: 12px 16px;
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dropdown-content a:hover {
  background-color: transparent;
  border-bottom: 2px solid #007bff;
  color: #007bff;
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.nam-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5px;
  position: relative;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 50px;
}

.logo-text {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #000;
  display: block;
  border-radius: 2px;
}

.nam-nav {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nam-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 0;
}


.dropdown-content a:hover {
  border-bottom: 2px solid #007bff;
}


.logo {
  height: 100px; 
  width: auto; 
  transform: rotate(0deg); 
  object-fit: contain;
}

.nam-header {
  background: rgba(0,0,0,0.3); 
  color: #fff; 
  transition: background 0.3s ease, color 0.3s ease;
}

.nam-header.scrolled {
  background: #fff; 
  color: #0a1e40; 
}

.nam-nav a {
  color: #fff; 
}

.nam-header.scrolled .nam-nav a {
  color: #0a1e40; 
}

.nam-nav a.dropbtn {
  text-shadow: 1px 1px 4px rgba(231, 221, 221, 0.5); 
}
.dropdown-content a {
  text-shadow: 1px 1px 3px rgba(5, 5, 5, 0.3);
}


@media (max-width: 768px) {
  .nam-header .container {
    flex-direction: row;     
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;      
  }

  .logo-area {
    order: 2;                
  }

  .hamburger {
    display: flex;
    order: 1;                
    cursor: pointer;
  }

  .nam-nav {
    position: fixed;
    top: 0;
    left: -100%;             
    height: 100vh;
    width: 250px;
    background-color: #fff;
    flex-direction: column;
    padding: 60px 20px;
    gap: 20px;
    transition: left 0.3s ease;
    box-shadow: 4px 0 15px rgba(0,0,0,0.2);
    z-index: 1000;
  }

  .nam-nav.show {
    left: 0;                 
  }

  .nam-nav a {
    color: #000;
    font-size: 18px;
  }
}

.products-section {
  background-color: #fff;
  padding: 80px 0;
  font-family: 'Cairo', sans-serif;
}

.container {
  display: flex;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.filter-sidebar {
  width: 250px;
  background: #f8f8f8;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.filter-sidebar h3 {
  margin-bottom: 20px;
  color: #003366;
  font-size: 20px;
  border-bottom: 2px solid #003366;
  padding-bottom: 8px;
}

.filter-sidebar ul {
  list-style: none;
  padding: 0;
}

.filter-sidebar li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
}

.filter-sidebar input[type="checkbox"] {
  accent-color: #0056b3;
  width: 18px;
  height: 18px;
}

.products-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.product-card:hover .hover-img {
  opacity: 1;
}

.product-card:hover .main-img {
  opacity: 0;
}


.product-card h4 {
  color: #002b5c;
  font-size: 20px;
  margin: 20px 0 8px;
}

.product-card p {
  color: #555;
  font-size: 15px;
  margin-bottom: 20px;
  padding: 0 15px;
  line-height: 1.6;
}


@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-sidebar {
    display: none;
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.product-card.show {
  opacity: 1;
  transform: translateY(0);
}
.details-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 20px;
  background: #007b8f;
  color: #fff;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.details-btn:hover {
  background: #005f6a;
  transform: scale(1.05);
}

.products-section {
  background: #fff;
  font-family: 'Cairo', sans-serif;
  padding: 50px 0;
}

.product-card {
  width: 90%;
  max-width: 400px;
  margin: 30px auto;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}



h4 {
  margin: 15px 0 5px;
  color: #222;
}

p {
  color: #555;
  padding: 0 15px;
  font-size: 15px;
}

.details-btn {
  display: inline-block;
  background:#0b4d92;
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  text-decoration: none;
  margin: 15px 0 20px;
  transition: background 0.3s;
}

.details-btn:hover {
  background: #0b4d92;
}
.image-box {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.4s ease;
}

.image-box .hover-img {
  opacity: 0;
  z-index: 2;
}

.image-box:hover .hover-img {
  opacity: 1;
}

.image-box .main-img {
  z-index: 1;
}

.products-header {
  text-align: center;
  margin: 60px 0 30px;
}

.products-header h2 {
  font-size: 70px;
  color:#0b4d92; 
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.products-header p {
  font-size: 80px;
  color: #555;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.products-background {
  position: relative;
  background: url("/images/back1.jpg") no-repeat center center/cover;
  background-attachment: fixed;
  padding: 80px 0;
}

.products-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.92); 
  z-index: 0;
}

.products-background > * {
  position: relative;
  z-index: 1;
}

.products-section {
  background: transparent !important;
}

.products-section .container {
  background: transparent !important;
}

html, body {
  overflow-x: hidden;
}
/* القسم الرئيسي */
.glc-hero {
  position: relative;
  width: 100%;
  height: 100vh;                 /* نفس طول شاشة كاملة زي الصورة */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* الخلفية */
.glc-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;              /* مهم جداً عشان تملى الشاشة بالكامل */
  z-index: 1;
}

/* الألوان */
.glc-colors {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.color-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  cursor: pointer;
  background-size: cover ;
  border: 4px solid #ccc;
  transition: 0.3s;
}
.color-circle:hover {
  transform: scale(1.15);
}

/* النص */
.glc-text {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  margin-top: 15px;
}

.glc-text h2 {
  font-size: 45px;
  font-weight: 900;
  margin-bottom: 5px;
}

.glc-text p {
  font-size: 20px;
  margin-bottom: 15px;
  opacity: 0.85;
}

.glc-text a {
  font-size: 16px;
  color: #fff;
  text-decoration: underline;
  opacity: .9;
}

.color-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  cursor: pointer;
  border: 4px solid rgba(255,255,255,0.25);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s;
  background-size: cover;
  background-position: center;
}
.color-circle:hover,
.color-circle:focus,
.color-circle.active {
  transform: scale(1.12);
  border-color: rgba(255,255,255,0.9);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  outline: none;
}
.color-circle:focus { box-shadow: 0 8px 28px rgba(0,0,0,0.45); }




/* Footer main */
.footer {
  background-image: url("/images/avatar/footer-bg.svg");
  background-size: cover;
  background-position: top center;
  font-family: 'Cairo', sans-serif;
  padding-top: 150px;
  position: relative;
}

/* Footer logo box */
.footer-logo-box {
  background: #fff;
  padding: 12px 18px;
  border-radius: 14px;
  display: inline-block;
  box-shadow: 0 0 12px rgba(0,0,0,0.08);
}

.footer-logo-box img {
  height: 70px;
  width: auto;
  display: block;
}

/* Description */
.footer .desc {
  font-size: 18px;
  line-height: 26px;
}

/* Socials */
.socials {
  display: flex;
  gap: 15px;
  padding: 0;
  list-style: none;
}

.socials li a {
  width: 40px;
  height: 40px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  transition: .3s;
}

.socials li a:hover {
  background: #0077ff;
  color: #fff;
  transform: scale(1.1);
}

/* Links */
.links li a {
  color: #6B6F92;
  transition: .3s;
}

.links li a:hover {
  color: #0077ff;
  padding-left: 7px;
}

/* Contact links */
.call-link, .email-link {
  color: #333;
  font-weight: 600;
  text-decoration: none;
}

.call-link:hover, .email-link:hover {
  color: #0077ff;
}

.call-link i, .email-link i {
  margin-inline-end: 6px;
}

/* Map */
.contact_map {
  width: 100%;
  height: 160px;
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.contact_map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* COPYRIGHT FIX UNDER EVERYTHING */
.footer-bottom {
  width: 100%;
  text-align: center;
  padding: 20px 0;
  background: rgba(255,255,255,0.05); /* اختياري */
  border-top: 2px solid #fff;
  position: relative; /* ensure it's below all */
}

.footer-bottom p {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.highlight {
  color: #0077ff;
  font-weight: bold;
}

/* Responsive minor tweaks */
@media(max-width:991px){
  .footer {
    padding-top: 80px;
  }
}

.contact_map {
  width: 100%;          /* عرض كامل للعمود */
  max-width: 100%;      /* منع الخروج عن الحافة */
  height: 180px;        /* ارتفاع مناسب */
  margin-top: 20px;
  border-radius: 12px;  /* حواف دائرية */
  overflow: hidden;     /* لمنع ظهور أي محتوى خارج الصندوق */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* اختياري يعطي شكل أجمل */
}

.contact_map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}



