/* New Heading fonts add 28.01.2026 */
@import url("https://use.typekit.net/qwe3biy.css");
/* font-family: "ivymode", sans-serif; */

/* New Heading fonts add end */

@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Stack+Sans+Headline:wght@200..700&display=swap');

@font-face {
  font-family: "Saudagar";
  src: url(../fonts/Saudagar.ttf);
}

p{text-align: justify
}

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

*:focus,
*:focus-visible {
  outline: none;
}

input:hover,
select:hover,
.btn:hover,
button:hover,
.form-control:hover,
textarea:hover,
.navbar-toggler:hover,
input:focus,
select:focus,
.btn:focus,
button:focus,
.form-control:focus,
textarea:focus,
.navbar-toggler:focus,
.btn:first-child:active,
.btn-close:focus,
button.btn:focus:not(:focus-visible),
.form-select:hover,
.form-select:focus {
  box-shadow: none;
  outline: 0px;
  border-color: inherit;
}

:root {
  --saudagar-font: "Stack Sans Headline", sans-serif;;
  --transition-03s: all ease-in-out 0.3s;
  --transition-05s: all ease-in-out 0.5s;

  --main-color: 241, 85, 33; /* rgb(241, 85, 33) */

  --head-text-color: 0, 38, 49; /*rgb(0, 38, 49)*/
  --para-text-color: 89, 100, 103; /*rgb(89, 100, 103)*/
  --hover-color: 0, 105, 137; /*rgb(0, 105, 137)*/
  --link-color: 214, 214, 214; /*rgb(214, 214, 214)*/
  --footer-bg: 0, 38, 49; /* rgb(0, 38, 49) */
  --black-color: 0, 0, 0;
  --white-color: 255, 255, 255;
}

body {
  font-family: "Work Sans", sans-serif;
}
ul,
ol {
  margin: 0%;
  padding: 0%;
}
a {
  text-decoration: none;
  color: #000;
}
li {
  list-style: none;
}
/* .row {
  gap: 24px 0px;
} */
.common-section {
  padding: 60px 0px;
}
.common-btn {
  border-radius: 0px;
  transition: var(--transition-03s);
  padding: 20px;
  color: #fff;
  background: transparent;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  text-transform: uppercase;
}
.common-btn:hover {
  background-color: transparent;
  color: #fff;
  transform: rotate(0deg);
}
.common-btn:before,
.common-btn::after {
  content: "";
  position: absolute;
  z-index: -1;
}
.common-btn.--draw-border::before,
.common-btn.--draw-border::after {
  box-sizing: inherit;
  border: 2px solid transparent;
  width: 0;
  height: 0;
}
.common-btn.--draw-border::before {
  top: 0;
  left: 0;
}
.common-btn.--draw-border::after {
  bottom: 0;
  right: 0;
}
.common-btn.--draw-border:hover {
  color: rgba(var(--white-color), 1);
  background: transparent;
}
.common-btn.--draw-border:hover::before,
.common-btn.--draw-border:hover::after {
  width: 100%;
  height: 100%;
  border-radius: 0px;
}
.common-btn.--draw-border:hover::before {
  border-top-color: rgba(var(--main-color), 1);
  border-right-color: rgba(var(--main-color), 1);
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}
.common-btn.--draw-border:hover::after {
  border-bottom-color: rgba(var(--main-color), 1);
  border-left-color: rgba(var(--main-color), 1);
  transition: border-color 0s ease-out 0.5s, width 0.25s ease-out 0.5s,
    height 0.25s ease-out 0.75s;
}
.common-btn i {
  --ehw-icon: 40px;
  font-size: 24px;
  width: var(--ehw-icon);
  height: var(--ehw-icon);
  background: rgba(var(--main-color), 1);
  transform: rotate(-45deg);
  transition: all ease-in-out 0.2s;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.common-btn:hover i {
  transform: rotate(0deg);
  color: rgba(var(--white-color), 1);
  /* background: rgba(var(--white-color),1); */
}

/************************************ Header Section ***********************************************/
header {
  position: relative;
  inset: 0;
  width: 100%;
  height: max-content;
  z-index: 10;
  background: rgba(36,39,41,0.9);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0;
  z-index: 9999;
  width: 100%;
}
.navbar.header-fixed {
  position: fixed;
  /* background: rgba(255,240,200, 0.8); */
  background: rgba(14, 13, 14, 0.8);
  transition: all ease-in-out 0.2s;
  backdrop-filter: blur(5px);
  animation: slideDown 0.35s ease-out;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.navbar-brand {
  height: 70px;
}
.navbar-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.navbar-nav {
  display: flex;
  gap: 10px;
}
.navbar .navbar-nav .nav-item .nav-link {
  font-weight: 400;
  font-size: 20px;
  color: rgba(var(--white-color), 0.99);
  border-bottom: 2px solid transparent;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  transition: all ease-in-out 0.5s;
  text-shadow: 2px 2px 2px #000;
}
.navbar .navbar-nav .nav-item .nav-link.active,
.navbar .navbar-nav .nav-item .nav-link:hover,
.navbar .navbar-nav .nav-item .nav-link:focus,
.navbar .navbar-nav .nav-item .nav-link[aria-current="page"] {
  color: rgba(var(--white-color), 1);
}

.head-brand-menu .nav-contact-list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.head-brand-menu .nav-contact-list li a.nav-contact {
  font-size: 20px;
  color: rgba(var(--link-color), 1);
  text-transform: capitalize;
  text-shadow: 2px 2px 2px #000;
}

.navbar-toggler-icon {
  filter: invert(1);
}

/******************************************* Banner Section **************************************/
.banner-section {
  position: relative;
  overflow: hidden;
}
.banner-section .banner-slider .item {
  position: relative;
}
/* .banner-section .banner-slider .item::after {
  content: "";
  position: absolute;
  inset: 0%;
  background: linear-gradient(
    0deg,
    rgba(42, 44, 48, 0.4),
    rgb(42, 44, 48, 0.7)
  );
  width: 100%;
  height: 100%;
  display: block;
} */
.inr-banner-section {
  position: relative;
  
}
.inr-banner-section {
  position: relative;
}
.inr-banner-section::after {
  content: "";
  position: absolute;
  inset: 0%;
  background: linear-gradient(
    0deg,
    rgba(42, 44, 48, 0.2),
    rgb(42, 44, 48, 0)
  );
  /* background: linear-gradient(0deg, rgba(74,82,93,0.1) 0%, rgba(74, 82, 93, 0.75) 75%); */
  width: 100%;
  height: 100%;
  display: block;
}
.banner-content {
  display: flex;
  width: 100%;
  /* min-height: 95vh; */
  height: 100%;
  /* padding: 50px 0px 0px 50px; */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
  /* position: absolute; */
  z-index: 1;

  top: 0;
}
.inr-banner-content {
  display: flex;
  width: 100%;
  min-height: 485px;
  height: 100%;
  /* padding: 50px 0px 0px 100px; */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.banner-content h1,
.inr-banner-content h1 {
  /* font-family: var(--saudagar-font); */
  /* font-size: 40px; */
  font-size: 30px;
  font-weight: 600;
  /* color: rgba(var(--white-color), 1); */
  color: #b8b9b4;
  line-height: 1;
  text-transform: capitalize;
  /* text-shadow: 2px 2px 2px #000; */
  text-shadow: 1px 3px 8px #282828;
    /* opacity: 0.5; */
    font-family: "ivymode", sans-serif;
    letter-spacing: 3px;
}
.inr-banner-content h1 {
  position: absolute;
  bottom:0%;
  left:50%;
  transform: translate(-50%, -50%);
  /* font-size: 40px !important; */

}
.banner-content h2 {
  font-family: var(--saudagar-font);
  font-size: 120px;
  font-weight: 400;
  line-height: 0.8;
  color: rgba(var(--white-color), 1);
  text-transform: capitalize;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: rgba(var(--white-color), 1);
  -webkit-text-stroke-width: 1px;
   text-shadow: 2px 2px 2px #000;
}
.banner-slider {
  position: relative;
}
.banner-slider.owl-carousel .owl-dots {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 10px;
}
.banner-slider.owl-carousel .owl-dots button.owl-dot {
  background: #5e6773;
  width: 30px;
  height: 3px;
}
.banner-slider.owl-carousel .owl-dots button.owl-dot.active {
  background: rgba(var(--white-color), 1);
}

/*======================================= Home About Us Section ===========================*/
.hm-about-section {
  padding: 80px 0px;
}
.hm-about-section{
  padding-bottom: 0;
}
.hm-abt-left-img {
  width: 100%;
  height: 320px;
  position: relative;
}
.hm-abt-left-img::before {
  content: "";
  position: absolute;
  inset: -5%;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(var(--main-color), 1);
  display: block;
  z-index: -1;
  transition: var(--transition-05s);
}
.hm-abt-left-img:hover::before {
  inset: 0%;
}
.hm-abt-left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hm-abt-right .hm-abt-head h3 {
  font-size:22px;
  font-weight: 600;
  /* font-family: var(--saudagar-font); */
  /* color:#686868; */
  /* color:#329739; */
  color: #e6c37a;
  margin-bottom: 20px;
  font-family: "ivymode", sans-serif;
}

.hm-abt-right .hm-abt-head p {
  font-size: 18px;
  font-weight: 300;
  color: #eac891;
  margin-bottom: 20px;
  text-align: justify
}
/* .hm-abt-right .hm-abt-head .common-btn {
  color: #fff;
  width: max-content;
  padding: 10px;
} */
/* .hm-abt-right .hm-abt-head .common-btn:hover {
  color: #fff;
} */
/* .hm-abt-right .hm-abt-head .common-btn i {
  color: rgba(var(--white-color), 1);
} */
/* .hm-abt-right .hm-abt-head .common-btn:hover i {
  transform: rotate(0deg);
  color: rgba(var(--white-color), 1);
  background: rgba(var(--main-color), 1);
} */
.hm-abt-right .hm-abt-rcd .hm-abt-rcd-box {
  margin-bottom: 40px;
  margin-left: 80px;
}
.hm-abt-right .hm-abt-rcd .hm-abt-rcd-box h5 {
  font-family: var(--saudagar-font);
  font-size: 40px;
  font-weight: 400;
  color: #006989;
  margin-bottom: 0px;
}
.hm-abt-right .hm-abt-rcd .hm-abt-rcd-box p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(var(--head-text-color), 1);
  margin-bottom: 0px;
}
.hm-abt-right .hm-abt-right-img {
  width: 100%;
  height: 420px;
  position: relative;
}
.hm-abt-right .hm-abt-right-img::before {
  content: "";
  position: absolute;
  right: -2%;
  bottom: -5%;
  border: 1px solid rgba(var(--main-color), 1);
  z-index: -1;
  width: 100%;
  height: 100%;
  display: block;
  transition: var(--transition-05s);
}
.hm-abt-right .hm-abt-right-img:hover::before {
  right: 0%;
  bottom: 0%;
}
.hm-abt-right .hm-abt-right-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*================================ About Us Page Section  ===============================*/
.inr-abt-right {
  margin-left: 40px;
}
.inr-abt-content h3 {
  /* font-family: var(--saudagar-font); */
  font-family: "ivymode", sans-serif;
  font-size: 22px;
  font-weight: 600;
  /* color:#329739; */
  color: #e6c37a;
  width: 50%;
  margin-bottom: 20px;
}
.inr-abt-content p {
  font-size: 18px;
  color: rgba(var(--para-text-color), 1);
  font-weight: 300;
  margin-bottom: 12px;
}
.inr-abt-rcd {
  margin-top: 40px;
}
.inr-abt-rcd .inr-abt-rcd-box h5 {
  margin-top: 30px;
  font-family: var(--saudagar-font);
  font-weight: 400;
  font-size: 40px;
  color: #006989;
  margin-bottom: 0px;
}
.inr-abt-rcd .inr-abt-rcd-box p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(var(--para-text-color), 1);
}
.inr-abt-left .inr-abt-left-img {
  width: 100%;
  height: 450px;
  position: relative;
  margin-left: 30px;
}
.inr-abt-left .inr-abt-left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inr-abt-left .inr-abt-left-img::before {
  content: "";
  position: absolute;
  inset: -5%;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(var(--main-color), 1);
  display: block;
  z-index: -1;
  transition: var(--transition-05s);
}
.inr-abt-left .inr-abt-left-img:hover::before {
  inset: 0%;
}
.inr-abt-right-img {
  width: 100%;
  height: 430px;
  margin-top: 20px;
  position: relative;
}
.inr-abt-right-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inr-abt-right-img::before {
  content: "";
  position: absolute;
  right: -2%;
  bottom: -5%;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(var(--main-color), 1);
  display: block;
  z-index: -1;
  transition: var(--transition-05s);
}
.inr-abt-right-img:hover::before {
  right: 0%;
  bottom: 0%;
}
/*==================================== Meet Our Team Section ============================*/
.mot-section {
  background: #dfe0e1;
  padding-top: 60px;
  padding-bottom: 60px;
}
.mot-head h3 {
  /* font-family: var(--saudagar-font); */
  font-family: "ivymode", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: rgba(var(--head-text-color), 1);
}
.mot-head p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(var(--para-text-color), 1);
}
.mot-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  padding: 20px 20px;
  width: 100%;
  position: relative;
  background: rgba(var(--white-color), 1);
  z-index: 1;
}
.mot-container {
  position: relative;
  width: 80%;
}
.mot-container::before {
  content: "";
  position: absolute;
  right: -4%;
  bottom: -8%;
  display: block;
  /* border: 1px solid rgba(var(--main-color), 1); */
  width: 100%;
  height: 100%;
  transition: var(--transition-03s);
}
.mot-container:hover::before {
  right: 0%;
  bottom: 0%;
}
.mot-card .mot-img {
  width: 100%;
  height: 330px;
}
.mot-card .mot-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #dfe0e1;
}
.mot-card .mot-content h5 {
  font-family: var(--saudagar-font);
  font-size: 24px;
  font-weight: 600;
  color: rgba(var(--head-text-color), 1);
  margin-bottom: 0px;
}
.mot-card .mot-content span {
  font-size: 18px;
  font-weight: 300;
  color: rgba(var(--para-text-color), 1);
}
.mot-card .mot-content p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(var(--para-text-color), 1);
  
}
.mot-card .mot-content .mot-social-list {
  display: flex;
  align-items: center;
  gap: 15px;
}
.mot-card .mot-content .mot-social-list li a {
  font-size: 24px;
  color: rgba(var(--head-text-color), 1);
}

/*======================================== Home Service Section =========================*/
.hm-service-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hm-service-head h3 {
  font-family: "ivymode", sans-serif;
  /* font-family: var(--saudagar-font); */
  font-size: 22px;
  font-weight: 600;
  color: #b8b9b4;
}
.hm-service-head .common-btn {
  color: #fff;
  width: max-content;
  padding: 10px;
}
.hm-service-head .common-btn:hover {
  color: rgba(var(--main-color), 1);
}
.hm-service-head .common-btn i {
  color: rgba(var(--white-color), 1);
}
.hm-service-head .common-btn:hover i {
  transform: rotate(0deg);
  color: rgba(var(--white-color), 1);
  background: rgba(var(--main-color), 1);
}
.extraWidth {
  width: calc(100% + 140px);
  padding: 30px 0px 0px;
}
.service-card {
  display: block;
  margin-bottom: 16px;
  /* border-left: 6px solid #f15521; */
}
.service-card .service-img {
  width: 100%;
  height: 560px;
}
.service-card .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card .service-name {
  padding: 20px 20px;
}
.service-card .service-name p {
  /* font-family: var(--saudagar-font); */
  font-family: "ivymode", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color:#fff;
  transition: var(--transition-03s);
  margin-bottom: 0px;
  text-transform: capitalize;
}
.hm-project-section h4{
  text-transform: capitalize;
  font-family: "ivymode", sans-serif;
  font-weight: 600;
  font-size: 20px;
}


.service-card:hover .service-name p {
  color: #fff;
}
.service-slider {
  position: relative;
}
.service-slider.owl-carousel .owl-dots {
  width: 90%;
  display: flex;
}
.service-slider.owl-carousel .owl-dots button.owl-dot {
  background: #bfbfbf;
  height: 2px;
  width: 100%;
}
.service-slider.owl-carousel .owl-dots button.owl-dot.active {
  background: rgba(var(--head-text-color), 1);
  width: 100%;
}
.service-dtl-des p {
  font-size: 20px;
  font-weight: 400;
}
/*============================= Home Our Project Section =======================================*/
.hm-project-head {
  display: flex;
  align-items: center;
  gap: 120px;
}
.hm-project-head h3 {
  font-family: var(--saudagar-font);
  font-size: 38px;
  font-weight: 600;
  color: rgba(var(--head-text-color), 1);
}
.hm-project-head p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(var(--para-text-color), 1);
  width: 50%;
}
.hm-project-lwr .common-tab .resp-tab-active {
  border: 1px solid transparent;
  margin-bottom: 0px !important;
  padding: 15px 15px 15px 15px !important;
  position: relative;
  color: rgba(var(--main-color), 1);
}
.hm-project-lwr .common-tab .resp-tab-active::after {
  content: "";
  position: relative;
  width: 100%;
  height: 2px;
  background: rgba(var(--main-color), 1);
  display: block;
}
.hm-project-lwr .common-tab .resp-tabs-list li {
  font-family: var(--saudagar-font);
  font-weight: 600;
  font-size: 20px;
  padding: 15px 15px;
  /* transition: var(--transition-03s); */
}
.hm-project-lwr .common-tab .resp-tab-content {
  border: none;
}
.hm-project-lwr .common-tab .common-tab-content .hm-project-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.hm-project-lwr
  .common-tab
  .common-tab-content
  .hm-project-list
  li:nth-child(3n) {
  grid-column-start: 1;
  grid-column-end: 3;
}
.hm-project-lwr .common-tab .common-tab-content.resp-tab-content {
  padding: 20px 0px;
}
.hm-project-lwr
  .common-tab
  .common-tab-content
  .hm-project-list
  li
  .project-img {
  width: 100%;
  height: 700px;
  position: relative;
  z-index: 1;
}
.hm-project-lwr
  .common-tab
  .common-tab-content
  .hm-project-list
  li
  .project-img
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hm-project-lwr .common-tab .resp-tabs-list li:nth-child(1) {
  padding: 15px 15px 15px 0px !important;
}
.hm-project-lwr
  .common-tab
  .common-tab-content
  .hm-project-list
  li
  .project-img::after {
  content: "";
  position: absolute;
  inset: 0%;
  background: rgba(var(--hover-color), 0.4);
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-05s);
}
.hm-project-lwr
  .common-tab
  .common-tab-content
  .hm-project-list
  li:hover
  .project-img::after {
  opacity: 1;
  visibility: visible;
}
.hm-project-lwr
  .common-tab
  .common-tab-content
  .hm-project-list
  li
  .project-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-05s);
}
.hm-project-lwr
  .common-tab
  .common-tab-content
  .hm-project-list
  li:hover
  .project-name {
  opacity: 1;
  visibility: visible;
}
.hm-project-lwr
  .common-tab
  .common-tab-content
  .hm-project-list
  li
  .project-name
  h3 {
  font-family: var(--saudagar-font);
  font-size: 30px;
  font-weight: 600;
  color: rgba(var(--white-color), 1);
}
.hm-project-lwr .common-tab .common-tab-content .hm-project-list li .insp-img {
  width: 100%;
  height: 600px;
}
.hm-project-lwr
  .common-tab
  .common-tab-content
  .hm-project-list
  li
  .insp-img
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hm-project-lwr .common-tab .common-tab-content .hm-project-list li .insp-text {
  padding: 20px 0px;
}
.hm-project-lwr
  .common-tab
  .common-tab-content
  .hm-project-list
  li
  .insp-text
  h3 {
  font-size: 28px;
  font-family: var(--saudagar-font);
  font-weight: 600;
  color: rgba(var(--head-text-color), 1);
}
.hm-project-lwr
  .common-tab
  .common-tab-content
  .hm-project-list
  li
  .insp-text
  p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(var(--para-text-color), 1);
}
/*=============================== Talk About Your Project Section ==============================*/
.talk-abt-section {
  background:#242729;
  padding: 30px 0px;
  padding-bottom: 20px;
}
.talk-abt-left h3 {
  font-family: var(--saudagar-font);
  font-size: 38px;
  font-weight: 600;
  color: rgba(var(--white-color), 1);
  margin-bottom: 10px;
}
.talk-abt-left p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(var(--white-color), 1);
  margin-bottom: 10px;
}
.talk-abt-form {
  margin-top: 20px;
}
.talk-abt-form button.common-btn {
  width: max-content;
}
.talk-abt-form-box input,
.talk-abt-form-box textarea {
  /* border-color: #6d929e; */
  border: none;
  border-bottom: 1px solid #eac891;
  border-radius: 0px;
}
.talk-abt-form-box input::placeholder,
.talk-abt-form-box textarea::placeholder {
  color: rgba(var(--white-color), 1);
  font-weight: 300;
  font-size: 16px;
}
.talk-abt-form-box input:hover,
.talk-abt-form-box input:focus,
.talk-abt-form-box textarea:hover,
.talk-abt-form-box textarea:focus {
  border-color: rgba(var(--main-color), 1);
  background: transparent;
  color: rgba(var(--white-color), 1);
}
.talk-abt-right {
  padding: 0px 0px 0px 60px;
  position: relative;
}
.talk-abt-right .talk-abt-img1 {
  width: 400px;
  height: 400px;
  position: relative;
  z-index: 1;
}
.talk-abt-content1 {
  position: relative;
  width: 400px;
  height: 400px;
}
.talk-abt-right .talk-abt-content1::before {
  content: "";
  position: absolute;
  top: -3%;
  right: -5%;
  border: 1px solid  #eac891;
  width: 100%;
  height: 100%;
  display: block;
}
.talk-abt-right .talk-abt-img1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.talk-abt-right .talk-abt-img2 {
  width: 300px;
  height: 440px;
  position: relative;
  z-index: 2;
}
.talk-abt-content2 {
  position: relative;
  width: 300px;
  height: 440px;
  margin-left: 280px;
  margin-top: -350px;
}
.talk-abt-right .talk-abt-content2::before {
  content: "";
  position: absolute;
  bottom: -3%;
  left: -5%;
  border: 1px solid rgba(var(--main-color), 1);
  width: 100%;
  height: 100%;
  display: block;
}
.talk-abt-right .talk-abt-img2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*==================================== Service Listing Section ============================*/
.sl-head h3 {
  /* font-family: var(--saudagar-font); */
  font-family: "ivymode", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: rgba(var(--head-text-color), 1);
  margin-bottom: 20px;
}
/* .sl-lwr {
  padding-top: 40px;
} */
.sl-lwr .service-card {
  border-bottom: 2px solid #bfbfbf;
}
.sl-lwr .service-card:hover {
  border-bottom: 2px solid #fff;
}

/* .resp-tab-content */

/************************************Contact Us Section *****************************************/
.contact-left {
  width: 100%;
  height: 550px;
}
.contact-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-right {
  margin-left: 50px;
}
.contact-right h3 {
  /* font-family: var(--saudagar-font); */
  font-family: "ivymode", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: rgba(var(--head-text-color), 1);
  text-transform: uppercase;
}
.contact-right-list {
  margin-top: 20px;
  border-bottom: 1px solid #dedede;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.contact-right-list li {
  margin-bottom: 8px;
}
.contact-right-list li a {
  color: #f15521;
  font-size: 18px;
  font-weight: 500;
}
.contact-right > p {
  font-size: 28px;
  font-weight: 500;
  color: rgba(var(--head-text-color), 1);
}
.contact-section {
  background: no-repeat center center / cover;
}

.form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid #b7b7b7;
  border-radius: 0%;
}
/******************************** Footer Section *********************************************/
.footer-section {
  background: #242729;
  padding: 20px 0px;
}

.footer-top {
  padding: 20px 0px 20px;
}

.footer-box .footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-box .footer-contact-list li a {
  font-size: 18px;
  color: #c4c4c4;
  transition: all ease-in-out 0.3s;
}
.footer-box .footer-contact-list li a:hover {
  color: rgba(var(--white-color), 1);
}
.footer-box .footer-social-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-box .footer-social-list li a {
  font-size: 20px;
  font-weight: 300;
  color: #d6d6d6;
  display: flex;
  align-items: center;
  gap: 14px;
  text-transform: capitalize;
  transition: all ease-in-out 0.3s;
}
.footer-box .footer-social-list li a:hover {
  color: rgba(var(--white-color), 1);
}

.footer-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.footer-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 300;
  color: #c4c4c4;
  transition: all ease-in-out 0.3s;
  text-transform: capitalize;
}
.footer-list li a:hover {
  color: rgba(var(--white-color), 1);
}
.footer-copyright {
  padding: 20px 0px 0px 0px;
}
.footer-copyright p {
  font-size: 15px;
  font-weight: 300;
  color: #747d80;
  margin-bottom: 0px;
  margin-top: 20px;
}
.footer-copyright-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 40px 0px 0px 0px;
}
.footer-copyright-list li a {
  color: #747d80;
  font-size: 18px;
  font-weight: 300;
  transition: all ease-in-out 0.3s;
}
.footer-copyright-list li a:hover {
  color: rgba(var(--white-color), 1);
}

.nav-menu .nav-contact-list {
  display: none;
}
/************************************ Media Queries ******************************************/
.navbar > .container {
  flex-wrap: nowrap;
}
/*======================================== Min Width ================================*/
@media (min-width: 1401px) and (max-width: 1539px) {
  .extraWidth {
    width: calc(100% + 0px);
  }
}
@media (min-width: 1540px) {
  .container {
    max-width: 1500px;
  }
}
@media (min-width: 1541px) and (max-width: 1740px) {
  .extraWidth {
    width: calc(100% + 30px);
  }
}
@media (min-width: 1640px) {
  .container {
    max-width: 1600px;
  }
  .inr-abt-right-img::before {
    right: -1%;
    bottom: -3%;
  }
  .inr-abt-left .inr-abt-left-img::before {
    inset: -3%;
  }
}
@media (min-width: 1740px) {
  .container {
    max-width: 1640px;
  }
}
@media (min-width: 1741px) {
  .extraWidth {
    width: calc(100% + 120px);
  }
}

/*================================== Max Width ================================*/
@media (max-width: 1400px) {
  .head-brand-menu .nav-contact-list {
    gap: 15px;
  }
  .head-brand-menu .nav-contact-list li a.nav-contact {
    font-size: 14px;
  }
  .navbar-nav {
    gap: 10px;
  }
  .navbar .navbar-nav .nav-item .nav-link {
    font-size: 16px;
  }
  .extraWidth {
    width: calc(100% + 50px);
  }
  .hm-abt-right {
    margin-left: 0px;
  }
  .talk-abt-right {
    padding: 0px 0px 0px 0px;
  }
  .mot-container {
    width: 100%;
  }
  .mot-container::before {
    right: -2%;
    bottom: -4%;
  }
  /* .mot-card .mot-content p {
    padding: 20px 0px 0px;
  } */
  .service-card .service-img {
    height: 400px;
  }
  .hm-abt-right .hm-abt-right-img {
    height: 350px;
  }
  .hm-project-lwr
    .common-tab
    .common-tab-content
    .hm-project-list
    li
    .project-img {
    width: 100%;
    height: 500px;
  }
  .inr-abt-rcd {
    margin-top: 0px;
  }
  .inr-abt-left .inr-abt-left-img::before {
    inset: -2%;
  }
  .contact-right h3 {
    font-size: 28px;
  }
}

@media (max-width: 1200px) {
  .navbar-collapse {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    left: 0;
    top: 90%;
    padding: 25px;
  }
  .banner-content h1,
  .inr-banner-content h1 {
    font-size: 100px;
  }
  .banner-content h2 {
    font-size: 100px;
  }
  .hm-abt-right .hm-abt-rcd .hm-abt-rcd-box {
    margin-bottom: 20px;
    margin-left: 0px;
  }
  .hm-abt-rcd {
    display: flex;
  }
  .hm-abt-right .hm-abt-right-img {
    height: 270px;
  }
  .talk-abt-content2 {
    margin-left: 150px;
  }
  .extraWidth {
    width: calc(100% + 40px);
  }
  .contact-right {
    margin-left: 20px;
  }
}

@media (max-width: 991px) {
  .hm-abt-left-img::before {
    inset: auto;
    bottom: -3%;
    right: -2%;
  }
  .hm-project-lwr .common-tab h2.resp-tab-active span.resp-arrow {
    border-bottom: 12px solid rgba(var(--white-color), 1) !important;
  }
  .hm-project-lwr .common-tab h2.resp-accordion {
    border: 1px solid rgba(var(--main-color), 1) !important;
  }
  .hm-abt-right .hm-abt-rcd .hm-abt-rcd-box {
    margin-bottom: 20px;
    margin-left: 20px;
  }
  .hm-abt-right .hm-abt-head h3 {
    font-size: 28px;
  }
  .hm-abt-right .hm-abt-head p {
    font-size: 15px;
  }
  .hm-abt-right .hm-abt-rcd .hm-abt-rcd-box p {
    font-size: 15px;
  }
  .hm-abt-right .hm-abt-rcd .hm-abt-rcd-box h5 {
    font-size: 34px;
  }
  .hm-project-lwr .common-tab .resp-tab-active {
    background: rgba(var(--main-color), 1) !important;
    color: rgba(var(--white-color), 1) !important;
  }
  .hm-project-head {
    gap: 0px;
    flex-wrap: wrap;
  }
  .hm-project-head p {
    font-size: 18px;
    width: 100%;
    margin-bottom: 15px;
  }
  .hm-about-section > .container .row {
    flex-direction: column-reverse;
  }
  .hm-about-section > .container .row > * > .hm-abt-right > .row {
    flex-direction: column;
  }
  .hm-about-section {
    padding: 60px 0px;
  }
  .hm-abt-left-img {
    height: 350px;
  }
  .extraWidth {
    width: 100%;
  }
  .talk-abt-right {
    padding: 40px 0px 0px 0px;
  }
  .inr-abt-left .inr-abt-left-img {
    margin-left: 0px;
  }
  .inr-abt-right {
    margin-left: 0px;
  }
  .inr-abt-content h3 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .banner-content {
    padding: 74px 0px;
  }
  .inr-banner-content {
    padding: 100px 0px;
  }
  .banner-content h1,
  .inr-banner-content h1 {
    font-size: 60px;
    margin-bottom: 0px;
    line-height: 0.8;
  }
  .banner-content h2 {
    font-size: 60px;
  }
  .mot-card .mot-img {
    width: 100%;
    height: 200px;
  }
  .talk-abt-section {
    padding: 80px 0px;
    padding-bottom: 40px;
  }
  .nav-menu .nav-contact-list {
    display: none;
  }
  .inr-abt-content h3 {
    font-size: 34px;
  }
  .contact-left {
    height: 300px;
  }
  .navbar-brand {
    height: 50px;
  }
  .hm-project-lwr
    .common-tab
    .common-tab-content
    .hm-project-list
    li
    .project-img {
    width: 100%;
    height: 300px;
  }
}
@media (max-width: 580px) {
  .hm-abt-right .hm-abt-right-img::before,
  .hm-abt-left-img::before,
  .mot-container::before,
  .talk-abt-right .talk-abt-content1::before,
  .talk-abt-right .talk-abt-content2::before,
  .inr-abt-left-img::before,
  .inr-abt-right-img:hover::before,
  .inr-abt-left .inr-abt-left-img::before,
  .inr-abt-right-img::before {
    display: none;
  }
  .banner-content {
    min-height: 55vh;
  }
  .banner-content h1,
  .inr-banner-content h1 {
    font-size: 50px;
  }
  .banner-content h2 {
    font-size: 50px;
  }
  .common-btn {
    font-size: 13px;
  }
  .common-btn i {
    --ehw-icon: 24px;
    font-size: 15px;
    width: var(--ehw-icon);
    height: var(--ehw-icon);
  }
  .hm-abt-rcd {
    gap: 0px;
    flex-wrap: wrap;
  }
  .footer-copyright-list {
    padding: 0px 0px 0px 0px;
  }
  .talk-abt-content2 {
    width: 100%;
    margin-left: 0px;
    margin-top: 20px;
  }
  .talk-abt-right .talk-abt-img2 {
    width: 100%;
  }
  .head-brand-menu .nav-contact-list {
    display: none;
  }
  .nav-menu .nav-contact-list {
    display: block;
  }
  .nav-menu .nav-contact-list {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    flex-direction: column;
    margin-top: 20px;
    border-top: 1px solid #c4c4c4;
    padding-top: 20px;
  }

  .nav-menu .nav-contact-list li a.nav-contact {
    font-size: 16px;
    color: rgba(var(--link-color), 1);
    text-transform: uppercase;
  }
  .talk-abt-content1 {
    width: 100%;
  }
  .talk-abt-right .talk-abt-img1 {
    width: 100%;
  }
  .talk-abt-left h3 {
    font-size: 24px;
  }
  .talk-abt-left p {
    font-size: 15px;
  }
  .talk-abt-form {
    margin-top: 40px;
  }
  .hm-abt-right .hm-abt-head h3 {
    font-size: 24px;
  }
  .hm-abt-right .hm-abt-right-img {
    height: 250px;
  }
  .hm-abt-left-img {
    height: 350px;
  }
  .mot-head h3 {
    font-size: 24px;
  }
  .mot-head p {
    font-size: 15px;
  }
  .mot-card {
    flex-wrap: wrap;
  }
  .mot-card .mot-img {
    height: auto;
  }
  .hm-service-head {
    flex-wrap: wrap;
  }
  .hm-service-head h3 {
    font-size: 24px;
    margin-bottom: 0px;
  }
  .service-card .service-name p {
    font-size: 18px;
  }
  .common-section {
    padding: 20px 0px;
  }
  .hm-project-head h3 {
    font-size: 24px;
  }
  .hm-project-lwr .common-tab .common-tab-content .hm-project-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 10px;
  }
  .hm-project-lwr
    .common-tab
    .common-tab-content
    .hm-project-list
    li:nth-child(3n) {
    grid-column-start: auto;
    grid-column-end: auto;
  }
  .service-slider.owl-carousel .owl-dots {
    width: 100%;
  }
  .footer-section > .container > .footer-lwr > .row {
    flex-direction: column-reverse;
  }
  .footer-copyright {
    padding: 0px 0px 0px 0px;
  }
  .footer-copyright-list {
    padding: 20px 0px 0px 0px;
  }
  .inr-abt-content h3 {
    font-size: 24px;
  }
  .inr-abt-content p {
    font-size: 15px;
  }
  .inr-abt-rcd .inr-abt-rcd-box h5 {
    margin-top: 0px;
  }
  .inr-abt-rcd .inr-abt-rcd-box h5 {
    margin-top: 0px;
  }
  .inr-abt-rcd .inr-abt-rcd-box p {
    font-size: 15px;
  }
  .inr-abt-rcd .inr-abt-rcd-box h5 {
    font-size: 30px;
  }
  .talk-abt-section {
    padding-top: 30px;
  }
  .footer-logo {
    height: 50px;
  }
  .footer-logo img {
    height: 100%;
    object-fit: cover;
  }
  .contact-right {
    margin-left: 0px;
  }

  .contact-right h3 {
    font-size: 24px;
  }
  .contact-right > p {
    font-size: 20px;
  }
  .contact-right-list li a {
    font-size: 14px;
  }
  .sl-lwr {
    padding-top: 10px;
  }
  .sl-head h3 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 10px;
  }
  .extraWidth {
    padding: 30px 0px 0px;
  }
  .hm-project-lwr
    .common-tab
    .common-tab-content
    .hm-project-list
    li
    .insp-img {
    height: 300px;
  }
  .hm-project-lwr
    .common-tab
    .common-tab-content
    .hm-project-list
    li
    .insp-text
    h3 {
    font-size: 24px;
  }
  .hm-project-lwr
    .common-tab
    .common-tab-content
    .hm-project-list
    li
    .insp-text
    p {
    font-size: 15px;
  }
  .hm-project-head p {
    font-size: 15px;
  }
  .hm-project-lwr
    .common-tab
    .common-tab-content
    .hm-project-list
    li
    .project-name
    h3 {
    font-size: 18px;
  }
  .hm-project-lwr
    .common-tab
    .common-tab-content
    .hm-project-list
    li
    .project-img {
    height: auto;
  }
  .service-card .service-img {
    height: auto;
  }
}

/*=================================== CSS ADDED ============================*/
/* .inr-banner-content h1 {
  font-size: 80px;
} */

/* 404 Page css  */

.common-section404 {
  padding: 140px 30px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.section-404 {
  text-align: center;
}
.section-404 .error {
  margin-bottom: 0px;
  line-height: 1;
  font-size: 140px;
  color: rgba(var(--main-color), 1);
  text-shadow: 1px 1px 1px rgba(var(--main-color), 1), 2px 2px 1px rgba(var(--main-color), 1), 3px 3px 1px rgba(var(--main-color), 1), 4px 4px 1px rgba(var(--main-color), 1), 5px 5px 1px rgba(var(--main-color), 1), 6px 6px 1px rgba(var(--main-color), 1), 7px 7px 1px rgba(var(--main-color), 1), 8px 8px 1px rgba(var(--main-color), 1), 25px 25px 8px rgba(0,0,0, 0.1);
}
.section-404 .page {
  margin: 1.8rem 0;
  font-size: 20px;
  font-weight: 600;
  color: rgba(var(--white-color), 1);
}
.common-section404 .common-btn {
  /* color: rgba(var(--black-color), 1); */
  display: inline-flex;
}
.common-section404 .common-btn i {
  color: rgba(var(--white-color), 1);
}
/* .common-section404 .common-btn:hover {
  color: rgba(var(--white-color),1);
} */



.gal-wrap {
  /* background-color: #F15521; */
  padding: 0 0 1px;
  position: relative;
}
.gal-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 380px;
  /* background-color: #fff; */
}
 .gal-prt {
 
  flex-wrap: wrap;
  position: relative;
}
 .gal-prt .gal-bx {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* overflow: hidden; */
  height: 385px;
  /* width: 33.33%; */
  position: relative;
}
 .gal-prt .gal-bx img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
     max-height: 350px;
}
 .gal-prt .gal-bx h3 {
  font-size: 42px;
  font-weight: 400;
  color: #000;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}
.gal-prt .gal-bx p {
  font-size: 17px;
  color: #464646;
  margin: 15px 0 0;
}
.gal-prt .gal-bx .gal-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.3);
  transition: all ease-in-out 0.5s;
  opacity: 1;
}
.gal-prt .gal-bx .gal-overlay img {
  position: absolute;
  display: inline-block;
  top: 0%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  width: auto !important;
  height: auto !important;
  opacity: 0;
  transition: all ease-in-out 0.5s;
}
.gal-prt .gal-bx:hover .gal-overlay {
  opacity: 1;
  height: 100%;
}
 .gal-prt .gal-bx:hover .gal-overlay img {
  opacity: 1;
  top: 50%;
}

.list-group-item.active {
	background-color: #f25520;
	border-color: #f25520;
}

/* Our Process Section */
.ourPrcsSec {
	padding: 80px 0;
	/* background:url(http://dev5.myvtd.site/intersol/wp-content/uploads/2026/01/contact.jpg); */
  background-size: cover !important;
  background-attachment: fixed !important;
  background: #dfe0e1;
}

.ourPrcsSec .hm-service-head {
    text-align: center;
    margin-bottom: 10px;
    justify-content: center;
}

.ourPrcsSec .hm-service-head h3 {
  font-size: 22px;
  font-weight: 700;
  color: #3a3c3a;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  font-family: "ivymode", sans-serif;
}

.ourPrcsSec .hm-service-head h3::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #ef1721;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Image Styling */
.ourPrcsSec img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    padding: 29px;
  background: #fff;

}

.ourPrcsSec img:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

/* Content Styling */
.ourPrcsSec h2 {
    font-size: 22px;
    font-weight: 800;
    color: #3a3c3a;
    line-height: 1.3;
    margin-bottom: 20px;
    font-family: "ivymode", sans-serif;
}
/* .ourPrcsSec h2::first-letter{
  color:rgb(241, 85, 33);
} */
/* .ourPrcsSec .col-md-6:last-child {
    display: flex;
    align-items: center;
} */

/* Responsive */
@media (max-width: 767px) {
    .ourPrcsSec {
        padding: 30px 0;
    }

.ourPrcsSec h2 {
	font-size: 20px;
	text-align: center;
	margin-top: 5px;
	letter-spacing: 1px;
}
.common-section.ourPrcsSec img {
	width: 100%;
}
   .ourPrcsSec .hm-service-head h3 {
        font-size: 28px;
    }
.navbar .navbar-nav .nav-item .nav-link {
	font-weight: 600;
}
}


.accordion-button:focus {
	border-color: inherit;
	outline: 0;
	box-shadow:none;
}
.accordion-button:not(.collapsed) {
	color: #000;
	background-color: #fff;
	box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.accordion {
	width: 100%;
}

.accordion-button::after{
    content: "\2b" !important;
    font-family: "fontawesome";
    /* background-color: rgb(241, 85, 33); */
    width: 40px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-image: none;
    /* color: #fff; */
    background-image: none !important;
}
.accordion-button:not(.collapsed)::after{
    content: "\f068" !important;
    transform: rotate(0);
    font-family: "fontawesome";
    background-image: none !important;
}



/* Base Card */
.service-card {
    position: relative;
    display: block;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    background: #000;
    /* box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25); */
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.service-card:hover {
    transform: translateY(-14px) scale(1.03);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
}

/* Image */
.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.15);
}

/* Dark Gradient Overlay */
.service-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0.15)
    );
    transition: opacity 0.4s ease;
}
.service-img:hover::after {
    
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.1)
    );
   
}
/* Glassmorphism Footer */
.service-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px 26px;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.12);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

/* Text */
.service-name p {
    margin: 0;
    font-size: 21px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.4px;
}

/* Arrow CTA */
.service-name::after {
    content: "→";
    font-size: 26px;
    color: #ffffff;
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.4s ease;
}

.service-card:hover .service-name::after {
    transform: translateX(0);
    opacity: 1;
}

/* Gradient Border Glow */
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 2px;
    /* background: linear-gradient(135deg, #ef1721, #ff9a18); */
    /* -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude; */
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

/* Mobile */
@media (max-width: 767px) {
    .service-name p {
        font-size: 18px;
    }

    .service-name::after {
        opacity: 1;
        transform: none;
    }
}



/* About Section Base */
.hm-about-section {
    padding: 50px 0;
    /* background:#37676b; */
    background: #242729;
    position: relative;
    overflow: hidden;
}
.hm-about-section::after {
	content: '';
	position: absolute;
	background: url(../images/Pattern.png);
	right: -185px;
	top: -52px;
	height: 60%;
	width: 20%;
	background-size: contain;
	background-repeat: no-repeat;
}

/* Decorative soft glow */


/* Left Image */
.hm-abt-left-img {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

.hm-abt-left-img img {
    width: 100%;
    transition: transform 0.8s ease;
}

.hm-abt-left-img:hover img {
    transform: scale(1.08);
}

/* Subtle overlay */
.hm-abt-left-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.05),
        rgba(0, 0, 0, 0.25)
    );
}

/* Right Content */
.hm-abt-right {
    padding-left: 40px;
    position: relative;
    z-index: 2;
}

.hm-abt-head h3 {
    font-size: 38px;
    font-weight: 800;
    color: #0a1426;
    line-height: 1.3;
    margin-bottom: 24px;
    position: relative;
}

/* Accent line */
.hm-abt-head h3::after {
    content: "";
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #686868, #959a7f);
    display: block;
    margin-top: 14px;
    border-radius: 2px;
}

.hm-abt-head p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 28px;
    max-width: 95%;
}

/* Button refinement */
/* .hm-about-section .common-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    color: #0a1426;
    border-radius: 50px;
    background: transparent;
    border: 2px solid #ef1721;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
} */

/* .hm-about-section .common-btn i {
    transition: transform 0.3s ease;
}

.hm-about-section .common-btn:hover {
    background: #ef1721;
    color: #fff;
    box-shadow: 0 12px 30px rgba(239, 23, 33, 0.35);
} */

/* .hm-about-section .common-btn:hover i {
    transform: translateX(6px);
} */
.hm-about-section .common-btn {
	color: #fff;
	width: max-content;
	padding: 10px;
}
/* Responsive */
@media (max-width: 991px) {
    .hm-about-section {
        padding: 80px 0;
    }

    .hm-abt-right {
        padding-left: 0;
        margin-top: 40px;
        text-align: center;
    }

    .hm-abt-head h3 {
        font-size: 30px;
    }

    .hm-abt-head h3::after {
        margin-left: auto;
        margin-right: auto;
    }

    .hm-abt-head p {
        max-width: 100%;
    }
}
/* Image Wrapper */
.hm-abt-left {
    position: relative;
    padding: 20px;
}

/* Main Image Container */
.hm-abt-left-img {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    box-shadow:
        0 40px 90px rgba(0, 0, 0, 0.28),
        inset 0 0 0 1px rgba(255, 255, 255, 0.15);
    transform-style: preserve-3d;
}

/* Image */
.hm-abt-left-img img {
    width: 100%;
    display: block;
    transform: scale(1.05);
    transition: transform 1s ease;
}

.hm-abt-left-img:hover img {
    transform: scale(1.15);
}

/* Cinematic Overlay */
.hm-abt-left-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        145deg,
        rgba(0, 0, 0, 0.15) 10%,
        rgba(0, 0, 0, 0.45) 90%
    );
    opacity: 0.8;
    transition: opacity 0.6s ease;
}

.hm-abt-left-img:hover::after {
    opacity: 0;
}

/* Luxury Highlight Line */
.hm-abt-left-img::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -60%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255, 255, 255, 0.35),
        transparent 70%
    );
    transform: rotate(10deg);
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hm-abt-left-img:hover::before {
    opacity: 1;
}

/* Floating Decorative Frame */
.hm-abt-left::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 30px;
    bottom: 30px;
    border-radius: 30px;
    border: 2px solid rgba(239, 23, 33, 0.25);
    z-index: -1;
}

/* Subtle Parallax Lift */
.hm-abt-left-img:hover {
    transform: translateY(-10px);
    transition: transform 0.6s ease;
}
/* .hm-abt-left-img img {
    outline: 2px solid white;
    outline-offset: -8px;
} */

/* Mobile Adjustments */
@media (max-width: 991px) {
    .hm-abt-left {
        padding: 0;
    }

    .hm-abt-left::after {
        display: none;
    }

    .hm-abt-left-img img {
        transform: scale(1);
    }
}


.hm-abt-left-img {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
}

.hm-abt-left-img img {
    width: 100%;
    display: block;
    border-radius: 26px;
}

/* Fake outline with radius */
.hm-abt-left-img::after {
    content: "";
    position: absolute;
    inset: 10px; /* similar to outline-offset */
    border: 2px solid #f15521;
    border-radius: 20px;
    pointer-events: none;
}

/* ===== Inner About Section Base ===== */
.inr-about-section {
    padding: 50px 0;
     /* background:url(http://dev5.myvtd.site/intersol/wp-content/uploads/2026/01/bg2.jpg); */
     /* background: #242729; */
     /* background: #37676B; //old */
     background: #242729;
    position: relative;
    overflow: hidden;
}
.inr-about-section::after {
	content: '';
	position: absolute;
	background: url(../images/Pattern.png);
	right: -185px;
	top: -52px;
	height: 60%;
	width: 20%;
	background-size: contain;
	background-repeat: no-repeat;
}
/* Soft background glow */


/* ===== Left Image Styling ===== */
.inr-abt-left {
    position: relative;
    padding: 20px;
    z-index: 2;
}

.inr-abt-left-img {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow:
        0 45px 90px rgba(0, 0, 0, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.15);
    transition: transform 0.6s ease;
}

/* Image */
.inr-abt-left-img img {
    width: 100%;
    display: block;
    border-radius: 28px;
    transform: scale(1.05);
    transition: transform 1s ease;
}

.inr-abt-left-img:hover img {
    transform: scale(1.15);
}

/* Cinematic overlay */
.inr-abt-left-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        150deg,
        rgba(0, 0, 0, 0.12),
        rgba(0, 0, 0, 0.45)
    );
    opacity: 0.7;
    transition: opacity 0.6s ease;
}

.inr-abt-left-img:hover::after {
    opacity: 0.1;
}

/* Luxury inner frame */
.inr-abt-left-img::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 2px solid rgba(241, 85, 33, 0.55);
    border-radius: 22px;
    pointer-events: none;
}

/* Floating frame */
.inr-abt-left::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 30px;
    bottom: 30px;
    border-radius: 32px;
    border: 2px solid #bca887;
    z-index: -1;
}

/* ===== Right Content ===== */
.inr-abt-right {
    padding-left: 50px;
    position: relative;
    z-index: 2;
}

.inr-abt-content h3 {
    /* font-size: 26px;
    color:#686868; */
    font-weight: 600;
    margin-bottom: 22px;
    position: relative;
}

/* Accent underline */
.inr-abt-content h3::after {
    content: "";
    width: 65px;
    height: 4px;
   background: linear-gradient(90deg, #686868, #959a7f);
    display: block;
    margin-top: 14px;
    border-radius: 2px;
}

.inr-abt-content p {
    font-size: 17px;
    color:#eac891;
    margin-bottom: 20px;
    max-width: 95%;
}

/* Editorial rhythm */
.inr-abt-content p + p {
    margin-top: 10px;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .inr-about-section {
        padding: 80px 0;
    }

    .inr-abt-right {
        padding-left: 0;
        margin-top: 40px;
        text-align: center;
    }

    .inr-abt-content h3 {
        font-size: 30px;
    }

    .inr-abt-content h3::after {
        margin-left: auto;
        margin-right: auto;
    }

    .inr-abt-content p {
        max-width: 100%;
    }

    .inr-abt-left::after {
        display: none;
    }
}


video {
    object-fit: fill;
    height: 80vh;
    width: 100%;
}
.mobile-contact{
  display: none;
}
@media (max-width:767px) {
  .hm-about-section {
	padding: 20px 0;
}
video {
	height: 40vh;
}
    .inr-about-section {
	padding: 20px 0;
}
.inr-abt-left .inr-abt-left-img {
	height: auto;
}
.inr-abt-right {
	margin-top: 5px;
}
.inr-banner-content {
	max-height: 160px;
  overflow: hidden;
  min-height: inherit;
}

.mobile-contact{
  display: block;
}
.inr-abt-content p {
	text-align: justify;
}
.gal-prt .gal-bx {
	height: auto;
}
.no-banner {
	max-height: inherit !important;
}
 .inr-banner-content h1 {
	min-width: 90%;
  font-size: 24px !important;
}
#carouselExampleCaptions img {
	height: inherit !important;
	object-fit: contain !important;
}

.hm-abt-right {
	margin-top: 10px;
}

.nav.nav-tabs.mt-4{
  margin-top: 10px !important;
}
.home header {
	position: relative;
}




}
.hm-project-section h4 {
	margin-top: 10px;
}
.ctaForm-box {
	margin-bottom: 15px;
}


/* Top shadow gradient */
header::after {
	content: "";
	position: absolute;
	top: 0%;
	left: 0;
	width: 100%;
	height: 67px;
	pointer-events: none;
	background: linear-gradient( to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0) );
}


.talk-abt-form-box textarea {
	padding-left: 0;
}

/* Tabs wrapper */
.nav-tabs {
    border-bottom: none;
    gap: 12px;
}

/* Tab button */
.nav-tabs .nav-link {
    border: none;
    border-radius: 14px;
    padding: 14px 26px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    background: #242729;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    font-family: "ivymode", sans-serif;
    letter-spacing: 0.5px;
}

/* Hover state */
.nav-tabs .nav-link:hover {
    background: #ffffff;
    color: #0a1426;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Active tab */
.nav-tabs .nav-link.active {
    background: linear-gradient(135deg, #242729, #242729);
    color: #fff;
    box-shadow: 0 14px 30px #eac891;
}

/* Active underline glow */
.nav-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    left: 15%;
    bottom: 6px;
    width: 70%;
    height: 3px;
    background: #eac891;
    border-radius: 6px;
}

/* Focus remove */
.nav-tabs .nav-link:focus {
    outline: none;
    box-shadow: none;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .nav-tabs .nav-link {
        white-space: nowrap;
        padding: 12px 20px;
        font-size: 14px;
    }
}

.hm-service-section{
  background-color: #3a3c3a;
  
}

/* .banner-content h1, .inr-banner-content h1 {
    font-family: var(--saudagar-font);
    font-size: 120px;
    font-weight: 400;
    color: rgba(var(--white-color), 1);
    line-height: 1;
    text-transform: capitalize;
    text-shadow: 2px 2px 2px #000;
} */


/* Gradient shadow */
header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 58px;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.50),
        rgba(0, 0, 0, 0)
    );
    pointer-events: none;
    z-index: 1;
}

/* Ensure navbar content stays above shadow */
header nav {
    position: relative;
    z-index: 2;
}

.borderImg img {
    outline: 2px solid #c9ad7f;
    outline-offset: -8px;
}






.banner-content h1,
.inr-banner-content h1 {
  font-size: 30px;
color: #e6c37a;
text-shadow: 0 2px 6px rgba(0,0,0,0.45);
  line-height: 1.2;
  letter-spacing: 1px;

}

.page-template-services-page .inr-banner-section, .page-template-projectpage-php .inr-banner-section, .page-template-contactpage .inr-banner-section {
	/* background: #004146 !important; */
  background: #242729 !important;
	max-height: 60px;
  overflow: hidden;
}

.page-template-services-page .inr-banner-content, .page-template-projectpage-php .inr-banner-content, .page-template-contactpage .inr-banner-content{
 opacity: 0;
}

/* =========================
   PREMIUM CONTACT SECTION
========================= */

.section-premium {
    padding: 30px 0;
    background: linear-gradient(135deg, #1f2226, #2b2f35);
    position: relative;
    overflow: hidden;
}

/* subtle glow background */
.section-premium::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(165, 199, 104, 0.08);
    border-radius: 50%;
    top: -120px;
    left: -120px;
    filter: blur(120px);
}

/* =========================
   IMAGE GRID
========================= */

.contact-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-images img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    height: 260px;
    transition: all 0.5s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

/* premium hover */
.contact-images img:hover {
    transform: scale(1.05);
}

/* =========================
   CONTENT CARD
========================= */

.contact-content {
    background: #242729;
    padding: 45px;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}

/* heading */
.contact-content h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

/* =========================
   SERVICE LIST
========================= */

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.service-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #cfcfcf;
}

/* premium tick bullet */
.service-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #a5c768;
    font-weight: bold;
}

/* =========================
   PHONE BOX
========================= */

.contact-phone {
    padding: 16px 22px;
    background: rgba(165, 199, 104, 0.1);
    border-left: 4px solid #a5c768;
    border-radius: 10px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.contact-phone a{
  color: #fff;
}
/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .contact-images {
        grid-template-columns: 1fr;
    }

    .contact-content {
        padding: 30px;
    }

    .contact-content h2 {
        font-size: 22px;
    }
}





/* SECTION */
.section-premium {
    background: #242729;
    padding: 30px 15px;
    color: #fff;
    position: relative;
}
.section-premium img{
  border-radius: 18px;
}
/* ---------- IMAGE SIDE ---------- */
.contact-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
}

/* photo styling */
.contact-images img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.45);
    transition: 0.4s ease;
}

.contact-images img:hover {
    transform: translateY(-6px) scale(1.02);
}

/* ---------- QR CARD (premium badge style) ---------- */
.text-center {
    position: relative;
    margin-bottom: 30px;
}





/* ---------- CONTENT ---------- */
.contact-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
    color: #a5c768;
}


.contact-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(165,199,104,0.4);
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {
    .contact-images {
        grid-template-columns: 1fr;
    }

    .contact-content h2 {
        font-size: 26px;
    }

    .text-center img {
        width: 110px;
    }
}

.no-banner{
 background: rgba(36,39,41,0.9) !important;
  max-height: 60px !important;
  overflow: hidden;
}
.common-section.hm-project-section.py-4 {
	padding: 10px !important;
}

/* ===============================
   CONTACT SECTION – PREMIUM DARK
================================= */

.contact-section {
    background: #242729;
    color: #e9ecef;
    position: relative;
}

/* subtle texture overlay */
.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(165,199,104,0.08), transparent 60%);
    pointer-events: none;
}

/* spacing */
.contact-section .container {
    position: relative;
    z-index: 2;
}


/* ===============================
   TOP INFO CARDS
================================= */

.cont-box {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 28px 20px;
    text-align: center;
    height: 100%;
    transition: 0.35s ease;
    border: 1px solid rgba(255,255,255,0.06);
}

/* hover lift */
.cont-box:hover {
    transform: translateY(-8px);
    /* border-color: rgba(165,199,104,0.4); */
    border-color: rgba(241, 85, 41, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}


/* icon circle */
.cont-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    /* background: linear-gradient(135deg,#a5c768,#89b24e); */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    /* color: #242729; */
    /* box-shadow: 0 8px 25px rgba(165,199,104,0.35); */
    color: #fff;
    box-shadow: 0 8px 25px rgba(241, 85, 41, 0.26);
    background: #f15529;
}

.cont-text h5 {
    font-weight: 600;
    margin-bottom: 6px;
    color: #fff;
}

.cont-text span,
.cont-text a {

    color: #c9ced6;
    text-decoration: none;
}

.cont-text a:hover {
    color: #a5c768;
}


/* ===============================
   FORM SECTION
================================= */

.ctaForm-box {
    background: rgba(255,255,255,0.04);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

/* inputs */
.form-control {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    padding: 14px 16px;
    border-radius: 12px;
    transition: 0.3s;
    padding-left: 15px !important;
}

.form-control::placeholder {
    color: #9aa0a6;
}

.form-control:focus {
    background: rgba(255,255,255,0.08);
    border-color: #f15529;
    box-shadow: 0 0 0 3px #f1542942;
    color: #fff;
}





/* ===============================
   TITLE
================================= */

.common-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
}


/* ===============================
   MAP
================================= */

.iframe-box {
    /* border-radius: 20px; */
    overflow: hidden;
    /* box-shadow: 0 20px 50px rgba(0,0,0,0.45); */
    height: 100%;
    text-align: center;
}

.iframe-box iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    filter: grayscale(60%) contrast(1.05);
}


/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 768px) {

    .ctaForm-box {
        padding: 25px;
    }

    .iframe-box iframe {
        min-height: 350px;
    }
}


input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea {
	color: #fff !important;
	/* border: 1px solid #90b755; */
	border: 1px solid #f15529;
	border-radius: 3px;
	padding: 3px;
	border-top: 0;
	border-left: 0;
	border-right: 0;
}


/* header new css add */
@media(min-width:1200px){
  .mobile-header{
    display: none;
  }
}
@media(max-width:1199px){
  .desktop-header{
    display: none;
  }
}
.contact-right-btn{
  position: relative;
  width: 100%;
  text-align: right;
}
.contact-btn {
	position: relative;
	background-color: #3a3c3a;
	border-color: #444444;
	border-radius: 0;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	padding: 8px 18px;
}
.contact-btn:hover{
  background-color: #3a3c3a;
  border-color: #3a3c3a;
  color: #fff;
}
.desktop-header .desktop-logo{
  position: relative;
  width: 100%;
  text-align: center;
}
.desktop-header .desktop-logo .navbar-brand{
  height: 70px;
  position: relative;
  display: inline-block;
  margin-right: 0;
}
/* header new css add end */

/* .home .footer-section{
  display: block !important;
} */
.home{
 background: #242729 !important;
}
.mot-head {
	margin-bottom: 7px;
}





/* .carousel {
	position: relative;
	height: 100vh;
} */
/* .carousel-inner {
	height: 100vh;
} */
/* .carousel-fade .carousel-item {
	height: 100vh;
} */
#carouselExampleCaptions img {
	height: 100vh;
	object-fit: cover;
}
@media (max-width: 500px) {

.nav-tabs {
	flex-wrap: wrap;
	justify-content: center;
}
}

@media (min-width: 933px) and (max-width: 1023px) {
.service-card .service-img {
	height: 300px;
}
.hm-service-section .container{
  max-width: 100%;
}
.service-card .service-name p {
	font-size: 15px;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.service-card .service-name p {
	font-size: 17px;
}
}
body {
	background: #dfe0e1;
}
.error404{
  background: #3a3c3a !important;
}
.error404 .inr-banner-section{
  background: #3a3c3a !important;
}
.no-banner h1{
  opacity: 0;
}


.home-Footer{
  display: none;
  color:#fff;
}
.copyRight, .footer-section {
  display: none;
}
@media (max-width:767px){
  .home-Footer, .footer-section {
  display: block;
}
.copyRight{
  color:#fff;
  text-align: center;
  display: block;
}
.home-Footer .cont-box {
	padding: 10px 10px;
}
.home-Footer .cont-icon {
	width: 40px;
	height: 40px;
	font-size: 14px;
}
.home-Footer h6 {
	text-align: center;
	position: relative;
	z-index: 9;
	background: #242729;
}
.carousel-indicators {
	margin-bottom: 0rem;
}

.page-template-aboutpage header {
	position: relative;
}

.page-template-services-page .inr-banner-section{
	max-height: 60px;
}
.grecaptcha-badge {
	bottom: 80px !important;
}
.page-template-projectpage .nav-tabs {
	flex-wrap: wrap;
	justify-content: center;
}
}
.copyRight{
    color: #bfc3c9;
}
.footer-tagline{
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  letter-spacing: .4px;
  line-height: 1.7;
  margin: 0;
}
.copyRight a{
   color: #bfc3c9;
}



.page-template-services-page .inr-banner-section {
	max-height: 60px;
}
.page-template-projectpage-php .inr-banner-section {
	max-height: 60px;
}

.home .navbar.header-fixed {
	position: relative;
}

.page-template-contactpage .iframe-box img {
	max-height: 424px;
  border-radius: 15px;
}

#carouselExampleCaptions {
  display: block;
}

.mobile-img-item  {
  max-height: 100vh;
  height: 100%;
}

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

.banner-slider.owl-carousel {
  display: none;
}

/* @media (min-width: 1200px) and (max-width: 1400px){} */

.page-template-aboutpage .mot-card .mot-content p {

    hyphens: auto;
    text-align-last: left;
}

@media (max-width: 767px) {
  .banner-slider.owl-carousel {
    display: block;
  }
  #carouselExampleCaptions {
    display: none;
  }
  .mobile-img-item {
    height: 600px;
  }
}


.page-template-aboutpage .mot-card .mot-content h5 {
	color: #eac891;
  margin-bottom: 10px;
}
.page-template-aboutpage .accordion-body {
	background: #242729;
	color: #eac891;
}
.page-template-aboutpage .mot-card .mot-content p {
	color: #eac891;
}

/* @media (max-width: 767px){
  .mobile-img-item img {

	object-fit: contain;
}
} */

.mot-card .mot-content p {
	margin-bottom: 1rem !important;
}

.mot-card .mot-content p {
   padding-top: 0 !important;
}

.mot-section .accordion-body p{
  text-align:left !important;
}