/* UltraLight */
@font-face {
  font-family: 'hamt';
  src: url('../fonts/ArbFONTS-DINNextLTArabic-UltraLight-1.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}

/* Light */
@font-face {
  font-family: 'hamt';
  src: url('../fonts/ArbFONTS-DINNEXTLTARABIC-LIGHT-1.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

/* Regular */
@font-face {
  font-family: 'hamt';
  src: url('../fonts/ArbFONTS-DINNextLTArabic-Regular-2.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
.page-content svg {
    width:20px;
}
.page-content * {
    padding: revert;
    margin: revert;
    max-width:100%
}
/* Medium */
@font-face {
  font-family: 'hamt';
  src: url('../fonts/ArbFONTS-DINNextLTArabic-Medium-2.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

/* Bold */
@font-face {
  font-family: 'hamt';
  src: url('../fonts/ArbFONTS-DINNextLTArabic-Bold-2.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* Heavy */
@font-face {
  font-family: 'hamt';
  src: url('../fonts/ArbFONTS-DINNextLTArabic-Heavy-1.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

/* Black */
@font-face {
  font-family: 'hamt';
  src: url('../fonts/ArbFONTS-DINNextLTArabic-Black-2.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}
:root {
  --dark:#0F172A;
  --color:#0085FF;
  --container-max-width:1320px;
  --light:#B7DCFF;
}


body {
  direction: rtl;
  font-family: "hamt", sans-serif;
  background: #f1efec;
  line-height: 1.5;
}
.footer-content img {
    height: auto;
}
header {
    height: 100vh;
    background-size: 100% 100%;
    position: relative;
    z-index: 1;
    background-position: center;
    border-radius: 0 0 60px 60px;
}

nav {
    background: var(--dark);
    border-radius: 0 0 20px 20px;
    padding-top: 20px;
    padding-right: 50px;
    padding-bottom: 20px;
    color: #fff;
    padding-left: 50px;
    position: relative;
}

nav >div > ul  > li {
  position: relative;
  margin: 0 10px;
  font-size: 20px;
}
nav >div   > ul  > li.current-menu-item {
  font-weight:bold
}
@media(min-width: 1024px) {
  .sub-menu {
    position:absolute;
    visibility: hidden;
    opacity: 0;
    transition: .35s ease-in-out;
    right: 0;
    top: 100%;
    background: #fff;
    border:1px solid #eee;
    list-style: none;
    width: 260px;
    border-radius: 9px;
  }
  .sub-menu li {
    padding:10px;
    border-bottom: 1px solid #eee;
    color:var(--dark);

  }
  .sub-menu li:last-child {
    border:0;
  }
  nav li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
  }
}

.counters {
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    width: 1320px;
    bottom: 0;
    z-index: 9;
    margin-bottom: -240px;
}

.counters img {
    width: 150px;
    height: 150px;
    background: var(--color);
    padding: 25px;
    border-radius: 50%;
}

.counter-box h2 {
    font-weight: 700;
    font-size: 45px;
}

.counter-box p {
    font-size: 25px;
}

.counter-box {
    position: relative;
    text-align: center;
}


section#about {
   position:relative
}
section#about img {margin-left: 20px;}

main#main {
    margin-top: 300px;
}

div.description {
    margin-bottom: 35px;
}
/* Hidden by default on load */
.hidden {
    display: none !important;
}
.title {
    color: var(--color);
    font-size: 33px;
    font-weight: 900;
    position: relative;
}

.about-content {
    font-size: 22px;
}

/* Ù†ØªØ§Ø¦Ø¬ Ù†ÙØªØ®Ø± Ø¨Ù‡Ø§ - Ø³Ù„Ø§ÙŠØ¯Ø± */
#results {
  position: relative;
  padding-top: 120px;
  padding-bottom: 140px;
}

.results-slider {
  position: relative;
  max-width: 960px;
  margin: 40px auto 0;
  perspective: 1400px;
}

.results-track {
  position: relative;
  height: 420px;
}

.result-item {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  transition: transform 0.5s ease, opacity 0.5s ease, filter 0.5s ease;
  opacity: 0;
  filter: brightness(0.3);
}

.result-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.result-item.is-center {
  opacity: 1;
  filter: brightness(1);
  transform: translateX(-50%) translateZ(120px);
  z-index: 3;
}

.result-item.is-left {
  opacity: 0.7;
  transform: translateX(-80%) translateZ(0) rotateY(12deg);
  z-index: 2;
}

.result-item.is-right {
  opacity: 0.7;
  transform: translateX(-20%) translateZ(0) rotateY(-12deg);
  z-index: 2;
}

.result-item.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.results-track.is-grabbing {
  cursor: grabbing;
}

.results-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 35px;
}

.results-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
}

.results-dot.active {
  width: 26px;
  background: var(--color);
}

.title:after {
    content: '';
    display: block;
    background: var(--color);
    height: 10px;
    width: 91px;
    margin: 19px 0 30px;
    border-radius: 7px;
}

a.serbox {
    margin: 5px 10px;
    position: relative;
    display: block;
}

a.serbox h3 {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 16px;
    text-align: center;
}

.btn {
    border-radius: 5px;
    padding-top: 10px;
    padding-right: 30px;
    padding-bottom: 10px;
    padding-left: 30px;
}

.btn-hamt {
    background: var(--color);
    color: #fff;
}

header:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background: linear-gradient(90deg, #FFFFFF -35.56%, #0F172A 127.33%);
    z-index: -1;
    border-bottom-right-radius: 60px;
    border-bottom-left-radius: 60px;
    mix-blend-mode: Multiply;
}

header:after {
    content: '';
    position: absolute;
    width: 90%;
    right: 5%;
    bottom: 0;
    height: 10px;
    background: var(--color);
    border-radius: 7px;
}

.hero-content {
    height: calc(100% - 100px);
    text-align: center;
    align-items: center;
    color: #fff;
}

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

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

.hero-content a.btn {
    font-size: 21px;
    margin: 25px;
}

section#about .container {
    box-shadow: 0px 20px 35px 0px #0000000D;
    background: #fff;
    padding: 80px;
    border-radius: 20px;
}

.serbox {
    padding: 20px;
    background: #fff;
    box-shadow: 0px 20px 35px 0px #0000000D;
    border-radius: 20px;
    text-align: center;
    height: calc(100% - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.page-content .serbox {
    margin:10px
}
.serbox img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.serbox .btn {
    display: inline-block;
    text-align: center;
    margin: 15px 0;
    width: 202px;
    padding: 12px;
}

.serbox h3 {
    font-size: 26px;
    color: var(--color);
}

.serbox p {
    font-size: 20px;
    height: 25px;
}

p.desc {
    font-size: 25px;
}

.project-item {
    position: relative;
    height: 407px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.statics {
    background: #0F172A80;
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: inherit;
}

.statics h2 {
    font-size: 65px;
}
.feature-box {
  padding: 40px;
  height: 100%;
}
.feature-box img {
  margin-left: 40px;
}
.feature-box h3 {
    font-size: 30px;
}
.feature-box p {
    font-size: 22px;
}
.box-1 , .box-2 , .box-3 {
    min-width: 33.33%;
}
.box-1 .feature-box {color: #fff;background: var(--dark);border-top-left-radius: 50px;}

.box-2 .feature-box {background: var(--color);color: #fff;border-radius: 0 50px 0;}

.box-3 .feature-box {background: var(--light);border-bottom-right-radius: 50px;}

.box-4 .feature-box {background: var(--light);border-bottom-left-radius: 50px;}

.box-5 .feature-box {background: var(--dark);color: #fff;border-bottom-right-radius: 50px;}

p.desc2 {
    font-size: 27px;
    font-weight: bold;
}

.client-box {
    box-shadow: 0px 10px 15px 0px #0000000D;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    margin: 0 10px;
    font-size: 20px;
    width:395px;
    max-width:calc(100% - 20px);
    height: 280px;
}

.feedback {
}

section#clients {
    overflow: hidden;
}

.owl-dots {
    margin: 50px 0 0 0;
    display: flex;
    justify-content: center;
}

button.owl-dot {
    width: 15px;
    height: 15px;
    background: var(--dark);
    border-radius: 19px;
    margin: 0 5px;
    cursor: pointer;
}

button.owl-dot.active {
    background: var(--color);
    width: 50px;
}

.stars img {
}

section#contact {
    margin-left: 60px;
    box-shadow: 0px 20px 35px 0px #0000000D;
    background: #fff;
    padding: 60px;
    border-radius: 20px 0 0;
}

.contact-image img {
    display: block;
    border-radius: 20px;
}

.contact-image {
    margin-right: 60px;
}

form.wpcf7-form {
    direction: rtl;
}

form.wpcf7-form [name] {
    width: 100%;
    padding: 10px;
    border: 1px solid #D4D3D2;
    border-radius: 5px;
    margin-bottom: 10px;
    direction: rtl;
}

footer {
    margin: 50px 0 0 0;
    background: var(--color);
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    color: #fff;
    background: var(--dark);
    border-radius: 20px 20px 0 0;
    margin-top: -20px;
}

.footer-bottom a {
    font-weight: bold;
}

.map iframe {
    display: block;
    width: 100%;
    height:425px;
    border-radius: 20px;
}

.map {
    width: 490px;
}
ul.contacts li {
    margin-bottom:10px
}
ul.contacts li img {
    width: 12px;
    margin-left: 12px;
}
ul.contacts li  p {
    flex:1;
}
h2.footer-title {
    margin-bottom: 20px;
}

.footer-content {
    margin-bottom: 40px;
    font-size: 20px;
}

.social {
    margin: 30px 0 0 0;
}

.social img {
    width: 36px;
}

.about-content {}

section#aboutpage .a {}

section#aboutpage .about-content {
    position: relative;
    margin-right: 110px;
}

section#aboutpage .about-content:before {
    content: '';
    position: absolute;
    width: 125%;
    top: -50px;
    left: -20%;
    background: #fff;
    height: calc(100% + 80px);
    z-index: -1;
    box-shadow: 0px 20px 35px 0px #0000000D;
    padding: 20px;
    border-radius: 20px;
}

section#aboutpage {
    overflow: hidden;
}
.images-posts img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
}
.list p {
    text-align: center;
    background: var(--color);
    border-radius: 10px;
    padding-top: 10px;
    padding-right: 60px;
    padding-bottom: 10px;
    padding-left: 60px;
    color: #fff;
    margin: 15px;
}

.vl {position: relative;align-items: center;margin-left: 22px;}

.vl img {margin-left: 40px;}

.vl h3 {
    color:var(--color);
    font-size: 30px;
}

.vl p {
    font-size: 25px;
}

.vl:after {
    content: '';
    left: 0;
    top: 0;
    width: 10px;
    height: 80px;
    background: var(--color);
    border-radius: 5px;
}

.vl .flex-1 {
    padding-left: 18px;
}
.bars {
    display:none;
    width: 30px;
    height: 30px;
}
.bars img {
    object-fit:contain;
    width: 100%;
}
@media(max-width:1023px) {
    * {
        
    }
    .bars {
        display:flex
    }
    nav .btn {
        display:none
    }
    .main-menu {
        position:absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: var(--dark);
        border-radius:20px;
        flex-direction:column;
        padding:20px;
        display:none
    }
    section#aboutpage .about-content {
        margin:0
    }
}

@media(max-width:767px) {
    * {
        
    }
    button.owl-dot {
        width:5px;
        height:5px
    }
    button.owl-dot.active {
        width:20px
    }
    body {
    }
    .vl {
        flex-direction: column;
        margin-left: 5px;
        text-align: center;
        position: relative;
    }
    .vl:after {
        position: absolute;
        left: -12px;
        width: 3px;
        height: 40px;
        top: 11px;
    }
    .vl img {
        width:40px;
        height:40px;
        margin: 0 0 15px 0;
    }
    .about-image {
        width:100%;
        text-align: center;
    }
    .list {
        display:none
    }

    .feedback {
        
    }
    .map {
        width:100%
    }
    .contact-image img {
        width:100%;
        height:200px;
        border-radius: 5px;
        margin-bottom: 20px;
    }
    .contact-image {
        margin:0;
        order: 1;
    }
     h2.footer-title {
         font-size: 18px;
         position: relative;
         display: flex;
         align-items: center;
         margin-bottom: 5px;
     }
    .footer-title:after {
        content:url(../img/chev.png);
        margin-right: 14px;
        position: absolute;
        left: 0;
        transform: scale(.8);
    }
    .footer-title~ul {
        display:none
    }
    .footer-content {
        font-size:13px
    }
    .footer-content img {
        width:80px;
        height:auto
    }
    
    section#contact {
        margin:auto;
        border-radius:20px;
        padding: 20px;
    }
    section#contact .flex-center {
    flex-direction: column-reverse;
    }
    .feature-box {
        flex-direction:column;
        padding: 20px 5px;
        text-align: center;
    }
    .client-box {
        width:200px;
        font-size: 12px;
        height: fit-content;
    }
    .client-box img {
        height: 10px;
    }
    .feature-box img {
        width:20px;
        height:20px;
        margin-left:0;
        margin-bottom: 10px;
    }
    .feature-box h3 {
        font-size: 16px;
    }
     .feature-box p {
        font-size: 10px;
    }
    .project-item img {
        display:block;
        object-position:center
    }
    p.desc2 {
        font-size:18px
    }
    .project-item {
        height: 150px;
        margin-bottom: 20px;
    }
    .title {
        font-size: 22px;
    }
    
    header {
        height: 53vh;
    }
    .counters {
        position: relative;
        transform: translateX(0%);
        margin: -30px 0 0 0;
        width: 100%;
        right: initial;
    }
    section#about img {
        width: 95px;
        height:auto
    }
    main#main {
        margin-top:0;
        padding:20px;
        overflow: hidden;
    }
    .hero-content a.btn {
        font-size:15px
    }
    .counters img {
        width: 43px;
        height: 44px;
        padding: 8px;
    }
    .hero-content h1 {
        font-size:30px
    }
    .hero-content p {
        font-size:20px
    }
        
    .counter-box h2 {
        font-size: 15px;
    }
    .statics h2 {
        font-size: 32px;
    }
    .counter-box p {
        font-size: 11px;
    }
    section#about .container {
        padding:20px;
        justify-content: center;
    }
        .about-content {
            min-width:100%;
            font-size: 15px;
        }
    .btn {
        padding:8px 20px;
        display: block;
        width: fit-content;
        margin: auto;
    }
    .serbox {
        padding: 4px 4px 25px;
        margin: 12px -6px;
        height: calc(100% - 20px);
    }
    .serbox img {
        height: 128px;
    }
    .serbox h3 {
    font-size: 16px;
}

.serbox p {
    font-size: 10px;
}
    .serbox .btn {
        width: fit-content;
        padding: 8px;
        font-size: 12px;
    }
    section#aboutpage {
        background:#fff;
        border-radius:10px
    }
    .about-image img {
        width: 150px;
        height: auto;
    }
    section#aboutpage .about-content:before {
        display:none
    }
    .vl .flex-1 {
        padding-left:0
    }
    .vl .flex-1 h3 {
    font-size: 10px;
}
.vl .flex-1 p {
    font-size: 10px;
}
}
.fixed-contact-icons {
    position: fixed;
    bottom: 30px;
    left: 25px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

.contact-btn:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.contact-btn svg,
.contact-btn i {
    width: 32px;
    height: 32px;
}

/* Colors */
.contact-btn.phone {
    background: var(--color);        /* green for phone */
}

.contact-btn.whatsapp {
    background: var(--color);        /* official WhatsApp green */
}

/* Optional: ripple effect on click */
.contact-btn:active {
    transform: scale(0.92);
}