
@font-face {
	font-family: 'Futura';
	src: url("../fonts/Futura.woff");
}

html,body {
	height: 100%;
	font-family: "Lato", sans-serif;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
	color: #20509e;
	margin: 0;
	font-weight: 500;
	font-family: "Futura", sans-serif;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 48px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 20px;
}

h6 {
	font-size: 14px;
}

p {
	font-size: 15.7px;
	color: #75849a;
	line-height: 1.6;
}

img {
	max-width: 100%;
}

input:focus,select:focus,button:focus,textarea:focus {	outline: none;}

a:hover,a:focus {
	text-decoration: none;
	outline: none;
}

ul,ol {
	padding: 0;
	margin: 0;
}


.spad {
	padding-top: 100px;
	padding-bottom: 90px;
}
.process-section{
    background-color:#0f0f0f;
}

.section-title {
	margin-bottom: 60px;
}
.section-title h3 {
	margin-bottom: 20px;
	font-weight:bold;
	color:white;
}

.section-title h2 {
	margin-bottom: 20px;
	color:#19e02f;
}

.section-title p {
	margin-bottom: 0;
}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center 0;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #fff;
}



.site-btn {
	position: relative;
	display: inline-block;
	padding: 15px 30px;
	font-size: 16px;
	font-weight: 500;
	line-height: 16px;
	border-radius: 50px;
	font-family: "Futura", sans-serif;
	min-width: 100px;
	text-align: center;
	cursor: pointer;
	color: white;
	margin-right:5px;
    background:linear-gradient(135deg, #FFD700, #FFA500, #fad66f);
	
}

.site-btn:hover {
	color: #fff;

}

.site-btn.no-radius {
	border-radius: 2px;
}

.site-btn.sb-full-- {
	display: block;
	width: 100%;
	border-radius: 0;
}

.site-btn.sb-gradients {
	padding: 17px 32px;
	border: none;
	color: #fff;
}

.site-btn.sb-gradients.sbg-line {
	color: #20509e;
	z-index: 1;
}

.site-btn.sb-gradients.sbg-line:after {
	position: absolute;
	content: '';
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	background: #fff;
	top: 2px;
	left: 2px;
	z-index: -1;
	border-radius: 50px;
}

.site-btn.sb-gradients.sbg-line:hover {
	color: #20509e;
}

.gradient-bg,
.site-btn.sb-gradients,
.member-social a:hover,
.single-blog-page .social-share a:hover,
.comment .comment-content .c-btn:hover,
.comment-form label {
	/* FF3.6-15 */
	/* Chrome10-25,Safari5.1-6 */
	background: -webkit-gradient(linear, left top, right top, from(#3e2bce), color-stop(100%, #2dd3aa), color-stop(100%, #2dd3aa), to(#2dd3aa));
	background: -o-linear-gradient(left, #3e2bce 0%, #2dd3aa 100%, #2dd3aa 100%, #2dd3aa 100%);
	background: linear-gradient(to right, #3e2bce 0%, #2dd3aa 100%, #2dd3aa 100%, #2dd3aa 100%);
	background: radial-gradient(circle, #1BF2F2, #217575);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3e2bce', endColorstr='#2dd3aa', GradientType=1);
	/* IE6-9 */
}

/* Image Popup */

.img-popup-warp .mfp-content,
.img-popup-warp.mfp-ready.mfp-removing .mfp-content {
	opacity: 0;
	-webkit-transform: scale(0.8);
	-ms-transform: scale(0.8);
	transform: scale(0.8);
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.img-popup-warp.mfp-ready .mfp-content {
	opacity: 1;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #fff;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		        transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}


.header-section {
	position: absolute;
	width: 100%;
	top: 0;
	padding: 17px 16px 11px;
	z-index: 99;
	background:black;
	color:white;
}

.header-section .site-btn {
	float: right;
	margin-left: 60px;
}

.header-section .responsive-bar,
.header-section .user {
	display: none;
}

.main-menu {
	float: right;
}

.menu-list {
	list-style: none;
}

.menu-list li {
	display: inline;
}

.menu-list li a {
	display: inline-block;
	font-family: "Futura", sans-serif;
	font-size: 21px;
	padding: 10px 5px;
	margin-right: 30px;
	color:white;
}
.menu-list li a:hover{
    color:#00ff88;
}








/*------------------
	Responsive
---------------------*/

@media (min-width: 1200px) {
	.container {
		max-width: 1170px;
	}
}

@media (max-width: 1585px) {
	.hero-section .laptop-image {
		left: 0;
	}
}

@media (max-width: 1425px) {
	.header-section .site-btn {
		margin-left: 0;
	}
	.hero-section,
	.page-info-section {
		background-position: right 30% top;
	}
	.hero-section .laptop-image {
		width: auto;
		max-width: 100%;
		top: 70px;
	}
	.about-img {
		left: -50px;
		width: 600px;
	}
}

@media (min-width: 1199px) and (max-width: 1390px) {
	.member {
		padding: 35px 10px;
	}
	.member-img {
		width: 160px;
		height: 160px;
	}
	.member-info {
		padding: 50px 27px 10px;
		height: 275px;
	}
	.member-social a {
		margin: 0 5px;
	}
}

/* Medium screen : 992px. */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.menu-list li a {
		margin-right: 15px;
		font-size: 21px;
	}
	.hero-section,
	.page-info-section {
		background-position: right 23% top;
	}
	.about-img {
		left: 0px;
		width: 480px;
	}
	.member {
		width: calc(33.333333% - 25px);
		margin-bottom: 30px;
	}
	.team-members {
		text-align: center;
	}
	.fact h2 {
		font-size: 45px;
		margin-right: 10px;
	}
	.fact p {
		padding-top: 7px;
	}
	.fact i {
		font-size: 67px;
	}
}

/* Tablet :768px. */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.header-section {
		padding: 30px 15px 0;
	}
	.menu-list li a {
		margin-right: 6px;
	}
	.header-section .site-btn {
		margin-left: 10px;
	}
	.hero-section {
		background-position: right 25% top;
		height: 730px;
		padding-top: 160px;
	}
	.page-info-section {
		background-position: right 33% top;
	}
	.page-info-section h2 {
		font-size: 40px;
	}
	.hero-text h2 {
		font-size: 45px;
	}
	.process-step:after {
		width: 154px;
		height: 35px;
		top: -10px;
		right: -44%;
		background-size: contain;
	}
	.about-img {
		position: relative;
		display: block;
		left: 0;
		width: auto;
		margin-top: 50px;
		top:10px;
	}
	.member {
		width: calc(33.333333% - 25px);
		margin-bottom: 30px;
		padding: 35px 10px;
	}
	.member-img {
		width: 160px;
		height: 160px;
	}
	.member-info {
		padding: 50px 27px 10px;
		height: 275px;
	}
	.member-social a {
		margin: 0 5px;
	}
	.team-members {
		text-align: center;
	}
	.fact {
		margin-bottom: 30px;
	}
	.pull-3 {
		right: 0;
	}
	.push-8 {
		left: 0;
	}
	.review-section {
		text-align: center;
	}
	.review-text {
		padding: 0 60px;
	}
	.review-text-slider .owl-nav {
		padding-top: 0;
		position: absolute;
		top: 50%;
		margin-top: -45px;
		left: 0;
		width: 100%;
	}
	.review-text-slider .owl-prev {
		float: left;
	}
	.review-text-slider .owl-next {
		float: right;
	}
	.review-meta-slider {
		margin: auto;
	}
	.author-meta {
		padding-top: 0;
	}
	.newsletter-form {
		padding-left: 0;
	}
	.footer-widget {
		margin-bottom: 30px;
	}
	.newsletter-section {
		text-align: center;
	}
}

/* Large Mobile :480px. */

@media only screen and (max-width: 767px) {
	.header-section {
	
		padding: 20px 0;
	
		background:black;
		
	}
	.header-section .responsive-bar {
		float: right;
		font-size: 25px;
		display: block;
		cursor: pointer;
	}
	.header-section .user {
		float: right;
		font-size: 25px;
		color: #333;
		margin-right: 20px;
		display: block;
	}
	.main-menu {
		float: none;
		position: absolute;
		width: 100%;
		left: 0;
		top: 100%;
		background: #fff;
		padding: 0 15px;
		display: none;
		-webkit-box-shadow: 0 14px 43px rgba(33, 54, 61, 0.15);
		        box-shadow: 0 14px 43px rgba(33, 54, 61, 0.15);
	}
	.menu-list {
		list-style: none;
	}
	.menu-list li {
		display: block;
		border-top: 1px solid #e1e1e1;
	}
	.menu-list li a {
		display: block;
		padding: 10px 5px;
		margin-right: 0;
		color: #20509e;
	}
	.hero-text h2 {
		font-size: 40px;
	}
	.hero-section {
		height: auto;
		padding-bottom: 100px;
		padding-top: 160px;
		background-position: right 50% top;
	}
	.page-info-section {
		background-position: right 56% top;
		margin-top: 97px;
	}
	.page-info-section h2 {
		font-size: 40px;
	}
	.about-img {
		position: relative;
		display: block;
		left: 0;
		width: auto;
		margin-top: 50px;
		top:10px;
	}
	.team-members {
		margin: 0;
		padding: 0 15px;
	}
	.member {
		width: 100%;
		margin-bottom: 30px;
		margin-left: 0;
	}
	.fact {
		margin-bottom: 30px;
	}
	.process-step:after {
		display: none;
	}
	.pull-3 {
		right: 0;
	}
	.push-8 {
		left: 0;
	}
	.review-section {
		text-align: center;
	}
	.review-text {
		padding: 0 60px;
	}
	.review-text-slider .owl-nav {
		padding-top: 0;
		position: absolute;
		top: 50%;
		margin-top: -45px;
		left: 0;
		width: 100%;
	}
	.review-text-slider .owl-prev {
		float: left;
	}
	.review-text-slider .owl-next {
		float: right;
	}
	.review-meta-slider {
		margin: auto;
	}
	.author-meta {
		padding-top: 0;
	}
	.header-section .site-btn {
		display: none;
	}
	.newsletter-form {
		padding-left: 0;
	}
	.newsletter-section {
		text-align: center;
	}
	.review-text p {
		font-size: 20px;
	}
	.blog-item {
		margin-bottom: 30px;
	}
	.footer-widget {
		margin-bottom: 30px;
	}
	.single-blog-page .social-share {
		text-align: left;
		margin-top: 20px;
	}
}

/* small Mobile :320px. */

@media only screen and (max-width: 479px) {
	.review-text {
		padding: 0 45px;
	}
	.review-text p {
		font-size: 18px;
	}
	.newsletter-form input {
		padding-right: 30px;
	}
	.newsletter-form button {
		position: relative;
		padding: 14px;
		border-radius: 50px;
		margin-top: 23px;
	}
	.review-text-slider .owl-prev,
	.review-text-slider .owl-next {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}
	.review-meta-slider {
		width: auto;
	}
	.member-img {
		width: 180px;
		height: 180px;
	}
	.member-info {
		padding: 50px 20px 10px;
		height: 320px;
	}
	.blog-text {
		padding: 15px;
	}
	.comment .comment-avator {
		float: none;
		margin-bottom: 20px;
	}
	.comment .comment-content {
		padding-left: 0;
	}
}


/*section for cards*/

.features-section {
 /*background-image: linear-gradient( 90.2deg,  rgba(1,47,95,1) -0.4%, rgba(56,141,217,1) 106.1% );*/
}

.feature-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  height: 100%;
  border-left: 4px solid #1eb6b6;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  border-left: 4px solid #19e02f; /* turquoise accent like in image */
}

/*.feature-card i {*/
/*  color: #00bcd4;*/
/*}*/

/*.feature-card h5 {*/
/*  color: #00bcd4;*/
/*}*/

.feature-card p {
  color: #a2a1a1;
  font-size: 15px;
  line-height: 1.6;
}



/*how it works section*/


/* Center Feature Box */
.feature-box {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,188,212,0.3);
}

/* Circle Images */
.circle-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.circle-num img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover Animations */
.feature-item {
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-item:hover {
  transform: translateX(8px);
}

.feature-item:hover .circle-num {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(0,188,212,0.6);
}

/* Robot Images */
.robot-img {
  max-height: 400px;
  width: auto;
  transition: transform 0.5s ease;
}

.robot-img:hover {
  transform: scale(1.05);
}

/* ✅ RESPONSIVE DESIGN */
@media (max-width: 991px) {
  .how-it-works-section {
    padding: 60px 0;
  }

  .how-it-works-section h2 {
    font-size: 1.8rem;
  }

  .robot-img {
    max-height: 300px;
  }

  .feature-box {
    margin: 0 auto;
    width: 90%;
  }
}

@media (max-width: 767px) {
  .how-it-works-section h5 {
    font-size: 1.5rem;
  }

  .how-it-works-section h2 {
    font-size: 1.5rem;
  }

  .feature-box {
    padding: 1.5rem;
  }

  .circle-num {
    width: 40px;
    height: 40px;
  }

  .feature-item span {
    font-size: 0.95rem;
  }

  .robot-img {
    max-height: 250px;
  }
}

@media (max-width: 575px) {
  .how-it-works-section {
    padding: 50px 0;
  }

  .how-it-works-section h2 {
    font-size: 1.3rem;
  }

  .feature-box {
    width: 100%;
  }
}





/*typewriter effect*/

#typewriter {
  border-right: 2px solid #19e02f;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: blink 0.7s step-end infinite;
  min-height: 90px;
}

@keyframes blink {
  50% { border-color: transparent; }
}

@media (max-width: 575px) {
  #typewriter {
  min-height: 50px;
}
}
.start{
   background-color: #19e02f;
  color: white;
  margin-top: 40px;
  border: none;
  padding: 10px 27px;
  border-radius: 6px;
  font-size: 20px;
  cursor: pointer;
}
.start:hover{
    transform: scale(1.1);
}



#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  background-image: url("/public/images/background14.avif");
  z-index: 1; 
  background-size: cover;
	background-position: right top;
	background-repeat: no-repeat;
	filter: blur(1px);
}

.container-fluid {
  position: relative;
  z-index: 2;
}

.signup-btn {
    display: inline-block;
    padding: 14px 36px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: 50px; /* fully rounded, modern look */
    background: linear-gradient(135deg, #ffbb00, #ff6a00); /* premium gold-orange gradient */
    box-shadow: 0 6px 18px rgba(255, 115, 0, 0.45); /* subtle glow */
    transition: 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.signup-btn:hover {
    background: linear-gradient(135deg, #ffd75a, #ff8c1a); /* hover lighter gradient */
    box-shadow: 0 8px 22px rgba(255, 140, 26, 0.55); /* hover glow */
    transform: translateY(-3px); /* subtle lift on hover */
}

.img-responsive-custom {
    opacity: 0;
    transform: translateY(30px);
    animation: imageFadeUp 1s ease forwards;
}

@keyframes imageFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/*========================================*/
 .section-title { font-weight: 700; font-size: 28px; text-align: center; margin-bottom: 40px; }
        .feature-img { width: 100%; height:auto; }
        .cta-btn { padding: 10px 25px; font-weight: 600; margin-top:15px; }
        .card-block { padding: 30px 15px; border-radius: 15px; background: white; box-shadow: 0 0 20px rgba(0,0,0,0.05); }
        

/**/

.swiper-1{
     background:#130628;       
        }
 .slider-wrapper {
    overflow: hidden;
    width: 100%;
  }

  .slider-track {
    display: flex;
    animation: scroll 18s linear infinite;
  }

  .slider-item {
    min-width: 33.33%; /* 3 items */
    padding: 10px;
  }

  .slider-item img {
    width: 100%;
    height: 240px;      
    object-fit: cover;   
    border-radius: 10px;
  }

  /* Tablet */
  @media (max-width: 768px) {
    .slider-item {
      min-width: 50%;
    }
    .slider-item img {
      height: 200px; 
    }
  }

  /* Mobile */
  @media (max-width: 576px) {
    .slider-item {
      min-width: 100%;
    }
    .slider-item img {
      height: 180px;
    }
  }

  /* Animation */
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }


/* ----------------------------------------------------
   HERO SECTION
---------------------------------------------------- */
.about-hero {
    position: relative;
    width: 100%;
    min-height: 700px;
    /*background-image: url('/public/images/bgf-224.png');*/
     background-image: url('../images/bgf-224.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    display: flex;
    align-items: center;

    padding: 120px 5% 60px 5%; 
}

/* Dark Overlay */
.about-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background:white;*/
    z-index: 1;
}

/* Content Wrapper */
.content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* -----------------------------
   LEFT TEXT CONTENT
----------------------------- */
.left-content {
    width: 50%;
    color: #fff;
}

.left-content h1 {
    font-size: 57px;
    font-weight: 700;
    margin-bottom: 15px;
}

.left-content p {
    font-size: 20px;
    margin-bottom: 25px;
    max-width: 90%;
    line-height: 1.5;
}

/*.hero-btn {*/
/*    display: inline-block;*/
/*    padding: 12px 28px;*/
/*    background: #ff6600;*/
/*    color: #fff;*/
/*    font-size: 18px;*/
/*    text-decoration: none;*/
/*    border-radius: 6px;*/
/*    transition: 0.3s;*/
/*}*/

/*.hero-btn:hover {*/
/*    background: #e85d00;*/
/*}*/
.hero-btn {
    display: inline-block;
    padding: 13px 32px;
    font-size: 18px;
    font-weight: 600;
    color:black;
    text-decoration: none;
    border-radius: 50px;
   background: linear-gradient(135deg, #FFD700, #FFA500, #fad66f);
    box-shadow: 0 6px 18px rgba(255, 191, 0, 0.6);
    transition: 0.3s ease-in-out;
}

.hero-btn:hover {
    background: linear-gradient(135deg, #ffd75a, #ff8c1a);
    box-shadow: 0 8px 22px rgba(255, 140, 26, 0.55);
    transform: translateY(-3px);
}
.sapn-1{
    color:#eb9c05;
}

/* -----------------------------
   RIGHT IMAGE CONTENT
----------------------------- */
.right-content {
    width: 45%;
    display: flex;
    justify-content: center;
}

.right-content img {
    width: 100%;
    /*max-width: 420px;*/
    border-radius: 10px;
  
}

/* ----------------------------------------------------
   RESPONSIVE: TABLETS
---------------------------------------------------- */
@media (max-width: 991px) {
    .about-hero {
        padding-top: 140px; 
        padding-bottom: 60px;
        background-position: center;
    }

    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .left-content,
    .right-content {
        width: 100%;
    }

    .right-content {
        margin-top: 35px;
    }

    .left-content h1 {
        font-size: 45px;
    }

    .left-content p {
        font-size: 18px;
    }
}

/* ----------------------------------------------------
   RESPONSIVE: MOBILE
---------------------------------------------------- */
@media (max-width: 480px) {
    .about-hero {
        padding-top: 150px; 
        padding-bottom: 50px;
    }

    .left-content h1 {
        font-size: 35px;
    }

    .left-content p {
        font-size: 16px;
    }

    .hero-btn {
        padding: 10px 22px;
        font-size: 16px;
    }

    .right-content img {
        max-width: 300px;
    }
}

/* ----------------------------------------------------
   EXTRA SMALL DEVICES (≤ 320px)
---------------------------------------------------- */
@media (max-width: 320px) {
    .about-hero {
        padding-top: 160px;
    }

    .left-content h1 {
        font-size: 28px;
    }
}



.aqua-section {
    width: 100%;
    position: relative;
}

.aqua-bg {
    /*background: url('img/backg/round.jpg') center/cover no-repeat;*/
    padding: 90px 0;
    position: relative;
     background-image: url('/public/images/fishslide.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.aqua-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    /*background-image: url('/public/images/fishslide.jpg');*/
    /*background-size: cover;*/
    /*background-position: center;*/
    /*background-attachment: fixed;*/
    display: flex;
    align-items: center;
    z-index: 1;
}

.aqua-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.aqua-box {
    background: rgba(255,255,255,0.35);
    backdrop-filter: blur(4px);
    padding: 40px 60px;
    border-radius: 20px;
    text-align: center;
    width: 420px;
    transition: 0.3s ease;
}

.aqua-box:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.45);
}

.aqua-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.aqua-title {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
}

/* Mobile responsive 360–320px */
@media(max-width: 480px) {
    .aqua-box {
        width: 90%;
        padding: 30px 20px;
    }

    .aqua-title {
        font-size: 22px;
    }

    .aqua-icon img {
        width: 60px;
        height: 60px;
    }
}


/**/

.latest-sec {
    padding: 70px 0;
    background: #ffffff;
}

.latest-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.latest-title {
    text-align: center;
    font-size: 32px;
    color: #083b72;
    font-weight: 700;
}

.latest-line {
    width: 60px;
    height: 4px;
    background: #37b24d;
    margin: 12px auto 25px;
    border-radius: 10px;
}

.latest-subtext {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 17px;
    color: #4c4c4c;
}

.latest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: start;
}

.latest-img-box {
    overflow: hidden;
    border-radius: 25px;
}

.latest-img {
    width: 100%;
    border-radius: 25px;
    object-fit: cover;
}

.latest-heading {
    font-size:50px;
    font-weight: 700;
    color: black;
    line-height: 1.3;
    margin-bottom: 15px;
}

.latest-category {
    font-size: 15px;
    font-weight: 600;
    color: #0a6fb8;
    margin-bottom: 12px;
}

.latest-icon {
    font-size: 16px;
}

.latest-desc {
    font-size: 18px;
    color:black;
    line-height: 1.6;
}

/*  Responsive for Mobile (360px–320px) */
@media(max-width: 768px) {
    .latest-grid {
        grid-template-columns: 1fr;
    }

    .latest-heading {
        font-size: 35px;
    }

    .latest-subtext {
        font-size: 15px;
    }
}

@media(max-width: 480px) {
    .latest-title {
        font-size: 26px;
    }

    .latest-heading {
        font-size: 27px;
    }

    .latest-desc {
        font-size: 14px;
    }
}

.img-responsive-custom {
    max-width: 400px;   
    width: 100%;        
    height: 550px;
}

.wf-footer {
    background: #000;
    color: #ffffff;
    padding: 60px 131px;
    font-family: "Inter", sans-serif;
}

/* ---------- TOP SECTION ---------- */
.wf-footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

/* LEFT LOGO + SOCIAL */
.wf-left {
    max-width: 300px;
}

.wf-logo img {
    width: 180px;
    margin-bottom: 20px;
}

.wf-social a {
    color: #ffffff;
    margin-right: 10px;
    font-size: 18px;
    display: inline-block;
    transition: 0.3s;
}

.wf-social a:hover {
    color: #00aaff;
    transform: translateY(-3px);
}

.wf-tagline {
    margin-top: 15px;
    line-height: 1.5;
    font-size: 15px;
    opacity: 0.9;
}

/* ---------- RIGHT MENU COLUMNS ---------- */
.wf-menus {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.wf-menus ul {
    list-style: none;
}

.wf-menus ul li {
    margin-bottom: 10px;
}

.wf-menus ul li a {
    color: #ffffff;
    opacity: 0.9;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.wf-menus ul li a:hover {
    color: #00aaff;
    opacity: 1;
}

/* ---------- MIDDLE SECTION ---------- */
.wf-middle {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    padding: 30px 0;
    border-top: 1px solid #ffffff22;
    border-bottom: 1px solid #ffffff22;
}

.wf-about {
    flex: 1;
    max-width: 600px;
    line-height: 1.7;
    opacity: 0.9;
}

/* SUBSCRIBE BOX */
.wf-subscribe h3 {
    margin-bottom: 15px;
    color:white;
}

.wf-subscribe-box {
    display: flex;
}

.wf-subscribe-box input {
    width: 260px;
    padding: 10px;
    border: none;
    outline: none;
    border-radius: 4px 0 0 4px;
}

.wf-subscribe-box button {
    background: #00aaff;
    border: none;
    padding: 10px 20px;
    color:black;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: 0.3s;
}

.wf-subscribe-box button:hover {
    background: #0088cc;
}

/* ---------- BOTTOM ---------- */
.wf-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
}

.wf-bottom a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 5px;
    opacity: 0.8;
    transition: 0.3s;
}

.wf-bottom a:hover {
    opacity: 1;
    color: #00aaff;
}

.wf-bottom span {
    margin-left: 10px;
    opacity: 0.8;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .wf-footer {
        padding: 40px 20px;
    }

    .wf-footer-top,
    .wf-middle {
        flex-direction: column;
    }

    .wf-menus {
        gap: 30px;
    }

    .wf-subscribe-box {
        flex-direction: column;
    }

    .wf-subscribe-box input {
        width: 100%;
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .wf-subscribe-box button {
        width: 100%;
        border-radius: 4px;
    }
}


.intro-banner {
    padding: 0 3rem;
    border-radius: 14px;
    background:url(../images/intro-banner.png) no-repeat right center / contain, linear-gradient(90deg, #d8a409 0%, #ffb300d6 154.3%);
    min-height: 150px;
    color: #fff;
    line-height: 60px;
}
.intro-banner .header {
    font-size: 28px;
    line-height: 50px;
    font-weight: 800;
    display: block;
    color:black;
}
.intro-banner .description {
    font-size: 16px;
    font-weight: 300;
}
.intro-banner .btn-start {
    border-radius: 36px;
    border: 1px solid var(--primary-color, #01bc8d);
    background: var(--Basic-White, #fff);
    width: 151px;
    min-height: 48px;
    color: var(--primary-color, #01bc8d);
    transition: all .3sease;
    text-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 768px) {
    .intro-banner {
        background-position: center;
        background-color: rgba(0, 0, 0, .2);
        padding: 1rem 5px;
        background-size: cover;
        line-height: 200%;
        width: 96%;
    }
}
#benefits h2 {
    color: var(--Gray-Gray-900, #181c32);
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    line-height: 54px;
    margin-top: 100px;
}
.scribble {
    width: 304px;
    height: 18px;
}
#benefits .cards {
    color: var(--Gray-Gray-900, #181c32);
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
}
#benefits .cards .feature-card {
    border-radius: 14px;
    background-color: var(--light-gray, #5d9c6a17);
    border: none;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
    padding: 20px;
    transition: all .3s ease;
}
#benefits .cards .feature-icon {
   background-color: rgba(210, 169, 10, 0.99);
  min-width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
}
#benefits .cards .feature-title {
    color:var(--Gray-Gray-900, #3ed648);
    font-size: 18px;
    font-weight: 700;
    line-height: 150%;
    text-align: center;
}
#benefits .cards .feature-card p {
    font-size: 13px;
    font-weight: normal;
    line-height: 150%;
    margin-left: 5px;
}
.cursor::after {
  content: "|";
  margin-left: 4px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}
#steps {
    position: relative;
    overflow-x: clip;
    overflow-y: visible;
    margin-top: 100px;
}
#steps .steps-heading {
    color: var(--Gray-Gray-900, #181c32);
    font-size: 36px;
    font-weight: 600;
    line-height: 54px;
}
#steps .step.step-1 {
    background: linear-gradient(147deg, rgba(1, 188, 141, 0.13) 0%, rgba(146, 228, 255, 0.13) 100%);
    padding: 20px;
}
#steps .step.step-1::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../images/step-1-bg.svg);
    opacity: .08;
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: auto;
}
#steps .step .step-heading {
    color: var(--Gray-Gray-900, #fff);
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
}
#steps .step .step-count {
    background: #fff;
    color: #035447;
    font-size: 36px;
    padding: 2px;
    margin: 0 0 6px 6px;
    font-weight: 700;
    line-height: 48px;
    border-radius: 50%;
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#steps .step p {
    color: #5f5f5f;
    font-size: 14px;
    font-weight: 400;
    line-height: 130%;
    padding: 0 0 10px 10px;
}
#steps .step.step-2 {
    background: linear-gradient(147deg, rgba(1, 188, 141, 0.13) 0%, rgba(146, 228, 255, 0.13) 100%);
    padding: 20px;
}
#steps .step.step-2::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../images/step-1-bg.svg);
    opacity: .08;
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: auto;
}
#steps .step.step-3 {
    background: linear-gradient(147deg, rgba(1, 188, 141, 0.13) 0%, rgba(146, 228, 255, 0.13) 100%);
    padding: 20px;
}
#steps .step.step-3::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../images/step-1-bg.svg);
    opacity: .08;
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: auto;
}
#any{
    color:#00857c;
    font-weight: 700;
    margin-right: 3px;;
}

.testimonial-section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header h2 span {
  color: #10b981;
}

.arrows button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #000;
  background: white;
  cursor: pointer;
  font-size: 18px;
}

.slider-wrapper {
  overflow: hidden;
  margin-top: 30px;
}

.slider {
  display: flex;
  transition: transform 0.6s ease;
}

.card {
  min-width: 33.33%;
  padding: 25px;
  background:#11f7ec1f;
  border-radius: 15px;
  margin-right: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.card h4 {
  margin: 10px 0;
  color:white;
}
.card p {

  color:white;
}


@media (max-width: 768px) {
  .card {
    min-width: 100%;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  #thousands {
    font-size: 20px;
  }
}
p.card-text {
    font-size: 14px;
    color:#5f5f5f;
}
h5.card-title {
    font-size: 20px;
    font-weight: bold;
    color: black;
}
@media (max-width: 768px) {
    p.card-text {
        font-size: 12px;
        line-height: 1.5;
    }

    h5.card-title {
        font-size:xx-small;
        font-weight: bold;
    }
}

.img-responsive-custom {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width:576px){
    .partner-icons{
        margin-bottom:15px;
    }
}

.left-box1{
    display:flex;
    justify-content:space-around;
}

.crypto {
    padding-top: 80px;
    background: #030710;
    /* margin-bottom: 67px; */
    padding-bottom: 30px;
    margin-top: 40px;
}
.left-box h6{
    color:white;
}
.crypto-title{
    color:white;
}
.para-1{
    color:white
}
.side-1 h1{
    color:#31c5bb;
}
.side-1 h4{
    color:white;
}
.side-2 h1{
    color:#31c5bb;
}
.side-2 h4{
    color:white;
}
@media(max-width:576px){
    
   .crypto-file{
       gap:15px;
   }
}
.partners-icon {
    max-width: 100%;
    width: 350px;      
    height: auto;
    display: block;
}


@media (max-width: 768px) {
    .partners-icon {
        width: 100%;   
        max-width: 300px;
        margin: 0 auto; 
    }
}
.crypto-cta {
    min-height: 70vh;
    display: flex;
    background:#181818;
    justify-content:space-around;
    margin-top:40px;
}

.heading-1 h3 {
    font-size: 42px;
    font-weight: 800;
    color:white;
}

.heading-1 h6 {
    font-size: 16px;
    color: #777;
    line-height: 1.6;
}

/*.hero-btn {*/
/*    padding: 12px 30px;*/
    /*background: #f7931a;*/
/*    color: #fff;*/
/*    border-radius: 6px;*/
/*    text-decoration: none;*/
/*    font-weight: 600;*/
/*}*/

.hero-btn:hover {
    background: #e67e00;
    color: #fff;
}

.partners-icon {
    max-width: 600px;
    height: auto;
    width:100%;
}

/* Mobile view */
@media (max-width: 768px) {
    .crypto-cta {
        min-height: auto;
        padding: 40px 0;
    }

    .heading-1 h3 {
        font-size: 24px;
    }

    .partners-icon {
        max-width: 280px;
        margin-top: 20px;
    }
}

.service-section {
    padding: 80px 0;
    background:#181818;
}

.polygon-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: auto;
}

.polygon-bg {
    width: 100%;
    z-index: 1;
    border-radius: 35px;
}

.girl-img {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65%;
    z-index: 2;
}

.chart-img {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 40%;
    z-index: 3;
}

.feature-list li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #fff;
}


@media (max-width: 768px) {
    .chart-img {
        left: 0;
        bottom: -20px;
        width: 45%;
    }
}
h2.fw-bold.mb-3 {
    font-weight: bolder;
    font-size: 52px;
}
@media (max-width: 768px) {
   h2.fw-bold.mb-3 {
    font-weight: bolder;
    font-size: 32px;
}
}
