  /*mission vision*/
  
  
         .cardmv {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 400px;
    background: #a0604d;
     box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 10px 0px,
    rgba(0, 0, 0, 0.5) 0px 2px 25px 0px;
}

 .cardmv h2 
 {position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 35px!important;
  font-weight: 700;
  opacity: 1; /* Always visible */
  pointer-events: none;
  z-index: 2;
  color:#fff;
  
  }
.cardmv .image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.cardmv .image img {
    width: 100%;
    height:400px;
    object-fit:cover;
    transition: .5s;
}
.cardmv:hover .image img {
    opacity: .5;
    transform: translateX(30%);/*100%*/
}

.cardmv:hover h2  {
    display:none;
}
.cardmv .details {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;/*100%*/
    height: 100%;
    /*background: #a0604d;*/
    background:#6b2a12;
    transition: .5s;
    transform-origin: left;
    transform: perspective(2000px) rotateY(-90deg);
}
.cardmv:hover .details {
    transform: perspective(2000px) rotateY(0deg);
}
.cardmv .details .center {
    padding: 20px;
    text-align: center;
    background: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.cardmv .details .center h1 {
    margin: 0;
    padding: 0;
    color: #a0604d;
    line-height: 20px;
    font-size: 20px;
    text-transform: uppercase;
}
.cardmv .details .center h1 span {
    font-size: 14px;
    color: #262626;
}
.cardmv .details .center p {
    margin: 10px 0;
    padding: 0;
    color: #262626;
}
.cardmv .details .center ul {
    margin: 10px auto 0;
    padding: 0;
    display: table;
}
.cardmv .details .center ul li {
    list-style: none;
    margin: 0 5px;
    float: left;
}
.cardmv .details .center ul li a {
    display: block;
    background: #262626;
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    transform: .5s;
}
.cardmv .details .center ul li a:hover {
    background: #ff3636;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cardmv {
        height: auto;
        margin-bottom:20px;
    }
    
    .cardmv .image img {
    width: 100%;
    height:500px;
    object-fit:cover;
    transition: .5s;
}

    

  
}

.wt-bnr-inr .site-bg-secondry{
    
background:#00173c73!important;
}
.cardBox {
  width: 100%;
  height: 400px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 10px 0px,
    rgba(0, 0, 0, 0.5) 0px 2px 25px 0px;
    
    margin-bottom:30px;
}
.mvbox {
  position: relative;
  width: 95%;
  height: 95%;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  padding: 20px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.mvbox::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  border-radius: 20px;
  transition: background 0.3s ease;
}

.mvbox * {
  position: relative;
  z-index: 2;
}

.mvbox:hover {
  transform: scale(1.02);
}

.mvbox .content {
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.5s ease;
}

.mvbox:hover .content {
  transform: translateY(0);
  opacity: 1;
}

.mvbox:hover h2,
.mvbox:hover span {
  opacity: 0;
}


.mvbox h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 45px;
  font-weight: 700;
  opacity: 1; /* Always visible */
  pointer-events: none;
  z-index: 2;
  color:#fff;
}

    /*team*/
    
    .container1 .card {
	position: relative;
	width: 100%;
	/*height: 400px;*/
	/*margin: 20px;*/
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	border-radius: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	border:2px solid #6b2a12;
}
.container1 .card .content {
	position: absolute;
	bottom: -160px;
	width: 100%;
	height: 160px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10;
	flex-direction: column;
	backdrop-filter: blur(15px);
	box-shadow: 0 -10 10px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: bottom 0.5s;
	transition-delay: 0.8s;
}
.container1 .card:hover .content {
	bottom: 0px;
	transition-delay: 0s;
}
.container1 .card .content .contentBox h3 {
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
	font-size: 18px;
	text-align: center;
	margin: 20px 0 15px;
	line-height: 1.1em;
	transition: 0.5s;
	opacity: 0;
	transform: translate(20px, 30px);
	transition-delay: 0.6s;
}
.container1 .card:hover .content .contentBox h3 {
	opacity: 1;
	transform: translateY(0px);
}
.container1 .card .content .contentBox h3 span {
	font-size: 12px;
	font-weight: 300;
	text-transform: initial;
}
.container1 .card .content .sci {
	position: relative;
	bottom: 10px;
	display: flex;
}
.container1 .card .content .sci li {
	list-style: none;
	margin: 0 10px;
	transform: translateY(40px);
	transition: 0.5s;
	opacity: 0;
	transition-delay: calc(0.2s * var(--i));
}
.container1 .card:hover .content .sci li {
	transform: translateY(0px);
	opacity: 1;
}

.container1 .card .content .sci li a {
	color: #fff;
	font-size: 24px;
}


/*end*/
    
    .quick_contact a {
  position: fixed;
  width: 60px;
  height: 60px;
  right: 18px;
  color: #fff;
  line-height:25px;
  border-radius: 50px;
  text-align: center;
  font-size: 25px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 100;
  transition: transform 0.5s ease;
}

   .quick_contact1 a {
  position: fixed;
  width: 60px;
  height: 60px;
  left: 18px;
  color: #fff;
  line-height:25px;
  border-radius: 50px;
  text-align: center;
  font-size: 25px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 100;
  transition: transform 0.5s ease;
}

.qwhtsapp {
  bottom: 60px;
  background-color: #25d366;
}
.qcall {
  bottom: 60px;
  background-color: #2196f3;
}
.quick_contact_icon {
  margin-top: 20px;
}
.quick_contact a:hover {
  transform: scale(1.1);
}

    
    .cardimg {
  
 font-weight: bold;
  padding: 1em;
  text-align: right;
  color: #181a1a;
  
  width:  100%;
  height: 500px;
  
  border-radius: 10px;
  background-image: url('../images/home-11/about/aboutimg.png');
  background-size: cover;
  
  position: relative;
  
  transition-duration: 300ms;
  transition-property: transform, box-shadow;
  transition-timing-function: ease-out;
  transform: rotate3d(0);
}

.cardimg:hover {
  transition-duration: 150ms;
  box-shadow: 0 5px 20px 5px #00000044;
}

.cardimg .glow {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  
  background-image: radial-gradient(circle at 50% -20%, #ffffff22, #0000000f);
}
    
  .rev_slider_wrapper .tp-revslider-slidesli,
.rev_slider_wrapper .tp-bgimg {
    background-position: top center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    object-position: top center !important;
}

        
        .service-icon-box-three:hover .icon-lg img {
            height: 80px;
            filter: brightness(0) invert(1);
            }

    .client-logo2-media img{
      width: 180px !important;
    height: 90px !important;
    object-fit:contain!important;
    
}


.client-logo2-media {
    
     background: #fff;
}


.project-new-2 img{
    width: auto!important;
    height: auto;
}
.project-new-2 {
  
padding: 14px;
    align-items: center;
    justify-content: center;
    display: flex;
    height: 134px;
    border-radius: 10px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
    margin: 15px;
}

/*cursor*/

:root {
  --ball-size: 42;
  --impect-radius: 192;
  --mx: 0;
  --my: 0;
}

body {
  margin: 0;
  /*height: 100vh;*/
  /*background: #0f111a;*/
  /*overflow: hidden;*/
  cursor: none;
 
}

.light {
  position: fixed;
  inset: calc(50% - (var(--ball-size) * 6px));
  background-image: radial-gradient(closest-side, #fff, 2%, transparent);
  transform: translate(calc(var(--mx) * 1px), calc(var(--my) * 1px));
  
  /*width: calc(var(--ball-size) * 1px);*/
  /*height: calc(var(--ball-size) * 1px);*/
  border-radius: 50%;

  pointer-events: none;
   z-index:999999;
}

/*end*/