/* ==============================================
              Global CSS
==================================================*/
@font-face {
  font-family: Optima-Normal;
  src: url("../build/fonts/Optima-Normal.ttf");
}

@font-face {
  font-family: Optima-Medium;
  src: url("../build/fonts/Optima-Medium.ttf");
}

@font-face {
  font-family: Lato-SemiBold;
  src: url("../build/fonts/Lato-SemiBold.ttf");
}

@font-face {
  font-family: Inter-SemiBold;
  src: url("../build/fonts/Inter-SemiBold.ttf");
}

@font-face {
  font-family: Inter-Bold;
  src: url("../build/fonts/Inter-Bold.ttf");
}

@font-face {
  font-family: Inter-Regular;
  src: url("../build/fonts/Inter-Regular.ttf");
}

@font-face {
  font-family: Inter-Light;
  src: url("../build/fonts/Inter-Light.ttf");
}

@font-face {
  font-family: Inter-Medium;
  src: url("../build/fonts/Inter-Medium.ttf");
}

.container {
  max-width: 1370px;
}

a {
  text-decoration: unset;
  color: unset;
}

a:hover {
  color: #F9CA85;
}

.w-18 {
  width: 22%;
}

.font-12 {
  font-size: 12px;
}

.font-14 {
  font-size: 14px;
}

.font-18 {
  font-size: 18px;
}

.br-bottom {
  border-bottom: 1px solid #eeeeee;
}

p {
  font: 16px 'Inter-Regular';
  color: #000000;
  line-height: 24px;
}

span {
  color: #D2AD75;
}

.red {
  color: #D2242A !important;
}

.light-black {
  color: #3C3C3C
}

.main-title {
  font: 16px 'Lato-Semibold';
  color: #102B60;
  letter-spacing: 2px;
}

.bg-blue {
  background: #102B60;
}

.blue {
  color: #102B60;
}

hr {
  color: #000000;
  opacity: 1;
}

h1 {
  font: clamp(24px, 4vw, 52px) 'Optima-Medium';
  color: #ffffff;
}

h2 {
  font: clamp(22px, 4vw, 48px) 'Optima-Medium';
  color: #3C3C3C;
  letter-spacing: 3px;
}

h3 {
  font: clamp(26px, 4vw, 34px) 'Roboto-Bold';
  color: #252525;
}

h4 {
  font: clamp(24px, 4vw, 30px) 'Inter-SemiBold';
  color: #102B60;
}

h5 {
  font: 22px 'Inter-SemiBold';
  color: #ffffff;
}

h6 {
  font: clamp(30px, 4vw, 40px) 'Inter-Bold';
  color: #000000;
}
.brochure-btn {
  font: 16px 'Inter-SemiBold';
  background: #F9CA85;
  border: unset;
  width: 150px;
  height: 50px;
  display: inline-block;
  position: relative;
  padding: 10px 25px;
  text-indent: -10px;
}
.brochure-btn:hover {
	background-color: #AB844A;
	color: white;
}

.brochure-btn:before, .brochure-btn:after {
	content: ' ';
	display: block;
	position: absolute;
	right: 10px;
	top: 52%;
}

/* Download box shape  */
.brochure-btn:before {
  width: 15px;
  height: 5px;
  border-style: solid;
  border-width: 0 2px 2px;
}

/* Download arrow shape */
.brochure-btn:after {
  width: 0;
  height: 0;
  margin-right: 3px;
  /* margin-top: -7px; */
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: transparent;
  border-top-color: inherit;
  animation: downloadArrow 2s linear infinite;
  animation-play-state: paused;
}

.brochure-btn:hover:before {
	border-color: #ffffff;
}

.brochure-btn:hover:after {
	border-top-color: #ffffff;
	animation-play-state: running;
}

/* keyframes for the download icon anim */
@keyframes downloadArrow {
	/* 0% and 0.001% keyframes used as a hackish way of having the button frozen on a nice looking frame by default */
	0% {
		margin-top: -7px;
		opacity: 1;
	}
	
	0.001% {
		margin-top: -15px;
		opacity: 0;
	}
	
	50% {
		opacity: 1;
	}
	
	100% {
		margin-top: 0;
		opacity: 0;
	}
}
.know-btn {
  font: 16px 'Inter-SemiBold';
  background: #F9CA85;
  border: unset;
  width: 150px;
  height: 50px;
  display: inline-block;
  position: relative;
  padding: 10px 25px;
  text-indent: -10px;
  overflow: hidden;
}

.know-btn:after {
  content: "";
  position: absolute;
  width: 115%;
  height: 200px;
  background: #AB844A;
  transform: translateY(-45%) skew(25deg) scale(0);
  left: -6%;
  transition: 200ms ease-in-out;
}
.know-btn:hover:after {
  transform: translateY(-45%) skew(25deg) scale(1);
}
.know-btn span {
  position: relative;
  z-index: 1;
}
.know-btn:hover span{
  color: #ffffff !important;
}
.explore-btn {
  font: 16px 'Inter-SemiBold';
  background: #F9CA85;
  border: unset;
  width: 150px;
  height: 50px;
  display: inline-block;
  position: relative;
  padding: 10px 25px;
  margin-left: 5px;
}

.view-more {
  background: #AB844A;
  color: #ffffff;
  border: unset;
  width: 150px;
  height: 50px;
  font: 16px 'Inter-Medium';
}

/* .view-more:hover{
  color: #D2242A;
} */


/* ==============================================
              Nav bar Section
==================================================*/
/* header */
.header {
  display: block;
  width: 100%;
  z-index: 99;
  border-bottom: 1px solid #FFD5A6;
}

/* Header styling */
#main-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: transparent;
  transition: all 0.3s ease;
  box-shadow: none;
  padding: .8rem 12rem;
}

/* Sticky class added by JS */
#main-header.sticky {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background-color: #333333;
  padding: .7rem 14rem;
}

.header .item-left {
  flex: 0 0 10%;
}

.header .logo a {
  font-size: 30px;
  color: #000000;
  font-weight: 700;
  text-decoration: none;
}

.header .item-center {
  flex: 0 0 78%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header .item-right {
  flex: 0 0 12%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header .item-right a {
  text-decoration: none;
  font-size: 16px;
  color: #555555;
  display: inline-block;
  margin-left: 10px;
  transition: color 0.3s ease;
}

.header .menu>ul>li {
  display: inline-block;
  line-height: 50px;
}

.header .menu>ul>li>a {
  font: 16px 'Inter-Medium';
  padding: 20px 15px;
  color: #ffffff;
  position: relative;
  text-transform: capitalize;
  transition: color 0.3s ease;
}

.header .menu>ul>li .sub-menu {
  position: absolute;
  z-index: 500;
  background-color: #ffffff;
  box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
  padding: 20px 30px;
  transition: all 0.5s ease;
  margin-top: 25px;
  opacity: 0;
  visibility: hidden;
}

/* Header Second */
.head-second {
  background: #ffffff;
  padding: .8rem 16rem;
  position: sticky;
  top: 0;
}
.head-second .item-left {
  flex: 0 0 11%;
}
.head-second .item-center {
  flex: 0 0 74%;
}
.head-second .item-right {
  flex: 0 0 15%;
}
.head-second .menu>ul>li>a {
  color: #152B55;
}

.head-second .brochure-btn {
  color: #ffffff;
  background: #AB844A;
}

@media(min-width: 992px) {
  .header .menu>ul>li.menu-item-has-children:hover .sub-menu {
    margin-top: 0;
    visibility: visible;
    opacity: 1;
  }
}

.header .menu>ul>li .sub-menu>ul>li {
  line-height: 1;
}

.header .menu>ul>li .sub-menu>ul>li>a {
  display: inline-block;
  padding: 10px 0;
  font: 16px 'Inter-Medium';
  color: #555555;
  transition: color 0.3s ease;
  text-decoration: none;
  text-transform: capitalize;
}

.header .menu>ul>li .single-column-menu {
  min-width: 280px;
  max-width: 350px;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li {
  line-height: 1;
  display: block;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
  padding: 10px 0;
  display: inline-block;
  font-size: 15px;
  color: #555555;
  transition: color 0.3s ease;
}

.header .menu>ul>li .sub-menu.mega-menu {
  left: 50%;
  transform: translateX(-50%);
}

.header .menu>ul>li .sub-menu.mega-menu-column-4 {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 15px;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
  flex: 0 0 25%;
  padding: 0 15px;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item .title {
  font-size: 16px;
  color: #ea4636;
  font-weight: 500;
  line-height: 1;
  padding: 10px 0;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
  text-align: center;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
  max-width: 100%;
  width: 100%;
  vertical-align: middle;
  margin-top: 10px;
  height: 300px;
  object-fit: cover;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a:hover,
.header .menu>ul>li .sub-menu>ul>li>a:hover,
.header .item-right a:hover,
.header .menu>ul>li:hover>a {
  color: #000000;
}
.sticky .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a:hover,
.sticky .menu>ul>li .sub-menu>ul>li>a:hover,
.sticky .item-right a:hover,
.sticky .menu>ul>li:hover>a {
  color: #F9CA85;
}
/* banner section */
.banner-section {
  background-image: url('../img/banner.jpg');
  background-size: cover;
  background-position: center;
  height: 700px;
  width: 100%;
  display: block;
}

.mobile-menu-head,
.mobile-menu-trigger {
  display: none;
}

/*responsive*/
@media(max-width: 1024px) {
  .header {
    padding: .8rem 1rem;
  }

  #main-header {
    padding: .8rem 1rem;
  }

  /* Sticky class added by JS */
  #main-header.sticky {
    padding: .7rem 1rem;
  }

  .header .item-center {
    order: 3;
    flex: 0 0 100%;
  }

  .header .item-left,
  .header .item-right {
    flex: 0 0 16%;
  }

  .v-center {
    justify-content: space-between;
  }

  .header .mobile-menu-trigger {
    display: flex;
    height: 30px;
    width: 30px;
    margin-left: 15px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }

  .header .mobile-menu-trigger span {
    display: block;
    height: 2px;
    background-color: #ffffff;
    width: 24px;
    position: relative;
  }

  .header .mobile-menu-trigger span:before,
  .header .mobile-menu-trigger span:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
  }

  .head-second .mobile-menu-trigger span,
  .head-second .mobile-menu-trigger span:before,
  .head-second .mobile-menu-trigger span:after {
    background-color: #333333;
  }

  .header .mobile-menu-trigger span:before {
    top: -6px;
  }

  .header .mobile-menu-trigger span:after {
    top: 6px;
  }

  .header .item-right {
    align-items: center;
  }

  .header .menu {
    position: fixed;
    width: 320px;
    background-color: #ffffff;
    left: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    transform: translate(-100%);
    transition: all 0.5s ease;
    z-index: 1099;
  }

  .header .menu.active {
    transform: translate(0%);
  }

  .header .menu>ul>li {
    line-height: 1;
    margin: 0;
    display: block;
  }

  .header .menu>ul>li>a {
    line-height: 50px;
    height: 50px;
    padding: 0 50px 0 15px;
    display: block;
    color: #152B55;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .header .menu>ul>li>a i {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 0;
    right: 0;
    text-align: center;
    line-height: 50px;
    transform: rotate(-90deg);
  }

  .header .menu .mobile-menu-head {
    display: flex;
    height: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 501;
    position: sticky;
    background-color: #ffffff;
    top: 0;
  }

  .header .menu .mobile-menu-head .go-back {
    height: 50px;
    width: 50px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000000;
    font-size: 16px;
    display: none;
  }

  .header .menu .mobile-menu-head.active .go-back {
    display: block;
  }

  .header .menu .mobile-menu-head .current-menu-title {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
  }

  .header .menu .mobile-menu-head .mobile-menu-close {
    height: 50px;
    width: 50px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000000;
    font-size: 25px;
  }

  .header .menu .menu-main {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .header .menu>ul>li .sub-menu.mega-menu,
  .header .menu>ul>li .sub-menu {
    visibility: visible;
    opacity: 1;
    position: absolute;
    box-shadow: none;
    margin: 0;
    padding: 15px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 65px;
    max-width: none;
    min-width: auto;
    display: none;
    transform: translateX(0%);
    overflow-y: auto;
  }

  .header .menu>ul>li .sub-menu.active {
    display: block;
  }

  @keyframes slideLeft {
    0% {
      opacity: 0;
      transform: translateX(100%);
    }

    100% {
      opacity: 1;
      transform: translateX(0%);
    }
  }

  @keyframes slideRight {
    0% {
      opacity: 1;
      transform: translateX(0%);
    }

    100% {
      opacity: 0;
      transform: translateX(100%);
    }
  }

  .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
    margin-top: 0;
  }

  .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
    margin-bottom: 20px;
  }

  .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center:last-child .title {
    margin-bottom: 0px;
  }

  .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
    flex: 0 0 100%;
    padding: 0px;
  }

  .header .menu>ul>li .sub-menu>ul>li>a,
  .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
    display: block;
  }

  .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul {
    margin-bottom: 15px;
  }

  .menu-overlay {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1098;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
  }

  .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }
}

@media(max-width: 850px) {

  .header .item-left,
  .header .item-right {
    flex: 0 0 20%;
  }
}

@media(max-width: 540px) {

  .header .item-left,
  .header .item-right {
    flex: 0 0 32%;
  }
}

/* ==============================================
              Footer Section
==================================================*/
.footer-sec {
  background: #172A51;
  padding: 60px 0 40px;
}

.logo-text {
  width: 100%;
}
.footer-sec ul {
  display: flex;
  list-style: none;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.footer-sec li {
  padding-bottom: 10px;
  color: #fcfcfc;
  font: 17px 'Inter-Light';
  line-height: 26px;
}

.f-title {
  font: 20px 'Inter-SemiBold';
  color: #fcfcfc;
  text-decoration: underline;
}

.flogo {
  width: 65%;
}

.footer-sec hr {
  margin: 2rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid #fcfcfc;
  opacity: 1;
}

ul .links {
  display: flex;
  flex-direction: column;
  color: #252525;
  font: 16px 'ProximaNova-Regular';
  padding: 0;
  margin-top: 15px;
}

.links a {
  color: #252525 !important;
  text-decoration: none;
}

.social-links a {
  margin-right: 14px;
}

li.social-icon {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.social-icon a {
  text-decoration: unset;
  color: #fff;
}

.social-icon .location {
  margin-right: 40px;
  font: 22px 'Inter-SemiBold';
}

.social-icon img {
  margin-right: 12px;
  transition: 0.3s;
}

.social-icon img:hover {
  transform: scale(1.4);
}

.copyrights {
  background: #172A51;
  height: 82px;
  display: flex;
  align-items: center;

}

.copyrights ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 25px 0 35px;
  margin: 0;
}

.copyrights li {
  font: 16px 'ProximaNova-Regular';
  color: #fcfcfc;
}

/* ==============================================
        scroll-up, side enquiry, call button
==================================================*/
.to-top {
  position: fixed;
  z-index: 99;
  bottom: 20px;
  right: 20px;
  display: none;
}

.to-top a.back-to-top {
  text-decoration: none;
  display: block;
  text-align: center;
  color: #000000;
  font-size: 2em;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50px;
  background: #f9ca85;
  transition: 0.3s;
}

.back-to-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #6b7c9c;
  transition: .5s;
  transform: scale(.9);
  z-index: -1;
}

.back-to-top:hover::before {
  transform: scale(1.1);
  box-shadow: 0 0 15px #6b7c9c;
}

.call_float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 80px;
  right: 19px;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 25px;
  z-index: 100;
}

.call_float::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #00984A;
  transition: .5s;
  transform: scale(.9);
  z-index: -1;
}

.call_float:hover::before {
  transform: scale(1.1);
  box-shadow: 0 0 15px #00984A;
}

/* ==============================================
              Home Page CSS
==================================================*/

/* Banner Section  */
/* .banner-slider {
    margin-top: -111px;
  } */
.home-banner {
  position: relative;
}

.home-banner video {
  width: 100%;
  display: block;
}

.home-content {
  position: absolute;
  inset: 0;
  place-items: flex-start;
  align-content: center;
  padding: 0px 17rem;
}

/* Banner Down Arrow Animation */

.scrollTo {
  position: absolute;
  bottom: 20%;
  left: 50%;
}

.chevron {
  position: absolute;
  width: 20px;
  height: 3px;
  opacity: 0;
  transform: scale(1);
  -webkit-animation: move-chevron 3s ease-out infinite;
  animation: move-chevron 3s ease-out infinite;
}

.chevron:first-child {
  -webkit-animation: move-chevron 3s ease-out 1s infinite;
  animation: move-chevron 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  -webkit-animation: move-chevron 3s ease-out 2s infinite;
  animation: move-chevron 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  background: #f39719;
}

.chevron:before {
  left: 0;
  transform: skewY(45deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  transform: skewY(-45deg);
}

@-webkit-keyframes move-chevron {
  25% {
    opacity: 1;
  }

  33.3% {
    opacity: 1;
    transform: translateY(2.28rem);
  }

  66.6% {
    opacity: 1;
    transform: translateY(3.12rem);
  }

  100% {
    opacity: 0;
    transform: translateY(4.8rem) scale(0.5);
  }
}

@keyframes move-chevron {
  25% {
    opacity: 1;
  }

  33.3% {
    opacity: 1;
    transform: translateY(2.28rem);
  }

  66.6% {
    opacity: 1;
    transform: translateY(3.12rem);
  }

  100% {
    opacity: 0;
    transform: translateY(4.8rem) scale(0.5);
  }
}

/* Service Section */
.home-service-sec {
  background: #FFFBEC;
  padding: 100px 0 50px;
}

.service-grid {
  display: grid;
  gap: 30px 50px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  padding: 20px 0px 40px;
}

.service-grid .grid-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-around;
  
}
.service-grid .grid-items img{
  transition: all .3s ease-in-out;
}
.service-grid .grid-items:hover img{
  transform: scale(0.9);
  transition: all .3s ease-in-out;
}
.service-title {
  font: 16px 'Inter-SemiBold';
}
.arrow{
  color: #ffffff ;
  transition: 200ms ease-in-out;
}
.explore-btn:hover .arrow{
  margin-left: 20px;
  transition: 200ms ease-in-out;
}

/* About Us Section */

.counter-align {
  padding: 0px 6rem 0 17.5rem;
}

.counter-grid {
  display: grid;
  gap: 30px 50px;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  padding: 20px 0 0;
}

.count-no,
.number {
  font: clamp(32px, 4vw, 48px)'Optima-Normal' !important;
  color: #3C3C3C !important;
}

.count-no span {
  color: #D2AD75;
  font: clamp(28px, 4vw, 40px)'Optima-Medium'
}

/* projects Section */
.home-project-sec {
  background: #FFFBEC;
  height: 620px;
  padding: 100px 0 0;
}

.home-project-sec .swiper-container {
  position: relative;
  margin: -190px auto;
  padding: 225px 0 0;
  cursor: grab;
}

.projects-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms linear;
  flex-direction: column;
}

.project-details {
  position: absolute;
  top: -40%;
  right: 30%;
}

.project-details ul {
  padding: 0;
  display: flex;
  margin: 30px 0 0;
}

.project-details ul li {
  color: #3c3c3c;
  font: clamp(20px, 4vw, 30px) 'Optima-Medium';
  margin-right: 3.5rem;
}

.pt {
  color: #3c3c3c;
  font: 18px 'Optima-Medium';
}

.project-title {
  padding: 8px;
  color: #102b60;
  width: 350px;
  margin-bottom: 20px;
  position: relative;
  animation-name: text;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-delay: 2s;
  background: #f9ca85;
  text-align: center;
  letter-spacing: 5px;
  border-radius: 5px;
}


.text2 {
  font-size: 25px;
  color: #FFE997;
  margin-top: 30px !important;
}

@keyframes text {
  0% {
    color: black;
    margin-bottom: 0px;
  }
  30% {
    letter-spacing: 8px;
  }
  85% {
    letter-spacing: 5px;
  }
  100% {
    margin-bottom: 20px;
  }
}
.right-border-custom-height {
  position: relative;
}

.right-border-custom-height::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 0px;
  width: 1px;
  height: 194px;
  background-color: #000000;
}

.project-align {
  padding: 0px 0rem 0 17.5rem;
  z-index: 9;
  position: relative;
  background: #fffbec;
  width: 40%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 0 !important;
}

.projects-slider .swiper-button-next,
.projects-slider .swiper-button-prev {
  position: absolute;
  top: 65%;
  width: 44px !important;
  height: 44px !important;
}

.projects-slider .swiper-button-prev {
  background: url(../build/img/home/left-arrow.png) no-repeat center/cover !important;
  left: 40px !important;
}

.projects-slider .swiper-button-next {
  background: url(../build/img/home/right-arrow.png) no-repeat center/cover !important;
  right: 40px !important;
}

/* Award Section */
.award-sec {
  padding: 100px 0 60px;
  margin-top: 235px;
}

.award-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  padding: 40px 0 0;
}

.award-title {
  font: clamp(20px, 4vw, 24px) 'Optima-Medium';
  line-height: 30px;
  margin-top: 25px;
  text-align: center;
}

/* Clients Section */

.client-sec {
  background: #102B60;
  padding: 100px 0;
  margin-top: 260px;
}

.client-sec ul {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  background: #ffffff;
  padding: 50px;
  border-radius: 25px;
  align-items: center;
}

.client-sec li img {
  width: 150px;
  transition: all .3s linear;
}
.client-sec li:hover img {
  transform: scale(1.2);
  transition: all .3s linear;
}
/* Form Section */
.form-sec {
  padding: 100px 0;
}

.my-form {
  background: #F8F8F8;
  padding: 40px 80px;
  margin-top: 3rem;
}

input,
select,
textarea,
label {
  font-family: 'PlusJakartaSans-SemiBold';
  font-size: 18px;
  margin-top: 5px;
}

.iti {
  width: 100%;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: unset !important;
}

form :is(input, textarea, select).errorform {
  border-bottom: 1px solid red !important;
}

#contact_form .form-group {
  margin-bottom: 3.5rem;
}

.form-control {
  display: block;
  width: 85%;
  padding: .5rem 0rem;
  font-size: 16px;
  color: #3c3c3c;
  background-color: transparent !important;
  background-clip: padding-box;
  border: unset;
  border-radius: 0;
  border-bottom: 1px solid #000000;
  font-family: 'Inter-Light';
}

input,
select,
textarea,
label {
  font-family: 'PlusJakartaSans-SemiBold';
  font-size: 18px;
  margin-top: 5px;
}

.my-form select {
  background: url(../build/img/home/down.png)no-repeat;
  background-position: right;
}

.check-text {
  font-family: 'Inter-Regular';
  font-size: 14px;
  padding: 10px;
  width: 80%;
}

.form-control:focus {
  box-shadow: unset !important;
}

/* Remove native arrow on IE */
select::-ms-expand {
  display: none;
}

select:-moz-focusring {
  color: transparent !important;
  text-shadow: 0 0 0 var(--white);
}

textarea {
  resize: none;
}

ul {
  list-style: none;
}

.black_btn {
  font-size: clamp(16px, 3.2vw, 20px);
  font-family: 'Inter-Regular';
  color: #fcfcfc;
  margin: 10px 20px 10px 0;
  padding: 5px 42px;
  height: 49px;
  width: 162px;
  background: #AB844A;
  border: unset;
  float: right;
}
.w-93{
  width: 93%;
}
/* 
.my-form *:disabled {
  cursor: default;
  filter: blur(1px);
} */

/* ==============================================
              Contact Us Page CSS
==================================================*/
.common-banner {
  background: url(../build/img/home/contact-banner.png) no-repeat center/cover;
  height: 500px;
}

.address-sec {
  margin: 10px 0;
}

.address-sec .my-form {
  padding: 80px;
}

.address-sec .form-group {
  margin-top: 50px;
}

.address-space {
  padding: 5rem 30rem 5rem 5rem;
}

.address-info li {
  color: #ffffff;
  font: 18px 'Inter-Light';
  margin-top: 55px;
  text-indent: -65px;
  margin-left: 70px;
  line-height: 30px;
}

.social a {
  margin-left: 10px;
}

/* ==============================================
              Career Page CSS
==================================================*/

.career-banner-sec {
  padding: 80px 0;
}

.career-content-bg {
  background: #FFFFFF;
  width: 695px;
  border: 1px solid rgba(171, 132, 74, 0.2);
}

.career-content-bg {
  position: absolute;
  background: #FFFFFF;
  border: 1px solid rgba(171, 132, 74, 0.2);
  width: 695px;
  height: 390px;
  top: 12%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0rem 7rem 0rem 16rem;
}

/* Job Section */

.job-sec {
  padding: 0 0 50px;
}

.job-grid {
  display: grid;
  gap: 70px 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  padding: 3rem 6rem;
}

.job-grid .grid-items {
  border: 1px solid #ebebeb;
}

.job-title {
  color: #AB844A;
  font: 24px 'Inter-Medium';
  height: 111px;
  background: #FFFBEC;
  display: flex;
  align-items: center;
  padding: 0 25px;
}

.job-box {
  padding: 0 35px 30px 25px;
}

.job-des {
  font: 14px 'Inter-Regular';
  color: #3C3C3C;
  line-height: 22px;
  margin: 18px 0;
}

.job-exp {
  display: flex;
  justify-content: space-between;
}

.hr2 {
  border-bottom: 1px solid #3c3c3c;
  padding: 15px 0;
}

.job-box ul {
  list-style: circle;
  padding-left: 1rem;
}
.job-des ul {
  list-style:inside; 
  padding-left: 1rem;
}
.job-des li {
  margin: 5px 0px;
  font-size: 16px;
}

/* ==============================================
              Career Inf=dividual Page CSS
==================================================*/
.jobopen-sec {
  padding-bottom: 50px;
}

.jobopen-sec.text-black {
  padding-left: 0px;
}

.job-head {
  padding-bottom: 30px;
}

.job-details {
  padding-bottom: 30px;
}

.openings-sec {
  padding-bottom: 50px;
}

/* ==============================================
             Our Story Page CSS
==================================================*/
.story-banner-sec {
  padding: 30px 0 100px;
}

.counter-story {
  display: grid;
  gap: 30px 15px;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  border: 1px solid #bbbbbb;
  justify-items: center;
  padding: 22px 50px;
  margin-top: 6rem;
}

.counter-story .grid-items {
  text-align: center;
}

.counter-story .count-no,
.counter-story .number {
  margin-bottom: 5px;
}

/* Vision/Mission Section */

.vision-sec {
  background: #FFFBEC;
  padding: 80px 0;
}

.vision-grid {
  display: grid;
  column-gap: 0;
  grid-template-columns: 12% 38% 13% 37%;
  align-items: center;
  padding: 0;
}

.vision-border {
  border: 1px solid #DED3A8;
  border-left: 0;
  padding: 20px 15px 25px;
}

/* Founder message */
.founder-sec {
  background: url(../build/img/about/founder-bg.png) no-repeat center/cover;
  padding: 80px 0 0;
}

/* CSR Activities  */
.csr-sec {
  padding: 80px 0;
}

.csr-sec .text-slider {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #AB844A;
}
.csr-bg {
  background: #AB844A;
  padding: 3rem 4.5rem;
}

/* .csr-sec .photo-slider {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.csr-sec .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  position: relative;
  overflow: hidden;
  align-items: flex-start;
}

.text-slider .swiper-slide {
  padding: 0 4.5rem;
}

.text-slider .swiper-slide {
  opacity: 0 !important;
}

.text-slider .swiper-slide-active {
  opacity: 1 !important;
} */

.csr-title {
  font: 22px 'Inter-Medium';
  margin-bottom: 20px;
  color: #fcfcfc;
}

/* .controls {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
  padding: 20px 0px;
  position: relative;
}

.prev-ctrl,
.next-ctrl {
  position: absolute;
  height: 57px;
  width: 57px;
  top: -17rem;
  border: unset;
} */

/* .prev-ctrl {
  background: url(../build/img/about/prev.png) no-repeat center/cover;
  z-index: 999;
  left: 2rem;
}

.next-ctrl {
  background: url(../build/img/about/next.png) no-repeat center/cover;
  z-index: 999;
  left: 77rem;
} */


/* ================================================================
 Projects
 ================================================================ */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.project-card {
  text-align: center;
}

.project-titles {
  margin-top: 1rem;
  letter-spacing: 0.5px;
  font: 24px 'Optima-Medium';
}
.project-img {
  overflow: hidden;
}
.project-img img {
  transition: all .5s linear;
}
.project-img:hover img {
  transform: scale(1.1) ;
  transition: all .5s linear;
}

a.see-more-link {
  color: #000;
  font-weight: 500;
  transition: color 0.2s;
}

a.see-more-link:hover {
  color: #D5BA75;
}
.hidden-card {
  display: none;
}

.Tabcondent{
  opacity:0;
  margin:0px auto;
  transform: translateY(30px);
  transition: opacity 1.5s ease-in-out;
  display: none;
}
.project-tab {
    text-align: center;
    margin: 30px 0;
}
.project-tab a {
    font: 20px 'Inter-Regular';
    padding: 10px 20px;
    border: 1px solid #ab844a;
}
a.active {
  background-color: #ab844a;
  font: 20px 'Inter-Regular';
  color: #ffffff;
  padding: 10px 20px;
}
.Tabcondent.active{
  width:100%;
  height:100%; 
  opacity:1;
  border-radius:0px;
  transition: opacity 1.5s ease-in-out;
  transform: translateY(0);
  margin:0 auto;
  display: block;
  
}
/* ===================================================================
Project-indvidual
=================================================================== */
.hero-section {
  background-image: url('../build/img/projects/Mask-group.png');
  background-size: cover;
  background-position: center;
  height: 480px;
  padding: 2rem;
  color: white;
  display: flex;
  align-items: center;
}


/* Project Buttons */
.project-button {
  background-color: #AB844A;
  width: 274px;
  height: 58px;
  border-radius: 5px;
  font: 22px 'Inter-Medium';
  border: unset;
  overflow: hidden;
  position: relative;
}
.project-button:after {
  content: "";
  position: absolute;
  width: 115%;
  height: 200px;
  background: #172e58;
  transform: translateY(-45%) skew(25deg) scale(0);
  left: -6%;
  transition: 200ms ease-in-out;
}
.project-button:hover:after {
  transform: translateY(-45%) skew(25deg) scale(1);
}
.project-button  span {
  position: relative;
  z-index: 1;
}
.project-button:hover span{
  color: #ffffff !important;
}
.explore-btn {
  font: 16px 'Inter-SemiBold';
  background: #F9CA85;
  border: unset;
  width: 150px;
  height: 50px;
  display: inline-block;
  position: relative;
  padding: 10px 25px;
  margin-left: 5px;
}
.upcommig-project-button {
  width: 250px;
  height: 58px;
  border: solid 1px #000000;
  color: #000000;
  font: 22px 'Inter-Medium';
   transition: all 0.2s linear;
}
.project-view {
    font: 22px 'Inter-Medium';
    color: #ab844a;
    text-decoration: underline;
}
.project-view:hover{
  color: #000000;
  text-decoration: unset;
}
.arrow-rtl{
  animation: pulse 3s ease-out;
  animation-iteration-count: infinite;
}
@keyframes pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
    transform: translateX(10px);
  }
  100% {
    opacity: 0.5;
  }
}
@media (max-width: 768px) {
  .hero-section {
    height: auto;
    padding: 1.5rem 1rem;
    text-align: center;
  }

  .d-flex.gap-3 {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .project-button,
  .upcommig-project-button {
    width: 100%;
    text-align: center;
  }
}

/* swipper css */

.project-swiper .swiper-slide img {
  width: 100%;
  height: auto;
}

.project-swiper .swiper-button-next,
.project-swiper .swiper-button-prev {
  width: 70px;
  height: 70px;
  top: 45%;
}

.project-swiper .swiper-button-next::after,
.project-swiper .swiper-button-prev::after {
  font-size: 20px;
  line-height: 50px;
}

.project-swiper .swiper-pagination {
  text-align: center;
  margin-top: 40px;
  position: relative;
}
.project-swiper .swiper-pagination-bullet {
  background: #D9D9D9;
  opacity: 1;
  width: 13px;
  height: 13px;
  margin: 0 5px !important;
  border-radius: 50%;
}

.project-swiper .swiper-pagination-bullet-active {
  background: #ff9900;
}

.project-swiper .swiper-button-prev {
  left: 190px !important;
  background: url(../build/img/projects/LEFT.png) no-repeat center/cover;
}

.project-swiper .swiper-button-next {
  right: 190px !important;
  background: url(../build/img/projects/right.png) no-repeat center/cover;
}

@media (max-width: 768px) {
  .project-swiper .swiper-button-prev {
    left: 10px !important;
  }

  .project-swiper .swiper-button-next {
    right: 10px !important;
  }
}

/* ================================================================
Smart-build-css
================================================================ */
.smart-build-sec {
  background-color: #f0e3b1;
  position: relative;
  z-index: 1;
  height: 593px;
  padding-top: 15px;
}

.text-area {
  padding: 0;
  margin-top: 10px !important;
}

.font-24 {
  font-size: 24px;
  font-weight: 700;
}

.smart-build-font-48 {
  font-size: 40px;
  line-height: 1.2;
}

.smart-build-icon-desc {
  font-family: 'Inter-SemiBold';
}

@media (max-width: 768px) {
  .image-area img {
    max-width: 90%;
  }

  .smart-build-sec {
    background-color: #f0e3b1;
    position: relative;
    z-index: 1;
    height: auto;
    padding-top: 15px;
  }
}

@media (min-width: 768px) and (max-width: 1180px) {
  .smart-build-sec {
    height: auto;
    padding-top: 30px;
  }

  .text-area {
    padding: 20px 0 0;
    margin-top: 0 !important;
  }

  .smart-build-font-48 {
    font-size: 32px;
    line-height: 1.2;
  }

  .font-24 {
    font-size: 20px;
  }

  .image-area img {
    max-width: 100%;
    height: auto;
  }
}

/* Specific for iPad Air Landscape */
@media (min-width: 1180px) and (max-width: 1200px) {
  .smart-build-sec {
    padding-top: 50px;
    height: auto;
  }

  .smart-build-font-48 {
    font-size: 36px;
  }

  .font-24 {
    font-size: 22px;
  }

  .text-area {
    padding: 70px 20px 0;
  }

  .image-area img {
    width: 90%;
  }
}

/* ==============================================
             Infrastructure Page CSS
==================================================*/
.infra-sec {
  background: url(../build/img/infra/infra-bg.png) no-repeat center/cover;
  height: 593px;
}

/* Plant and Machinery */
.plant-sec {
  padding: 70px 0;
}

.infra-title {
  font: clamp(36px, 4vw, 62px) 'Optima-Medium';
  color: #3c3c3c;
}

.slider-align {
  width: 87%;
  margin-left: 13%;
}

.material-sec {
  background-color: #F8F8F8;
  padding: 80px 0px;
}

/* ========================================================
About section 
======================================================== */

.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 16px;
}

.about-grid>div {
  background-color: #f0f0f0;
  padding: 12px;
  text-align: center;
  border-radius: 8px;
  font-weight: bold;
  transition: all .5s ease-in-out
}
.about-grid>div:hover {
  background-color: #152B55;
  transition: all .5s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  
}
.about-grid>div:hover p{
color: #ffffff;
transition: all .5s ease-in-out;
}
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Popup Form */
.modal-body {
  padding: 40px;
  width: 586px;
}
.modal-body label {
  margin-top: 20px;
  font-family: 'Inter-Regular';
}
.modal-dialog-centered {
  justify-content: center;
}
.modal-content {
  width: 586px;
}
#uploadfile {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
}
#uploadfile {
  cursor: pointer;
  padding-bottom: 7px;
  border-bottom: unset !important;
}
#fileInput {
  display: none;
}

/* ==============================================
             Completed Projects Page CSS
==================================================*/

.complete-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem 1rem;
    margin-top: 4rem;
}
 .complete-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.complete-title {
    font: 20px 'Optima-Medium';
    text-transform: uppercase;
    color: #3c3c3c;
}
.sqft {
    color: #AB844A;
    font: 14px 'Inter-Regular';
}