
:root {
  --primary-color: #e57f1b;
  --secondary-color: #05213C;
  --black-color: #292929;
  --light-black-color: #343536;
  --dark-color: #313131;
  --body-color: #5A5A5A;
  --gray-color: #777F81;
  --light-color: #fdfdfd;

  /* Bootstrap Theme Color  */
  --bs-gray-100: #F6F6F6;
  --bs-gray-300: #DCDCDC;
  --bs-primary-text-emphasis: var(--primary-color);
  --bs-body-color-rgb: 90, 90, 90;
  --bs-light-rgb: rgba(255, 255, 255, 1);
  --bs-dark-rgb: 41, 41, 41;
  --bs-primary-rgb: 178, 142, 113;
}

/* Fonts */
:root {
  --heading-font: "Poppins", sans-serif;
  --body-font: "Poppins", sans-serif;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
}

body {
  background-color: var(--light-color);
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 164%;
  letter-spacing: 0.32px;
  color: var(--body-color);
  margin: 0;
}

p {
  color: var(--body-color);
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

a:hover {
  color: var(--primary-color);
}

.text-light {
  color: var(--light-color) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-black {
  color: var(--black-color) !important;
}

.bg-light {
  background-color: var(--light-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.bg-gray {
  background-color: var(--bs-gray-100) !important;
}

.padding-small {
  padding-top: 4em;
  padding-bottom: 4em;
}

.padding-medium {
  padding-top: 10em;
  padding-bottom: 10em;
}

.padding-large {
  padding-top: 12em;
  padding-bottom: 12em;
}

@media only screen and (max-width: 990px) {
  .padding-small {
    padding-top: 3em;
    padding-bottom: 3em;
  }
}

.margin-small {
  margin-top: 8.125em;
  margin-bottom: 8.125em;
}

.margin-medium {
  margin-top: 10em;
  margin-bottom: 10em;
}

.margin-large {
  margin-top: 12em;
  margin-bottom: 12em;
}


/* - Section Title
--------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
  font-family: var(--heading-font);
  text-transform: capitalize;
  font-weight: 600;
  letter-spacing: 0.84px;
  line-height: 115%;
}

h6 {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
}

/* - Content width
--------------------------------------------------------------*/
.container-md {
  max-width: 1465px;
}

.container-lg {
  max-width: 1750px;
}

/* Animation */
@media (min-width: 200px) {
  .animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }
}

/* Animate Slide */
@keyframes slide {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }

  100% {
    transform: translateY(0rem);
    opacity: 1;
  }

  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}

@-webkit-keyframes slide {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }

  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}

.slide {
  -webkit-animation-name: slide;
  animation-name: slide;
}

/*--------------------------------------------------------------
/** 2.4 Buttons
--------------------------------------------------------------*/

.btn {
  --bs-btn-padding-x: 2rem;
  --bs-btn-padding-y: 1rem;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 500;
  text-transform: uppercase;
  border-radius: 0px;
  transition: all 0.5s ease-in-out;
}

/* - Primary Buttons
--------------------------------------------------------------*/
.btn-primary {
  --bs-btn-color: var(--light-color);
  --bs-btn-bg: var(--primary-color);
  --bs-btn-border-color: var(--primary-color);
  --bs-btn-hover-color: var(--light-color);
  --bs-btn-hover-bg: var(--primary-color);
  --bs-btn-hover-border-color: var(--primary-color);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: var(--light-color);
  --bs-btn-active-bg: var(--primary-color);
  --bs-btn-active-border-color: var(--primary-color);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--light-color);
  --bs-btn-disabled-bg: var(--primary-color);
  --bs-btn-disabled-border-color: var(--primary-color);
}

/* - Button Hover Effect
--------------------------------------------------------------*/
.btn-slide.btn-bg {
  background-color: var(--light-color);
}

.btn-slide {
  position: relative;
  display: inline-block;
  border: none;
  cursor: pointer;
  background-color: var(--secondary-color);
}

.btn-slide.hover-slide-right::before {
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 3%;
  position: absolute;
  content: "";
  background-color: var(--primary-color);
  transition: 0.3s ease-in-out;
}

.btn-slide span {
  position: relative;
  display: inline-block;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.3s;
  font-weight: 600;
}

.btn-slide.hover-slide-right:hover::before {
  width: 100%;
}

.btn-slide.hover-slide-right:hover span {
  color: var(--light-color);
}

/*--------------------------------------------------------------
/** 3.CONTENT ELEMENTS
--------------------------------------------------------------*/

/* Dropdown
------------------------------------------------------------- */
.dropdown-item {
  text-transform: uppercase;
  font-weight: 500;
  color: var(--dark-color);
  font-family: var(--heading-font);
}

.dropdown-item.active,
.dropdown-item:hover,
.dropdown-item:active {
  color: var(--dark-color);
  background-color: var(--bs-gray-300);
}

.dropdown-toggle::after {
  border: none;
  margin-left: 0em;
  vertical-align: 0em;
}


/* Breadcrumb
------------------------------------------------------------- */
.breadcrumb-item+.breadcrumb-item::before {
  color: var(--bs-light);
  position: relative;
}


/* Pagination
------------------------------------------------------------- */
.pagination {
  --bs-pagination-color: var(--black-color);
  --bs-pagination-hover-color: #fff;
  --bs-pagination-hover-bg: var(--primary-color);
  --bs-pagination-hover-border-color: var(--primary-color);
  --bs-pagination-focus-color: #fff;
  --bs-pagination-focus-bg: var(--primary-color);
  --bs-pagination-focus-box-shadow: none;
  --bs-pagination-active-bg: var(--primary-color);
  --bs-pagination-active-border-color: var(--primary-color);
}


/* Accordion
------------------------------------------------------------- */
.accordion {
  --bs-accordion-btn-icon: url('https://api.iconify.design/ion/caret-down.svg?color=%23F2B821&width=30');
  --bs-accordion-btn-active-icon: url('https://api.iconify.design/ion/caret-down.svg?color=%23F2B821&width=30');
  --bs-accordion-border-radius: 0px;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
}


/* Form
------------------------------------------------------------- */
.form-control:focus {
  border: 1px solid #acacac;
  box-shadow: none;
}


/* Swiper
------------------------------------------------------------- */
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 8px);
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 12px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 12px));
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--dark-color);
}


/* Modal Video
------------------------------------------------------------- */
.modal-dialog {
  max-width: 800px;
  margin: auto;
  height: 100vh;
  display: flex;
  align-items: center;
}

.modal-content {
  padding: 0;
  background-color: #f5f3ef;
  border: none;
  border-radius: 0
}



/*----------------------------------------------*/
/* 4 SITE STRUCTURE */
/*----------------------------------------------*/

/* 4.1 Header
/*----------------------------------------------*/
a.nav-link {
  text-transform: capitalize;
  font-weight: 500;
  color: var(--dark-color);
  font-family: var(--heading-font);
  transition: all 0.3s ease-in-out;
}

a.nav-link::after {
  content: "";
  text-align: center;
  display: block;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.9s;
}

a.nav-link.active::after,
a.nav-link:focus::after,
a.nav-link:hover::after {
  width: 100%;
  transition: width 0.9s;
}

#primary-header .dropdown .search::after {
  content: none;
}

#primary-header .search-dropdown .dropdown-menu {
  width: 260px;
}

#primary-header .search-dropdown .dropdown-menu input {
  min-width: 100%;
}

#primary-header .search-dropdown .dropdown-menu button {
  padding: 0 12px;
  min-height: -webkit-fill-available;
  border-radius: 0.25rem;
}

@media only screen and (max-width: 990px) {
  a.nav-link {
    font-size: 1.5rem;
  }

  a.nav-link.active::after,
  a.nav-link:focus::after,
  a.nav-link:hover::after {
    width: 0%;
  }

  a.nav-link.active,
  a.nav-link:focus,
  a.nav-link:hover {
    color: var(--primary-color) !important;
  }
}


/* 4.2 Brand Section
/*----------------------------------------------*/
img.brand-image {
  width: 93%;
  margin: 0 auto;
  background-color: white;
  box-shadow: 1px 0 7px ;
  padding: 10px;
  border-radius: 7px;
  transition: all 0.3s ease-in;
}

img.brand-image:hover {
  filter: contrast(1);
}


/* 4.3 About Section 
/*----------------------------------------------*/
svg.play-icon {
  animation: play 1.5s alternate infinite ease-in;
}

@keyframes play {
  0% {
    transform: scale(.8);
  }

  100% {
    transform: scale(1.1);
  }
}



/* 4.4 Services Section
/*----------------------------------------------*/
/* Jarallax */
.jarallax {
  min-height: 350px;
  transition: all 0.5s ease-in-out;
}

.service-block {
  transition: all 0.5s ease-in-out;
}

.service-block:hover .jarallax {
  opacity: 0;
}

.service-btn {
  transition: all 0.5s ease-in-out;
}

.service-block:hover .service-btn {
  color: var(--dark-color);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}


/* 4.5 Project Section
/*----------------------------------------------*/
.swiper-slide.swiper-width {
  width: auto !important;
}

.project-content .portfolio-img {
  transition: all 0.5s ease-in-out;
}

.project-content:hover .portfolio-img {
  opacity: 0.3;
}

.portfolio-description {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.project-content:hover .portfolio-description {
  opacity: 1;
}



/* 4.6 CTA Section
/*----------------------------------------------*/
.border-dotted {
  border: 2px dashed rgba(255, 255, 255, 0.5);
}



button.filter-button {
  border: 0;
  background: transparent;
  text-transform: uppercase;
  transition: all 0.5s ease-in-out;
  border-radius: 20px;
}

button.filter-button.active,
button.filter-button:hover {
  color: var(--bs-light);
  background: var(--primary-color);
}


.plan-post {
  border: 1px solid var(--secondary-color);
}

span.price-tick {
  color: var(--primary-color);
}

.price-option {
  height: 300px;
}


/*--------------------------------------------------------------
 5.3 Reviews page
--------------------------------------------------------------*/

.reviews-components {
  box-shadow: 0px 12px 90px rgba(12, 12, 12, 0.06);
}

iconify-icon.quote {
  font-size: 60px;
  color: var(--primary-color);
}

.rate {
  color: var(--primary-color);
}


#billboard img{
  width: 100%;
}
.top-head-flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-head{
  background-color: #ffebd7;
  color: white;
  padding: 5px 0;
  width: 100%;
  z-index: 996;
}
.main-flex{
  gap: 20px;
}
#features{
background-color: #f0f0f0;
}
.blue-bg{
  padding: 70px 0;
  background-color: #05213ce1;
}
.time{
  padding: 8px 0;
  background-image: url(../images/imgs/check-mark-icon.png);
  background-repeat: no-repeat;
  padding-left: 40px;
  background-position-y: center;
}
.cta-image img{
  border-radius: 10px;
} 
.portfolio-img{
  box-shadow: 1px 0 4px #999999;
}

#footer{
  background-color:#e0e0e0;
  background-image: url(../images/imgs/footer-bg-2.jpg);
  background-size: cover;
  background-position: bottom;
  color: white !important;
  border-top: 4px solid  var(--primary-color);
}
#footer h5{
  color: white !important;
  
}
.footer-bg{
  background-color: #05213cb9;
}
.menu-list li{
  background-image: url(../images/imgs/arrow-right.png);
  background-repeat: no-repeat;
  background-position-y: center;
  padding: 5px 30px;
}
.footer-bottom p{
  color: white !important;
}
.brands-img img{
  padding: 5px;
  width: 30px;
  background-color: #ffffff;
}
.top-left img{
  width: 20px;
}



/* about css */
#about-us{
  background-image: url(../images/imgs/about-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
#about-us h3{
  margin: 30px 0 15px 0;
}
#about-us p{
  text-align: justify;
}
.project-content{
  position: relative;
}

.image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #51290133;
}

.project-content:hover .overlay {
  opacity: 1;
}

.text {
  color: rgb(0, 0, 0);
  font-size: 20px;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.brand-img img{
  width: 35px;
  background-color: #e57f1b;
  padding: 6px;
}
.brand-img img:hover{
  background-color: #000d19;
}
.project-content{
  margin: 15px 5px;
}
.portfolio-img{
  width: 100%;
  margin: 0 auto
}
.info-flex{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}
.navbar-1{
  display: none;
}
.billboard-text{
  padding: 50px;
}
.banner{
  background-image: url(../images/imgs/bg-service.jpg);
 padding: 50px 0;
  margin-top: 81px;
}
.banner h1{
  text-align: center;
  color: white;
  padding: 50px 0 0 0;
}
.banner p{
  text-align: center;
  color: white;
}
.mission-box{
  background-color: #05213C;
  color: white;
  padding: 20px 30px;
}
.mission-box p{
  color: white;
}
.mission-box a{
  color: white;
}
.mission-box1{
  background-color:#fff6ed;
  padding: 20px 30px;
}
.cat-cap h5{
  font-size: 35px;
  text-align: center;
  padding-bottom: 20px;
}
ul{
  padding: 0;
  margin: 0;
}
.feature-list li{
 padding-left: 30px;
 margin: 4px 0;
  list-style: none;
  background-image: url(../images/imgs/check-mark-icon.png);
  background-repeat: no-repeat;
  background-position-y: center;
}

body {
  padding: 0;
  margin: 0;
}

.mansory-gallery {
  display: flex;
  flex-wrap: wrap;
  padding: 0.5rem;
  position: relative;
}

.mansory-gallery .column {
  flex: 25%;
}

.mansory-gallery .column img {
  border: 0.5rem solid #fff;
  border-radius: 1.5rem;
  box-sizing: border-box;
  display: block;
  width: 100%;
}

/* industry we serve */

.inustry{
  padding: 4px 0 0px 0;
}
.inustry .row {
  --bs-gutter-x: 0;
}
.app-image {
  position: relative;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
}
.app-image img{
  width: 100%;
}

.app-image h3 {
  position: absolute;
  bottom: 20px;
  left: 15px;
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  transition: 0.5s;
}

.app-image::before {
  position: absolute;
  content: "";
  background-color: #000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.65;
  transition: 0.5s;
}

.app-image:hover::before {
  opacity: 0.8;
}

.app-image:hover h3 {
  bottom: 35px;
}
.indus-det{
  padding: 43px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.indus-det h2{
font-size: 45px;
text-transform: uppercase;
padding: 0 0 10px;
font-weight: 600;
text-align: center;
color: #000;
}
.indus-det p{
padding-bottom: 10px;
text-align: center;
line-height: 28px;
}

@media (max-width: 768px) {
  .mansory-gallery .column {
    flex: 50%;
  }
}

@media (max-width: 500px) {
  .mansory-gallery .column {
    flex: 100%;
  }
}

.icon img{
  background-color: #e57f1b;
  width: 62px;
  height: 62px;
  padding:15px;
  border-radius: 50%;
}
.address{
 border: 1px solid rgb(222, 222, 222);
 padding: 20px;
 height: 240px;
 background-color: #dfeffe8f;
 border-radius: 20px;
}

.table-main{
  width: 100%;
  text-align: center;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 1rem;
  font-family: Arial, sans-serif;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

th, td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

th {
  background-color: #f4f4f4;
  font-weight: bold;
  color: #333;
}

tr:hover {
  background-color: #f1f1f1;
}
#billboard{
  margin-top: 122px;
}
.page-part{
  padding: 30px 0;
}
.enquiry{
  border-radius: 30px;
  margin: 40px;
} 
.form-group {
  margin: 10px 0 !important;
  border-radius: 10px;

}
.form-control{
border-left: 3px solid #e5801c !important;
margin: 10px 0 !important;
}

.enq-btn{
  background-color: #FF6600;
  color: white;
  padding: 10px 14px !important;
width: 160px;
  border-radius: 10px;
}

.Submit-box{
  background-color: #e5801c;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .table-main{
    overflow-x: scroll;
  }
}
.imageblock{
  text-align: center;
}
.brand{
  width: 230px;
  margin: 0 auto;
}

@media only screen and (min-width: 320px) and (max-width: 767px){
  .header .logo{
    padding: 10px 30px 10px 10px;
  }
.top-head{
  display: none;
}
.banner{
  margin-top: 91px;  
}
.blue-bg{
  padding: 30px 20px;
}
.display-6{
  font-size: 22px;
}
.info-flex{
  font-size: 14px;
  gap: 3px;
}
}
@media only screen and (min-width: 320px) and (max-width: 1024px){
  .navbar-1{
    display: block;
  }
  .navbar-2{
    display: none;
  }
  .billboard-text{
    padding: 30px;
  }
  #billboard{
    margin-top: 98px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1500px){
  .billboard-text{
    padding: 30px;
  }
  .billboard-text h2{
    font-size: 43px;
  }
}


.whatsapp_btn {
  position: fixed;
  bottom: 28px;
  left: 20px;
  z-index: 11;
}
.button {
display: inline-block;
position: relative;
}
.button.is-play {
background-color: #24d267;
border-radius: 50%;
width: 80px;
height: 80px;
position: absolute;
left: 44%;
bottom: 40%;
}
.button.is-play .button-outer-circle {
background: #24d267;
border-radius: 50%;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
height: 100%;
width: 100%;
}
.button.is-play .button-icon {
position: absolute;
top: 48%;
left: 47%;
width: 60px;
height: 60px;
transform: translate(-50%, -50%);
}
.button.is-play .button-icon .triangle {
-webkit-animation: fadeIn 7s ease;
        animation: fadeIn 7s ease;
}
.button.is-play .button-icon .path {
stroke-dasharray: 90;
stroke-dashoffset: 0;
-webkit-animation: triangleStroke 3s;
        animation: triangleStroke 3s;
-webkit-animation-timing-function: ease;
        animation-timing-function: ease;
}
.has-scale-animation {
-webkit-animation: smallScale 3s infinite;
        animation: smallScale 3s infinite;
}
.has-delay-short {
-webkit-animation-delay: 0.5s;
        animation-delay: 0.5s;
}
@-webkit-keyframes fadeIn {
from {
  opacity: 0;
}
to {
  opacity: 1;
}
}
@keyframes fadeIn {
from {
  opacity: 0;
}
to {
  opacity: 1;
}
}
@-webkit-keyframes triangleStroke {
from {
  stroke-dashoffset: 90;
}
to {
  stroke-dashoffset: 0;
}
}
@keyframes triangleStroke {
from {
  stroke-dashoffset: 90;
}
to {
  stroke-dashoffset: 0;
}
}
@-webkit-keyframes smallScale {
from {
  transform: scale(1);
  opacity: 1;
}
to {
  transform: scale(1.5);
  opacity: 0;
}
}
@keyframes smallScale {
from {
  transform: scale(1);
  opacity: 1;
}
to {
  transform: scale(1.5);
  opacity: 0;
}
}
.is-play .fa{
  margin: -10px -4px !important;
  padding: 0 !important;
  font-size: 50px;
  color: #fff;
}
@media (max-width:768px){
  .button.is-play{
      width: 50px;
      height:50px;
  }
  .is-play .fa{
      font-size: 30px;
      margin: -1px !important;
      padding: 0 !important;
  }
  .whatsapp_btn {
  position: fixed;
  bottom: 18px;
  left: 10px;
  z-index: 11;
}
.app-image h3{
  font-size: 16px;
}
img.brand-image{
  width:86%;
}
}
