@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Instrument+Sans:500");
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html,
body {
  margin: 0px;
  height: 100%;
}

button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}

:root {
  --text: rgba(240, 238, 250, 0.8);
  --dark-bg: #050520;
  --card-bg: rgba(226, 232, 255, 0.05);
  --border-color: rgba(226, 232, 255, 0.1);
  --border-light: rgba(255, 255, 255, 0.16);
  --text-muted: rgba(240, 238, 250, 0.48);
  --gradient-primary: linear-gradient(
    90deg,
    rgba(165, 120, 255, 1) 0%,
    rgba(255, 131, 189, 1) 50%,
    rgba(255, 186, 109, 1) 100%
  );
  --gradient-blur: linear-gradient(
    90deg,
    rgba(165, 120, 255, 0.8) 0%,
    rgba(255, 131, 189, 0.8) 50%,
    rgba(255, 186, 109, 0.8) 100%
  );
  --gradient-button: linear-gradient(
    354deg,
    rgba(165, 120, 255, 1) 0%,
    rgba(255, 131, 189, 1) 28%,
    rgba(255, 171, 130, 1) 66%,
    rgba(5, 5, 32, 1) 100%
  );
  --shadow-glow: 0px 0px 64px rgba(255, 131, 189, 0.24);
  --shadow-inset: inset 0px -8px 80px rgba(255, 255, 255, 0.08);
  --blur-effect: blur(100px);
}
/*
.topeffect {
    position: absolute;
    width: 100%;
    height: 205px;
    top: -50px;
    border-radius: 587px / 232.5px;
    filter: blur(200px);
    background: linear-gradient(90deg, rgba(165, 120, 255, 1) 0%, rgba(255, 131, 189, 1) 50%, rgba(255, 186, 109, 1) 100%);
}*/

.topeffect {
    position: absolute;
    width: 100%;
    height: 505px;
    top: -50px;
    background: url(img/topeffect.svg);
    /* background-size: cover; */
    background-size: 100% 100%;
}
@media (min-width: 1920px) {
	.footer-header h2{
    font-size: 320px !important;
	}
}
@media (max-width: 992px) {
.topeffect {
    background-size: cover;
}
}

.pagetop{
    background-image:  linear-gradient(to top, #050520, rgba(0, 0, 0, 0.1)), url(img/topbg.svg);
    background-size: 100%;
    padding-bottom: 150px;
}

.footerbg{
    background: url(img/footerbg.svg); 
    position: relative;
    max-width: 1910px;
    margin-right: auto;
    margin-left: auto;
}

.bottomeffect {
	position: absolute;
    width: 100%;
    height: 350px;
    bottom: 0px;
    background: url(img/footereffect.svg);
    background-size: cover;
}
/*.bottomeffect {
	position: absolute;
    width: 100%;
    height: 100px;
    bottom: 0px;
    border-radius: 587px / 232.5px;
    filter: blur(90px);
    background: linear-gradient(90deg, rgba(165, 120, 255, 1) 0%, rgba(255, 131, 189, 1) 50%, rgba(255, 186, 109, 1) 100%);
}*/
/*
.ortaeffect {
position: absolute;
    width: 650px;
    height: 400px;
    right: -250px;
    top: -50px;
    border-radius: 100%;
    filter: blur(90px);
    background: linear-gradient(90deg, rgb(117 83 127) 0%, rgb(138 89 125) 50%, rgb(116 80 101) 100%);
}*/

.ortaeffect {
position: absolute;
    width: 970px;
    height: 1297px;
    right: 0;
    top: -400px;
    background: linear-gradient(to bottom, #050520, transparent, #050520), url(img/nelereffect.svg);
    background-size: cover;
}

.testimonialeffect {
	position: absolute;
    width: 700px;
    height: 800px;
    left: 0px;
    top: -50px;
    background: linear-gradient(to bottom, #050520, transparent, #050520), url(img/testimonialeffect.svg?v=1);
    background-size: 100% 100%;
    background-position: 100%;
    background-repeat: no-repeat;
}
/*.testimonialeffect {
position: absolute;
    width: 500px;
    height: 400px;
    left: -150px;
    top: 160px;
    border-radius: 100%;
    filter: blur(90px);
    background: linear-gradient(90deg, rgb(120 118 109) 0%, rgb(134 102 96) 50%, rgb(116 80 101) 100%);
}*/

@media (min-width: 992px) {
	.advanced-features{
		margin-top:50px;
	}
}
@media (max-width: 992px) {
	.ortaeffect{
		display:none;
	}
.testimonialeffect {
	height:270px;
	width:200px;
	left:-80px;
	top:-90px;
}
}

body {
  font-family: 'SF Pro Display', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text);
  line-height: 1.5;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.home {
  background-color: var(--dark-bg);
  min-height: 100vh;
  width: 100%;
}

.container {
  max-width: 1440px;
  position: relative;
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--text);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

.navbar {
  padding: 20px 0;
}

.navbar-toggler {
  border-color: var(--border-light);
  color: var(--text);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(240, 238, 250, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dropdown-menu {
  background-color: var(--dark-bg);
  border-color: var(--border-light);
}

.dropdown-item {
  color: var(--text);
}

.dropdown-item:hover, .dropdown-item:focus {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.accordion-item {
  background-color: transparent;
  border-color: var(--border-color);
  margin-bottom: 8px;
}

.accordion-button {
  background-color: transparent;
  color: var(--text);
  box-shadow: none;
  padding: 16px 0;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: var(--text);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--border-color);
}

.accordion-button::after {
  background-image: url("img/add-circle-line.svg");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("img/indeterminate-circle-line.svg");
  transform: rotate(0deg);
}

.accordion-body {
  padding: 16px 0;
  padding-top:0px;
  color: var(--text);
}

.header {
  position: fixed;
  width:100%;
  z-index: 100;
  margin-bottom: 40px;
}

.logo {
  width: 56px;
  height: 56px;
}

.nav-menu {
  background-color: rgba(0, 0, 0, 0.01);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: inset 0px 0px 24px rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(90px);
  padding: 4px 4px;
  /* padding-right:4px; */
}

.nav-menu li:not(:last-child){
	padding-right:10px;
	padding-left:10px;
}

.nav-link {
  color: var(--text);
  font-weight: 500;
  padding: 8px 16px;
}

.nav-link:hover {
  color: var(--text);
  opacity: 0.8;
}

.nav-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 700;
  color: var(--text);
}
.nav-button:after {
    content: "";
    position: absolute;
    bottom: 5px;
    right: 80px;
    transform: translateX(-50%);
    width: 20px;
    height: 0px;
    background: white;
    border-radius: 50%;
    /* box-shadow: inset 0px 0px 20px 12px white; */
    box-shadow: 0px 0px 20px 12px #ffffffb3;
}

@media screen and (max-width: 992px) {
.nav-button:after {
	display:none;
}
}
.order-tracking {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border: 1px solid rgba(233, 233, 233, 0.1);
  border-radius: 4px;
  font-weight: 500;
}

.hero {
  overflow: hidden;
    margin-top: 150px;
}

.grid-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 173px 173px;
  opacity: 0.3;
  z-index: -1;
}

.hero-title {
    font-size: 180px;
    font-weight: 400;
    line-height: 0.94;
    letter-spacing: -7.2px;
    background: linear-gradient(184deg, rgba(171, 121, 249, 1) 0%, rgba(255, 255, 255, 1) 37%, rgba(5, 5, 33, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    padding-bottom: 50px;
}


.accordion-button:not(.collapsed){
  background: linear-gradient(90deg, #A578FF, #FF83BD, #FFBA6D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.accordion-button.collapsed{
  color:rgba(240, 238, 250, 0.8);
}

.accordion-button{
    font-size: 20px;
  font-weight:400;
}
.accordion-item{
	border:0px;
}
.accordion-item:not(:last-child){
	border-bottom:1px solid rgba(226, 232, 255, 0.1);
}

.raintxt{
  background: linear-gradient(90deg, #A578FF, #FF83BD, #FFBA6D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-txt {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.6;
    margin-bottom: 100px;
}

.hero-image{
position: absolute;
    top: 0px;
    height: 570px;
    right: 00px;
    rotate: -12deg;
}
@media screen and (min-width: 992px) {
	.hero-content{
		margin-bottom:50px;
	}
	.butonalan{
	overflow:hidden;
        position: relative;
}
}
@media screen and (max-width: 992px) {
	.featurealan2{
    top: 55px !important;
	}
	.hero-image {
    top: 60px;
    height: 100px;
    right: 20px;
}
}

.cta-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 346px;
  max-width: 100%;
  position: relative;
  font-size: 20px;
  font-weight: 500;
    z-index: 1;
	border-radius:4px;
      overflow: hidden;
  box-shadow: inset 0px 0px 64px rgba(165, 120, 255, 0.8), 0px 0px 64px rgba(255, 131, 189, 0.1);
}
    .cta-button span {
  padding: 15px 32px;
  margin:4px;
      position: relative;
      z-index: 2;
      font-size: 24px;
    }
    .cta-button span:first-child {
		padding-right:0px;
	}
    .cta-button span:last-child {
		padding-left:0px;
	}
	
@media screen and (max-width: 992px) {
    .cta-button span {
		font-size:15px;
	}
}


.cta-button::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
      background: conic-gradient(
        from 0deg,
        transparent,
        transparent,
        transparent,
        transparent,
        transparent,
        #FFAB82,
        #FF83BD,
        #A578FF
      );
    animation: rotate 3s linear infinite;
    border-radius: 0%;
    z-index: 0;
    /* left: -60px; */
}

    .cta-button::after {
    content: "";
    position: absolute;
    width: 98%;
    top: 2.5%;
    left: 1%;
    height: 95%;
    box-shadow: inset 0px 0px 64px rgba(165, 120, 255, 0.8), 0px 0px 64px rgba(255, 131, 189, 0.1);
    background-color: var(--dark-bg);
    border-radius: 0%;
    z-index: 1;
    }

    @keyframes rotate {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }

/*
.cta-button:before {
    content: '';
    background: linear-gradient(45deg, 
    rgba(165, 120, 255, 1) 40%,
    rgba(255, 131, 189, 1) 28%,
    rgba(255, 171, 130, 1) 80%,
    rgba(5, 5, 32, 1) 100%);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 1;
    transition: opacity .3s ease-in-out;
}

.cta-button:active {
    color: #000
}

.cta-button:active:after {
    background: transparent;
}

.cta-button:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
  box-shadow: inset 0px 0px 64px rgba(165, 120, 255, 0.8), 0px 0px 64px rgba(255, 131, 189, 0.24);
    left: 0;
    top: 0;
}*/

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}


.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 4px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  box-shadow: inset 0px -28px 84px 24px rgba(226, 232, 255, 0.01);
  background: radial-gradient(
    50% 50% at 50% 0%,
    rgba(226, 232, 255, 0) 0%,
    rgba(226, 232, 255, 0.04) 61%,
    rgba(226, 232, 255, 0.05) 100%
  );
  position: relative;
  overflow: hidden;
  min-height: 340px;
    z-index: 99;
}

.feature-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px;
  width: 100%;
  background-color: rgba(226, 232, 255, 0.01);
  border-radius: 2px;
  border: 1px solid rgba(226, 232, 255, 0.06);
  box-shadow: var(--shadow-inset);
  z-index: 2;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.feature-icon h3 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.32px;
}

.feature-content p {
  color: rgba(240, 238, 250, 0.48);
  font-size: 16px;
  text-align: center;
  letter-spacing: -0.32px;
}

.feature-image {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 80%;
  z-index: 1;
}

.content-image {
  background-image: url('img/mask-group-2.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 221px;
  height: 226px;
  position: absolute;
  top: 46px;
}
.references-section{
	position:relative;
}
@media screen and (min-width: 992px) {
.learning-section {
  margin-top:150px;
}
.references-section .align-items-center{
  margin-top:250px;
}
.pricing-header {
  margin-top:250px;
  margin-bottom:100px !important;
}
.testimonial-quote {
  margin-top:250px !important;
}
.testimonials-section  {
  margin-top:250px;
}
.faq-section  {
  margin-top:250px;
}
.footer-header   {
  margin-top:250px;
}
}
.testimonials-section {
	z-index:1;
    position: relative;
}
.references-content h2{
    font-size: 50px;
    font-weight: 600;
    line-height: 45px;
}

.learning-section {
  position: relative;
}
.references-list{
    color: #f0eefa73;
    line-height: 40px;
    font-weight: 600;
}

.learning-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--gradient-blur);
  filter: blur(200px);
  opacity: 0.5;
  z-index: -1;
  border-radius: 50%;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: rgba(5, 5, 32, 0.01);
  border: 1px solid rgba(226, 232, 255, 0.14);
  backdrop-filter: blur(100px);
  border-radius: 4px;
    font-weight: 400;
}

.badge img {
  width: 16px;
  height: 16px;
}

.badge span {
  font-size: 16px;
  font-weight: 400;
}

.learning-content h2 {
  font-size: 64px;
  font-weight: 500;
  letter-spacing: -2.56px;
  line-height: 0.9;
}

.learning-content p {
  font-size: 20px;
  line-height: 1.6;
}

.pricing-header h2 {
  font-size: 64px;
  font-weight: 500;
  letter-spacing: -2.56px;
  line-height: 0.9;
}

.pricing-header p {
  font-size: 20px;
  line-height: 1.6;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 46px;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  box-shadow: inset 0px -28px 84px 24px rgba(226, 232, 255, 0.01);
  background: radial-gradient(
    50% 50% at 50% 0%,
    rgba(226, 232, 255, 0) 0%,
    rgba(226, 232, 255, 0.04) 61%,
    rgba(226, 232, 255, 0.05) 100%
  );
  z-index:99;
    position: relative;
}

.card-header {
  width: 100%;
  background-color: transparent;
  border: none;
  padding: 0;
}

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

.card-header h3 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
}

.badge-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  font-size: 14px;
  font-weight: 500;
}

.card-header p {
  font-size: 16px;
  margin-bottom: 16px;
}

.card-header hr {
  border: none;
  height: 1px;
  background-color: rgba(226, 232, 255, 0.1);
  margin: 0;
}

.price-container {
  width: 100%;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.old-price {
  font-size: 20px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.discount {
  padding: 4px 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 16px;
}

.price {
  font-size: 80px;
  font-weight: 700;
}

.currency {
  font-size: 24px;
  font-weight: 500;
}

.price-note {
  font-size: 14px;
}

.footer .buy-button {
  max-width: 100%;
  width: 350px;
}
.buy-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: var(--dark-bg);
  border-radius: 4px;
  position: relative;
      overflow: hidden;
  box-shadow: inset 0px 0px 64px rgba(165, 120, 255, 0.8), 0px 0px 64px rgba(255, 131, 189, 0.1);
  font-size: 20px;
  font-weight: 500;
    z-index: 0;
}

    .buy-button span {
  padding: 15px 20px;
  /* margin:4px; */
      position: relative;
      z-index: 2;
      font-size: 24px;
    }
    .buy-button span:first-child {
		padding-right:0px;
	}
    .buy-button span:last-child {
		padding-left:0px;
	}
	
@media screen and (max-width: 992px) {
    .buy-button span {
		font-size:15px;
	}
	.buy-button::before{
    left: -20px !important;
	}
}


.buy-button::before {
    content: "";
    position: absolute;
    width: 110%;
    height: 100%;
    background: conic-gradient(from 0deg, transparent, transparent, transparent, transparent, transparent, #FFAB82, #FF83BD, #A578FF);
    animation: rotate 3s linear infinite;
    border-radius: 0%;
    z-index: 0;
    left: -60px;
}

    .buy-button::after {
    content: "";
    position: absolute;
    width: 98%;
    top: 2.5%;
    left: 1%;
    height: 95%;
    box-shadow: inset 0px 0px 64px rgba(165, 120, 255, 0.8), 0px 0px 64px rgba(255, 131, 189, 0.1);
    background-color: var(--dark-bg);
    border-radius: 0%;
    z-index: 1;
    }
/*
.buy-button:before {
    content: '';
    background: linear-gradient(45deg, 
    rgba(165, 120, 255, 1) 40%,
    rgba(255, 131, 189, 1) 28%,
    rgba(255, 171, 130, 1) 80%,
    rgba(5, 5, 32, 1) 100%);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 1;
    transition: opacity .3s ease-in-out;
}

.buy-button:active {
    color: #000
}

.buy-button:active:after {
    background: transparent;
}

.buy-button:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
  box-shadow: inset 0px 0px 64px rgba(165, 120, 255, 0.8), 0px 0px 64px rgba(255, 131, 189, 0.24);
    left: 0;
    top: 0;
}*/

.coming-soon-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 32px;
  background-color: rgba(226, 232, 255, 0.01);
  border-radius: 4px;
  border: 1px solid rgba(226, 232, 255, 0.06);
  box-shadow: var(--shadow-inset);
  font-size: 20px;
  font-weight: 500;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 24px;
  background-color: rgba(226, 232, 255, 0.01);
  border-radius: 4px;
  border: 1px solid rgba(226, 232, 255, 0.06);
  box-shadow: var(--shadow-inset);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.feature-item img {
  width: 20px;
  height: 20px;
}

.feature-item span {
  font-size: 16px;
  font-weight: 500;
}

.testimonials-header h2 {
  font-size: 64px;
  font-weight: 500;
  letter-spacing: -2.56px;
  line-height: 0.9;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  box-shadow: inset 0px -28px 84px 24px rgba(226, 232, 255, 0.01);
  background: radial-gradient(
    50% 50% at 50% 0%,
    rgba(226, 232, 255, 0) 0%,
    rgba(226, 232, 255, 0.04) 61%,
    rgba(226, 232, 255, 0.05) 100%
  );
}

.user-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--dark-bg);
  border: 1px solid rgba(226, 232, 255, 0.06);
  background-image: url('img/ellipse-46.svg');
  background-size: cover;
  background-position: center;
}

.user-info h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.user-info p {
  font-size: 16px;
  color: var(--text-muted);
}

.testimonial-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align:left;
}

.testimonial-quote {
  max-width: 1346px;
  margin: 0 auto;
  position: relative;
}

.testimonial-quote p {
  font-size: 64px;
  font-weight: 500;
  letter-spacing: -1.28px;
  line-height: 1.4;
}

.testimonial-card p, .testimonial-card h4{
	margin-bottom:0px;
}

.testimonial-quote::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: -100px;
  left: 0;
  background: var(--gradient-primary);
  filter: blur(200px);
  opacity: 0.5;
  z-index: -1;
  border-radius: 50%;
}

.faq-header h2 {
  font-size: 64px;
  font-weight: 500;
  letter-spacing: -2.56px;
  line-height: 0.9;
}

.footer {
  position: relative;
    z-index: 99;
}

.footer-header h2 {
    font-size: 16vw;
    position: relative;
    white-space: nowrap;
    font-weight: 500;
    letter-spacing: -3.6px;
    line-height: 1;
    padding-bottom: 50px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(5, 5, 33, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    left: -90px;
    width: 109%;
}

.footer-header p {
  font-size: 64px;
  font-weight: 500;
  letter-spacing: -1.28px;
  line-height: 1.3;
  margin-top: -60px;
}

.footer-cta p {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.64px;
  line-height: 1.3;
}

.footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links-column h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
}

.footer-links-column a {
  font-size: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-link img {
  width: 16px;
  height: 16px;
}

.home-icon {
  /* width: 40px; */
  height: 40px;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.footer-bottom hr {
  border: none;
  height: 1px;
  background-color: rgba(226, 232, 255, 0.8);
  margin: 0;
}

.copyright {
  display: flex;
  align-items: center;
  gap: 16px;
}

.copyright img {
  width: 32px;
  height: 32px;
}

.copyright p {
  font-size: 14px;
}

.legal-links a {
  font-size: 14px;
}

.design-credit {
  font-size: 14px;
}

@media (max-width: 1200px) {
  .hero-title {
    font-size: 120px;
  }
  
  .footer-header h2 {
    font-size: 180px;
  }
  
  .footer-header p {
    font-size: 48px;
    margin-top: -40px;
  }
  
  .testimonial-quote p {
    font-size: 48px;
  }
}

@media (max-width: 992px) {
	.references-content h2{    
	font-size: 40px;
	}
.references-list {
    line-height: 25px;
    font-weight: 400;
}
.footer-header h2{
	left:0px !important;
	width:100% !important;
	padding-bottom:20px;
}
.footer-header{
	margin-top:50px;
}
body {
  overflow-x: hidden;
  max-width: 100%;
}

  .hero-title {
    font-size: 80px;
  }
  
  .cta-button {
    margin: 0 auto;
  }
  
  .learning-content h2,
  .pricing-header h2,
  .testimonials-header h2,
  .faq-header h2 {
    font-size: 48px;
  }
  
  .footer-header h2 {
    font-size: 120px;
  }
  
  .footer-header p {
    font-size: 36px;
    margin-top: -20px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 60px;
    letter-spacing: -2px;
  }
  
  .cta-button {
    width: 200px;
  }
  
  .learning-content h2,
  .pricing-header h2,
  .testimonials-header h2,
  .faq-header h2 {
    font-size: 36px;
  }
  
  .footer-header h2 {
    font-size: 80px;
  }
  
  .footer-header p {
    font-size: 28px;
    margin-top: -10px;
  }
  
  .testimonial-quote p {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 48px;
  }
  
  .learning-content h2,
  .pricing-header h2,
  .testimonials-header h2,
  .faq-header h2 {
    font-size: 38px;
  }
  
  .footer-header h2 {
    font-size: 60px;
  }
  
  .footer-header p {
    font-size: 24px;
    margin-top: -5px;
  }
  
  .footer-cta p {
    font-size: 24px;
  }
  
  .testimonial-quote p {
    font-size: 24px;
  }
  
  .price {
    font-size: 60px;
  }
}

.content-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
}

.scroll-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) skewY(5deg);
  filter: blur(6px);
  transition: all 0.6s ease;
}

.scroll-text.visible span {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
.scroll-text.visible span:nth-child(1) { transition-delay: 0s; }
.scroll-text.visible span:nth-child(2) { transition-delay: 0.05s; }
.scroll-text.visible span:nth-child(3) { transition-delay: 0.1s; }
.scroll-text.visible span:nth-child(4) { transition-delay: 0.15s; }


    .slider-container {
      width: 100%;
      overflow: hidden;
      position: relative;
      mask-image: linear-gradient(to right, transparent, white 20%, white 80%, transparent);
      -webkit-mask-image: linear-gradient(to right, transparent, white 20%, white 80%, transparent);
    }

    .swiper {
      width: 100%;
    }

    .swiper-slide {
      padding: 10px 20px;
      border-radius: 8px;
      text-align: center;
      font-size: 18px;
      width: 40% !important;
      margin: 0 10px;
    }
@media (max-width: 576px) {
    .swiper-slide {
		width:100% !important;
}
}

    .swiper-wrapper {
      transition-timing-function: linear !important;
    }
	
	.egitimbg{
	background-image: url(img/yorumbg.svg);
    /* background-size: cover; */
    background-position: 100%;
    background-repeat: no-repeat;
    width: 100%;
    left: -350px;
    height: 650px;
    position: absolute;
	z-index:0;
	}
	.cizgi1{
    background-image: url(img/cizgi/cizgi1.svg?v=2);
    /* background-size: cover; */
    background-position: 100%;
    background-repeat: no-repeat;
    width: 100%;
    left: -950px;
    top: -715px;
    height: 955px;
    position: absolute;
    z-index: 0;
	}
	.cizgi2{
background-image: url(img/cizgi/cizgi2.svg?v=2);
    /* background-size: cover; */
    background-position: 100%;
    background-repeat: no-repeat;
    width: 100%;
    left: 114px;
    top: 208px;
    height: 520px;
    position: absolute;
    z-index: 0;
	}
	.cizgi3{
background-image: url(img/cizgi/cizgi3.svg?v=2);
    background-position: 100%;
    background-repeat: no-repeat;
    width: 25%;
    left: -230px;
    top: -185px;
    height: 600px;
    position: absolute;
    z-index: 0;
	}
	.cizgi4{
    background-image: url(img/cizgi/cizgi4.svg?v=2);
    background-position: 100%;
    background-repeat: no-repeat;
    width: 100%;
    left: 120px;
    top: 115px;
    height: 850px;
    position: absolute;
    z-index: 0;
	}
	.cizgi5{
background-image: url(img/cizgi/cizgi5.svg?v=2);
    background-position: 100%;
    background-repeat: no-repeat;
    width: 51%;
    left: -104px;
    top: 160px;
    height: 850px;
    position: absolute;
    z-index: 0;
	}
	
	.pricingsbg{
	background-image: url(img/yorumbg.svg);
    /* background-size: cover; */
    background-size: 100% 100%;
    background-position: 100%;
    background-repeat: no-repeat;
    width: 100%;
    left: 20px;
    height: 650px;
    position: absolute;
	z-index:0;
	}
	
	.testimonialsbg{
	background-image: url(img/yorumbg.svg);
    /* background-size: cover; */
    background-size: 100% 100%;
    background-position: 100%;
    background-repeat: no-repeat;
    width: 100%;
    left: 20px;
	margin-top:50px;
    height: 650px;
    position: absolute;
	z-index:0;
	}
	
	.p-relative{
		position:Relative;
    max-width: 1910px;
    margin-right: auto;
    margin-left: auto;
	}
	
	.p-relativefull{
		position:Relative;
    margin-right: auto;
    margin-left: auto;
	}
	
	
	    .offcanvas-end.full-height {
      height: 100vh;
    }

    .offcanvas-backdrop.show {
      backdrop-filter: blur(4px);
    }
	
	.offcanvas{
    background: var(--dark-bg);
	color:#7a798d;
	font-weight:600;
	}
	
	.form-control,.form-control:focus{
    background-color: #0c0c27;
    color: #c9c7d6;
    border: var(--bs-border-width) solid #252642;
    padding: 13px 20px;
	margin-top:5px;
	}
	
	.form-control::placeholder{
    color: #c9c7d6;
	}
	
	
	
.modal-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: #f0eefabd;
    margin-top: 20px;
    background-color: var(--dark-bg);
    border-radius: 4px;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    z-index: 0;
      overflow: hidden;
}

  .modal-button span {
  padding: 10px 22px;
  margin:4px;
      position: relative;
      z-index: 2;
      font-size: 20px;
    }
    .modal-button span:first-child {
		padding-right:0px;
	}
    .modal-button span:last-child {
		padding-left:0px;
	}
	
@media screen and (max-width: 992px) {
    .modal-button span {
		font-size:15px;
	}
	.learning-content h2,.pricing-header h2{
    letter-spacing: normal;
    line-height: 1;
	}
	
}


.modal-button::before {
    content: "";
    position: absolute;
    width: 110%;
    height: 100%;
    background: conic-gradient(from 0deg, transparent, transparent, transparent, transparent, transparent, #FFAB82, #FF83BD, #A578FF);
    animation: rotate 3s linear infinite;
    border-radius: 0%;
    z-index: 0;
    left: -20px;
}

    .modal-button::after {
    content: "";
    position: absolute;
    width: 98%;
    top: 2.5%;
    left: 1%;
    height: 95%;
    box-shadow: inset 0px 0px 64px rgba(165, 120, 255, 0.8), 0px 0px 64px rgba(255, 131, 189, 0.1);
    background-color: var(--dark-bg);
    border-radius: 0%;
    z-index: 1;
    }

    @keyframes rotate {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }

.nav-pills .nav-link.active{ 
    box-shadow: inset 0px 0px 64px rgba(165, 120, 255, 0.48), 0px 0px 64px rgba(255, 131, 189, 0.24); 
    background-color: var(--dark-bg);
    border: 1px solid #5d4a68;
}

.nav-pills .nav-link{
    background-color: transparent;
    border: 1px solid #5d4a68;
	margin:5px;
}
.offcanvas-body .nav-pills{
    border: 1px solid #5d4a68;
	border-radius:10px;
}

h5.offcanvas-title{
	font-size:23px;
}

.offcanvas{
	--bs-offcanvas-width: 600px;
}

@media screen and (max-width: 992px) {
	.cizgi1,.cizgi2,.cizgi3,.cizgi4,.cizgi5{
		display:none;
	}
	.offcanvas-body{
    max-height: 80vh;
	}
}

@media screen and (min-width: 992px) {
  .offcanvas-end.full-height .offcanvas-header {
    padding: 25px;
    padding-top: 90px;
	z-index:1;
}
  .offcanvas-end.full-height .offcanvas-body {
    padding-left: 25px;
	z-index:1;
}
}


.sozlesme label{
    width: 90%;
}



    .sozlesme-checkbox {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
    }

    .sozlesme-checkbox input[type="checkbox"] {
      appearance: none;
      -webkit-appearance: none;
      min-width: 20px;
      min-height: 20px;
      border: 2px solid #252642;
      background-color: transparent;
      border-radius: 4px;
      position: relative;
      transition: border 0.3s ease;
      cursor: pointer;
    }

    .sozlesme-checkbox input[type="checkbox"]:checked {
      border: 2px solid;
      border-image: linear-gradient(90deg, #FFBA6D, #ab7cff, #a97bff) 1;
      border-radius: 4px;
    box-shadow: inset 0px 0px 64px rgba(165, 120, 255, 0.48), 0px 0px 64px rgba(255, 131, 189, 0.24);
    }

    .sozlesme-checkbox input[type="checkbox"]::before {
      content: "";
      position: absolute;
    top: 2px;
    left: 5px;
    width: 6px;
    height: 9px;
      border: solid white;
      border-width: 0 2px 2px 0;
      transform: rotate(45deg);
      opacity: 0;
      transition: opacity 0.2s ease;
    }

    .sozlesme-checkbox input[type="checkbox"]:checked::before {
      opacity: 1;
    }
	
	
	.nav-menu li{
    padding-right: 10px;
    padding-left: 10px;
	}
	.nav-menu li:last-child{
    padding-right: 0px;
	}
	
	.modal-content{
		background-color: var(--dark-bg);
	}
	
	.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
		color:#eee;
	}
	
	.header .container{
		overflow:visible !important;
	}
	
	
	.blur-text {
	line-height: 1.2;
	font-size: clamp(1.5rem,5vw,3rem);
}

.blur-text--1 {
	font-variation-settings: "wght" 420, "wdth" 100;
	letter-spacing: -0.05em;
}

.blur-text--2 {
	font-variation-settings: "wdth" 80, "wght" 300;
}

.blur-text--3 {
	font-variation-settings: "wght" 600, "wdth" 100;
	letter-spacing: -0.05em;
}

.blur-text--4 {
	font-variation-settings: "wght" 400, "wdth" 95;
	letter-spacing: -0.05em;
}