:root{
    --primary-color:#e74901;
    --secondary-color:#11161e;
    --third-color:#f3f3f4;
    --fourth-color:#383838;
    --white:#fff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
  scroll-padding-top: 100px;
}
.section-padding{
  padding: 100px 0;
}
header{
    background-image: linear-gradient(rgba(17, 22, 30,.7)),url(../images/header1.JPG);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.content{
    position: relative;
    overflow: hidden;
    z-index: 0;
}
.content::before {
  content: "DEEBCO";
  position: absolute;
  z-index: -1;
  top: 10%;
  font-weight: 700;
  letter-spacing: 15px;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 94, 20, 0.1); /* sharp border */
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  filter: drop-shadow(0 0 1px rgba(255, 94, 20, 0.1)); /* sharpen stroke without filling */
}

html[dir="rtl"] .content::before {
  font-size: 70px;
   left: 8%;
}

html[dir="ltr"] .content::before {
  font-size: 70px;
   left: 8%;
}

.primary-btn,.secondary-btn{
    padding: 16px 42px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.5s ease-in-out;
}
.primary-btn{
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.secondary-btn{
    background-color: transparent;
    border: 1px solid var(--white);
}
.primary-btn:hover{
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}
.secondary-btn:hover{
    background-color: rgba(255, 255, 255, 0.2);
}

.navbar {
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background-color: var(--white) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-link,
.navbar.scrolled .navbar-toggler i {
  color: var(--secondary-color) !important;
}
.navbar.show-bg {
  background-color: var(--white) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar.show-bg .nav-link,
.navbar.show-bg .navbar-toggler i{
  color: var(--secondary-color) !important;
}
.nav-link {
  color: var(--white) !important;
  font-size: 1.04rem;
  transition: color 0.3s ease;
}
.navbar .nav-link.active{
  color: var(--primary-color) !important;
  font-weight: 800 !important;
  border-bottom: 2px solid var(--primary-color);
}
.navbar-brand {
  display: inline-flex;
  align-items: center;
  height: auto;
}

.navbar-brand img {
  max-height: 38px;
  height: auto;
  width: auto;
  display: block;
}
@media (min-width: 340px) {
  .navbar-brand img {
    max-height: 50px;
  }
}
@media (min-width: 400px) {
  .navbar-brand img {
    max-height: 55px;
  }
}
.navbar-toggler{
  border: 1px solid var(--primary-color) !important;
  outline: none !important;
  box-shadow: none !important;
}

h1{
    margin-top: 15px;
    font-size: 2.2rem;
    margin-bottom: 25px;
}
@media screen and (min-width:668px){
html[dir="rtl"] .content::before {
  font-size: 150px;
   left: 10%;
}

html[dir="ltr"] .content::before {
  font-size: 150px;
   left: 9%;
}
}
@media screen and (min-width:992px) {
    h1{
      margin-top: 0px;
      font-size: 5rem;
      margin-bottom: 25px;
  }
  header p{
    font-size: 1.25rem;
    max-width: 70%;
  }
  html[dir="rtl"] .content::before {
    font-size: 170px;
    left: 15%;
  }

  html[dir="ltr"] .content::before {
    font-size: 230px;
    left: 15%;
  }
  html[dir="ltr"] .card-1{
    padding-bottom: 22px;
  }
}

header p{
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.8;
  max-width: 100%;
}
.hook-img {
  position: absolute;
  bottom: -80px;
  right: 0;
  max-width: 50%;
  border: 8px solid var(--white);
  
}
.about-us{
  color: var(--primary-color);
  margin-bottom: 30px;
  font-weight: 600;
}
html[dir="rtl"] .about-us{
  border-right: 1px solid var(--primary-color);
  padding-right: 6px;
  font-size: 2.3rem;
}
html[dir="ltr"] .about-us{
  border-left: 1px solid var(--primary-color);
  padding-left: 6px;
  letter-spacing: 2px;
    font-size: 2rem;
}
.about p{
color: var(--gray-700);
}
.about ul{
  list-style-type: none;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 20px;
  margin-top: 30px;
}
.about ul li{
  font-size: 1.2rem;
}
.about ul li i{
  color: var(--primary-color);
}
.box{
  border: 1px solid var(--gray-500);
  border-radius: 30px;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
   height: 100%;

}
.box .icon{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  transition: all 0.5s ease-in-out;
}
.box:hover{
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}
.box:hover .icon{
  background-color: var(--primary-color);
  color: var(--white);
}
.box:hover img{
   transition: all 0.5s ease-in-out;
      filter: grayscale(100%);
}
 .box .img {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.box .img img {
  height: 100%;
  width: 100%;
  object-fit: cover; 
  display: block;
}
  .box .img:after {
    content: "";
    position: absolute;
    width: 300%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .2);
    transform: translate(-50%, -50%) rotate(-45deg);
    transition: all .5s ease-in-out !important;
    z-index: 1;
}
  .box .img:hover:after {
    height: 250%;
    background-color: transparent;
}
h2{
 color: var(--primary-color);
 margin-bottom: 15px;
}
p{
  color: var(--gray-600);
}
.box h3{
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-transform: capitalize;
}
.fa-check{
  color: var(--primary-color);
}
.services {
  background-color: #f4f3f3;
  background-image: url(../images/services-background.png);
  background-repeat: no-repeat;
  background-position: top right;
}
.services .card {
    background-color: var(--white) !important;
    color: black;
    height: 100%;
    width: 100%;
    border-radius: 20px;
    opacity: 1;
    border: 1px solid var(--primary-color);
    transition: all 0.5s ease-in-out;
    display: flex;
    overflow: hidden;
    flex-direction: column;
}

.services .card h3 {
    color: var(--primary-color) !important;
}

.services .card:hover {
    transform: translateY(-5px);
}

.service-image img {
    object-fit: cover;
    width: 100%;
    height: 500px;
}

.services .service-content {
    padding: 15px 20px;
    flex-grow: 1;
}

.services .service-content h3 {
    margin-top: 10px;
    margin-bottom: 40px;
}
.services .service-content p {
    font-size: 1rem;
    line-height: 1.5;
}
.services .service-content i{
  color: var(--primary-color);
}
.service-btn{
  padding: 15px 30px;
  background-color: var(--secondary-color);
  border-radius: 20px;
  border: 1px solid var(--secondary-color);
  text-decoration: none;
  color: var(--white);
}
.works .nav-pills button{
  background-color: var(--secondary-color) !important;
}
.works .nav-pills .active{
    background-color: transparent!important;
    position: relative;
    color: var(--primary-color) !important;
}
.works .inner{
  height: 550px;
  object-fit: cover;
}
.works .inner img{
  height: 100%;
 object-fit: cover;
}
.works .nav-pills .active::after{
   content: "";
   position: absolute;
   width: 100%;
   height: 3px;
   left: 0;
   bottom: -20%;
   background-color: var(--primary-color);
}
.works .layer{
    background-color: rgb(255, 255, 255,.9);
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    opacity: 0;
    transform: translateY(10px);
}
.works .icons a{
    background-color: var(--secondary-color) !important;
    border: 1px solid var(--secondary-color) !important;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--white);
    transition: all .5s;
}
.works .icons a i{
    font-size: 14px;
}
.works .icons a:hover , .team .inner .icon-layer a:hover{
   background-color: var(--secondary-color);
   color: var(--primary-color);
}
.works .inner:hover .layer{
   
    transition: all .5s;
    opacity: 1;
    transform: translateY(0px);
}
.works .content h3{
    font-size: 16px;
}
.works .video{
  height: 400px !important;
}
.works .video video{
  height: 100%;
  object-fit: cover;
}
.company-departments .inner {
  height: 400px;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  padding: 20px 25px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.company-departments .inner:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.company-departments .inner{
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
}

.company-departments .inner h3{
  font-weight: 700;
  font-size: 1.9rem;
  margin-bottom: 10px;
}
.inner-1{
  background-image: linear-gradient(rgba(0, 0, 0,.6),rgba(0, 0, 0,.6)), url(../images/department1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.inner-2{
  background-image: linear-gradient(rgba(0, 0, 0,.6),rgba(0, 0, 0,.6)), url(../images/decoration.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.inner-3{
  background-image: linear-gradient(rgba(0, 0, 0,.6),rgba(0, 0, 0,.6)), url(../images/department3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.inner-4{
  background-image: linear-gradient(rgba(0, 0, 0,.6),rgba(0, 0, 0,.6)), url(../images/department4.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.inner-5{
  background-image: linear-gradient(rgba(0, 0, 0,.6),rgba(0, 0, 0,.6)), url(../images/department5.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.CTA{
   background-color: #12223b;
  background-image: url(../images/CAT-background.png);
  background-repeat: no-repeat;
  background-position: top right;
}

.works .img{
  height: 400px;
}
.works .img img{
  height: 100%;
  object-fit: cover;
}
.choose-us .inner .icon{
  width: 70px;
  height: 70px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
    font-size: 2rem;
   color: var(--primary-color);
    transition: all 0.5s ease-in-out;
}


.choose-us .inner .item{
  border: 1px solid var(--primary-color);
  transition: all 0.5s ease-in-out;
}
.choose-us .inner .item:hover{
  transform: translateY(-4px);
}
.choose-us .inner .item:hover .icon{
  background-color: var(--primary-color);
  color: var(--white);
}
.prev-works .card{
  transition: all .5s ease-in-out;
}
.prev-works .card:hover{
   transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}
.prev-works .card h3{
  color: var(--secondary-color);
  margin-bottom: 10px;
}
.prev-works .card span {
  color: var(--primary-color);
  display: block;
  margin-top: 10px;
}
.prev-works .img{
  height: 350px;
}
.prev-works .img img{
  height: 100%;
  object-fit: cover;
  margin-bottom: 10px;
}

.contact{
  background-color: #efebe7;
}

.contact-form { 
  background-color: var(--white);
  padding: 32px 24px;
  font-size: 14px;
  font-family: inherit;
  color: black;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
  border-radius: 16px;
  background-size: 200% 100%;
  
}
.form-heading{
  color: var(--primary-color);
}
html[dir="rtl"] #UserPhone::placeholder{
text-align: right;
}
html[dir="ltr"] #UserPhone::placeholder{
text-align: left;
}

.contact-form .form-field textarea{
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  resize: none;
  color:#6B6B6B;
  height: 96px;
  border: 1px solid #F6F6F6;
  font-family: inherit;
  background-color: #F6F6F6;
}

.contact-form .form-field input::placeholder, .contact-form .form-field textarea::placeholder,.side input::placeholder{
  color: #6B6B6B;
  font-weight: 700;
}


.contact-form .form-field input{
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
   color:#6B6B6B;
  font-family: inherit;
  background-color: #F6F6F6;
  border: 1px solid #F6F6F6;
  font-weight: 700;
}
.contact-form .form-field input:focus {
  outline: none;
  border-color: var(--primary-color);
  color:#6B6B6B;
  background-color: #F6F6F6;
  box-shadow: none;
  font-weight: 700;
}

.contact-form .form-field textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.contact-form .sendMessage-btn {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  align-self: flex-start;
  font-family: inherit;
  color: var(--white);
  font-weight: 600;
  width: 40%;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 12px 16px;
  font-size: inherit;
  gap: 8px;
  margin-top: 8px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.5s ease-in-out;
}

.contact-form .sendMessage-btn:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}



.footer {
  padding: 80px 0 24px;
  background-color: var(--secondary-color) !important;
}

.footer h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer h5 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.footer p {
  color: var(--gray-400);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--white);
  transition: all .5s ease-in-out;
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.footer-links,
.footer-contact {
  list-style: none;
  padding-left: 0;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgb(200, 200, 200);
  transition: all .5s ease-in-out;;
  text-decoration: none;
}

html[dir="ltr"] .footer-links a:hover {
  color: var(--white);
  padding-left: 0.5rem;
}
html[dir="rtl"] .footer-links a:hover{
   color: var(--white);
   padding-right: 0.5rem;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  color: rgb(200, 200, 200);
}


.footer-divider {
  margin: 40px 0 24px;
  border-color: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  color: rgb(200, 200, 200);
  font-size: 0.875rem;
}

.footer-bottom-links {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  margin-bottom: 0;
  padding-left: 0;
}

.footer-bottom-links a {
  color: rgb(200, 200, 200);
}

.footer-bottom-links a:hover {
  color: var(--white);
}
footer .gmt-logo{
  width: 20%;
}
 .GMT{
 width: 40%;
 }
 html[dir="rtl"]  .end-text{
  text-align: right;
 }
 html[dir="ltr"]  .end-text{
  text-align: left;
}

 .fixed-contact-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1050;
}
.whatsapp-button,.phone-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #25D366; 
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  font-size: 22px;
  transition: background-color 0.3s ease;
}


.whatsapp-button:hover,.phone-button:hover {
  background-color: #1da851;
}
.scroll-top {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  color: var(--white);
  font-size: 25px;
  display: none;
  justify-content: center;
  align-items: center;
}

.phone-dropdown-wrapper {
  position: relative;
}

.phone-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.phone-button:hover {
  background-color: #1da851;
}

.phone-dropdown {
  display: none;
  position: absolute;
  bottom: 60px; 
  right: 0;
  width: 200px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  flex-direction: column;
  gap: 8px;
  z-index: 999;
}

.phone-dropdown a {
  text-decoration: none;
  color: #148c39;
  font-weight: bold;
  display: block;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background 0.2s;
   direction: ltr;          
  unicode-bidi: plaintext; 
  font-family: 'Arial', sans-serif; 
  text-align: left; 
}

.phone-dropdown a:hover {
  background-color: #f0f0f0;
}

.fixed-links{
position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
}
 .fixed-link { 
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 16px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    font-size: 20px;
    z-index: 1050;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s;
  }
  .fixed-link:hover {
    background-color: var(--primary-color);
  }

  .contact-btn{
    background-color: var(--primary-color);
    padding: 12px;
    text-decoration: none;
    color: var(--white);
    border-radius: 10px; 
     font-size: 1.1rem;
    font-weight: 600;
  }
  @media screen and (min-width:992px) {
     .contact-btn{
    padding: 16px 42px;
  }
  }