/**
Theme Name: Deep10x
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Deep10X Wordpress Child theme Built over the Astra
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: deep10x
Template: astra
*/


/* Utility  */
.gradient-border{
    position: relative;
    border: 2px solid transparent;
}
.gradient-border::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    height: calc(100% + 10px);
    width: calc(100% + 10px);
    background-image: radial-gradient(83.96% 83.96% at 28.26% 16.04%, #FFF500 0%, #A1E9F5 48%, #CAAFFF 100%);
    border-radius: 26px;
    z-index: -1;
}
.gradient-border-field{
    position: relative;
    border: 2px solid transparent;
}
.gradient-border-field::before {
    content: "";
    position: absolute;
    top: -3px;
    left: 0;
    height: calc(100% + 6px);
    width: calc(100%);
    background-image: radial-gradient(83.96% 83.96% at 28.26% 16.04%, #FFF500 0%, #A1E9F5 48%, #CAAFFF 100%);
    border-radius: 30px;
    /* z-index: -1; */
}
/* Hero Animation  */
.hero-admin-wrapper{
    position: relative;
    width: 717px;
    height: 688px;
}
.hero-admin-wrapper > img{
    position: absolute;
    top:0;
    right:0;
}
.base-sparkles{
    animation: animateSparkles 2s ease-in-out infinite alternate;
}
.base-sparkles,
.base-2{
    mix-blend-mode: screen;
}
.stem{
    mix-blend-mode: plus-lighter;
    top: -10px !important;
}
.header-el-1 {
    animation: animateHeaderEl 2s ease-in-out infinite alternate;
    transform: translateY(0%);
}

@keyframes animateHeaderEl {
    0% {
        transform: translateY(0%);
    }
    100% {
        transform: translateY(10%);
    }
}
@keyframes animateSparkles {
    0% {
        transform: translateY(10%);
    }
    100% {
        transform: translateY(0);
    }
}

/* Hero Section Animated Text  */
.hero-gradient-text h1{
    background: radial-gradient(circle, rgba(252, 255, 112, 1), rgba(137, 206, 227, 1), rgba(167, 149, 201, 1));
    background-size: 200% 200%;
    background-clip: text !important;
    -webkit-background-clip: text !important; /* Safari compatibility */
    color: transparent !important;
    animation: gradientShift 6s ease-in-out infinite; /* Increased duration for smoother transition */
  }
  
  @keyframes gradientShift {
    0%, 100% {
      background-position: 0% 0%; /* Start and end at the same position */
    }
    50% {
      background-position: 100% 100%; /* Shift to the opposite corner */
    }
  }

  /* Service Cards  */
  .service-cards-wrapper {
    justify-content: space-between;
    font-family: "Poppins", sans-serif;
    display: flex;
    gap: 130px;
    --card-height: 388px;
    --expanded-card-width: 293px;
    --shrinked-card-width: 91px;
}

.service-card {
    width: 293px;
    height: 431px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: width 0.5s ease;
}

.card-heading {
    font-size: 18px;
    font-weight: 300;
    position: absolute;
    left: 42px;
    top: 18px;
    white-space: normal;
    max-width: 203px;
    min-width: 203px;
    transition: all 0.5s ease;
}

.card-arrow-icon-wrap {
    position: absolute;
    z-index: 1;
    left: 24px;
    width: 14px;
    height: 15px;
    top: 20px;
    transition: all 0.5s ease;
}
.service-card-link{
    display: block;
}

img.card-body-image{
    width: 256px;
    height: 187px;
    border-radius: 13px;
    position: absolute;
    z-index: 1;
    top: 65px;
    left:18px;
    transition: 4s ease;
    object-fit: cover;
    transition: all 0.5s ease;
    transform-origin: right;
}

.service-card .card-content {
    position: absolute;
    top: 263px;
    left:18px;
    width: 261px;
    font-size: 12px;
    font-weight: 300;
    transition: all 0.5s ease;
	line-height: 14px;
}
.card-content ul{
    padding-left: 20px;
    margin-left: 0;
}

/* Arrow Icon Animation */
.service-card-arrow-icon {
    animation: compressExpand 2s infinite ease-in-out;
    transform-origin: center;
}



.service-card-circle{
    position: absolute;
    --size: 510px;
    width: var(--size);
    height: var(--size);
    top: -316px;
    left: -108px;
    background-color: rgba(252, 255, 112, 1);
    border-radius: 50%;
    transition: all 0.5s ease;
}

/* First Card Cirlce  */
.service-cards-wrapper .service-card:nth-child(1) .service-card-circle{
    background-color: rgba(252, 255, 112, 1);
}
.service-cards-wrapper .service-card.shrinked:nth-child(1) .service-card-circle{
    --size: 190px;
    top: -65px;
    left: -53px;
}
/* 2nd Card  */
.service-cards-wrapper .service-card:nth-child(2) .service-card-circle{
    background-color:rgba(157, 232, 255, 1);
}
.service-cards-wrapper .service-card.shrinked:nth-child(2) .service-card-circle{
    --size: 164px;
    top: -62px;
    left: -53px;
}

/* 3rd Card  */
.service-cards-wrapper .service-card:nth-child(3) .service-card-circle{
    background-color:rgba(202, 175, 255, 1);
}
.service-cards-wrapper .service-card.shrinked:nth-child(3) .service-card-circle{
    --size: 357px;
    top: -163px;
    left: -21px;
}

/* 4th Card  */
.service-cards-wrapper .service-card:nth-child(4) .service-card-circle{
    background-color:rgba(252, 255, 112, 1);
}
.service-cards-wrapper .service-card.shrinked:nth-child(4) .service-card-circle{
    --size: 301px;
    top: -65px;
    left: -151px;
}

/* 5th Card  */
.service-cards-wrapper .service-card:nth-child(5) .service-card-circle{
    background-color:rgba(157, 232, 255, 1);
}
.service-cards-wrapper .service-card.shrinked:nth-child(5) .service-card-circle{
    --size: 326px;
    top: -131px;
    left: 38px;
}
.service-cards-wrapper .service-card:nth-child(5) img.card-body-image{
    top: 78px;
}
.service-cards-wrapper .service-card:nth-child(5) .card-content{
    top: 270px;
}
.service-cards-wrapper .service-card.shrinked:nth-child(5) .card-heading{
    left: 15px;
}
/* 6th Card  */
.service-cards-wrapper .service-card:nth-child(6) .service-card-circle{
    background-color:rgba(202, 175, 255, 1);
}
.service-cards-wrapper .service-card.shrinked:nth-child(6) .service-card-circle{
    --size: 270px;
    top: -155px;
    left: -169px;
}
.service-cards-wrapper .service-card.shrinked:nth-child(6) .card-heading{
    left: 15px;
}
.service-cards-wrapper .service-card:nth-child(6) img.card-body-image{
    top: 78px;
}
.service-cards-wrapper .service-card:nth-child(6) .card-content{
    top: 270px;
}
/* Shrinked Card Styling  */
.service-card.shrinked {
    width: 91px;
    height: 432px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.service-card.shrinked  .card-content{
    opacity: 0;
    left: 0;
}
.service-card.shrinked .card-body-image{
    transform: scaleX(0);
    transition: all 0.5s ease;
    transform-origin: right;
}
.service-card.shrinked .card-heading{
    top: calc(100% - 20px); /* 18px hight + 29px from Bottom = 47px From Bottom*/
    transform: rotate(-90deg);
    transform-origin: 0 0;
    left: 29px;
    width: calc(var(--card-height) - 60px);
    max-width: calc(var(--card-height) - 60px);
    font-size: 24px;
}
.service-card.shrinked .card-arrow-icon-wrap{
    top: 15px;
    left: 56px;
}

/* Service Cards Mobile  */
.service-cards-wrapper-mobile{
	display:flex;
	flex-direction: column;
	gap: 10px;
}
.service-card.service-card-mobile{
	width: 293px;
}
.service-card.service-card-mobile.shrinked{
	width: 293px;
	height: 72px;
	transition: all 1s ease !important;
}
.service-card.service-card-mobile{
	transition: all 1s ease !important;
}
.service-card-mobile.service-card.shrinked .card-heading{
	transform: rotate(0) ;
	top:22px;
	font-size: 18px;
}
.service-card-mobile.service-card.shrinked .card-arrow-icon-wrap{
	top: 19px;
	transform: rotate(90deg);
	left: 272px;
}
.service-card-mobile.service-card.shrinked:nth-child(5) .card-heading, .service-card-mobile.service-card.shrinked:nth-child(6) .card-heading{
	top:10px;
}
.service-card.service-card-mobile img .card-body-image{
	transform-origin: top;
}
.service-card-mobile.service-card.shrinked .card-body-image{
	transform: scaleX(0) scaleY(0);
	transform-origin: top;
}
.service-card-mobile .card-content ul li{
	justify-content: flex-start;
}
.service-card-mobile.service-card:nth-child(6) img.card-body-image{
	top: 82px;
}
.service-card-mobile.service-card:nth-child(6) .card-content{
	top: 275px;
}
.service-card-mobile.service-card:nth-child(5) img.card-body-image{
	top: 82px;
}
.service-card-mobile.service-card:nth-child(5) .card-content{
	top: 275px;
}

/* 1st Child circle Position */
.service-cards-wrapper-mobile .service-card-mobile.service-card.shrinked:nth-child(1) .service-card-circle{
	--size: 184px;
    top: -8px;
    left: 195px;
}
/* 2nd Child circle Background Color */
.service-card-mobile.service-card:nth-child(2) .service-card-circle{
	background-color: #9DE8FF;
}

/* 2nd Child circle Position */
.service-cards-wrapper-mobile .service-card-mobile.service-card.shrinked:nth-child(2) .service-card-circle{
	--size: 152px;
    top: -57px;
    left: 204px;
}

/* 3rd Child circle Background Color */
.service-card-mobile.service-card:nth-child(3) .service-card-circle{
	background-color: #CAAFFF;
}

/* 3rd Child circle Position */
.service-cards-wrapper-mobile .service-card-mobile.service-card.shrinked:nth-child(3) .service-card-circle{
	--size: 215px;
    top: -24px;
    left: 148px;
}

/* 4th Child circle Position */
.service-cards-wrapper-mobile .service-card-mobile.service-card.shrinked:nth-child(4) .service-card-circle{
	--size: 259px;
    top: -113px;
    left: 114px;
}

/* 5th Child circle Background Color */
.service-card-mobile.service-card:nth-child(5) .service-card-circle{
	background-color: #9DE8FF;
}

/* 5th Child circle Position */
.service-cards-wrapper-mobile .service-card-mobile.service-card.shrinked:nth-child(5) .service-card-circle{
	--size: 288px;
    top: -7px;
    left: 190px;
}
/* 6th Child circle Background Color */
.service-card-mobile.service-card:nth-child(6) .service-card-circle{
	background-color: #CAAFFF;
}

/* 6th Child circle Position */
.service-cards-wrapper-mobile .service-card-mobile.service-card.shrinked:nth-child(6) .service-card-circle{
	--size: 288px;
    top: -239px;
    left: 143px;
}

/* Industries Section  */
.deep-industries-wrap{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.industries-list-header{
    color:white;
    font-size: clamp(16px, 2vw + 0.5rem, 20px);
}
.industries-list{
    color:white;
    margin-top: 20px;
    font-size: clamp(18px, 2.5vw + 0.5rem, 28px);
}
.industries-list .industry-label{
    cursor: pointer;
}
.industries-list .industry-label svg{
    animation: compressExpand 2s infinite ease-in-out;
    transform-origin: center;
    opacity: 0;
    transition: 0.3s ease;
}
.industries-list .industry-label:hover svg,
.industries-list .industry-label.active svg{
    transform: translateX(0);
    opacity: 1;
    transition: 0.3s ease;
}

.industries-info-wrap{
    /* background-color: red; */
    position: relative;
    min-height: 515px;
    min-width: 451px;
    max-width: 451px;
    justify-self: end;
}
.industries-info-wrap .industry-info-wrap{
    position: absolute;
    top: 50%;
    opacity: 0;
    transform: translateY(-50%);
}
.industries-info-wrap .industry-info-wrap.active{
    opacity: 1;
    transition: 0.3s ease;
    z-index: 1;
}
.industries-info-wrap .industry-info{
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
}
.industries-info-wrap .industry-info .industry-info-footer{
    padding: 2em;
    font-size: 18px;
}
.industry-info-footer a{
	color: black;
}
.industry-name{
    position: absolute;
    top: 15px;
    right: 15px;
    color:white;
    font-weight: 500;
    font-size: 28px;
}

@keyframes compressExpand {

    0%,
    100% {
        transform: scaleX(1);
    }

    50% {
        transform: scaleX(0.7);
    }
}

.gradient-text h2{
    background: radial-gradient(83.96% 83.96% at 28.26% 16.04%, #FFF500 0%, #A1E9F5 48%, #CAAFFF 100%);
     -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Mega Menu CSS  */
.menu-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three columns */
    grid-gap: 27px;
    background-color: rgba(0,0,0,1);
    width: 100%;
    padding: 50px;
    border-radius: 26px;
    
}

.menu-cards-wrapper .menu-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
}

.menu-cards-wrapper .menu-card h3 {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 7px;
    width: 270px;
    line-height: 36px;
}

.menu-cards-wrapper .menu-card ul {
    list-style: none;
    padding-left: 0; 
    width: auto; 
    margin: 0px;
}

.menu-cards-wrapper .menu-card li {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 5px;
    white-space: nowrap; 
    line-height: 27.2px;
}
.menu-cards-wrapper .menu-card li a{
    color: rgba(205,205,205,1);
}
/* Services Mega Menu CSS  */
.mega-menu-outer-wrap{
	position: absolute;
	top:150px;
	left:50%;
	transform: translatex(-50%);
	z-index: 99;
	display:none;
}
.mega-menu-outer-wrap.active{
	display:block;
}
.menu-cards-wrapper .menu-card h3 a{
	color:white;
}

.menu-cards-wrapper .menu-card h3 a:hover{
	background: radial-gradient(83.96% 83.96% at 28.26% 16.04%, #FFF500 0%, #A1E9F5 48%, #CAAFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header Scheule a Call Button CSS  */
.header-menu-btn{
	margin-left: 50px !important;
}
.header-menu-btn a{
	background-image: radial-gradient(83.96% 83.96% at 28.26% 16.04%, #FFF500 0%, #A1E9F5 48%, #CAAFFF 100%);
	border-radius: 25px;
	color: black !important;
	position: relative;
	display: block;
}
.header-menu-btn a:before{
	content: '' !important;
	width: calc(100% + 6px) !important;
	height: calc(100% + 6px) !important;
	position: absolute !important;
	z-index:-1;
	opacity: 1 !important;
	top:-3px;
	left: -3px;
	border-radius: 25px;
	background-image: linear-gradient(90deg, #FAFF00 0%, #CAAFFF 100%)
}

.header-menu li.menu-item a:not(.header-menu-btn a) {
    background: black !important;
    border-radius: 25px;
    position: relative;
	background-blend-mode:lighter;
}

.header-menu li.menu-item a:not(.header-menu-btn a):before {
   content: '' !important;
	width: calc(100% + 3px) !important;
	height: calc(100% + 3px) !important;
	position: absolute !important;
	z-index:-1;
	opacity: 0;
	top:-1.5px;
	left: -1.5px;
	border-radius: 25px;
	background-image: radial-gradient(83.96% 83.96% at 28.26% 16.04%, #FFF500 0%, #A1E9F5 48%, #CAAFFF 100%);
}

.header-menu li.menu-item a:hover:not(.header-menu-btn a):before,
.header-menu li.menu-item a.dropdown-active:before {
    opacity: 1 !important;
}
.home-mega-menu-trigger a svg{
	margin-left: 8px;
}

.Service-card-small-heading-h5{
    background: radial-gradient(circle at left, #FFF500 0%, #A1E9F5 48%, #CAAFFF 100%);
     -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Poppins",Sans-Serif;
    font-size: 20px;
    font-weight: 700;
}

.deep10-form form.elementor-form .elementor-field-type-submit button {
    background-color: transparent !important;
    color:black !important;
    background: radial-gradient(83.96% 83.96% at 28.26% 16.04%, #FFF500 0%, #A1E9F5 48%, #CAAFFF 100%) !important;
}

.deep10-form input[type="text"],
.deep10-form input[type="number"],
.deep10-form input[type="email"],
.deep10-form input[type="url"],
.deep10-form input[type="password"],
.deep10-form input[type="search"],
.deep10-form input[type=reset],
.deep10-form input[type="tel"],
.deep10-form input[type="date"],
.deep10-form select,
.deep10-form textarea {
    padding: 18px 20px !important;
    border-radius: 30px !important;
    background-color: #D9D9D9 !important;
    color: black !important;
	font-size:18px !important;
	font-weight: 500 !important;
    border: 2px solid transparent !important;
    z-index: 1;
}

.deep10-form input[type="text"],
.deep10-form input[type="number"],
.deep10-form input[type="email"],
.deep10-form input[type="url"],
.deep10-form input[type="password"],
.deep10-form input[type="search"],
.deep10-form input[type=reset],
.deep10-form input[type=tel],
.deep10-form input[type=date],
.deep10-form select {
    height:53px;
}
.elementor-field-group{
    padding-left: calc( 8px/2 ) !important;
    padding-right: calc( 8px/2 ) !important;
}
.file-input-label-wrap{
	display:flex;
	gap: 10px;
	align-items:center;
	color:white;
	font-size: 18px;
    padding: 1em;
    cursor: pointer;
    z-index: 1;
}
.file-upload-form input[type="file"]{
	position: absolute;
	opacity:0;
}
.file-upload-form .elementor-field-type-upload .elementor-field-label{
    width: fit-content;
    height: auto;
    position: relative;
    display:flex;
	gap: 10px;
	align-items:center;
	color:white;
	font-size: 18px;
    padding: 1em;
    cursor: pointer;
    z-index: 1;
}

.paragrapha-heading-gradient-text{
    background: radial-gradient(circle at left, #FFF500 0%, #A1E9F5 48%, #CAAFFF 100%);
     -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
    font-weight: 700;
}

/* Footer-menu-page item-number menu-item-1715 css */
/* #menu-item-1715,#menu-item-32,#menu-item-30{
	width:100%;
} */
@media (max-width: 767px){
	.footer-nav-links li a{
        justify-content: center !important;
        text-align: center;
        align-items: center;
    }
}

/* Gradient-Border CSS responsive mobile */
@media (max-width:768px){
	.page-template-elementor_header_footer{
		background-color:black;
	}
	#gradient-border{
		width:95%;
		margin:10px;
	}

}

/* Service Page ma TestOps paragrapha ki small heading */
.test-ops-paragraph-small-heading{
	font-size:20px;
	font-weight:700;
	color:black;
}