.cd-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(to right, #386bb7 0%, #e24c4a 50%, #386bb7 100%);
  background-size: 200% auto;
  border-radius: 15px;
  padding: 10px 20px;
  min-width: 80px;
  border: none;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  position: relative;
}
.cd-card:hover {
  background-position: right center;
}
.cd-num {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
}
.cd-label {
  font-size: 10px;
  color: rgba(255,255,255,0.8);
  text-transform: capitalize;
  letter-spacing: 1px;
  margin-top: 4px;
  font-weight: 700;
  line-height: 1em;
}



.hero-content::before,
.hero-content::after{
	content: '';
	position: absolute;
	width: 145px;
	height: 200px;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.hero-content::before{
	background-image: url('../images/section-bg-robot-1.png');
	top: -100px;
	right: -200px;
	animation: movestyle1 10s linear infinite alternate;
}



@keyframes movestyle1{
	0%{
		transform: translate(0, 0);
	}	
	100%{
		transform: translate(50px, 50px) rotate(20deg);
	}
}

@keyframes movestyle2{
	0%{
		transform: translate(0, 0);
	}	
	100%{
		transform: translate(-50px, -50px) rotate(-20deg);
	}
}


/************************************/
/*** 	   05. About Us css		  ***/
/************************************/

.about-us{
	position: relative;
	padding: 160px 0;
}

.about-us::before{
	content: '';
	position: absolute;
	left: -130px;
	bottom: 200px;
	
	background-position: center center;
	background-size: cover;
	width: 330px;
	height: 330px;
	animation: movestyle1 10s linear infinite alternate;
	z-index: 0;
}

.about-us .container{
	position: relative;
	z-index: 1;
}

.about-us-info{
	position: sticky;
	top: 40px;
	margin-right: 40px;
}

.about-us-info p{
	margin: 0;
}

.about-us-circle{
	margin-top: 50px;
}

.about-us-circle a{
	display: inline-block;
	border-radius: 50%;
}

.about-us-circle a img{
	width: 100%;
	max-width: 180px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate{
	from{
		transform: rotate(0deg);
    }
    to{
		transform: rotate(360deg);
    }
}

.about-us-circle a:hover img{
	animation-play-state: paused;
}

.about-counter-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.about-counter-item{
	position: relative;
	width: calc(33.33% - 20px);
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 30px 60px 30px 30px;
	transition: all 0.4s ease-in-out;
}

.about-counter-item:hover{
	transform: translateY(-5px);
}

@media only screen and (max-width: 767px) {
    .about-counter-item{
        width: 100% !important;
    }
}


.about-counter-body h2{
	font-size: 40px;
	margin-bottom: 30px;
}

.about-counter-body p{
	margin-bottom: 0;
}

.company-slider-box{
	border-top: 1px solid var(--divider-color);
	margin-top: 80px;
	padding: 80px 30px 0;	
}

.company-logo img{
	width: 100%;
	height: 40px;
}
.company-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo img {
    max-height: 70px;
    width: auto;
    object-fit: contain;
}
.hero-banner-content{
    position: absolute;
    left: 80px;
    top: 40%;
    transform: translateY(-50%);
    max-width: 650px;
    z-index: 2;
}

.hero-banner-content h1{
    font-size: 72px;
    line-height: 1.1em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.hero-banner-content h1 span{
    background: linear-gradient(to right, #4da6ff, #ff7b7b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-banner-content p{
    font-size: 22px;
    line-height: 1.6em;
    color: rgba(255,255,255,0.85);
    max-width: 560px;
}

@media only screen and (max-width: 767px) {
    #introwew {
        font-size: 30px !important;
    }
}


@media only screen and (max-width: 767px){

    .hero-banner-content{
        display: none;
    }

}

/************************************/
/*** 	  09. How It Work css	  ***/
/************************************/


.work-step-item{
	border: 1.5px solid #8f498061;
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
	transition: all 0.3s ease-in-out;
}

.work-step-item:hover{
	transform: translateY(-5px);
}

.work-step-item-header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 20px;
	
	border-bottom: 1px solid #11111166;
}

.work-step-no h3{
	font-size: 16px;
	text-transform: uppercase;
	display: inline-block;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
	transition: all 0.3s ease-in-out;
}

.work-step-item:hover .work-step-no h3{
	background-position: right center;
}

.work-step-item-header .icon-box{
	width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
    background-size: 200% auto;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.work-step-item:hover .work-step-item-header .icon-box{
	background-position: right center;
}

.work-step-item-header .icon-box img{
	width: 100%;
    max-width: 20px;
}

.work-step-item-content h3{
	font-size: 18px;
	margin-bottom: 15px;
}

.work-step-item-content p{
	margin-bottom: 30px;
}

.work-step-item-content ul{
	list-style: disc;
    margin: 0;
    padding-left: 20px;
}

.work-step-item-content ul li{
	line-height: 1.5em;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.work-step-item-content ul li:last-child{
	margin-bottom: 0;
}

.work-step-item-content ul li::marker{
    color: var(--accent-color);
}

.work-step-btn{
	margin-top: 30px;
}

.section-footer-text ul{
	margin: 15px 0 0;
	padding: 0;
	list-style: none;
}

.section-footer-text ul li{
	display: inline-block;
	font-weight: 600;
	color: var(--primary-color);
	line-height: 1.5em;
	margin-right: 10px;
}

.dark-section .section-footer-text ul li{
	color: var(--white-color);
}

.section-footer-text ul li:last-child{
	margin: 0;
}

.section-footer-text ul li i{
	color: var(--accent-color);
}





	.footer-scrolling-ticker .scrolling-ticker-item{
        --gap: 15px;
    }

	.footer-scrolling-ticker .scrolling-content span{
		font-size: 60px;
	}

	.footer-scrolling-ticker .scrolling-content span img{
        max-width: 40px;
        margin-right: 15px;
    }

	.footer-links{
		margin-bottom: 30px;
	}

	.footer-links h3{
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-links ul li{
		margin-bottom: 10px;
	}

	.footer-contact-item{
        margin-bottom: 15px;
    }

	.footer-copyright{
		gap: 5px;
		justify-content: center;
        padding: 40px 0 15px;
        margin-top: 20px;
    }
.section-footer-text ul{
	margin: 15px 0 0;
	padding: 0;
	list-style: none;
}

.section-footer-text ul li{
	display: inline-block;
	font-weight: 600;
	color: var(--primary-color);
	line-height: 1.5em;
	margin-right: 10px;
}

.dark-section .section-footer-text ul li{
	color: var(--white-color);
}

.section-footer-text ul li:last-child{
	margin: 0;
}

.main-footer{
	padding: 100px 0 0;
	margin-bottom: 40px;
}

.footer-scrolling-ticker .scrolling-ticker-item{
	--gap: 30px;
}



.footer-scrolling-ticker .scrolling-content span{
	font-size: 160px;
	line-height: 1.1em;
	background: linear-gradient(100deg, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
	border: none;
	border-radius: 0;
	padding: 0;
	transition: all 0.4s ease-in-out;
}

.footer-scrolling-ticker .scrolling-content span:hover{
	background-position: right center;
}

.footer-scrolling-ticker .scrolling-content span img{
	max-width: 80px;
	margin-right: 30px;
}

.about-footer{
	margin-right: 30px;
}

.footer-logo{
	margin-bottom: 20px;
}

.footer-logo img{
	width: 100%;
	max-width: 188px;
}

.about-footer-content p{
	color: var(--white-color);
}

.about-footer-content p:last-child{
	margin-bottom: 0;
}

.footer-newsletter-form{
	margin-top: 30px;
}

.footer-newsletter-form .form-group{
	width: 90%;
	display: flex;
	background: var(--dark-divider-color);
	border-radius: 10px;
	padding: 8px;
}

.footer-newsletter-form .form-group .form-control{
	width: calc(100% - 44px);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2em;
	color: var(--white-color);
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 8px 15px;
}

.footer-newsletter-form .form-group .form-control::placeholder{
	color: var(--white-color);
}

.footer-newsletter-form .form-group .newsletter-btn{
	width: 44px;
	height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(100deg, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
    border-radius: 6px;
    border: none;
    padding: 0;
    transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover{
	background-position: right center;
}

.footer-newsletter-form .form-group .newsletter-btn img{
	width: 100%;
	max-width: 22px;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover img{
	transform: rotate(45deg);
}

.footer-links h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 30px;
}

.footer-links h3 a{
	text-transform: none;
	display: inline-block;
	background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
	transition: all 0.3s ease-in-out;
}

.footer-links h3 a:hover{
	background-position: right center;
}

.footer-links p{
	color: var(--white-color);
	margin-bottom: 15px;
}

.footer-links h3:last-child,
.footer-links p:last-child{
	margin-bottom: 0;
}

.footer-links ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links ul li{
	background: url('../images/icon-sparkle.svg') no-repeat;
	background-position: left center;
	background-size: 18px auto;
	text-transform: capitalize;
	color: var(--white-color);
	line-height: 1.5em;
	margin-bottom: 20px;
	padding-left: 30px;
}

.footer-links ul li:last-child{
	margin: 0;
}

.footer-links ul li a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover{
	color: var(--accent-color);
}

.footer-contact-item{
	margin-bottom: 30px;
}

.footer-contact-item:last-child{
	margin-bottom: 0;
}

.footer-location-item{
	
	margin-bottom: 30px;
	
}

.footer-social-links h3{
	margin-bottom: 20px;
}

.footer-social-links ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links .footer-social-links ul li{
	display: inline-block;
	background: transparent;
	padding: 0;
	margin: 0 10px 0 0;
}

.footer-links .footer-social-links ul li:last-child{
	margin: 0;
}

.footer-social-links ul li a{
    border: 1px solid var(--dark-divider-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-links ul li a:hover{
	background: var(--white-color);
}

.footer-social-links ul li a i{
    font-size: 18px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-copyright{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid var(--dark-divider-color);
	gap: 10px;
	padding: 50px 0;
	margin-top: 80px;
}

.footer-top-button{
	position: absolute;
	left: 50%;
	top: -50px;
	transform: translate(-50%, 50%);
}

.footer-top-button a{
	width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(100deg, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
    background-size: 200% auto;
    border-radius: 50%;
    border: none;
    padding: 0;
    transition: all 0.4s ease-in-out;
}

.footer-top-button a:hover{
	background-position: right center;
}

.footer-top-button a img{
	width: 100%;
	max-width: 24px;
	transform: rotate(-45deg);
	animation: jumpInfinite 0.8s linear infinite alternate;
}

@keyframes jumpInfinite{
	0%{
		margin-top: 10px;
	}
	100%{
		margin-bottom: 10px;
	}
}

.footer-copyright-text p{
	color: var(--white-color);
	margin: 0;
}

.footer-privacy-policy ul{
	list-style: disc;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 32px;
}

.footer-privacy-policy ul li{
	color: var(--white-color);
	text-transform: capitalize;
	line-height: 1.5em;
	transition: all 0.3s ease-in-out;
}

.footer-privacy-policy ul li::marker{
	color: var(--accent-color);
}

.footer-privacy-policy ul li:first-child::marker{
	font-size: 0;
}

.footer-privacy-policy ul li:hover{
	color: var(--accent-color);
}

.footer-privacy-policy ul li a{
	color: inherit;
}




.why-choose-us{
	padding: 160px 0;
}

.why-choose-image-box{
	display: flex;
	flex-wrap: wrap;
}

.why-choose-image-1{
	margin-right: 100px;
}

.why-choose-img figure{
	display: block;
	border-radius: 20px;
}

.why-choose-img img{
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.why-choose-image-1 .why-choose-img img{
	aspect-ratio: 1 / 1.238;
}

.why-choose-image-2{
	position: relative;
	width: 100%;
	display: flex;
	align-items: end;
	gap: 10px;
	margin-top: -155px;
	z-index: 1;
}

.why-choose-image-2 .why-choose-img{
	width: calc(100% - 180px);
}

.why-choose-image-2 .why-choose-img img{
	aspect-ratio: 1 / 1.06;
	border-radius: 30px;
	border: 10px solid var(--white-color);
}

.year-experience-box{
	max-width: 170px;
	background: linear-gradient(100deg, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
	background-size: 200% auto;
	border-radius: 20px;
	padding: 35px 20px;
	text-align: center;
	margin-bottom: 10px;
	transition: all 0.4s ease-in-out;
}

.year-experience-box:hover{
	background-position: right center;
}

.year-experience-box h2{
	font-size: 36px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.year-experience-box p{
	font-weight: 600;
	line-height: 1.4em;
	color: var(--white-color);
	margin: 0;
}

.why-choose-content{
	margin-left: 15px;
}

.why-choose-body{
	display: flex;
	flex-wrap: wrap;
	gap: 30px 80px;
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 30px 40px;
}

.why-choose-body-item{
	position: relative;
	width: calc(50% - 40px);
}

.why-choose-body-item::before{
	content: '';
	position: absolute;
	top: 50%;
	bottom: 0;
	right: -40px;
	background: var(--divider-color);
	width: 1px;
	height: 70%;
	transform: translateY(-50%);
}

.why-choose-body-item:nth-child(2n + 2)::before,
.why-choose-body-item:last-child::before{
	display: none;
}

.why-choose-body-item .icon-box{
	margin-bottom: 20px;
}

.why-choose-body-item .icon-box img{
	max-width: 40px;
}

.why-choose-body-content h3{
	font-size: 20px;
}

.why-choose-body-content p{
	margin: 15px 0 0;
}

.why-choose-list{
	margin-top: 40px;
}

.why-choose-list ul{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.why-choose-list ul li{
	position: relative;
	width: calc(50% - 10px);
	line-height: 1.5em;
	padding-left: 30px;
}

.why-choose-list ul li:before{
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
	top: 0;
	left: 0;
}

.why-choose-btn{
	border-top: 1px solid var(--divider-color);
	margin-top: 30px;
	padding-top: 30px;
}



.voice-examples{
	background: url('../images/world-map-image.png') no-repeat;
	background-size: auto;
	background-position: center center;
    padding-top: 10px !important;
	padding: 160px 0;
}

.voice-examples-box{
	text-align: center;
}

.voice-example-list ul{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px 35px;
	list-style: none;
	margin: 0 40px;
	padding: 0;
}

.voice-example-list ul li{
	color: var(--primary-color);
	font-weight: 600;
	line-height: 1.4em;
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 100px;
	
	display: flex;
	align-items: center;
	gap: 10px;
}

.voice-example-list ul li img{
	max-width: 46px;
	border-radius: 50%;
}

.voice-examples-box .section-footer-text{
	margin-top: 60px;
}

.brand-list{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:15px;
    padding:0;
    margin:0;
    list-style:none;
}

.brand-list li{
    background:#ffffff;
    border:1px solid rgba(255,255,255,0.08);
    padding:14px 18px;
    border-radius:12px;
    text-align:center;
    font-size:15px;
    font-weight:500;
    color:#111;
    min-height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    animation:fadeInUp 0.7s ease forwards;
}

/* Fade In Up Animation */
@keyframes fadeInUp{
    from{
        opacity:0;
        transform:translate3d(0,40px,0);
    }
    to{
        opacity:1;
        transform:translate3d(0,0,0);
    }
}


/* Minimal Progress Bar */
.brand-progress{
    width:120px;
    height:3px;
    background:#dcdcdc;
    margin:25px auto 0;
    border-radius:50px;
    overflow:hidden;
}

.brand-progress-bar{
    width:0%;
    height:100%;
    background: linear-gradient(to right, var(--accent-secondary-color) 0%, var(--accent-color) 50%, var(--accent-secondary-color) 100%);
    border-radius:50px;
    animation:progressMove 5s linear infinite;
}
@keyframes progressMove{
    from{
        width:0%;
    }
    to{
        width:100%;
    }
}

@media only screen and (max-width: 991px){

    .brand-list{
        grid-template-columns:repeat(2,1fr);
    }
}

@media only screen and (max-width: 576px){

    .brand-list{
        grid-template-columns:1fr;
    }

    .brand-list li{
        font-size:14px;
        min-height:60px;
    }
}






.scrolling-ticker-box{
    padding: 40px 0 100px;
    overflow: hidden;
}

.scrolling-ticker-item{
    --gap: 30px;
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
    align-items: center;
    margin-bottom: 30px;
    width: 100%;
}

.scrolling-ticker-item:last-child{
    margin-bottom: 0;
}

.scrolling-content{
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: var(--gap);
    min-width: max-content;
    animation: scroll 40s linear infinite;
}

/* Smooth Infinite Scroll */
@keyframes scroll{
    from{
        transform: translateX(0);
    }

    to{
        transform: translateX(calc(-100% - var(--gap)));
    }
}

.scrolling-ticker-item.scroll-reverse .scrolling-content{
    animation-direction: reverse;
}

.scrolling-content span{
    width: 190px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 100px;
    padding: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.scrolling-content span:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.scrolling-content span img{
    width: 100%;
    max-width: 120px;
    max-height: 45px;
    object-fit: contain;
    margin: 0;
    border-radius: 0;
}

/* Pause On Hover */
.scrolling-ticker-item:hover .scrolling-content{
    animation-play-state: paused;
}

/* Mobile */
@media only screen and (max-width: 767px){

    .scrolling-content span{
        width: 140px;
        height: 75px;
        padding: 15px;
    }

    .scrolling-content span img{
        max-width: 90px;
        max-height: 35px;
    }
}





.brand-navigation{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px; /* keeps arrows close */
    margin-top:28px;
}

/* Arrow Buttons */
.brand-nav-btn{
    width:42px;
    height:42px;
    border-radius:50%;
    border:1px solid rgba(0,0,0,0.08);
    background:rgba(255,255,255,0.75);
    
    display:flex;
    align-items:center;
    justify-content:center;

    color:#222;
    font-size:26px;
    font-weight:300;
    line-height:1;

    cursor:pointer;
    position:relative;

    transition:all 0.25s ease;

    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);

    box-shadow:
        0 4px 14px rgba(0,0,0,0.04),
        inset 0 1px 0 rgba(255,255,255,0.7);
}

/* Hover */
.brand-nav-btn:hover{
    transform:translateY(-2px);
    background:#fff;
    box-shadow:
        0 8px 24px rgba(0,0,0,0.08);
}

/* Progress Bar */
.brand-progress{
    width:180px;
    height:4px;
    background:rgba(0,0,0,0.08);
    border-radius:50px;
    overflow:hidden;
    position:relative;
}

.brand-progress-bar{
    width:0%;
    height:100%;
    border-radius:50px;
    background:linear-gradient(
        90deg,
        #386bb7 0%,
        #e24c4a 50%,
        #386bb7 100%
    );
    animation:progressMove 5s linear infinite;
}

@keyframes progressMove{
    from{
        width:0%;
    }
    to{
        width:100%;
    }
}
