.hdrContain{
  padding: 15px 30px 0;
  position: fixed;
  width: 100%;
  z-index: 22;
}

 .hdrw {
/*   background: rgba(255, 255, 255, 0.15); */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2); 
/*   box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);  */
}

.hdrw .row{
  align-items: center;
}
.logo img{
 width: 60px;
}
.navMenu ul {
  display: flex;
  align-items: center;
  justify-content: end;
}

.navMenu ul li{
  padding: 0 15px;
}
.navMenu ul li a{
  text-transform: uppercase;
  font-weight: 600;
  font-size: 17px;
  transition: 0.3s all;
}
.navMenu ul li a:hover{
   color: var(--primary-color);
}
.active{
  color: var(--primary-color);
}

.mobTogg {
  display: none;
    position: absolute;
  top: 50%;
  right: 75px;
}
.mobTogg span {
  width: 32px;
  height: 3px;
  display: block;
  background-color: #000;
  margin: 6px 0;
  transition: all 0.3s;
}
.mobTogg.open span:nth-child(1) {
  transform: rotate(43deg) translate(6px, 6px);
}
.mobTogg.open span:nth-child(2) {
  width: 0;
}
.mobTogg.open span:nth-child(3) {
  transform: rotate(-42deg) translate(6px, -6px);
}
.hero-contain{
  position: relative;
	min-height:768px;
  display: flex;
  align-items: center;
  padding: 0;
}
.hroSection .row{
  align-items: center;
}
.hroSection .col-md-7{
  padding: 0 !important;
}
.hroContent h1{
  font-size: 60px;
  line-height: 1.1;
  text-transform: capitalize;
  font-weight: 600;
}
.hroContent p{
  font-size: 26px;
  margin-bottom: 20px;
}
.moreBtn a{
  background-color: var(--primary-color);
  padding: 12px 40px;
  border-radius: 8px;
  color: #000;
  text-transform: capitalize;
  font-size: 18px;
  transition: 0.3s all;
  font-weight: 700;
  display: block;
    transition: all .5s ease-out;
    text-align: center;
    width: fit-content;
}
.moreBtn a:hover{
  border: none;
  background-color: #000;
  color: #ffffff;
  background-position: left bottom;
}
.image{
  float:right;
}
.image img{
  width: 480px;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.animtd-icons div img{
  width: 50px;
}
.animtd-icons .round{
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  background-color: var(--primary-color);
}


.animtd-icons {
  position: absolute;
  top: 0;
  right: 0;
  width: 800px;
  height: 100vh;
  pointer-events: none; /* So it doesn't block other content */
  z-index: 999;
}

.animtd-icons div {
  position: absolute;
  animation: floatAround 15s linear infinite;
}

.animtd-icons div:nth-child(1) {
  left: 5%;
  top: 30%;
  animation-delay: 0s;
}
.animtd-icons div:nth-child(2) {
  left: 50%;
  top: 30%;
  animation-delay: 2s;
}
.animtd-icons div:nth-child(3) {
  right: 35%;
  top: 18%;
  animation-delay: 4s;
}
.animtd-icons div:nth-child(4) {
  right: 25%;
  top: 60%;
  animation-delay: 3s;
}
.animtd-icons div:nth-child(5) {
  right: 20%;
  top: 45%;
  animation-delay: 2s;
}
.animtd-icons div:nth-child(6) {
  left: 10%;
  bottom: 30%;
  animation-delay: 2s;
}

.animtd-icons img {
  width: 40px;
  height: auto;
}

/* Keyframe to move icons randomly in all directions */
@keyframes floatAround {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translate(40px, -60px) rotate(20deg);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50px, 30px) rotate(45deg);
    opacity: 1;
  }
  75% {
    transform: translate(30px, 50px) rotate(60deg);
    opacity: 0.9;
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
    opacity: 1;
  }
}


/* ABOUT SEC */
.Abt-contain{
  background-color: #F2F2F2;
  padding: 40px 0;
  position: relative;
}
.abtSection .row{
  align-items: center;
}
.values li{
  position: relative;
  padding: 8px 25px;
}
.values ul{
  display: flex;
  flex-wrap: wrap;
}
.values li::before{
  position: absolute;
  content: "";
  left: 0;
    top: 37%;
    width: 10px;
    height: 10px;
  border-radius: 50px;
  background-color: #000;
}
.abt-cnt h2{
  font-size: 34px;
  margin-bottom: 10px;
}

.abt-cnt img{
  width: 500px;
  display: block;
    margin: auto;
}
.values{
  margin: 20px 0;
}
.values li{
  font-size: 18px;
  font-weight: 400;
}

.star-icon{
  position: absolute;
  top: 50px;
  left: 30px;
}
.star-icon img{
  width: 50px;
}
.mv-sec{
  background-color: var(--primary-color);
  padding: 30px;
  border-radius: 20px;
  height: 100%;
}
.mv-sec img{
  width: 80px;
}
.mv-cnt h3{
  font-size: 26px;
  margin-bottom: 10px;
}

/* SERVICE SECTION */
.serv-head h2{
  text-align: center;
  font-size: 34px;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.serv-head p{
  text-align: center;
  margin-bottom: 40px;
}
.servList{
  background-color: #F2F2F2;
  border-radius: 20px;
  text-align: center;
  padding: 30px;
  height: 100%;
  transition: .3s all;
}
.servList:hover{
  background-color: var(--primary-color);

}
.servList img{
  width: 80px;
  margin-bottom: 15px;
}
.detl h3{
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
}

.services .col-lg-4{
  padding: 10px;
}
.our-wrks{
  background-color: #F2F2F2;
  padding: 30px 0;
}
.wrk-imgBLk{
	border-radius: 15px;
    overflow: hidden;
}
.wrk-blk .col-md-6{
  padding: 10px ;
}
.imgSec:hover img{
  transform: scale(1.02);
}
.imgSec img{
  transition: all 0.3s;
  line-height: 0;
}
.imgSec{
  transition: .3s all;
  overflow: hidden;;
  line-height: 0;
}

.imgSec{
  height: 500px;
}
.imgSec img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wrk-detls{
	padding:15px;
	background-color:#fff;
}
.wrk-detls h3{
/*   margin-top: 10px; */
  text-transform: capitalize;
}
/* TESTIMONIAL */
.review-sec{
  margin-top: 20px;
}
.reviews{
 width: 100%;
}
.revw-row{
  background-color: var(--primary-color);
  padding: 30px;
  border-radius: 20px;
  height: 100%;
}
.rvw-persn{
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
}
.persnImg{
  width: 60px;
  height: 60px;
  border-radius: 50px;
  background-color: #000;
  overflow: hidden;
}
.persnImg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CLIENT SEC */
.client-sec{
  margin-bottom: 50px;
}
.client img{
  width: 80px;
 display: block;
 margin: auto;
}
.clients-slider{
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}
/* CONTACT */

.cnt-contain{
  display: flex;
  align-items: center;
  padding: 150px 0 40px;
}
.cnt-hero .row{
  align-items: center;
}
.cnt-Text h1{
  text-transform: uppercase;
  font-size: 60px;
  line-height: 1;
}
.cnt-bnr{
display: flex;
justify-content: end;
}
.cnt-bnr img{
  width: 420px;
}
.form-container{
  background-color: #F2F2F2;
  padding: 50px 0;
}
.frm-blk .col-lg-9{
  margin: auto;
} 
.cont-head h2{
	text-align:center;
	font-size:50px;
	font-weight:600;
	margin-bottom:30px;
}
.frm-sec{

  background-color: #fff;
  padding: 40px;
  border-radius: 15px;
}
form{
	width:100%;
}
 .inpFrm input,
.inpFrm textarea{
	display:block;
  width: 100% !important;
  padding: 15px 30px !important;
  margin-bottom: 8px;
  border: 1px solid #e2e2e2;
  background: transparent;
  border-radius: 8px;
  outline: none;
  font-size: 16px;
}
.inpFrm input::placeholder,
.inpFrm textarea::placeholder{
  font-family: var(--body-font);
  text-transform: capitalize;
}
.inpFrm textarea{
  height: 150px;
}
.inpFrm input[type=submit]{
  width: fit-content !important;
  padding: 15px 70px !important;
  cursor: pointer;
  background-color: #000;
	font-weight:600;
  color: #fff;
  font-size: 18px;
  text-transform: capitalize;
  transition: all 0.3s;
}
.inpFrm input[type=submit]:hover{
  background-color: var(--primary-color);
  color: #000;
}
/* FOOTER */
.ftrContain{
  background-color: #272727;
  color: #fff;
  padding: 50px 0;
}

.FtrSec .row{
  align-items: center;
}
.cnt-head h2{
  font-size: 8rem;
  line-height: .8;
  text-transform: uppercase;
}
.cnt-head h2 span{
  color: var(--primary-color);
}
.cntct-btn{
 text-align: center;
 display: flex;
 align-items: center;
 justify-content: center;
}
.cntct-btn a{
  background-color: #fff;
  color: #000000;
  border-radius: 100%;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-transform: capitalize;
  transition:all .5s ease;
}
.cntct-btn a:hover{
  background-color: var(--primary-color);
  color: #000;
  transform: scale(1.06);
}
.ftrContct{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 70px;
}
.ftrLogo{
  max-width: 500px;
}
.ftrLogoImg img{
  width: 120px;
}
.cnt-Num{
	margin-top:18px;	
}
.cnt-Num a{
	display:flex;
	align-items:center;
	gap:8px;
	color:#fff;
    font-size:20px;
}
.ftrMenu{
  display: flex;
  align-items: center;
  justify-content: center;
}
.ftrMenu ul{
  display: flex;
  align-items: center;
}
.ftrMenu li {
  padding: 8px 10px;
 
}
.ftrMenu li a{
  transition: all .3s;
  color: #ffffff;
  font-size: 24px;
  font-weight: 300;
}
.ftrMenu li a:hover{
  color: var(--primary-color);
}
.copyright{
  border-top: 1px solid #8a8a8a;
  text-align: center;
  margin-top: 30px;
  padding-top: 25px;
  color: #c2c2c2;
}