* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*  
    font-family: "Roboto", sans-serif;
*/
body {
  background: #fff;
  transition: 0.3s;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  font-family: "Roboto", sans-serif;
}
a {
  text-decoration: none;
  background: transparent;
  color: #fff;
  transition: 0.4s all ease;
}
a:hover {
  color: #fff;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4 {
  color: #fff;
  font-weight: 400;
}
p {
  margin-top: 0;
  font-size: 15px;
  margin-bottom: 0rem;
  color: var(--s-black);
}
section {
  padding: 100px 0;
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.site-btn {
  padding: 12px 28px 12px 28px;
  font-weight: 500;
  background-color: var(--s-black);
  text-transform: uppercase;
  border-radius: 0px;
  font-size: 14px;
  border: 1px solid var(--s-black);
  color: var(--s-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
  transition-duration: 0.3s;
}
.site-btn:hover {
  border-color: var(--s-primary);
  background-color: var(--s-primary);
  color: var(--s-black);
}
.revSite-btn {
  background-color: var(--s-white);
  color: var(--s-black);
}
.site-outline-btn {
  background-color: transparent;
  border-color: var(--s-primary);
  color: var(--s-primary);
}
.titleBar {
  position: relative !important;
  margin-bottom: 20px;
}
.titleBar span {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    font-size: 130px;
    line-height: 150px;
    opacity: 0.07;
    z-index: 0;
    color: var(--s-black);
    font-weight: 400;
}
.titleBar h3 {
    position: relative;
    z-index: 1;
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 35px;
    color: var(--s-black);
    word-wrap: break-word;
    text-transform: uppercase;
}
.titleBar p {
    margin-top: -25px;
    font-size: 15px;
    font-weight: 300;
    color: var(--s-black);
}
.titleBar hr{
    opacity: 1;
    width: 30px;
    height: 4px;
    margin-top: 20px;
    margin-bottom: 25px;
    margin-left: 0;
    text-align: left;
    background-color: transparent;
    background-image: -webkit-linear-gradient(135deg, transparent 10%, #ffc326 10%, #ffc326 50%, transparent 50%, transparent 60%, #ffc326 60%, #ffc326);
    background-image: linear-gradient(-45deg, transparent 10%, #ffc326 10%, #ffc326 50%, transparent 50%, transparent 60%, #ffc326 60%, #ffc326);
    background-size: 7px 7px;
}
.iconbg {
  background: var(--s-secondary);
  border-radius: 0px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
:root {
  --s-primary: #ffde59;
  --s-secondary: #e9cb53;
  --s-third: #f7f7f7;
  --s-white: #ffffff;
  --s-black: #000000;
  --s-font-primary: "Roboto", sans-serif;
}
.bg-s-primary {
  background-color: var(--s-primary) !important;
}
.text-s-primary {
  color: var(--s-primary) !important;
}
.bg-s-secondary {
  background-color: var(--s-secondary) !important;
}
.text-s-secondary {
  color: var(--s-secondary) !important;
}
.text-s-white {
  color: var(--s-white) !important;
}
.bg-s-white {
  background-color: var(--s-white) !important;
}
.text-s-black {
  color: var(--s-black) !important;
}
.bg-s-black {
  background-color: var(--s-black) !important;
}
/*************************************/
/***     Header CSS Start Here     ***/
/*************************************/
/* Sticky Header CSS Start */
header .header-scrolled {
  transition: all 0.5s linear;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  top: 0;
  background-color: #fff;
  z-index: 99999;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.header-scrolled .nav-link {
  color: var(--s-black) !important;
}

/* Main Header CSS */
header {
  background-color: #fff;
  position: relative;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
}
/* TOP SECTION CSS */
.top-section {
  padding: 17px 0;
  background-color: var(--s-secondary);
}
.top-location ul li {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.8;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--s-black);
}
.top-location ul li a {
  color: var(--s-black);
}
.top-location ul li a lord-icon {
  margin-right: 8px;
  color: var(--s-black);
}
.header-info ul li {
  padding: 0 3px;
}
.header-info ul li a {
  color: var(--s-white);
  font-weight: 500;
  transition: 0.3s;
  background-color: var(--s-black);
  border-radius: 100px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.header-info ul li a:hover {
  color: var(--s-black);
  background-color: var(--s-white);
}

/* Bottom Header Start Here */
.dropdown-menu {
  left: 15px;
  border-radius: 0;
  border: none;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.dropdown-item:hover {
  background-color: var(--s-black);
  color: var(--s-primary);
}
@media (min-width: 992px) {
  .dropdown-hover:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}
.bottom-header {
  background-color: var(--s-third);
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 999999;
}
.bottom-header nav .navbar-brand {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.bottom-header nav .navbar-nav .nav-item .nav-link.active::after {
  transform: scale(1);
}
.bottom-header nav .navbar-nav .nav-item .nav-link {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  color: var(--s-black);
  padding: 3px 2px;
  margin: 0 15px;
  border-radius: 50px;
  position: relative;
}
.bottom-header nav .navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 0%;
  right: 0%;
  height: 1px;
  border-radius: 0px;
  border: 0 !important;
  background: currentColor;
  z-index: 1;
  transform: scale(0);
  transition: transform 0.8s cubic-bezier(0.16, 1.08, 0.38, 0.98);
}
.bottom-header nav .navbar-nav .nav-item .nav-link:hover::after {
  transform: scale(1);
}

/* Banner Section Start Here */
.Mainbanner {
  /* padding: 40px 40px 40px 40px; */
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  width: 100%;
  display: block;
}
.animate-text {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.5s ease-in-out;
}
.animate-text.active {
  opacity: 1;
  transform: translateY(0);
}
#banner {
  /* background-image: url(http://alkhalifatowingserives.com/wp-content/uploads/2025/04/banner.jpg); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  width: 100%;
  height: 750px;
  min-height: 750px;
  display: block;
  border-radius: 0px;
}
#banner::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 0px;
  /* background: linear-gradient(
          90deg,
          rgba(9, 4, 45, 0.9) 0%,
          rgba(28, 16, 104, 0) 100%
        ); */
  background-color: #00000096;
}
#banner .container .row {
  height: 750px;
  min-height: 750px;
}
#banner .banner-text {
  position: relative;
  z-index: 2;
  margin-top: 0px;
}
#banner .banner-text h5 {
  display: block;
  margin-bottom: 15px;
  color: var(--s-white);
  font-weight: 400;
  font-size: 15px;
  text-transform: uppercase;
}
#banner .banner-text h2 {
  font-size: 70px;
  display: block;
  margin-bottom: 20px;
  color: var(--s-white);
  font-weight: 800;
}
#banner .banner-text h2 span {
  color: var(--s-primary);
}
#banner .banner-text p {
  margin-bottom: 35px;
  color: var(--s-white);
  font-size: 22px;
}

/* Hero Section STart Here */
.heroSection {
  background-color: var(--s-black);
  overflow: hidden;
}
.hero-box {
  padding: 25px 20px;
  position: relative;
}
.hero-box::before {
  content: "";
  position: absolute;
  background-color: var(--s-primary);
  left: -50px;
  -webkit-transform: skewX(-30deg);
  transform: skewX(-30deg);
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.inner-hero-box {
  margin-bottom: -7px;
  position: relative;
  overflow: visible;
  margin-top: 0;
  display: inline-block;
  max-width: 100%;
}
.hero-icon {
  padding-right: 15px;
  vertical-align: middle;
  display: table-cell;
}
.hero-icon-bg {
  width: 2em;
  height: 2em;
  text-align: center;
  vertical-align: bottom;
  background-color: rgba(35, 35, 35, 0.1);
  font-size: 24px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-content {
  width: auto;
  vertical-align: middle;
  display: table-cell;
}
.hero-content h3 {
  font-size: 22px;
  line-height: 48px;
  text-transform: uppercase;
  color: var(--s-black);
  font-weight: 400;
}
.hero-box-2 {
  padding: 25px 20px;
  background-color: var(--s-black);
}
.teaser h3 {
  font-size: 38px;
  line-height: 48px;
  color: var(--s-primary);
}
.hero-box-3 {
  position: relative;
}
.hero-box-3::before {
  content: "";
  position: absolute;
  background-color: var(--s-primary);
  -webkit-transform: skewX(-30deg);
  transform: skewX(-30deg);
  top: 0;
  right: -50px;
  left: 0;
  bottom: 0;
  z-index: 0;
}

/* About Us Section Start Here */
.list {
  margin-bottom: 40px;
  margin-top: 30px;
  display: inline-block;
}
.list li {
    font-size: 17px;
    padding: 10px;
    color: var(--s-black);
    border-top: 1px solid var(--s-primary);
}
.list li i {
  font-size: 17px;
  color: var(--s-primary);
  font-weight: 400;
  margin-right: 7px;
}

/* Counter Section */
.counterSection{
    background-image: url(http://alkhalifatowingserives.com/wp-content/uploads/2025/04/counters.jpg);
    background-attachment: fixed;
    background-position: top;
}
.counterSection:after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000000bb;
    z-index: 0;
}

.counter-content h4{
    font-size: 40px;
    font-weight: 700;
    margin: 17px 0 0;
    color: var(--s-white);
}
.counter-content p{
    color: var(--s-white);
}

/* Services Section */
.services-box{
    text-align: center;
    box-shadow: 0px 2px 18px 4px rgba(145, 145, 145, 0.35);
    background-color: #fff;
    border-radius: 0px;
    padding: 25px 20px;
}
.services-box h2{
    color: var(--s-black);
    font-size: 25px;
    font-weight: 500;
    margin-top: 15px;
}
.services-box p{
    margin-bottom: 20px;
}

/* WHy CHoose Us Section */
.WhyChooseUs-section {
  background-color: var(--s-black);
}

/* Terstimonial Section */
.td-single-testimonial-item
{
  background: var(--s-black);
  padding: 40px;
  transition: .8s;
  border-radius: 0px;
}
.td-testimonial-rating
{
  color: #FDCC0D;
}
.td-testimonial-rating ul li
{
  margin: 0 1px;
}
.td-testimonial-header .td-testimonial-image
{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 50px;
  width: 50px;
  margin-right: 15px;
  position: relative;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--s-primary);
}
.td-testimonial-image h3
{
  margin-bottom: 0;
  font-size: 25px;
  color: var(--s-black);
}
.td-name-designation h6
{
  font-size: 18px;
  margin-bottom: 3px;
  font-weight: 400;
  color: var(--s-primary);
  transition: .3s;
}
.td-name-designation p
{
  color: var(--s-white);
  font-weight: 300;
}
.td-testimonial-description
{
  margin: 20px 0 30px 0;
}
.td-testimonial-description p
{
  display: block;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 1rem;
  color: var(--s-white);
}

/* Get a Quote Section */
.getQuoteSection{
  background-image: url(http://alkhalifatowingserives.com/wp-content/uploads/2025/04/quote.jpg);
}
.getLeftBox{
  background-color: rgba(233, 203, 83, 0.795);
  padding: 65px 35px;
}
.hock-image{
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -55px;
}
.getleftboxcontent p{
  font-size: 18px;
  margin: 90px 0;
}
.getRightBox{
  background-color: #000000e1;
  padding: 65px 35px;
}
.getleftboxcontent input, .getleftboxcontent .form-select{
  background-color: transparent;
  border-radius: 0;
  color: var(--s-white);
}
.getleftboxcontent input:focus {
  color: #fff;
  background-color: transparent;
  border-color: #fff;
  outline: 0;
  box-shadow: none;
}
.getleftboxcontent .form-select{
  filter: brightness(0) invert(1);
}
.getleftboxcontent .form-select.form-select:focus {
  border-color: #FFF;
  outline: 0;
  box-shadow: NONE;
}
select#Category option {
  color: #000;
}
select#Category option:hover {
  color: #000;
  background-color: #e9cb53;
}
.getleftboxcontent input::placeholder{
  color: var(--s-white);
}

/* Footer Section Start Here */
footer {
  background-color: var(--s-black);
  position: relative;
  padding-top: 25px;
}
/* footer:after {
          content: "";
          position: absolute;
          left: 0;
          right: 0;
          top: 0;
          width: 100%;
          height: 100%;
          background-color: #222222f5;
          z-index: 0;
        } */
.footer-box h2 {
  font-weight: 400;
  font-size: 25px;
  margin-bottom: 17px;
  color: var(--s-white);
}
.footer-box p {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--s-white);
}
.footer-box h3 {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 25px;
  color: var(--s-white);
  text-transform: uppercase;
}
.footer-box ul li {
  margin-bottom: 0.5rem;
}

.footer-box ul li a {
  font-size: 15px;
  color: var(--s-white);
}
.footer-box ul li a:hover {
  color: var(--s-primary);
  letter-spacing: 1px;
}
.footer1stRow {
  padding: 2rem 0 1.5rem 0;
  position: relative;
  z-index: 1;
  /* border-top: 1px solid #2525251e; */
}
.socialmediaicon ul li a i {
  background-color: var(--s-primary);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-right: 8px;
  padding: 0;
  color: var(--s-black);
  transition: 0.3s;
  border-radius: 2px;
}
.socialmediaicon ul li a i:hover {
  transform: rotate(360deg);
  background-color: var(--s-white);
  color: var(--s-black);
}
.SocialIcon h3 {
  font-size: 17px;
  margin-bottom: 15px;
  display: block;
  font-weight: 600;
}
.copyRight {
  border-top: 1px solid #ffffff5b;
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

/* Back To Top CSS Start Here */
.button {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: transparent;
  cursor: pointer;
  border: 2px solid var(--s-primary);
  overflow: hidden;
  border-radius: 30px;
  color: var(--s-primary);
  transition: all 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}
.btn-txt {
  z-index: 1;
}
.type1::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s ease-in-out;
  background-color: var(--s-primary);
  border-radius: 30px;
  visibility: hidden;
  height: 10px;
  width: 10px;
  z-index: -1;
}
.button:hover {
  box-shadow: 1px 1px 200px var(--s-white);
  color: #fff;
  border: none;
}
.type1:hover::after {
  visibility: visible;
  transform: scale(100) translateX(2px);
}






/*=========================================  
       ABOUT US PAGE CSS START HERE 
============================================*/
.innerPagesBanner {
  background-color: #000000;
  background-image: url(http://alkhalifatowingserives.com/wp-content/uploads/2025/04/inner-services.jpg);
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: 0% 65%;

}
.innerPagesBanner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: #000000b4;
}
.innerpage-title {
  position: relative;
  z-index: 2;
  margin-top: 0px;
}
.innerpage-title h2 {
  font-size: 60px;
  font-style: normal;
  font-weight: 800;
  line-height: 78px;
  position: relative;
  display: block;
  color: var(--s-white);
  margin-bottom: 10px;
}
.breadcrumb-content ul li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: var(--s-white);
  margin: 0 5px;
}
.breadcrumb-content ul li a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: var(--s-white);
  margin-right: 5px;
}
/* ourMission */
.ourMission{
  background-color: var(--s-primary);
}
.valueBox {
  box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.1);
  padding: 3em 2.5em 3em 2.5em;
  background-color: var(--s-black);
}
.valueBox h4 {
  color: var(--s-secondary);
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 25px;
  margin-top: 25px;
  letter-spacing: 1px;
}
.valueBox p {
  color: var(--s-white);
}



/*============================================
     Inner Services Pages CSS STart Here 
=============================================*/
.innerServicesPage h2{
  font-size: 45px;
}
.innerServicesPage p
{
  margin-bottom: 20px;
}
.innerServicesImage img
{
  height: 400px;
  object-fit: cover;
  object-position: center;
  object-position: top;
}







/*======================================================
             Responsive CSS STart Here
========================================================*/
/* 767px Start Here */
@media (max-width:991px){
  section{
    padding: 50px 0;
  }
  .top-section 
  {
    display: none;
  }
  .bottom-header{
    padding-left: 15px;
    padding-right: 15px;
  }
  .navbar-nav
  {
    align-items: self-start !important;
    border-top: 1px solid #bc8f8f;
    margin-top: 10px;
    padding: 8px 0;
  }
  .bottom-header nav .navbar-nav .nav-item .nav-link {
    font-size: 15px;
    padding: 3px 2px;
    margin: 0px 0; 
    color: var(--s-secondary);
  }
  .header-btn
  {
    display: none;
  }
  .bottom-header .navbar-brand img {
    width: 100px !important;
  }
  .site-btn {
    padding: 15px 30px 15px 30px;
    font-size: 14px;
  }
  .titleBar h3{
    font-size: 25px;
    
  }
  .titleBar span{
    font-size: 13px;
    letter-spacing: 1px;
  }
  .titleBar span::before {
    top: 16.5px;
  }
  .titleBar span::after{
    top: 16.5px;
  }
  .titleBar p{
    font-size: 15px;
  }
  p{
    font-size: 14px;
  }
 /* Banner */
 .Mainbanner
 {
   padding: 0;
 }
 #banner{
   border-radius: 0;
 }
 #banner::before
 {
   border-radius: 0;
 }
 #banner .banner-text h2{
   font-size: 40px;
 }
 #banner .banner-text h5{
   font-size: 12px;
 }
 #banner .banner-text p{
   font-size: 15px;
 }
 #banner{
   min-height: 500px;
   height: 500px;
 }
 #banner .container .row {
   min-height: 500px;
   height: 500px;
 }

/* Hero */
.hero-box-3::before{
  transform: skewX(0deg);
}
.hero-box::before{
  transform: skewX(0deg);
}

/* COunter */
.counter-box {
  margin: 21px 0;
}

.hock-image{
  display: none;
}

/* Inner Services */
.innerPagesBanner {
  height: 200px;
  padding-bottom: 30px;
}
.innerpage-title h2 {
  font-size: 32px;
  line-height: 35px;
  margin-bottom: 10px;
}
.content-box p{
  font-size: 12px;
}
.content-box h5{
  font-size: 15px;
}
.contactUSPage{
  background-color: #e6e6e6;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.07);
  padding: 30px 8px !important; 
  border-radius: 15px;
  margin: 0;
  border-radius: 10px !important;
}
}