/* Custom styling for hello-child website */

html {
	overflow-x:hidden;
}
.elementor-location-header {
	position:relative;
}
.services-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1%;
    margin-top: 30px;
}

.services-wrapper .service-item {
	width: 48%;
    padding: 30px;
    background: white;
    background: radial-gradient(circle, rgb(255, 91, 46), rgb(222, 22, 16), rgb(23, 0, 0));
    border-radius: 30px;
    cursor: pointer;
    min-height: 200px;
    position: relative;
    margin-bottom: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-wrapper .service-item .service-title {
    font-size: 34px;
    margin: 0px;
    font-weight: 600;
    line-height: 38px;
   text-align: center
}

.services-wrapper .service-item  img {
    transition: 0.5s;
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.services-wrapper .service-item:hover img {
    transform: rotate(360deg);
}
.service-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: #00000073;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.service-popup .service-popup-inner {
    width: 800px;
    background: white;
    padding: 30px;
    border-radius: 21px;
    position: relative;
}

.service-popup .service-popup-inner p {
    color: black;
}

.service-popup .service-popup-inner .service-popup-close {
    background: radial-gradient(circle, rgb(255, 91, 46), rgb(222, 22, 16), rgb(23, 0, 0));
    width: 40px;
    height: 40px;
    display: flex;
    border-radius: 5px;
    font-size: 50px;
    line-height: 0px;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0px;
    right: 0px;
    cursor: pointer;
}

.service-popup.active {
    display: flex;
}
.accordion-orange > summary.e-n-accordion-item-title .title-left:hover {

    color:#ffffff;
}

.accordion-black > summary.e-n-accordion-item-title .title-left:hover {

    color:#ffffff;
}

.accordion-yellow > summary.e-n-accordion-item-title .title-left:hover {

    color:#ffffff;
}

.accordion-green > summary.e-n-accordion-item-title .title-left:hover {

    color:#ffffff;
}

.color_ptxt strong {
	color: #ee5225;
	font-weight:400;
}

    .contact-form .elementor-button {
        padding: 20px 45px 20px 45px;
    }

 

.footer_headingtxt a {
    color: #f74b27;
}

.footer_headingtxt a:hover {
    color: #230202;
}
 

/* speed control */
.type-scan { --step: 0.045s; } 

/* letters + spaces */
.elementor .type-scan .ch,
.elementor .type-scan .space {
	display: inline; 
	color: #9aa0a6;
	opacity: 1;
	animation: glow 0.6s ease forwards;
	animation-delay: calc(var(--i) * var(--step));
	letter-spacing: normal;
	font-kerning: normal;
	font-feature-settings: "kern" 1, "liga" 1;
	-webkit-font-smoothing: antialiased;
}

/* glow animation */
@keyframes glow {
	0%   { color:#9aa0a6; filter:none; }
	60%  { color:#111;    filter: drop-shadow(0 0 0.25px currentColor); }
	100% { color:#111;    filter: drop-shadow(0 0 0.35px currentColor); }
}

/* icon right after `experience` */
.elementor .type-scan .spin-icon{
	display:inline-flex;
	vertical-align: middle;
	margin: 0 4px 0 6px;
	line-height: 0;
	transform: translateY(2px);
}
.elementor .type-scan .spin-icon svg{
	display:block;
	transform-origin: 50% 50%;
	animation: spinOnce 0.9s ease-out forwards;
	animation-delay: calc(var(--i) * var(--step));
}

/* spin keyframes */
@keyframes spinOnce{
	from { transform: rotate(274deg); }
	to   { transform: rotate(192deg); }
}

/* icon styling */
.spin-icon svg{
 
	width: 25px;
	height: 25px;
	 
}

span.spin-icon {
    background: #ee5225;
    width: 60px;
    height: 60px;
    border-radius: 100px;
    display: flex
;
    align-content: center;
    justify-content: center;
    align-items: center;
}


/* balls animation css */

.herosvg_up {
	display: inline-block;
	animation: floatHero 30s ease-in-out infinite;
	will-change: transform;
}

@keyframes floatHero {
	0%, 100% { transform: translateY(0px); }   
	50%      { transform: translateY(400px); }   
}

@media (prefers-reduced-motion: reduce) {
	.herosvg_up { animation: none; }
}

.herosvg_leftright {
	display: inline-block;
	animation: floatLeftRight 30s ease-in-out infinite;
	will-change: transform;
}

@keyframes floatLeftRight {
	0%, 100% { transform: translateX(-4px); }  
	50%      { transform: translateX(40px); }  
}

@media (prefers-reduced-motion: reduce) {
	.herosvg_leftright { animation: none; }
}

.herosvg_leftright {
	display: inline-block;
	animation: floatLeftRight 30s ease-in-out infinite;
	will-change: transform;
}

@keyframes floatLeftRight {
	0%, 100% { transform: translateX(-100px); }  
	50%      { transform: translateX(100px); }
}

@media (prefers-reduced-motion: reduce) {
	.herosvg_leftright { animation: none; }
}


.herosvg_leftrighttwo {
	display: inline-block;
	animation: floatUpDown 30s ease-in-out infinite;
	will-change: transform;
}

@keyframes floatUpDown {
	0%, 100% { transform: translateY(-100px); }  
	50%      { transform: translateY(150px); }  
}

@media (prefers-reduced-motion: reduce) {
	.herosvg_leftrighttwo { animation: none; }
}

.herosvg_upsecound {
	display: inline-block;
	will-change: transform;
	animation: floatXY 20s ease-in-out infinite;
}

@keyframes floatXY {
	0%,100% { transform: translate(0px, 100px); }
	50%     { transform: translate(-150px, -50px); } 
}


.herosvg_leftbottom {
	z-index:0px;
	display: inline-block;
	will-change: transform;
	animation: floatUpDown 20s ease-in-out infinite;
}

@keyframes floatUpDown {
	0%, 100% { transform: translateY(20px); }  
	50%      { transform: translateY(-20px); } 
}



/* end */


/* footer balls animation css */
.footer_lefttopup {
	display: inline-block;
	will-change: transform;
	animation: footerFloat 10s ease-in-out infinite;  
}

@keyframes footerFloat {
	0%, 100% { transform: translateY(15px); }  
	50%      { transform: translateY(-15px); } 
}

.footer_lefttopupsnd {
	display: inline-block;
	will-change: transform;
	animation: planeFloatXY 20s ease-in-out infinite;
}

@keyframes planeFloatXY {
	0%, 100% { transform: translate(-150px, 200px); }    
	50%      { transform: translate(-50px, -20px); }  
}



.footer_bottomsvg {
	display: inline-block;
	will-change: transform;
	animation: planeFloatXY 25s ease-in-out infinite;
}

@keyframes planeFloatXY {
	0%, 100% { transform: translate(-150px, 200px); }    
	50%      { transform: translate(-50px, -20px); } 
}


.footer_bottomsvgtwo {
	display: inline-block;
	will-change: transform;
	animation: floatRightLeft 20s ease-in-out infinite;
}

@keyframes floatRightLeft {
	0%,100% { transform: translateX(0px); }    
	50%     { transform: translateX(-200px); }   
}


.footer_rightup {
	display: inline-block;
	will-change: transform;
	animation: floatUpDownRight 25s ease-in-out infinite;
}

@keyframes floatUpDownRight {
	0%,100% { transform: translateY(100px); }   
	50%     { transform: translateY(-50px); } 
}



/* end */



/* 
path {.herosvg_up {
display: inline-block;
animation: floatHero 14s ease-in-out infinite;
will-change: transform;
}

@keyframes floatHero {
0%, 100% { transform: translateY(-6px); }  
50%      { transform: translateY(6px); }   
}

@media (prefers-reduced-motion: reduce) {
.herosvg_up { animation: none; }
}
}.herosvg_up {
display: inline-block;
animation: floatHero 20s ease-in-out infinite;
will-change: transform;
}

@keyframes floatHero {
0%, 100% { transform: translateY(200px); } 
50%      { transform: translateY(6px); }  
}

@media (prefers-reduced-motion: reduce) {
.herosvg_up { animation: none; }
} */
.contact-form input::placeholder, .contact-form textarea::placeholder{
	opacity: 1;
	text-transform: uppercase;
}
.contact-form input, .contact-form textarea {
	padding: 10px 0px 15px 0px !important;
}
.contact-form .elementor-field-group:after {
	content: '';
	position: absolute;
/* 	background: url(http://199.250.201.124/~tellum/wp-content/uploads/2025/09/arrow-right.png); */
	width: 46px !important;
	height: 46px !important;
	right: 0;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: top center;
	top: 24px;
}
.contact-form .elementor-field-type-submit:after{
	display:none;
}
.linear_gradient_bg{
	background-color: transparent;
	background-image: linear-gradient(-135deg, #FF8749 20%, #DE1610 55%, #170000 90%) !important;
	position:relative;
}
.wheel-bg-img {
	mix-blend-mode: hard-light;
}
/* Accordion Item 1 */
.accordion-orange > summary.e-n-accordion-item-title {
	background-color: #ee5225; 
	color: #ffffff8f;
}

/* Accordion Item 2 */
.accordion-black > summary.e-n-accordion-item-title {
	background-color: #222222; 
	color: #ffffff82;
}

/* Accordion Item 3 */
.accordion-yellow > summary.e-n-accordion-item-title {
	background-color: #faa650; 
	color: #2222227d;
}

/* Accordion Item 4 */
.accordion-green > summary.e-n-accordion-item-title {
	background-color: #2F4B3C; 
	color: #ffffff82;
}


.accordion-title-double .title-left {
	font-weight: 400;
	font-size: 28px;

}

.accordion-title-double .title-right {
	font-size: 14px;
	opacity: 0.85;
	color: #fff;  
}
.btn_global {
	display: inline-block;
	padding: 14px 40px;
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	border: none;
	border-radius: 200px;
	cursor: pointer;
	position: relative;
	z-index: 1;
	background: radial-gradient(circle at 100% 100%, #ff5b2e, #de1610, #170000);
	transition: transform 0.5s ease, filter 0.5s ease, background 0.5s ease;
	overflow: hidden;
}

.btn_global:hover {
	filter: brightness(1.15);

}



.btn_global_top{
	display: inline-block;
	padding: 14px 40px;
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	border: none;
	border-radius: 200px;
	cursor: pointer;
	position: relative;
	z-index: 1;
	background: radial-gradient(circle at 100% 100%, #ff5b2e, #de1610, #170000);
	transition: transform 0.5s ease, filter 0.5s ease, background 0.5s ease;
	overflow: hidden;
}

.btn_global_top:hover {
	filter: brightness(1.15);

}


.footer_headingtxt strong{
	color: #222222;
}

.footer_headingtxt strong:hover{
	color: #DE1610;
}

.mobile_txtheadingone p{

	border-radius: 100px;
	font-family: 'Urbanist';
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 25px;
	padding: 20px 30px;
	background: #4E4E4E;
	display: flex;
	align-items: center;
	flex-direction: row;
	max-width: max-content;

}

.mobile_txtheadingtwo p{

	border-radius: 100px;
	font-family: 'Urbanist';
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 25px;
	padding: 20px 30px;
	background: #EF6D48;
	display: flex;
	align-items: center;
	flex-direction: row;
	max-width: max-content;


}

#AnModel {
    height: 800px;
    width: 800px;
/* 	animation: 35s modelanimate infinite linear; */
	opacity: 1;
}
.an-banner-model{
    position: absolute!important;
    top: -220px;
    right: -380px;
    mix-blend-mode: hard-light;
    z-index: 1;
}
model-viewer::part(preload) {
  display: none !important;
}
.e-n-accordion-item-title .e-n-accordion-item-title-header {
    width: 100%;
}

.e-n-accordion-item-title .e-n-accordion-item-title-header .e-n-accordion-item-title-text {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 50px;
}
/* @keyframes modelanimate{
    0%{
        transform: rotate(0deg)
    }
    100%{
        transform: rotate(360deg)
    }
} */
.scan-target span {
    display: block;
    background: linear-gradient(90deg,  #000000 50%, #d9d9d9 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    transition: background 0.6s ease;
    background-size: 200% 100%;
    background-position: 100% 50%;
    padding-bottom: 8px;
}

.scan-target .elementor-heading-title span:nth-child(1){
    transition-delay: 0.7s
}
.scan-target .elementor-heading-title span:nth-child(2){
    transition-delay: 1.4s
}
.scan-target .elementor-heading-title span:nth-child(3){
    transition-delay: 2.1s
}
.scan-target .elementor-heading-title span:nth-child(3) img{
    transition: 0.7s;    
    transition-delay: 2.4s;
    transform: rotate(0deg);
    
}
.scan-target .elementor-heading-title span:nth-child(4){
    transition-delay: 2.8s
}
.scan-target .elementor-heading-title span:nth-child(5){
    transition-delay: 3.5s
}
.scan-target .elementor-heading-title span:nth-child(6){
    transition-delay: 4s
}
.scan-target.animated .elementor-heading-title span{
     background-position: 0% 50%;
}
.scan-target.animated .elementor-heading-title span img{
    transform: rotate(90deg)
}


#e-n-accordion-item-2582 > summary.e-n-accordion-item-title .title-right {

    color:#2222227d;
}
.service-popup .service-popup-inner {
    color: #222222;
}
.service-popup .service-popup-inner h3 {
    font-weight: 600;
    font-size: 24px;
    color: #222222;
    margin-bottom: 0px;
}
.service-popup .service-popup-inner ul {
    font-size: 18px;
}
.service-popup .service-popup-inner ul li {
    margin-bottom: 14px;
}
.elementor-32 .elementor-element.elementor-element-7fc62db {
    z-index: -11;
}