/* =================================
------------------------------------
  CryptoWhales - Landing Page
 ------------------------------------ 
 ====================================*/

@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;
}

/*---------------------
	Helper CSS
-----------------------*/
.body {
	background-color: rgb(27, 27, 27);
}


.spad {
	padding-top: 100px;
	padding-bottom: 90px;
}

.section-title {
	margin-bottom: 60px;
}

.section-title h2 {
	margin-bottom: 20px;
}

.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;
}

/*---------------------
	Commom elements
-----------------------*/

/* Buttons */

.site-btn {
	position: relative;
	display: inline-block;
	padding: 15px 30px;
	font-size: 16px;
	font-weight: 500;
	line-height: 16px;
	border-radius: 10px;
	font-family: "Futura", sans-serif;
	min-width: 170px;
	text-align: center;
	border: 2px;
	cursor: pointer;
	color: #fff;
	/*background: linear-gradient(to left, #ffda62,#f5ecce,#d4b551);*/
	background: linear-gradient( 135deg,#c89200 10%,#f5d376 35%,#fff0b3 50%,#f5d376 65%,#c89200 100%);
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
    overflow: hidden;
    transition: transform 0.3s ease;
	/*background: linear-gradient(to left, #f4c066);*/
	/*background-image: url("../img/Rectangle11.png");
	background-repeat: no-repeat;
    background-size: 100% 100%;*/
	/*background-color: #f7c56c;*/
}

/*.gold-button {
  position: relative;
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: bold;
  color: #fff;
  font-family: sans-serif;
  border-radius: 8px;
  background: linear-gradient(
    135deg,
    #c89200 0%,
    #f5d376 30%,
    #fff1b8 50%,
    #f5d376 70%,
    #c89200 100%
  );
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}*/

.site-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
  transform: skewX(-25deg);
  transition: all 0.3s ease;
}

.site-btn:hover::before {
  animation: shine 1.2s ease forwards;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

.site-btn:hover {
  transform: scale(1.03);
  color: #fff;
}

/*.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: #c89200;
	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: #c89200;
}

.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(#f5d376), color-stop(100%, #c89200), color-stop(100%, #c89200), to(#c89200));
	background: -o-linear-gradient( 135deg,#c89200 10%,#f5d376 35%,#fff0b3 50%,#f5d376 65%,#c89200 100%);
	background: linear-gradient( 135deg,#c89200 10%,#f5d376 35%,#fff0b3 50%,#f5d376 65%,#c89200 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5d376', endColorstr='#c89200', 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: rgba(255, 255, 255, 0.03);
}

.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 #c89200 ;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		        transform: rotate(180deg);
		border: 4px solid #fff1b8;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
		border: 4px solid #c89200 ;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #e4aa0a;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #fff0b3;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #e4aa0a;
		border-left-color: transparent;
	}
}

/*---------------------
	Header section
-----------------------*/

.header-section {
	position: absolute;
	width: 100%;
	top: 0;
	padding: 30px 50px 0;
	z-index: 99;
	background-color: rgb(27, 27, 27);
}

.header-section .site-btn {
	float: right;
	margin-left: 60px;
}

.header-section .responsive-bar,
.header-section .user {
	display: none;
	color: #ffc766;
}

.main-menu {
	float: right;
}

.menu-list {
	list-style: none;
}

.menu-list li a:hover {
	color: #ffc766;
}

.menu-list li {
	display: inline;
}

.menu-list li a {
	display: inline-block;
	font-family: "Futura", sans-serif;
	font-size: 16px;
	padding: 10px 5px;
	margin-right: 30px;
	color: #fff;
}

/*---------------------
	Hero Section
-----------------------*/

.hero-section {
	height: 900px;
	padding-top: 260px;
	display: block;
	/*background-image: url("../img/maskgroup2.png");*/
	background-image: url("../img/hero-bg.png");
	background-size: cover;
	background-color: #f3f7f9;
	background-position: right top;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
	background-color: rgb(27, 27, 27);
}

.hero-section .laptop-image {
	width: 685px;
	max-width: none;
	position: relative;
	left: 80px;
}

.hero-text {
	padding-top: 60px;
}

.hero-text h2 {
	font-size: 70px;
	margin-bottom: 35px;
}

.hero-text h2 span {
	color: #16d0c5;
}

.hero-text h4 {
	color: #75849a;
	font-size: 22px;
}

.hero-subscribe-from {
	margin-top: 50px;
	display: block;
}

.hero-subscribe-from input {
	width: 315px;
	border: 1px solid #ebebeb;
	background: #fff;
	height: 48px;
	padding: 0 25px;
	border-radius: 50px;
	font-family: "Futura", sans-serif;
	font-size: 16px;
	margin-right: 8px;
	margin-bottom: 20px;
}

/*---------------------
  About Section
-----------------------*/

.about-section .container {
	position: relative;
}

.about-text h2 {
	font-size: 48px;
	margin-bottom: 25px;
}

.about-text h5 {
	font-family: "Lato", sans-serif;
	margin-bottom: 20px;
}

.about-text p {
	font-size: 18px;
}

.about-img {
	position: absolute;
	top: 0;
	left: -120px;
	width: 662px;
}

/*---------------------
	Process Section
-----------------------*/

.process:last-child .process-step:after {
	display: none;
}

.process-step {
	position: relative;
	text-align: center;
	padding: 35px;
	margin-top: 30px;
	margin-bottom: 50px;
	/*-webkit-box-shadow: 0 14px 43px rgba(33, 54, 61, 0.15);
	        box-shadow: 0 14px 43px rgba(33, 54, 61, 0.15);*/
	background-color: rgba(255, 255, 255, 0.06);
	box-shadow: rgba(66, 66, 66, 0.1) 0px 1px 1px 0px inset, 
	            rgba(93, 84, 50, 0.25) 0px 50px 100px -20px, 
				rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.process-step .process-icon {
	height: 55px;
	margin-bottom: 30px;
	padding-top: 5px;
}

.process-step h4 {
	margin-bottom: 15px;
}

.process-step p {
	margin-bottom: 0;
}

.process-step:after {
	position: absolute;
	content: '';
	width: 275px;
	height: 56px;
	top: 100px;
	right: -40%;
	background: url("../img/arrowline.png") no-repeat scroll 0 0/cover;
    background-size: 50% 50%;
	z-index: 1;
}


/*---------------------
	Plans Section
-----------------------*/

/*.pricing-section {
  background: #0e0e0e;
}*/

.pricing-card-user {
  padding: 2rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pricing-card-user::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.06) 50%,
    rgba(255, 255, 255, 0.03) 100%
  );
  pointer-events: none;
  transition: all 0.3s ease;
}

.pricing-card-user:hover::after {
  animation: metallic-shine 1s ease-in-out forwards;
}

@keyframes metallic-shine {
  0% {
    left: -100%;
  }
  100% {
    left: 0%;
  }
}

.pricing-card-user:hover {
  transform: rotateX(-0.5deg) rotateY(0.5deg) skewY(-0.5deg) translateY(1px) scale(1.05);
  /*transform: rotateX(-4deg) rotateY(4deg) translateY(5px) scale(1.02);*/
  box-shadow: 0 15px 25px rgba(255, 215, 0, 0.15);
}

.pricing-card {
  padding: 2rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pricing-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.06) 50%,
    rgba(255, 255, 255, 0.03) 100%
  );
  pointer-events: none;
  transition: all 0.3s ease;
}

.pricing-card:hover::after {
  animation: metallic-shine 1s ease-in-out forwards;
}

@keyframes metallic-shine {
  0% {
    left: -100%;
  }
  100% {
    left: 0%;
  }
}

.pricing-card:hover {
  transform: rotateX(-2deg) rotateY(2deg) skewY(-2deg) translateY(3px) scale(1.05);
  /*transform: rotateX(-4deg) rotateY(4deg) translateY(5px) scale(1.02);*/
  box-shadow: 0 15px 25px rgba(255, 215, 0, 0.25);
}

.plan-title {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.plan-title::after {
  content: "";
  width: 60px;
  height: 2px;
  background: gold;
  display: block;
  margin: 8px auto 0;
}

.pricing-card ul {
  padding-left: 0;
  margin-top: -20%;
  list-style: none;
  color: #ccc;
  font-size: 0.95rem;
  line-height: 4;
  text-align: start;
}

.pricing-card ul li::before {
  content: "◆";
  color: gold;
  margin-right: 0.4rem;
}

.gold-btn {
  background: linear-gradient(to bottom, #ffd26f, #f0b83a);
  color: #000;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 150px;
  align-self: center;
  text-align: center;
	cursor: pointer;
	color: #000;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
    overflow: hidden;
}

.gold-btn::before {
  content: '';
  position: absolute;
  top: 0%;
  left: 200%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
  transform: skewX(-25deg);
  transition: all 0.3s ease;
}

.gold-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
}

.gold-btn:hover::before {
  animation: shine 1.2s ease forwards;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

.black-btn {
  background: #111;
  color: #fff;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  width: 150px;
  align-self: center;
  text-align: center;
}

.black-card {
  background: linear-gradient(
    135deg,
    #1a1a1a,
    #1e1e1e 30%,
    #2d2d2d 50%,
    #1e1e1e 70%,
    #1a1a1a
  );
  border: 1px solid #c79c2c;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
}

.gold-card li {
	color: #000000;
}
.gold-card {
  background: linear-gradient(
    135deg,
    #c89200 0%,
    #f5d376 30%,
    #fff1b8 50%,
    #f5d376 70%,
    #c89200 100%
  );
  border: 2px solid #fff8dc;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
  color: #000000;
  position: relative;
}

.gold-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  transform: skewX(-25deg);
  pointer-events: none;
}

.gold-card::before {
  content: '';
  position: absolute;
  top: 0%;
  left: 200%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
  transform: skewX(-25deg);
  transition: all 0.3s ease;
}

.gold-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
}

.gold-color:hover::before {
  animation: shine 1.2s ease forwards;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

.gold-card:hover::before {
  animation: shine 1.2s ease forwards;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

.log-card {
	background: linear-gradient(
    135deg,
    #2d2d2d,
    #2d2d2d 30%,
    #4c4c4c 50%,
    #2d2d2d 70%,
    #2d2d2d
  );
  border: 1px solid #c79c2c;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  /*box-shadow: rgba(244, 206, 83, 0.45) -20px 25px 0px 0px;*/
  /*box-shadow: rgba(244, 206, 83, 0.45) 0px -10px 0px 0px;*/
}

.log-card::after {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.06) 50%,
    rgba(255, 255, 255, 0.03) 100%
  );
  pointer-events: none;
  transition: all 0.3s ease;
}

.log-card:hover::after {
  animation: metallic-shine 1s ease-in-out forwards;
}

@keyframes metallic-shine {
  0% {
    left: -100%;
  }
  100% {
    left: 0%;
  }
}

.log-card:hover {
  /*transform: rotateX(-2deg) rotateY(2deg) skewY(-2deg) translateY(3px) scale(1.05);
  /*transform: rotateX(-4deg) rotateY(4deg) translateY(5px) scale(1.02);*/
  box-shadow: 0 15px 25px rgba(255, 215, 0, 0.25);
}

.login-btn {
	background: linear-gradient(to bottom, #ffd26f, #f0b83a);
  color: #000;
  /*padding: 0.5rem 1rem;*/
  /*margin-left: 35%;*/
  border: none;
  border-radius: 6px;
  font-weight: 600;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 200px;
  align-self: center;
  text-align: center;
	cursor: pointer;
	color: #000;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
    overflow: hidden;
}

.login-btn::before {
	content: '';
  position: absolute;
  top: 0%;
  left: 200%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
  transform: skewX(-25deg);
  transition: all 0.3s ease;
}

.login-btn:hover {
  transform: translateY(-2px);
  /*box-shadow: 0 0 20px rgba(255, 215, 0, 0.7);*/
}

.login-btn:hover::before {
  animation: shine 1.2s ease forwards;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

.reg-btn {
	background: linear-gradient(to bottom, #ffd26f, #f0b83a);
  color: #000;
  /*padding: 0.5rem 1rem;*/
  /*margin-left: 35%;*/
  border: none;
  border-radius: 6px;
  font-weight: 600;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 200px;
  align-self: center;
  text-align: center;
	cursor: pointer;
	color: #000;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
    overflow: hidden;
}

.reg-btn::before {
	content: '';
  position: absolute;
  top: 0%;
  left: 200%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
  transform: skewX(-25deg);
  transition: all 0.3s ease;
}

.reg-btn:hover {
  transform: translateY(-2px);
  /*box-shadow: 0 0 20px rgba(255, 215, 0, 0.7);*/
}

.reg-btn:hover::before {
  animation: shine 1.2s ease forwards;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

.form-group label{
	color: #FFFFFF;
}

.form-group input {
	background-color: transparent;
	border: 2px solid rgb(141, 141, 141);
}

.form-group .d-block label {
	color: #FFFFFF;
}

.form-group .d-block .float-right a {
	color: #FFFFFF;
}

.final-div a {
	color: #FFFFFF;
}

.logo-name{
	background-image: linear-gradient( -125deg,#ffc31e 15%,#fff0b3 30%,#f5d376 50%,#e4aa0a 80%); 
   -webkit-background-clip: text;
    background-clip: text;
   -webkit-text-fill-color: transparent;
    color: transparent; /* Example style */
	font-size: 20px;
}


/*.fundedlink h1{
	background-image: linear-gradient( -125deg,#ffc31e 15%,#fff0b3 30%,#f5d376 50%,#e4aa0a 80%); 
   -webkit-background-clip: text;
    background-clip: text;
   -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: bold; /* Example style *//*
	font-size: 70px;
	margin-right: 20px;
}*/

.fundedlink h1{
	color: rgb(255, 255, 255);
	font-size: 70px;
	font-weight: bold;
}
.fundedlink p{
	background-image: linear-gradient( -125deg,#ffc31e 15%,#fff0b3 30%,#f5d376 50%,#e4aa0a 80%); 
   -webkit-background-clip: text;
    background-clip: text;
   -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: bold; /* Example style */
	margin-right: 20px;
}
.fundedlink a{
	color: #fff; /* Initial text color */
  text-shadow: none; /* No glow initially */
  transition: text-shadow 0.3s ease-in-out; /* Smooth transition for the glow */
}
.fundedlink h1:hover{
	text-shadow: 0 5px 35px rgba(255, 215, 0, 0.7);
	/*text-shadow: 0 0 2px rgb(255, 196, 0), /* First shadow layer for the glow 
               0 0 6px rgb(255, 208, 0), /* Second shadow layer for a stronger glow 
               0 0 10px rgb(255, 217, 0); /* Third shadow layer for a wider glow */
}



/*---------------------
	Fact Section
-----------------------*/

.fact-section {
	padding: 100px 0;
}

.fact {
	display: inline-block;
	position: relative;
}

.fact-section h1 {
	background-image: linear-gradient( -125deg,#ffc31e 15%,#fff0b3 30%,#f5d376 50%,#e4aa0a 80%); 
   -webkit-background-clip: text;
    background-clip: text;
   -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: bold; /* Example style */
	font-size: 70px;
	margin-right: 20px;
}

.fact p {
	float: left;
	padding-top: 14px;
	line-height: 1.4;
	color: #fff;
	text-transform: uppercase;
}

.fact i {
	position: absolute;
	right: -20px;
	top: -10px;
	font-size: 90px;
	color: #fff;
	z-index: 0;
	opacity: 0.1;
}

/*---------------------
  Review Section
-----------------------*/

.review-meta-slider {
	position: relative;
	width: 300px;
}

.author-meta {
	padding: 50px 0 70px;
	position: relative;
	text-align: center;
}

.author-meta:last-child {
	margin-right: 0;
}

.author-avatar {
	width: 80px;
	height: 80px;
	border: 3px solid #ffc766;
	border-radius: 50%;
	-webkit-box-shadow: 0px 16px 21px rgba(33, 54, 61, 0.15);
	        box-shadow: 0px 16px 21px rgba(33, 54, 61, 0.15);
	display: inline-block;
}

.author-avatar h4 {
	font-size: 22px;
	color: #ffffff;
}

.author-avatar p {
	font-size: 14px;
}

.author-name {
	position: absolute;
	width: 280px;
	left: -50%;
	bottom: -10px;
	margin-left: -50px;
	text-align: center;
	visibility: hidden;
}

.center .author-meta {
	top: -6px;
}

.center .author-name {
	visibility: visible;
}

.center .author-avatar {
	width: 100px;
	height: 100px;
}

.review-text p {
	font-size: 22px;
}

.review-text-slider .owl-nav {
	padding-top: 15px;
}

.review-text-slider .owl-prev,
.review-text-slider .owl-next {
	width: 50px;
	height: 50px;
	display: inline-block;
	background: #3b3b3b;
	color: #ffffff;
	font-size: 24px;
	text-align: center;
	margin-right: 10px;
	border-radius: 5%;
	padding-top: 8px;
}

/*.review-text-slider .owl-prev,
.review-text-slider .owl-next:hover {
	background-color: #f5d376;
}*/

.pull-3 {
	right: 66.666667%;
}

.push-8 {
	left: 33.333333%;
}

/*---------------------
	Newsletter Section
-----------------------*/

.newsletter-section {
	padding: 50px 0;
	background: linear-gradient( -125deg,#ffc31e 15%,#fff0b3 30%,#f5d376 50%,#e4aa0a 80%);
}

.newsletter-text h2 {
	font-size: 36px;
	margin-bottom: 10px;
}

.newsletter-text p {
	margin-bottom: 0;
}

.newsletter-form {
	position: relative;
	margin-top: 20px;
	padding-left: 40px;
}

.newsletter-form input {
	width: 100%;
	font-size: 16px;
	padding: 12px 30px;
	border: none;
	border-radius: 50px;
	padding-right: 160px;
	background: rgba(30, 30, 30, 0.2);
	color: rgb(75, 75, 75);
}

.newsletter-form button {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	border: none;
	border-radius: 0px 50px 50px 0px;
	min-width: 140px;
	background: #fff;
	color: rgb(75, 75, 75);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.newsletter-form ::-webkit-input-placeholder {
	color: rgb(57, 57, 57);
}

.newsletter-form :-ms-input-placeholder {
	color: rgb(57, 57, 57);
}

.newsletter-form ::-ms-input-placeholder {
	color: rgb(57, 57, 57);
}

.newsletter-form ::placeholder {
	color: rgb(57, 57, 57);
}

/*---------------------
	Footer Section
-----------------------*/

.footer-widget span {
	color: #acb9cc;
}

.footer-widget p {
	margin-bottom: 20px;
}

.footer-widget .widget-title {
	margin-bottom: 30px;
	font-size: 20px;
}

.footer-widget ul {
	list-style: none;
}

.footer-widget ul a {
	font-size: 16px;
	color: #75849a;
	display: block;
	margin-bottom: 12px;
}

.footer-widget ul li:last-child a {
	margin-bottom: 0;
}

.social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: #fff;
	display: inline-block;
	margin-right: 10px;
	text-align: center;
	padding-top: 7px;
	font-size: 18px;
}

.social a:last-child {
	margin-right: 0;
}

.social .facebook {
	background: #4b6cd0;
}

.social .google {
	background: #f03b3b;
}

.social .instagram {
	background: #bb8950;
}

.social .telegram {
	background: #49a7f3;
}

.footer-bottom {
	border-top: 1px solid #ebebeb;
	padding: 30px 0;
}

.footer-nav {
	list-style: none;
}

.footer-nav li {
	display: inline-block;
}

.footer-nav li a {
	color: #75849a;
	font-size: 14px;
	margin-left: 20px;
}

/*---------------------
	Other Pages
----------------------
======================*/

.page-info-section {
	height: 300px;
	background-image: url("../img/page-info-bg.png");
	background-size: cover;
	background-color: #f3f7f9;
	background-position: right top;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
	display: block;
	padding-top: 100px;
}

.page-info-section h2 {
	font-size: 48px;
}

.site-beradcamb {
	padding-top: 10px;
}

.site-beradcamb a {
	color: #9e7c20;
	font-size: 16px;
}

.site-beradcamb span {
	color: #ccc5ac;
	font-size: 16px;
}

.site-beradcamb i {
	margin: 0 3px;
}

/*---------------------
	Contact page
-----------------------*/

.contact-form {
	padding-right: 35px;
}

.contact-form h5 {
	font-size: 16px;
	font-family: "Lato", sans-serif;
}

.contact-form h5 span {
	color: #d09b16;
}

.contact-form .form-group {
	position: relative;
	margin-bottom: 20px;
}

.contact-form .form-group span {
	position: absolute;
	right: 0;
	top: 10px;
	font-size: 16px;
	color: #c0ac63;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.contact-form .form-group span.active {
	opacity: 1;
}

.contact-form .check-form {
	padding-right: 20px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	height: 50px;
	border: none;
	border-bottom: 1px solid #ebebeb;
	font-size: 16px;
	padding-bottom: 10px;
	color: #9e7c20;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: #9e8120;
}

.contact-form textarea {
	padding-bottom: 10px;
	padding-top: 10px;
	height: 115px;
}

.contact-form .contact-type .ct-label {
	display: inline-block;
	position: relative;
	padding-left: 20px;
	margin-bottom: 12px;
	margin-right: 40px;
	cursor: pointer;
	font-size: 16px;
	color: #acb9cc;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.contact-form .contact-type .ct-label input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

.contact-form .contact-type .ct-label input:checked~.checkmark:after {
	content: '\f111';
	color: #d0a216;
}

.contact-form .contact-type .ct-label .checkmark {
	position: absolute;
	top: 3px;
	left: 0;
	height: 25px;
	width: 25px;
}

.contact-form .contact-type .ct-label .checkmark:after {
	position: absolute;
	content: "\f10c";
	font-family: 'FontAwesome';
	font-size: 14px;
}

.contact-form .contact-type .ct-label:last-child {
	margin-right: 0;
}

.contact-form ::-webkit-input-placeholder {
	color: #acb9cc;
}

.contact-form :-ms-input-placeholder {
	color: #acb9cc;
}

.contact-form ::-ms-input-placeholder {
	color: #acb9cc;
}

.contact-form ::placeholder {
	color: #acb9cc;
}

.map {
	height: 390px;
	-webkit-box-shadow: 0px 23px 49px rgba(33, 54, 61, 0.15);
	        box-shadow: 0px 23px 49px rgba(33, 54, 61, 0.15);
}

/*------------------
	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) {
	
}

/* Medium screen : 992px. */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.menu-list li a {
		margin-right: 15px;
	}
	.hero-section,
	.page-info-section {
		background-position: right 23% top;
	}
	.about-img {
		left: 0px;
		width: 480px;
	}
	.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;
	}
	.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;
	}
	.header-section .site-btn {
		display: none;
	}
	.newsletter-form {
		padding-left: 0;
	}
	.newsletter-section {
		text-align: center;
	}
	.footer-widget {
		margin-bottom: 30px;
	}
}

/* Large Mobile :480px. */

@media only screen and (max-width: 767px) {
	.header-section {
		padding: 30px 0;
		background: #fff;
	}
	.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 rgba(255, 255, 255, 0.03);
	}
	.menu-list li a {
		display: block;
		padding: 10px 5px;
		margin-right: 0;
		color: #ffffff;
	}
	.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;
	}
	.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;
	}
	.footer-widget {
		margin-bottom: 30px;
	}
}

/* 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;
	}
}
:root {
    --primary: #16D5FF;
    --secondary: #999999;
    --light: #F2F8FE;
    --dark: #111111;
	--gold: #ffc766;
}

.back-to-top {
    position: fixed;
    display: none;
    z-index: 99;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 35px;
	bottom: 100px;
	z-index: 996;
	/*background: radial-gradient(circle at center, #252525  10%,  #ffdd00 150%);*/
	/*background-color: #626262;*/
	background: rgb(57, 57, 57);
	/*background-image: url("../img/Rectangle\ 11.png");*/
	width: 30px;
	height: 30px;
	transition: all 0.4s;
  }
  
  .back-to-top i {
	font-size: 28px;
	color: #fff;
	line-height: 0;
  }
  
  .back-to-top:hover {
	background: #ffc766;
	color: #fff;
  }
  
  .back-to-top.active {
	visibility: visible;
	opacity: 1;
  }
  

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 500 !important;
}



/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** FAQs ***/
.accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
	border-radius: 10px;
	background: rgb(27, 27, 27);
}

.accordion .accordion-button {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.accordion .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    /*background: linear-gradient(to left, #FFD700,#d3bc3a,#aaa352);*/
	background: linear-gradient( -140deg, #c89200 0%,#f5d376 15%,#fff0b3 30%,#f5d376 50%,#c89200 100%);
	border-radius: 10px;
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-body {
    padding: 15px 0 0 0;
}

/* Crypto Price Chart Styles */
.crypto-chart-section {
    background-color: rgb(27, 27, 27);
    border-radius: 15px;
    margin: 20px 0;
    /*border: 2px solid rgba(255, 199, 102, 0.2); /* Add border for debugging */
	border-right: 2px solid rgba(255, 199, 102, 0.2);
	border-left: 2px solid rgba(255, 199, 102, 0.2);
}

.chart-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.chart-tab {
    background: rgba(255, 199, 102, 0.1);
    border: 2px solid #ffc766;
    color: #ffc766;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.chart-tab:hover,
.chart-tab.active {
    background: #ffc766;
    color: #1b1b1b;
}

.price-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    margin: 10px;
    border: 1px solid rgba(255, 199, 102, 0.2);
    min-height: 120px; /* Ensure minimum height */
}

.price-card h2 {
    font-size: 2.5rem;
    margin: 10px 0;
}

.price-card h4 {
    margin-bottom: 15px;
}

.text-muted {
    color: #6c757d !important;
}

.text-success {
    color: #28a745 !important;
}

.text-danger {
    color: #dc3545 !important;
}

.chart-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 199, 102, 0.1);
    min-height: 400px; /* Ensure minimum height */
}

#cryptoChart {
    width: 100% !important;
    height: 300px !important;
    display: block !important; /* Ensure canvas is visible */
    border: 1px solid rgba(255, 199, 102, 0.3); /* Add border for debugging */
}

/* Button styles for crypto chart */
.chart-wrapper .btn {
    margin: 5px;
    font-weight: 600;
    border-radius: 20px;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.chart-wrapper .btn-warning {
    background: #ffc766;
    border-color: #ffc766;
    color: #1b1b1b;
}

.chart-wrapper .btn-warning:hover {
    background: #e6b85c;
    border-color: #e6b85c;
    transform: translateY(-2px);
}

.chart-wrapper .btn-success {
    background: #28a745;
    border-color: #28a745;
    color: white;
}

.chart-wrapper .btn-success:hover {
    background: #218838;
    border-color: #218838;
    transform: translateY(-2px);
}

.chart-wrapper .btn-info {
    background: #17a2b8;
    border-color: #17a2b8;
    color: white;
}

.chart-wrapper .btn-info:hover {
    background: #138496;
    border-color: #138496;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .chart-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .price-card h2 {
        font-size: 2rem;
    }
    
    .chart-wrapper {
        padding: 15px;
    }
}

/* =================================
   COMPREHENSIVE RESPONSIVE DESIGN
   ================================= */

/* Large Desktop: 1200px and above */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-text h2 {
        font-size: 3.5rem;
        line-height: 1.2;
    }
    
    .hero-text h4 {
        font-size: 1.5rem;
        line-height: 1.6;
    }
}

/* Desktop: 992px to 1199px */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .hero-text h2 {
        font-size: 3rem;
    }
    
    .hero-text h4 {
        font-size: 1.3rem;
    }
    
    .site-logo img {
        height: 65px !important;
    }
    
    .pricing-card {
        margin-bottom: 20px;
    }
}

/* Tablet: 768px to 991px */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    /* Header adjustments */
    .header-section {
        padding: 20px 0;
    }
    
    .site-logo img {
        height: 60px !important;
    }
    
    .site-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Hero section */
    .hero-section {
        padding: 120px 0 80px;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .hero-text h4 {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .hero-text .laptop-image {
        margin-top: 40px;
        max-width: 80%;
    }
    
    /* About section */
    .about-img {
        margin-bottom: 40px;
    }
    
    /* Process section */
    .process-step {
        margin-bottom: 40px;
        text-align: center;
    }
    
    /* Pricing cards */
    .pricing-card {
        margin-bottom: 30px;
    }
    
    .pricing-card ul {
        padding-left: 20px;
    }
    
    /* Crypto chart */
    .crypto-chart-section {
        margin: 15px 0;
    }
    
    .price-card {
        margin: 8px;
        padding: 15px;
    }
    
    .price-card h2 {
        font-size: 2.2rem;
    }
    
    .chart-wrapper {
        padding: 15px;
        min-height: 350px;
    }
    
    /* FAQs */
    .accordion-item {
        margin-bottom: 15px;
    }
    
    /* Newsletter */
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-form input {
        margin-bottom: 15px;
    }
    
    /* Footer */
    .footer-section {
        padding: 60px 0 30px;
    }
    
    .footer-widget {
        margin-bottom: 30px;
        text-align: center;
    }
}

/* Mobile: 576px to 767px */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 540px;
    }
    
    /* Header */
    .header-section {
        padding: 15px 0;
    }
    
    .site-logo img {
        height: 55px !important;
    }
    
    .responsive-bar {
        font-size: 22px;
        margin-right: 15px;
    }
    
    .user {
        font-size: 22px;
        margin-right: 15px;
    }
    
    .site-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    /* Hero section */
    .hero-section {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .hero-text h4 {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 25px;
    }
    
    .hero-text .laptop-image {
        margin-top: 30px;
        max-width: 85%;
    }
    
    /* About section */
    .about-img {
        margin-bottom: 30px;
    }
    
    .fundedlink h1 {
        font-size: 50px !important;
    }
    
    /* Process section */
    .process-step {
        margin-bottom: 25px;
    }
    
    .process-icon img {
        width: 35px !important;
        height: 35px !important;
    }
    
    /* Pricing cards */
    .pricing-card {
        margin-bottom: 20px;
        padding: 18px 12px;
    }
    
    .pricing-card h5 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .pricing-card ul {
        padding-left: 12px;
        font-size: 13px;
    }
    
    .pricing-card li {
        margin-bottom: 6px;
    }
    
    /* Crypto chart */
    .crypto-chart-section {
        margin: 8px 0;
        padding: 25px 0;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .section-title p {
        font-size: 14px;
    }
    
    .chart-tabs {
        flex-direction: column;
        gap: 12px;
    }
    
    .chart-tab {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .price-card {
        margin: 3px;
        padding: 12px 8px;
        min-height: 90px;
    }
    
    .price-card h4 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .price-card h2 {
        font-size: 1.5rem;
        margin: 6px 0;
    }
    
    .price-card p {
        font-size: 13px;
    }
    
    .chart-wrapper {
        padding: 12px 8px;
        min-height: 250px;
    }
    
    #cryptoChart {
        height: 200px !important;
    }
    
    .chart-wrapper .btn {
        margin: 3px;
        padding: 6px 12px;
        font-size: 12px;
    }
    
    /* FAQs */
    .accordion-item {
        margin-bottom: 10px;
    }
    
    .accordion-button {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .accordion-body {
        padding: 12px 12px 0;
        font-size: 13px;
    }
    
    /* Newsletter */
    .newsletter-section {
        padding: 40px 0;
    }
    
    .newsletter-text h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .newsletter-text p {
        font-size: 13px;
        margin-bottom: 18px;
    }
    
    .newsletter-form input {
        padding: 10px 12px;
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .newsletter-form button {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
    }
    
    /* Footer */
    .footer-section {
        padding: 40px 0 20px;
    }
    
    .footer-widget {
        margin-bottom: 20px;
        text-align: center;
    }
    
    .footer-widget h5 {
        margin-bottom: 12px;
    }
    
    .footer-bottom {
        margin-top: 15px;
    }
    
    .footer-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .footer-nav li {
        margin: 3px 8px;
        font-size: 13px;
    }
    
    /* Back to top button */
    .back-to-top {
        right: 20px;
        bottom: 80px;
        width: 35px;
        height: 35px;
    }
    
    .back-to-top i {
        font-size: 20px;
    }
}

/* Small Mobile: 320px to 575px */
@media (max-width: 575px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Header */
    .header-section {
        padding: 12px 0;
    }
    
    .site-logo img {
        height: 50px !important;
    }
    
    .responsive-bar {
        font-size: 20px;
        margin-right: 10px;
    }
    
    .user {
        font-size: 20px;
        margin-right: 10px;
    }
    
    .site-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    /* Hero section */
    .hero-section {
        padding: 80px 0 50px;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 1.8rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    
    .hero-text h4 {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .hero-text .laptop-image {
        margin-top: 25px;
        max-width: 90%;
    }
    
    /* About section */
    .about-img {
        margin-bottom: 25px;
    }
    
    .fundedlink h1 {
        font-size: 50px !important;
    }
    
    /* Process section */
    .process-step {
        margin-bottom: 25px;
    }
    
    .process-icon img {
        width: 35px !important;
        height: 35px !important;
    }
    
    /* Pricing cards */
    .pricing-card {
        margin-bottom: 20px;
        padding: 18px 12px;
    }
    
    .pricing-card h5 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .pricing-card ul {
        padding-left: 12px;
        font-size: 13px;
    }
    
    .pricing-card li {
        margin-bottom: 6px;
    }
    
    /* Crypto chart */
    .crypto-chart-section {
        margin: 8px 0;
        padding: 25px 0;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .section-title p {
        font-size: 14px;
    }
    
    .chart-tabs {
        flex-direction: column;
        gap: 12px;
    }
    
    .chart-tab {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .price-card {
        margin: 3px;
        padding: 12px 8px;
        min-height: 90px;
    }
    
    .price-card h4 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .price-card h2 {
        font-size: 1.5rem;
        margin: 6px 0;
    }
    
    .price-card p {
        font-size: 13px;
    }
    
    .chart-wrapper {
        padding: 12px 8px;
        min-height: 250px;
    }
    
    #cryptoChart {
        height: 200px !important;
    }
    
    .chart-wrapper .btn {
        margin: 3px;
        padding: 6px 12px;
        font-size: 12px;
    }
    
    /* FAQs */
    .accordion-item {
        margin-bottom: 10px;
    }
    
    .accordion-button {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .accordion-body {
        padding: 12px 12px 0;
        font-size: 13px;
    }
    
    /* Newsletter */
    .newsletter-section {
        padding: 40px 0;
    }
    
    .newsletter-text h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .newsletter-text p {
        font-size: 13px;
        margin-bottom: 18px;
    }
    
    .newsletter-form input {
        padding: 10px 12px;
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .newsletter-form button {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
    }
    
    /* Footer */
    .footer-section {
        padding: 40px 0 20px;
    }
    
    .footer-widget {
        margin-bottom: 20px;
        text-align: center;
    }
    
    .footer-widget h5 {
        margin-bottom: 12px;
    }
    
    .footer-bottom {
        margin-top: 15px;
    }
    
    .footer-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .footer-nav li {
        margin: 3px 8px;
        font-size: 13px;
    }
    
    /* Back to top button */
    .back-to-top {
        right: 20px;
        bottom: 80px;
        width: 35px;
        height: 35px;
    }
    
    .back-to-top i {
        font-size: 20px;
    }
}

/* Extra small devices (portrait phones) */
@media (max-width: 320px) {
    .hero-text h2 {
        font-size: 1.6rem;
    }
    
    .hero-text h4 {
        font-size: 0.9rem;
    }
    
    .site-logo img {
        height: 45px !important;
    }
    
    .pricing-card {
        padding: 15px 10px;
    }
    
    .price-card h2 {
        font-size: 1.3rem;
    }
    
    .chart-wrapper {
        padding: 10px 6px;
    }
    
    #cryptoChart {
        height: 180px !important;
    }
}

/* Landscape orientation adjustments for mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-text h4 {
        font-size: 1.1rem;
    }
    
    .crypto-chart-section {
        padding: 20px 0;
    }
    
    .chart-wrapper {
        min-height: 200px;
    }
    
    #cryptoChart {
        height: 180px !important;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .site-logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print styles */
@media print {
    .header-section,
    .responsive-bar,
    .back-to-top,
    .chart-wrapper .btn {
        display: none !important;
    }
    
    .hero-section,
    .crypto-chart-section {
        page-break-inside: avoid;
    }
    
    .price-card {
        border: 1px solid #ccc !important;
        background: white !important;
    }
}

/* =================================
   MOBILE NAVIGATION IMPROVEMENTS
   ================================= */

/* Mobile menu improvements */
@media (max-width: 991px) {
    .main-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
        background: rgba(27, 27, 27, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        z-index: 1000;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .main-menu.active {
        transform: translateY(0);
    }
    
    .menu-list {
        padding: 20px 0;
    }
    
    .menu-list li {
        border-top: 1px solid rgba(255, 199, 102, 0.1);
        margin: 0;
    }
    
    .menu-list li:first-child {
        border-top: none;
    }
    
    .menu-list li a {
        padding: 15px 20px;
        font-size: 16px;
        font-weight: 500;
        color: #fff;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
    }
    
    .menu-list li a:hover {
        background: rgba(255, 199, 102, 0.1);
        border-left-color: #ffc766;
        color: #ffc766;
        padding-left: 25px;
    }
    
    /* Mobile menu toggle animation */
    .responsive-bar {
        transition: transform 0.3s ease;
    }
    
    .responsive-bar.active {
        transform: rotate(90deg);
    }
}

/* Touch-friendly improvements */
@media (max-width: 767px) {
    /* Increase touch targets */
    .site-btn,
    .gold-btn,
    .black-btn {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .chart-tab {
        min-height: 44px;
        min-width: 120px;
    }
    
    /* Improve button spacing */
    .chart-wrapper .btn {
        margin: 8px;
        min-height: 44px;
    }
    
    /* Better form inputs */
    .newsletter-form input {
        min-height: 44px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .newsletter-form button {
        min-height: 44px;
    }
    
    /* Improve accordion touch targets */
    .accordion-button {
        min-height: 50px;
        padding: 15px 20px;
    }
    
    /* Better spacing for mobile */
    .section-title {
        margin-bottom: 40px;
    }
    
    .section-title h2 {
        margin-bottom: 15px;
    }
    
    /* Improve pricing cards on mobile */
    .pricing-card {
        margin-bottom: 20px;
        padding: 20px 15px;
    }
    
    .pricing-card ul {
        margin-bottom: 20px;
    }
    
    .pricing-card li {
        margin-bottom: 8px;
        line-height: 1.4;
    }
}

/* =================================
   TABLET OPTIMIZATIONS
   ================================= */

@media (min-width: 768px) and (max-width: 991px) {
    /* Better tablet layout */
    .hero-section {
        min-height: 80vh;
        display: flex;
        align-items: center;
    }
    
    .hero-text {
        padding-right: 20px;
    }
    
    .hero-text .laptop-image {
        max-width: 90%;
        margin: 0 auto;
    }
    
    /* Improve pricing layout on tablet */
    .pricing-card {
        height: auto;
        min-height: 300px;
        display: flex;
        flex-direction: column;
    }
    
    .pricing-card ul {
        flex-grow: 1;
        margin-bottom: 20px;
    }
    
    .pricing-card .gold-btn,
    .pricing-card .black-btn {
        margin-top: auto;
        align-self: center;
    }
    
    /* Better crypto chart on tablet */
    .crypto-chart-section {
        padding: 40px 0;
    }
    
    .price-card {
        min-height: 140px;
    }
    
    .chart-wrapper {
        min-height: 350px;
    }
}

/* =================================
   ACCESSIBILITY IMPROVEMENTS
   ================================= */

/* Focus states for better accessibility */
.site-btn:focus,
.gold-btn:focus,
.black-btn:focus,
.chart-tab:focus,
.accordion-button:focus {
    outline: 2px solid #ffc766;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .crypto-chart-section {
        border: 2px solid #ffc766;
    }
    
    .price-card {
        border: 2px solid #ffc766;
    }
    
    .chart-wrapper {
        border: 2px solid #ffc766;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .animated,
    .wow,
    .fadeIn,
    .slideInDown,
    .fadeInUp {
        animation: none !important;
        transition: none !important;
    }
    
    .pulse {
        animation: none !important;
    }
}

/* =================================
   PERFORMANCE OPTIMIZATIONS
   ================================= */

/* Optimize images for mobile */
@media (max-width: 767px) {
    .hero-text .laptop-image {
        max-width: 100%;
        height: auto;
    }
    
    .about-img img {
        max-width: 100%;
        height: auto;
    }
    
    .process-icon img {
        max-width: 100%;
        height: auto;
    }
}

/* Smooth scrolling for mobile */
@media (max-width: 767px) {
    html {
        scroll-behavior: smooth;
    }
    
    /* Better mobile scrolling */
    .main-menu {
        -webkit-overflow-scrolling: touch;
        overflow-y: auto;
        max-height: 70vh;
    }
}

/* =================================
   BROWSER SPECIFIC FIXES
   ================================= */

/* Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    .main-menu {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    
    .main-menu.active {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/* Firefox specific fixes */
@-moz-document url-prefix() {
    .main-menu {
        backdrop-filter: none;
        background: rgba(27, 27, 27, 0.98);
    }
}

/* Edge specific fixes */
@supports (-ms-ime-align: auto) {
    .main-menu {
        backdrop-filter: none;
        background: rgba(27, 27, 27, 0.98);
    }
}
