

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-primary:hover {
    background: var(--bs-white) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    background: var(--bs-light) !important;
    color: var(--bs-primary) !important;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-light:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-light) !important;
}


.RotateMoveLeft {
    position: relative;
    animation: RotateMoveLeft 10s linear infinite;
}

.RotateMoveRight {
    position: relative;
    animation: RotateMoveLeft 10s linear infinite;
}

@keyframes RotateMoveLeft {
    0%   {left: 0px;}
    50%   {left: 40px;}
    100%  {left: 0px;}
}

@keyframes RotateMoveRight {
    0%   {right: 0px;}
    50%   {right: 40px;}
    100%  {right: 0px;}
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    margin-right: 25px;
    padding: 35px 0;
    color: #fff!important;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #000 !important;
}

.navbar-light .navbar-brand img {
    max-height: 90px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 60px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

.collapse.navbar-collapse {
    transition: 0.5s;
}

@media (max-width: 992px) {
    nav.bg-transparent {
        position: absolute;
        width: 100%;
        background: transparent !important;
    }

    .navbar.navbar-expand-lg button span {
        position: relative;
        z-index: 99;
    }

    .navbar {
        position: relative;
        background: var(--bs-light);
        z-index: 2;
    }

    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white) !important;
        padding: 0 20px 20px 20px !important;
    }

    .sticky-top.navbar-light {
        background: transparent;
    }

    nav.navbar {
        padding: 0 30px 30px 0;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }


    .navbar-light .navbar-brand img {
        max-height: 45;
    }

    .hero-header {
        margin-top: -100px !important;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        /*background: transparent !important;
		background:#00037e;*/
       background: rgba(202, 100, 53, 1.0);
background: linear-gradient(315deg, rgba(202, 100, 53, 1.0), rgba(247, 210, 76, 1.0));
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light) !important;
    }
}
/*** Navbar End ***/

/*-------------*/
/* ========= Floating Language (Left) ========= */
.floating-language {
	position: fixed;
	top: 45%;
	left: -85px;              /* hidden initially */
	background: #ffffff;
	border-radius: 0 8px 8px 0;
	box-shadow: 0 6px 16px rgba(0,0,0,.18);
	overflow: hidden;
	z-index: 9999;
	animation: slideInLeft 1s ease forwards;
	animation-delay: .5s;
}
 @keyframes slideInLeft {
 from {
left:-85px;
opacity:0
}
to {
	left: 0;
	opacity: 1
}
}
.floating-language a {
	display: block;
	padding: 10px 14px;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
	border-bottom: 1px solid #e5e5e5;
	background: #57c35e;
	transition: all .3s ease;
}
.floating-language a:last-child {
	border-bottom: none;
}
.floating-language a:hover {
	background: #0b5ed7;
	color: #fff;
	padding-left: 22px;     /* subtle slide */
}
/* ========= Floating Register (Right) ========= */
.floating-register {
	position: fixed;
	top: 50%;
	right: -160px;           /* hidden initially */
	transform: translateY(-50%);

background: rgba(232, 120, 23, 1.0);
background: linear-gradient(315deg, rgba(232, 120, 23, 1.0), rgba(224, 111, 7, 1.0));
	color: #fff;
	padding: 14px 24px;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	border-radius: 8px 0 0 8px;
	box-shadow: 0 6px 16px rgba(0,0,0,.25);
	z-index: 9999;
	animation: slideInRight 1s ease forwards, pulse 2.5s infinite;
	animation-delay: .7s;
}
 @keyframes slideInRight {
 from {
right:-160px;
opacity:0
}
to {
	right: 0;
	opacity: 1
}
}

/* Soft attention pulse (Govt safe) */
@keyframes pulse {
 0% {
box-shadow:0 0 0 0 rgba(11,94,215,.6);
}
 70% {
box-shadow:0 0 0 12px rgba(11,94,215,0);
}
 100% {
box-shadow:0 0 0 0 rgba(11,94,215,0);
}
}
.floating-register:hover {
	background: #084298;
	padding-right: 30px;    /* slight expand */
	color:#fff;
}

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(102, 16, 242, 0.05), rgba(102, 16, 242, 0.05));
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0 30px 0;
    margin-bottom: 6rem;
    transition: 0.5s;
}

.bg-breadcrumb::after {
    content: "";
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    border-radius: 300px;
    border: 80px solid rgba(247, 71, 128, 0.05);
    background: transparent;
    animation: RotateMoveSingle 5s linear infinite;
    z-index: -1;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
    z-index: 2;
}


@keyframes RotateMoveSingle {
    0% {
        -webkit-transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
        transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
    }
      100% {
        -webkit-transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
        transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
    }

    0% {bottom: 0px;}
    50%   {left: -10px;}
    75%   {bottom: 10%;}
    100%  {bottom: 0px;}
}

.bg-breadcrumb::before {
    content: "";
    position: absolute;
    top: -15%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 300px;
    border: 80px solid rgba(247, 71, 128, 0.04);
    background: transparent;
    animation: RotateMoveSingle 5s linear infinite;
    z-index: -1;
}

@keyframes RotateMoveSingle {
    0% {
        -webkit-transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
        transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
    }
      100% {
        -webkit-transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
        transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
    }

    0% {top: 0px;}
    50%   {top: 10%;}
    100%  {top: 0px;}
}

@media (max-width: 992px) {
    .bg-breadcrumb {
        padding-top: 100px !important;
    }
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-dark) !important;
}


.breadcrumb-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.breadcrumb-animation li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(102, 16, 242, 0.07);
    animation: animate 25s linear infinite;
    bottom: -150px;
    
}

.breadcrumb-animation li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.breadcrumb-animation li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.breadcrumb-animation li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.breadcrumb-animation li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.breadcrumb-animation li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.breadcrumb-animation li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.breadcrumb-animation li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.breadcrumb-animation li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.breadcrumb-animation li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.breadcrumb-animation li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}
/*** Single Page Hero Header End ***/


/*** Hearo Header Start ***/
.header::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: var(--bs-light);
    border-radius: 22% 78% 33% 67% / 32% 0% 100% 68%;
    animation: bgMove 5s linear infinite;
    z-index: -1;
}

@keyframes bgMove {
    0%   {right: 0px;}
    50%   {right: 20px;}
    100%  {right: 0px;}
}

.header::before {
    content: "";
    position: absolute;
    bottom: -9%;
    left: -7%;
    width: 400px;
    height: 400px;
    border-radius: 200px;
    border: 30px solid rgba(247, 71, 128, 0.05);
    background: transparent;
    animation: RotateMoveHeader 5s linear infinite;
    z-index: -1;

}

@keyframes RotateMoveHeader {
    0% {
        -webkit-transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
        transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
    }
      100% {
        -webkit-transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
        transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
    }


    0% {bottom: 0px;}
    50%   {left: -10px;}
    75%   {bottom: 9%;}
    100%  {bottom: 0px;}
}

.hero-header {
    padding-top: 160px;
    padding-bottom: 100px;
    position: relative;
}

.hero-header::after {
    content: "";
    position: absolute;
    left: 100px;
    bottom: 100px;
    width: 58px;
    height: 50px;
    background: url(../img/sty-1.png) center center no-repeat;
    animation: RotateMoveSty-3 45s linear infinite;
    transition: 0.5s;
    z-index: -1;
    
}

@keyframes RotateMoveSty-3 {
    0%   {left: 100px;}
    40%   {bottom: -0px;}
    50%   {left: 700px;}
    70%   {bottom: 500px;}
    80%   {left: 400px;}
    95%   {bottom: -0px;}
    100%  {left: 100px;}
}

.hero-header::before {
    content: "";
    position: absolute;
    left: 100px;
    bottom: 100px;
    width: 300px;
    height: 300px;
    border-radius: 150px;
    border: 30px solid rgba(102, 16, 242, 0.05);
    background: transparent;
    animation: RotateMoveSty-4 45s linear infinite;
    transition: 0.5s;
    z-index: -1;
    
}

@keyframes RotateMoveSty-4 {
    0%   {left: 100px;}
    40%   {bottom: -0px;}
    50%   {left: 700px;}
    70%   {bottom: 500px;}
    80%   {left: 400px;}
    95%   {bottom: -0px;}
    100%  {left: 100px;}
}


.hero-header .rotate-img {
    position: absolute;
    top: 70px;
    left: 20px;
}

.hero-header .rotate-img .rotate-sty-2 {
    position: absolute;
    top: 100px;
    left: 50px;
    width: 50px;
    height: 50px;
    border-radius: 30px;
    border: 5px solid rgba(247, 71, 128, 0.1);
    background: transparent;
    animation: RotateMoveSty-2 45s linear infinite;
    transition: 0.5s;

}

@keyframes RotateMoveSty-2 {
    0%   {left: 0px;}
    40%   {top: -30px;}
    50%   {left: 500px;}
    70%   {top: 200px;}
    80%   {left: 100px;}
    95%   {top: -30px;}
    100%  {left: 0px;}
}

.hero-header .rotate-img img {
    position: relative;
    animation: RotateMove 30s linear infinite;
    z-index: -1;
}

@keyframes RotateMove {
    0%   {left: 0px;}
    50%   {left: 200px;}
    100%  {left: 0px;}
}


@media (max-width: 992px) {
    .hero-header {
        padding-top: 280px;
        
    }

    .hero-header .rotate-img img {
        margin-top: 100px;
    }
   
}
/*** Hero Header End ***/



/* /*** Features Start ***/ */
.features-section {
	max-width: 1100px;
	margin: 30px auto;
	padding: 20px;
	text-align: center;
	animation: fadeUp 1s ease forwards;
}
.features-section h2 {
	font-size: 32px;
	color: #1f3c88;
	margin-bottom: 10px;
	text-transform: uppercase;
	font-weight: bold;
}
.features-section p {
	color: #666;
	font-size: 15px;
	margin-bottom: 45px;
}
/* GRID */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 30px;
}
/* CARD */
.feature-card {
	background: #fff;
	padding: 28px 22px;
	border-radius: 22px;
	box-shadow: 0 15px 35px rgba(0,0,0,0.12);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;/* animation: cardFloat 1s ease forwards;*/
	
}
.feature-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent, rgba(0,123,255,0.08), transparent);
	opacity: 0;
	transition: 0.4s;
}
.feature-card:hover::before {
	opacity: 1;
}
.feature-card:hover {
	transform: translateY(-12px) scale(1.03);
	box-shadow: 0 25px 50px rgba(0,0,0,0.18);
}
/* ICON */
.feature-icon {
	width: 65px;
	height: 65px;
	margin: 0 auto 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	color: #fff;
	animation: pulse 2s infinite;
}
.register {
	background: #007bff;
}
.upload {
	background: #28a745;
}
.download {
	background: #ff9800;
}
.easy {
	background: #9c27b0;
}
/* TEXT */
.feature-card h4 {
	font-size: 19px;
	margin-bottom: 10px;
	color: #333;
}
.feature-card p {
	font-size: 14px;
	color: #777;
	line-height: 1.6;
}

/* ANIMATIONS */
@keyframes fadeUp {
 from {
 opacity: 0;
 transform: translateY(40px);
}
to {
	opacity: 1;
	transform: translateY(0);
}
}
 @keyframes cardFloat {
 from {
 opacity: 0;
 transform: translateY(50px);
}
to {
	opacity: 1;
	transform: translateY(0);
}
}
 @keyframes pulse {
 0% {
box-shadow: 0 0 0 0 rgba(0,0,0,0.2);
}
 70% {
box-shadow: 0 0 0 14px rgba(0,0,0,0);
}
 100% {
box-shadow: 0 0 0 0 rgba(0,0,0,0);
}
}

/*** Features End ***/

/*-----free Banner-------*/
	.offer-section{
    background:#f4f8ff;
}

.offer-banner{
    background:linear-gradient(135deg,#0d6efd,#0b5ed7,#00bcd4);
    border-radius:25px;
    padding:45px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    color:#fff;
    overflow:hidden;
    position:relative;
    box-shadow:0 25px 60px rgba(13,110,253,.25);
}

/* Animated Background Circle */

.offer-banner::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    right:-100px;
    top:-100px;
}

.offer-banner::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    left:-80px;
    bottom:-80px;
}

.offer-left{
    position:relative;
    z-index:2;
}

.offer-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#fff;
    color:#ff5722;
    padding:10px 22px;
    border-radius:50px;
    font-weight:700;
    margin-bottom:20px;
    animation:pulse 2s infinite;
}

.offer-left h2{
    font-size:42px;
    font-weight:800;
    margin-bottom:15px;
    line-height:1.3;
	  color:#FFF;
}

.offer-left h2 span{
    color:#FFD54F;
}

.offer-left p{
    max-width:550px;
    opacity:.95;
    font-size:17px;
    margin:0;
}

.offer-right{
    position:relative;
    z-index:2;
}

.offer-btn{
    display:inline-flex;
    align-items:center;
    text-decoration:none;
    background:#fff;
    color:#0d6efd;
    padding:18px 38px;
    border-radius:50px;
    font-weight:700;
    font-size:18px;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.2);
}

.offer-btn:hover{
    background:#FFD54F;
    color:#000;
    transform:translateY(-6px) scale(1.05);
}

.offer-banner:hover{
    transform:translateY(-6px);
    transition:.4s;
}

@keyframes pulse{

0%{
transform:scale(1);
}

50%{
transform:scale(1.08);
}

100%{
transform:scale(1);
}

}

@media(max-width:991px){

.offer-banner{
flex-direction:column;
text-align:center;
padding:35px 25px;
}

.offer-left h2{
font-size:32px;
}

.offer-btn{
margin-top:15px;
}

}

.why-box{
	background-color:#F7F7FC;
}


/*** Service Start ***/
.service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
}

.service .service-item,
.service .service-item .service-icon,
.service .service-item a {
    transition: 0.5s;
}

.service .service-item:hover {
    background: rgba(102, 16, 242, 0.09);
    border: 1px ;
}


.service .service-item:hover .service-icon,
.service .service-item:hover a {
    background: var(--bs-white) !important;
}

.service .service-item:hover a:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-white);
}

/*** Service End ***/

.feature-box{
    display:flex;
    align-items:center;
    gap:15px;
    background:#fff;
    border-radius:12px;
    padding:8px 20px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.4s ease;
    border-left:4px solid #0d6efd;
    cursor:pointer;
    height:100%;
}

.feature-box i{
    width:40px;
    height:40px;
    background:#0d6efd;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    transition:.4s;
    flex-shrink:0;
}

.feature-box span{
    font-size:14px;
    font-weight:600;
    color:#333;
    line-height:1.5;
}

.feature-box:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(13,110,253,.25);
    border-left-color:#ff6b00;
}

.feature-box:hover i{
    background:#ff6b00;
    transform:rotate(360deg);
}

.feature-img img{
    transition:.5s;
	border: 1px solid #ccc;
    border-radius: 20px;
}

.feature-img:hover img{
    transform:scale(1.05);
}


.section-title h2{
    font-size:34px;
    font-weight:700;
    margin-bottom:10px;
}

.section-title p{
    font-size:16px;
}

/* Industry Card */

.industry-card{
    display:flex;
    align-items:center;
    gap:15px;
    padding:8px;
    border-radius:15px;
    background:#fff;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.4s;
    cursor:pointer;
    height:100%;
}

.industry-card i{
    width:40px;
    height:40px;
    border-radius:50%;
    background:linear-gradient(45deg,#0d6efd,#00c6ff);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    transition:.4s;
}

.industry-card span{
    font-size:14px;
    font-weight:600;
}

.industry-card:hover{
    transform:translateY(-8px);
    background:#0d6efd;
    color:#fff;
}

.industry-card:hover i{
    transform:rotate(360deg) scale(1.1);
    background:#fff;
    color:#0d6efd;
}

/* Benefit Card */

.benefit-card{
    display:flex;
    align-items:center;
    gap:18px;
    padding:8px 22px;
    margin-bottom:18px;
    border-radius:15px;
    background:#fff;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.4s;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
}

.benefit-card i{
    width:40px;
    height:40px;
    border-radius:50%;
    background:linear-gradient(45deg,#ff9800,#ff5722);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    transition:.4s;
}

.benefit-card:hover{
    background:linear-gradient(135deg,#0d6efd,#00bcd4);
    color:#fff;
    transform:translateX(12px);
}

.benefit-card:hover i{
    background:#fff;
    color:#0d6efd;
    transform:rotate(360deg);
}









/*** Pricing Start ***/
/*-----pricing--------*/
h1.demo-title {
	text-align: center;
	font-size: 32px;
	color: #004aad;
	margin-bottom: 45px;
	text-transform: uppercase;
	font-weight: 600;
	margin-top: 60px;
	font-size: 2rem;
}
h1.demo-title a {
	font-size: 16px;
	font-weight: 300;
}
.pricing-table {
	display: flex;
	flex-flow: row wrap;
	width: 100%;
	margin: 0 auto;
	background: #ffffff;
	padding: 40px 10px;
}
.pricing-table .ptable-item {
	width: auto;
	padding: 0 15px;
	margin-bottom: 30px;
}
 @media (max-width: 992px) {
.pricing-table .ptable-item {
	width: auto;
}
}
 @media (max-width: 768px) {
.pricing-table .ptable-item {
	width: auto;
}
}
 @media (max-width: 576px) {
.pricing-table .ptable-item {
	width: 100%;
}
}
.pricing-table .ptable-single {
	position: relative;
	width: 100%;
	overflow: hidden;
}
.pricing-table .ptable-header, .pricing-table .ptable-body, .pricing-table .ptable-footer {
	position: relative;
	width: 100%;
	text-align: center;
	overflow: hidden;
}
.pricing-table .ptable-status, .pricing-table .ptable-title, .pricing-table .ptable-price, .pricing-table .ptable-description, .pricing-table .ptable-action {
	position: relative;
	width: 100%;
	text-align: center;
}
.pricing-table .ptable-single {
	background: #f6f8fa;
}
.pricing-table .ptable-single:hover {
	box-shadow: 0 0 10px #999999;
}
.pricing-table .ptable-header {
	margin: 0 30px;
	padding: 30px 0 45px 0;
	width: auto;
	background: #00037e;
}
.pricing-table .ptable-header::before, .pricing-table .ptable-header::after {
	content: "";
	position: absolute;
	bottom: 0;
	width: 0;
	height: 0;
	border-bottom: 100px solid #f6f8fa;
}
.pricing-table .ptable-header::before {
	right: 50%;
	border-right: 250px solid transparent;
}
.pricing-table .ptable-header::after {
	left: 50%;
	border-left: 250px solid transparent;
}
.pricing-table .ptable-item.featured-item .ptable-header {
	background: #FF6F61;
}
.pricing-table .ptable-status {
	margin-top: -30px;
}
.pricing-table .ptable-status span {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 30px;
	padding: 5px 0;
	text-align: center;
	color: #FF6F61;
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 1px;
	background: #2A293E;
}
.pricing-table .ptable-status span::before, .pricing-table .ptable-status span::after {
	content: "";
	position: absolute;
	bottom: 0;
	width: 0;
	height: 0;
	border-bottom: 10px solid #FF6F61;
}
.pricing-table .ptable-status span::before {
	right: 50%;
	border-right: 25px solid transparent;
}
.pricing-table .ptable-status span::after {
	left: 50%;
	border-left: 25px solid transparent;
}
.pricing-table .ptable-title h2 {
	color: #ffffff;
	font-size: 24px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
}
.pricing-table .ptable-price h2 {
	margin: 0;
	color: #ffffff;
	font-size: 45px;
	font-weight: 700;
	margin-left: 15px;
}
.pricing-table .ptable-price h2 small {
	position: absolute;
	font-size: 18px;
	font-weight: 300;
	margin-top: 16px;
	margin-left: -15px;
}
.pricing-table .ptable-price h2 span {
	margin-left: 3px;
	font-size: 16px;
	font-weight: 300;
}
.pricing-table .ptable-body {
	padding: 20px 0;
}
.pricing-table .ptable-description ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.pricing-table .ptable-description ul li {
	color: #2A293E;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 1px;
	padding: 7px;
	border-bottom: 1px solid #dedede;
}
.pricing-table .ptable-description ul li:last-child {
	border: none;
}
.pricing-table .ptable-footer {
	padding-bottom: 30px;
}
.pricing-table .ptable-action a {
	display: inline-block;
	padding: 10px 20px;
	color: #FF6F61;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 2px;
	text-decoration: none;
	background: #00037e;
	text-transform: uppercase;
}
.pricing-table .ptable-action a:hover {
	color: #2A293E;
	background: #FF6F61;
}
.pricing-table .ptable-item.featured-item .ptable-action a {
	color: #2A293E;
	background: #FF6F61;
}
.pricing-table .ptable-item.featured-item .ptable-action a:hover {
	color: #FF6F61;
	background: #2A293E;
}
/*** Pricing End ***/

/*-------support----------*/
.support-card {
	background: #ffffff;
	padding: 25px;
	border-radius: 18px;
	box-shadow: 0 15px 35px rgba(0,0,0,0.12);
	margin-bottom: 43px;
}
.support-card h2 {
	text-align: center;
	margin-bottom: 20px;
	color: #1f3c88;
	font-size: 22px;
}
.support-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px;
	border-radius: 12px;
	margin-bottom: 12px;
	background: #f8faff;
	transition: all 0.3s ease;
	cursor: pointer;
}
.support-item:hover {
	background: #e9f1ff;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.icon {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: #fff;
}
.whatsapp {
	background: #25D366;
}
.sms {
	background: #007bff;
}
.support-text h4 {
	margin: 0;
	font-size: 16px;
	color: #333;
}
.support-text p {
	margin: 3px 0 0;
	font-size: 13px;
	color: #777;
}

/*** Contact Start ***/
.contact {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    z-index: 1;
}

.contact::after {
    content: "";
    position: absolute;
    top: 10%;
    left: -1%;
    width: 400px;
    height: 400px;
    border-radius: 200px;
    border: 60px solid rgba(102, 16, 242, 0.05);
    background: transparent;
    animation: ContactMoveLeft 50s linear infinite;
    z-index: 1;
}

@keyframes ContactMoveLeft {
    0%   {left: 0px;}
    25%   {top: 100px;}
    50%   {left: 90%;}
    75%   {top: 80%;}
    100%  {left: 0px;}
}

.contact::before {
    content: "";
    position: absolute;
    top: 10%;
    right: -1%;
    width: 400px;
    height: 400px;
    border-radius: 200px;
    border: 60px solid rgba(102, 16, 242, 0.05);
    background: transparent;
    animation: ContactMoveRight 50s linear infinite;
    z-index: 1;
}

@keyframes ContactMoveRight {
    0%   {right: 0px;}
    25%   {top: 100px;}
    50%   {right: 90%;}
    75%   {top: 80%;}
    100%  {right: 0px;}
}
/*** Contact End ***/


/*** Footer Start ***/
/*----------footer-----*/
footer {
	/*background: #0e38a2;
	color: #ccc;*/
	background: #632702;
background: linear-gradient(315deg, #632702, #F3792D);
	color: #fff;
	padding: 20px;
}
.footer-link {
	color: #fff;
	text-decoration: none;
	transition: .3s;
}
.footer-link:hover {
	color: #0d6efd;
	padding-left: 5px;
}
footer .bi {
	transition: .3s;
}
footer .bi:hover {
	color: #0d6efd;
}
footer input.form-control {
	border: none;
	box-shadow: none;
}
footer .btn {
	border-radius: 0;
}
.feature-card-htw {
	background: #D9E9F7;
	padding: 28px 22px;
	border-radius: 22px;
	box-shadow: 0 15px 35px rgba(0,0,0,0.12);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;/* animation: cardFloat 1s ease forwards;*/
	
}

.feature-card-htw:hover {
	transform: translateY(-12px) scale(1.03);
	box-shadow: 0 25px 50px rgba(0,0,0,0.18);
}
.bg-a{
	background-color:#C4FDE1;
}
.bg-b{
		background-color:#C4FDFD;
}
.bg-c{
		background-color:#C4E1FD;
}
.bg-d{
		background-color:#C8E9DD;
}
.text-secondary1{
color:#7647B8;
}
.service-content h4 {
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  color: #DE4F5B;
}
.section-subtitle h2{
	font-weight:bold;
	font-size: 34px;

}
footer h4{
	color:#fff;
}




/*----------New Hom page css------------------------*/

        /*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
:root {
  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #171717;
  --accent-color: #2cac8e;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/*--------------------------------------------------------------
# pos_section-title
--------------------------------------------------------------*/
.pos_section-title {
  text-align: center;
  padding-bottom: 15px;
  position: relative;
}

.pos_section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.pos_section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.pos_section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

.features_pos {
  /* Custom properties for quick theming */
  --card-radius: 18px;
  --shadow-soft: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 88%);
  --shadow-hover: 0 16px 44px color-mix(in srgb, var(--default-color), transparent 82%);
  --ring-color: color-mix(in srgb, var(--accent-color), transparent 75%);
  --muted: color-mix(in srgb, var(--default-color), transparent 35%);
  /* Icon badge palettes via color-mix on accent for harmony */
  /* Swiper global fix if a slider is later embedded */
}

.features_pos .intro-panel {
  background: linear-gradient(180deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 96%));
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.features_pos .intro-panel .preview-visual {
  position: relative;
}

.features .intro-panel .preview-visual img {
  display: block;
}

.features_pos .intro-panel .preview-visual::after {
  content: "";
  position: absolute;
  inset: -10px -8px auto auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--accent-color), transparent 65%), transparent 70%);
  filter: blur(12px);
  border-radius: 50%;
  pointer-events: none;
}

.features_pos .intro-panel .intro-content .intro-title {
  font-weight: 800;
  margin-bottom: 8px;
}

.features .intro-panel .intro-content .intro-text {
  color: var(--muted);
  margin: 0;
}

.features_pos .intro-panel .intro-content .intro-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  padding: 8px 0;
}

.features_pos .intro-panel .intro-content .intro-highlights li i {
  color: var(--accent-color);
  font-size: 18px;
}

.features_pos .intro-panel .intro-content .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 999px;
  padding: 10px 18px;
  box-shadow: 0 6px 22px color-mix(in srgb, var(--accent-color), transparent 70%);
  transition: 0.3s;
}

.features_pos .intro-panel .intro-content .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.features_pos .intro-panel .intro-content .link-btn {
  color: var(--accent-color);
  border-radius: 999px;
  padding: 10px 14px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  transition: 0.3s;
}

.features_pos .intro-panel .intro-content .link-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.features_pos .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 1200px) {
  .features_pos .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features_pos .feature-grid {
    grid-template-columns: 1fr;
  }
}

.features_pos .feature-item {
  position: relative;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: var(--card-radius);
  padding: 22px 18px 20px 18px;
  box-shadow: var(--shadow-soft);
  transition: 0.3s;
  overflow: hidden;
}

.features_pos .feature-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features_pos .feature-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-color), transparent 96%), transparent 100%);
  opacity: 0.8;
  pointer-events: none;
}

.features_pos .feature-item .f-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: var(--contrast-color);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--default-color), transparent 85%);
}

.features_pos .feature-item .f-icon i {
  font-size: 22px;
}

.features_pos .feature-item .f-body .f-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
      color: #006a4e;
}

.features_pos .feature-item .f-body .f-text {
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 15px;
      color: #000;
}

.features_pos .feature-item .f-body .f-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  border: 1px solid var(--ring-color);
}

.features_pos .badge-blue {
  background: color-mix(in srgb, var(--accent-color), #529991 40%);
}

.features_pos .badge-green {
  background: color-mix(in srgb, var(--accent-color), #2ecc71 45%);
}

.features_pos .badge-purple {
  background: color-mix(in srgb, var(--accent-color), #0e665b 40%);
}

.features_pos .badge-orange {
  background: color-mix(in srgb, var(--accent-color), #f39c12 40%);
}

.features_pos .badge-cyan {
  background: color-mix(in srgb, var(--accent-color), #48c9b0 40%);
}

.features_pos .badge-pink {
  background: color-mix(in srgb, var(--accent-color), #e91e63 35%);
}

.features_pos .assurance-banner {
  margin-top: 22px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent-color), transparent 92%), var(--surface-color));
  border: 1px dashed color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.features_pos .assurance-banner .assurance-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent-color), transparent 86%);
  color: var(--accent-color);
}

.features_pos .assurance-banner .assurance-icon i {
  font-size: 20px;
}

.features_pos .assurance-banner .assurance-content {
  flex: 1;
}

.features_pos .assurance-banner .assurance-content h5 {
  margin: 0 0 4px 0;
  font-weight: 800;
}

.features_pos .assurance-banner .assurance-content p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.features_pos .assurance-banner .banner-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 999px;
  padding: 8px 14px;
  white-space: nowrap;
  transition: 0.3s;
}

.features_pos .assurance-banner .banner-btn:hover {
  transform: translateX(2px);
  color: var(--contrast-color);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 65%);
}

.features_pos .swiper-wrapper {
  height: auto !important;
}

@media (max-width: 992px) {
  .features_pos .intro-panel {
    padding: 24px;
  }

  .features_pos .intro-panel .intro-content .intro-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .features_pos .intro-panel .preview-visual::after {
    width: 90px;
    height: 90px;
  }

  .features_pos .feature-item {
    padding: 18px 16px;
  }

  .features_pos .feature-item .f-icon {
    width: 50px;
    height: 50px;
  }

  .features_pos .feature-item .f-icon i {
    font-size: 20px;
  }

  .features_pos .assurance-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .features_pos .assurance-banner .banner-btn {
    width: 100%;
    text-align: center;
  }
}




/*=======================how it work------*/
/*--------------------------------------------------------------
# how it work Section
--------------------------------------------------------------*/
.bg-offwhite{
	background:#eafaff;
	border-radius:20px;
	    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
		color:#000;
}
.services_work {
  /*padding-top: 60px;
  padding-bottom: 30px;*/
    padding-top: 0px;
  padding-bottom: 0px;
}

.services_work .services-row {
  position: relative;
}

.services_work .services-headline .services-subtitle {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.services_work .services-headline .pos_section-title {
  color: var(--heading-color);
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

.services_work .services-description {
  margin-bottom: 30px;
}

.services_work .services-description p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.services_work .services-image-container {
  position: relative;
  margin-bottom: 30px;
}

.services_work .services-image-container .services-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 460px;
}

.services_work .services-image-container .services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services_work .services-grid {
  margin-left: 50px;
}

@media (max-width: 991px) {
  .services_work .services-grid {
    margin-left: 0;
    margin-top: 70px;
  }
}

.services_work .service-card {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 25px;
  padding: 30px 25px;
  margin-bottom: 25px;
  border: 1px solid rgba(154, 154, 154, 0.3);
  transition: all 0.3s ease;
  height: 100%;
}

.services_work .service-card:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
}

.services_work .service-card:hover .service-icon {
  color: var(--contrast-color);
  transform: scale(0.95);
}

.services_work .service-card:hover .service-info h3,
.services_work .service-card:hover .service-info p {
  color: var(--contrast-color);
  transform: scale(0.95);
}
.services_work .service-card:hover .service-info h3{
	font-weight:800;
}
.services-headline h2{
	font-weight:800;
}
.services_work .service-card:hover .service-content .read-more-btn {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 84%);
  color: var(--contrast-color);
}

.services_work .service-content .service-icon {
  width: 65px;
  height: 65px;
  line-height: 65px;
  margin: 0 auto;
  font-size: 48px;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.services_work .service-content .service-info h3 {
  font-size: 1.4rem;
  margin: 15px 0;
  transition: all 0.3s ease;
}

.services_work .service-content .service-info h3  {
  color: #006a4e;
  text-decoration: none;
  font-weight:800;
}

.services_work .service-content .service-info p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  color:#000;
}

.services_work .service-content .service-action {
  margin-top: 20px;
}

.services_work .service-content .service-action .read-more-btn {
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.services_work .service-content .service-action .read-more-btn:hover {
  transform: translateX(5px);
}

.services_work .service-content .service-action .read-more-btn i {
  margin-left: 5px;
}

@media (max-width: 767px) {
  .services_work .services-headline .pos_section-title {
    font-size: 2rem;
  }

  .services_work .services-image-container .services-image {
    height: 350px;
  }

  .services_work .services-image-container .circular-btn {
    bottom: -40px;
    right: 50%;
    transform: translateX(50%);
  }

  .services_work .services-image-container .circular-btn .circular-link {
    width: 130px;
    height: 130px;
    font-size: 0.9rem;
  }
}


/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .cta-wrapper {
  display: flex;
  align-items: center;
  gap: 3rem;
  /*background-color: var(--surface-color);*/
  background-color:#d1f0f8;
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-top: 27px;
  
}

.call-to-action .cta-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.call-to-action .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.call-to-action .cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  opacity: 0.9;
      color: #000;
}

.call-to-action .cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.call-to-action .cta-buttons .btn-primary {
  padding: 0.8rem 2rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.call-to-action .cta-buttons .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), white 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.call-to-action .cta-buttons .btn-outline {
  padding: 0.8rem 2rem;
  background-color: transparent;
  color: var(--default-color);
  border: 2px solid var(--default-color);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
}

.call-to-action .cta-buttons .btn-outline:hover {
  background-color: var(--contrast-color);
  color: var(--heading-color);
  transform: translateY(-3px);
}

.call-to-action .cta-image {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.call-to-action .cta-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
      border-radius: 20px;
    border: 1px solid #ccc;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.call-to-action .cta-image img:hover {
  transform: translateY(-5px);
}

@media (max-width: 992px) {
  .call-to-action .cta-wrapper {
    flex-direction: column;
    padding: 2.5rem;
  }

  .call-to-action .cta-content {
    text-align: center;
  }

  .call-to-action .cta-content h2 {
    font-size: 2rem;
  }

  .call-to-action .cta-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .call-to-action .cta-buttons {
    justify-content: center;
  }

  .call-to-action .cta-image img {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .call-to-action .cta-wrapper {
    padding: 2rem;
  }

  .call-to-action .cta-content h2 {
    font-size: 1.8rem;
  }

  .call-to-action .cta-content p {
    font-size: 1rem;
  }

  .call-to-action .cta-buttons .btn-primary,
  .call-to-action .cta-buttons .btn-outline {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}



/*=============================*/
/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features_industries {
  padding: 10px 0;
}

.features_industries .features-item2 {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.features_industries .features-item2 i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.features_industries .features-item2 h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features_industries .features-item2 h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features_industries .features-item2:hover {
  border-color: var(--accent-color);
}

.features_industries .features-item2:hover h3 a {
  color: var(--accent-color);
}

<!--=============================-->
/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
:root {

  --default-color1: #444444;
  --heading-color1: #171717;
  --accent-color1: #dd3209;
  --surface-color1: #ffffff;
  --contrast-color: #ffffff;
}
.stats {
  padding-top: 30px;
  --tile-radius: 10px;
  --tile-border: 1px solid color-mix(in srgb, #171717, transparent 88%);
  --tile-shadow: 0 2px 0 color-mix(in srgb, #444444, transparent 92%);
  padding-bottom: 30px;
}

.stats .stats-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 1200px) {
  .stats .stats-board {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats .stats-board {
    grid-template-columns: 1fr;
  }
}

.stats .stat-tile {
  background: color-mix(in srgb, var(--surface-color1), var(--accent-color1) 0%);
  border: var(--tile-border);
  border-radius: var(--tile-radius);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: auto;
  box-shadow: var(--tile-shadow);
  transition: border-color 0.3s ease, transform 0.3s ease;
  margin-top:10px;
}

.stats .stat-tile:hover {
  border-color: color-mix(in srgb, var(--accent-color1), transparent 60%);
  transform: translateY(-2px);
}

.stats .stat-tile .tile-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.stats .stat-tile .tile-head i {
  font-size: 24px;
  color: var(--accent-color1);
}

.stats .stat-tile .tile-head .label .title {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  color: var(--heading-color1);
  font-family: var(--heading-font);
}

.stats .stat-tile .tile-head .label .hint {
  display: block;
  margin-top: 2px;
  color: color-mix(in srgb, var(--default-color1), transparent 35%);
  font-size: 13px;
  line-height: 1.4;
}

.stats .stat-tile .tile-metric {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.stats .stat-tile .tile-metric .metric-number {
  display: inline-block;
  font-family: var(--heading-font);
  color: var(--heading-color1);
  font-weight: 600;
  line-height: 1;
  font-size: 36px;
}

@media (max-width: 576px) {
  .stats .stat-tile .tile-metric .metric-number {
    font-size: 32px;
  }
}

.stats .stat-tile .tile-metric .metric-suffix {
  color: color-mix(in srgb, var(--default-color1), transparent 20%);
  font-size: 16px;
  font-weight: 600;
}

.stats .stat-tile:nth-child(1) {
  border-top: 3px solid color-mix(in srgb, #ff761a, transparent 30%);
}

.stats .stat-tile:nth-child(2) {
  border-top: 3px solid color-mix(in srgb, #0abf53, transparent 30%);
}

.stats .stat-tile:nth-child(2) .tile-head i {
  color: color-mix(in srgb, #0abf53, transparent 0%);
}

.stats .stat-tile:nth-child(3) {
  border-top: 3px solid color-mix(in srgb, #ff7e00, transparent 30%);
}

.stats .stat-tile:nth-child(3) .tile-head i {
  color: color-mix(in srgb, #ff7e00, transparent 0%);
}

.stats .stat-tile:nth-child(4) {
  border-top: 3px solid color-mix(in srgb, #6f42c1, transparent 30%);
}

.stats .stat-tile:nth-child(4) .tile-head i {
  color: color-mix(in srgb, #6f42c1, transparent 0%);
}

.stats .stat-tile:nth-child(5) {
  border-top: 3px solid color-mix(in srgb, #3cbcb1, transparent 30%);
}

.stats .stat-tile:nth-child(5) .tile-head i {
  color: color-mix(in srgb, #3cbcb1, transparent 0%);
}

.stats .stat-tile:nth-child(6) {
  border-top: 3px solid color-mix(in srgb, #a4c467, transparent 30%);
}

.stats .stat-tile:nth-child(6) .tile-head i {
  color: color-mix(in srgb, #a4c467, transparent 0%);
}

.stats .stat-tile:nth-child(7) {
  border-top: 3px solid color-mix(in srgb, #bb6be5, transparent 30%);
}

.stats .stat-tile:nth-child(7) .tile-head i {
  color: color-mix(in srgb, #bb6be5, transparent 0%);
}

.stats .stat-tile:nth-child(8) {
  border-top: 3px solid color-mix(in srgb, #2fd3f1, transparent 30%);
}

.stats .stat-tile:nth-child(8) .tile-head i {
  color: color-mix(in srgb, #2fd3f1, transparent 0%);
}

.stats .legend-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: 10px 12px;
  border: 1px dashed color-mix(in srgb, var(--default-color1), transparent 80%);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface-color1), var(--default-color1) 2%);
}

@media (max-width: 576px) {
  .stats .legend-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.stats .legend-row .legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.stats .legend-row .legend-item .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.stats .legend-row .legend-item .dot.dot-primary {
  background: var(--accent-color1);
}

.stats .legend-row .legend-item .dot.dot-neutral {
  background: color-mix(in srgb, var(--default-color1), transparent 40%);
}

.stats .legend-row .legend-item .text {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color1), transparent 20%);
}

