/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,200..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Poppins:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Roboto:wght@400;700&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(228, 85%, 63%);
  --title-color: hsl(228, 18%, 16%);
  --text-color: hsl(228, 8%, 56%);
  --body-color: hsl(228, 100%, 99%);
  --shadow-color: hsla(228, 80%, 4%, 0.1);
  --light: #f9f9f9;
  --blue: #3c91e6;
  --light-blue: #cfe8ff;
  --grey: #eee;
  --dark-grey: #aaaaaa;
  --dark: #342e37;
  --red: #db504a;
  --yellow: #ffce26;
  --light-yellow: #fff2c6;
  --orange: #fd7238;
  --light-orange: #ffe0d3;
  --light-grey: #f1f1f1;
  /* Açık gri tanımı */

  /*========== Font and typography ==========*/
  --body-font: "Nunito Sans", system-ui;
  ---font-poppins: "Poppins", sans-serif;
  --font-lato: "Lato", sans-serif;
  --normal-font-size: 0.938rem;
  --smaller-font-size: 0.75rem;
  --tiny-font-size: 0.75rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-sidebar: 999;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --normal-font-size: 1rem;
    --smaller-font-size: 0.813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  transition: background-color 0.4s;
}

a {
  text-decoration: none;
}

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

button {
  all: unset;
}

/*=============== VARIABLES DARK THEME ===============*/
body.dark-theme {
  --first-color: hsl(228, 70%, 63%);
  --title-color: hsl(228, 18%, 96%);
  --text-color: hsl(228, 12%, 61%);
  --body-color: hsl(228, 24%, 16%);
  --shadow-color: hsla(228, 80%, 4%, 0.3);
}

/*========== 
	Color changes in some parts of 
	the website, in dark theme
==========*/
.dark-theme .sidebar__content::-webkit-scrollbar {
  background-color: hls(228, 16%, 30%);
}

.dark-theme .sidebar__content::-webkit-scrollbar-thumb {
  background-color: hls(228, 16%, 40%);
}

/*=============== REUSABLE CSS CLASSES ===============*/
.containers {
  margin-left: 1.5rem;
  padding-right: 1.5rem;
  /* width: calc(100% - 1.5rem) !important; */
}

.main {
  padding-top: 5rem;
}

.clear {
  width: 100%;
  position: relative;
  height: 5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background-color: #06050f;
  color: #fff;
}

/* Main Banner Ana kısım*/
.hero {
  position: relative;
  height: 100vh;
  /* background: url("../media/bg.jpg") no-repeat center center/cover; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  overflow: hidden;
}

.hero .ellipse {
  position: absolute;
  top: 0;
}

.hero .stars1 {
  position: absolute;
  top: 0;
}

.hero .stars2 {
  position: absolute;
  top: 0;
}

.hero-text {
  padding: 0 20px;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.filter-overlay {
  position: absolute;
  top: 45%;
  width: 38%;
  right: 0;
  height: 60%;
  transform: translateY(-50%) rotate(45deg);
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  z-index: 99;
  filter: blur(10px);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  padding: 20px 50px;
  z-index: 100;
}

/* Logo */
.logo {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  max-width: 180px;
}

.logo img{
  width: 100%;
}

/* Navbar Linkleri*/
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-links:hover {
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.banner-tops-text-span {
  list-style: none;
  display: flex;
  position: relative;
  gap: 20px;
  padding: 10px 20px;
  border-radius: 28px;
  align-items: center;
  font-size: 14px;
  background-color: #000000;
  border-radius: 30px;
  box-shadow: inset 0 0 50px rgba(10, 124, 255, 0.7),
    inset 0 0 30px rgba(10, 124, 255, 0.5), 0 0 10px rgba(10, 124, 255, 0.6);
  border: 1px solid rgba(10, 124, 255, 0.9);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.banner-tops-bottom-img {
  position: absolute;
  bottom: 0;
  right: 34%;
}

.right-side {
  display: flex;
  min-width: 220px;
  gap: 1.2rem;
}

.nav-links a {
  text-decoration: none;
  color: #afb0ba;
  font-size: 14px;
  transition: color 0.3s ease;
}

.getApps{
    text-decoration: none;
    color: #afb0ba;
    font-size: 14px;
    transition: color 0.3s ease;
}

/* Navbar gradient button */

.custom-button {
  padding: 0.8rem 1.1rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 0.8rem;
  color: #ffffff;
  background-color: #000000;
  border-radius: 30px;
  position: relative;
  box-shadow: inset 0 0 20px rgba(10, 124, 255, 0.7),
    inset 0 0 30px rgba(10, 124, 255, 0.5), 0 0 10px rgba(10, 124, 255, 0.6);

  border: 1px solid rgba(10, 124, 255, 0.9);
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hover Durumu */
.custom-button:hover {
  box-shadow: inset 0 0 25px rgba(10, 124, 255, 0.9),
    inset 0 0 40px rgba(10, 124, 255, 0.7), 0 0 15px rgba(10, 124, 255, 0.8);
  transform: scale(1.05);
}

/* Navbar gradient button */

.nav-links .active {
  color: #fff;
}

.nav-links a:hover {
  color: #fff;
  /* Sarı hover efekti */
}

/* Banner Başlık*/
.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  background: linear-gradient(
    to right,
    #ffffff 0%,
    rgba(255, 255, 255, 0.5) 70%,
    rgba(255, 255, 255, 0.1) 100%
  );
  -webkit-background-clip: text;
  /* Arka planı yazıya uygular */
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  /* Hafif gölge efekti */
  line-height: 1.4;
  /* Satır arası boşluk */
}

/* Anayazı açıklama*/
.hero-text p {
  font-size: 1rem;
  margin-top: 10px;
  padding: 0rem 3rem;
  color: #a6aab2;
  max-width: 900px;
  font-family: "Montserrat", sans-serif;
}

/* Banner Button*/
.cta-button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #6535f2;
  color: #fff;
  border: none;
  border-radius: 15px;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #d4ac0d;
}

/* Container alanı  */
/* Genel container ayarları */
.container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
}

/* Referans başlık */
.references-title {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #9ba4bf;
  font-family: "Montserrat", sans-serif;
}

/* Logo alanı grid yapısı */
.references-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  justify-items: center;
  padding: 0rem 8rem;
  align-items: center;
  margin-bottom: 5rem;
}

.references-logos .logo-item {
  width: 60px;
}

.logo-item img {
  max-width: 100%;
  height: auto;
  filter: grayscale(1);
  transition: all 0.3s ease-in-out;
}

/* Hover efekti */
.logo-item img:hover {
  filter: grayscale(0);
  transform: scale(1.1);
}

/* Container alanı  */

.stars-area {
}

.minimal-stars-top {
  position: absolute;
}

.minimal-stars-bottom {
  position: absolute;
  bottom: 8px;
}

.buttons-area {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.buttons-area .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  font-size: 14px;
  z-index: 2;
  cursor: pointer;
}

.buttons-area-2 {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.buttons-area-2 .start-trade-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a7cff;
  color: white;
  gap: 6px;
  border-radius: 20px;
  padding: 0.8rem 1rem;
  z-index: 2;
  cursor: pointer;
}

.buttons-area-2 .start-trade-button:hover{
  transition:250ms all;
  box-shadow: inset 0 0 25px rgba(10, 124, 255, 0.9),
  inset 0 0 40px rgba(10, 124, 255, 0.7), 0 0 15px rgba(10, 124, 255, 0.8);
transform: scale(1.05);
}

.buttons-area-2 .try-demo-button {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  background: #1c1c1c;
  box-shadow: inset 0px 1px 2px rgba(255, 255, 255, 0.2),
    0px 2px 10px rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 20px;
  padding: 1rem 1rem;
  cursor: pointer;
  z-index: 2;
}

.buttons-area-2 .try-demo-button:hover {
  transition:250ms all;
  box-shadow: inset 0 0 25px rgba(10, 124, 255, 0.9),
  inset 0 0 40px rgba(10, 124, 255, 0.7), 0 0 15px rgba(10, 124, 255, 0.8);
transform: scale(1.05);
}

.menu-icon {
  display: none;
}

/* ---------------------------------- Sidebar mobil menü  ---------------------------------*/

.menu-icon {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  z-index: 1000;
}

/* Yan Menü */
.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  background-color: #000;
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top-left-radius: 20px;
  /* Sol üst köşe yuvarlatma */
  border-bottom-left-radius: 20px;
  /* Sol alt köşe yuvarlatma */
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
}

.side-menu-relative {
  position: relative;
  width: 250px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding: 4rem 0rem 2rem 0rem;
}

.side-menu.active {
  transform: translateX(0);
}

.side-menu ul {
  list-style: none;
  padding: 0;
}

.side-menu li {
  margin: 15px 0;
}

.side-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 300;
  transition: color 0.3s ease;
}

.side-menu a:hover {
  color: #0a7cff;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  z-index: 1001;
}

.close-btn i {
  font-size: 32px;
}

.close-btn:hover {
  color: #0a7cff;
}

/* ---------------------------------- Sidebar mobil menü  ---------------------------------*/

/* ---------------------------------- Mala Area menü  ---------------------------------*/
.mala-area {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  padding: 2rem 8rem;
  overflow: hidden;
}

.mala-area img {
  z-index: 9999;
}

.mala-area-title {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: #9ba4bf;
  font-family: "Montserrat", sans-serif;
}

.filter-overlay-mala-left {
  position: absolute;
  top: 45%;
  width: 200px;
  left: 0;
  height: 200px;
  transform: translateY(-50%) rotate(45deg);
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  z-index: 99;
  filter: blur(10px);
}

.filter-overlay-mala-right {
  position: absolute;
  top: 45%;
  width: 300px;
  right: 0;
  height: 300px;
  transform: translateY(-50%) rotate(45deg);
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  z-index: 99;
  filter: blur(10px);
}

/* Genel Kart Stili */
.mala-card {
  background: linear-gradient(145deg, #10151f, #1a2332);
  border-radius: 20px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.8),
    -4px -4px 10px rgba(50, 50, 70, 0.2);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #fff;
  height: 200px;
  width: 175px;
}

/* Kart Hover Efekti */
.mala-card:hover {
  transform: scale(1.05);
  box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.9),
    -6px -6px 15px rgba(50, 50, 70, 0.3);
}

/* Kart İkonu */
.mala-card-icon {
  font-size: 40px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 70px;
  height: 70px;
}

/* Kart Başlığı */
.mala-card-title {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.mala-card-area {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-items: center;
  align-items: center;
  margin-bottom: 5rem;
}

/* ---------------------------------- Mala Area menü - END  ---------------------------------*/

/* ---------------------------------- Journal Area menü - Start  ---------------------------------*/
.journal-area {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.filter-journal-area {
  position: absolute;
  top: 60%;
  width: 320px;
  right: 0;
  height: 300px;
  transform: translateY(-50%) rotate(45deg);
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  z-index: 99;
  filter: blur(10px);
}

.filter-journal-area-left {
  position: absolute;
  top: 160%;
  width: 250px;
  left: 0;
  height: 250px;
  transform: translateY(-50%) rotate(45deg);
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  z-index: 99;
  filter: blur(10px);
}

.ellipse-journal {
  height: 400px;
  position: absolute;
  left: -100px;
  top: 100px;
  transform: translateY(-50%) rotate(-90deg);
}

.ellipse-journal-two {
  height: 400px;
  position: absolute;
  right: 0;
  top: -200px;
  transform: translateY(-50%) rotate(90deg);
}
.journal-area .journal-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #9ba4bf;
  font-family: "Montserrat", sans-serif;
}

.journal-area .journal-desc {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #9ba4bf;
  font-family: "Montserrat", sans-serif;
}

.email-input-container {
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #10151f, #1a2332);
  border-radius: 30px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.8),
    -4px -4px 10px rgba(50, 50, 70, 0.2);
  padding: 5px;
  width: 500px;
  height: 60px;
}

.email-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  padding: 0 20px;
  font-family: "Arial", sans-serif;
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.send-button {
  border: none;
  color: white;
  font-size: 16px;
  font-family: "Arial", sans-serif;
  border-radius: 30px;
  height: 50px;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #000000;
  border-radius: 30px;
  box-shadow: inset 0 0 50px rgba(10, 124, 255, 0.7), inset 0 0 30px rgba(10, 124, 255, 0.5), 0 0 10px rgba(10, 124, 255, 0.6);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.send-button:hover {
  box-shadow: inset 0 0 25px rgba(10, 124, 255, 0.9),
    inset 0 0 40px rgba(10, 124, 255, 0.7), 0 0 15px rgba(10, 124, 255, 0.8);
  transform: scale(1.05);
}

.send-button i {
  font-size: 18px;
}

/* ---------------------------------- Journal Area menü - END  ---------------------------------*/

/* ---------------------------------- powerful-and-accessible-area Area menü - START  ---------------------------------*/
.powerful-and-accessible-area {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.powerful-and-accessible-area .head {
  display: grid;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: repeat(2, 1fr);
}

.powerful-and-accessible-area .head h1 {
  display: flex;
  text-align: start;
}

.powerful-and-accessible-area .head p {
  color: #c5c6c5;
  width: 450px;
  display: flex;
  text-align: left;
}

.powerful-and-accessible-area .card-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  /* max-width: 900px; */
}

.powerful-and-accessible-area .card {
  position: relative;
  min-height: 300px;
  justify-content: space-between;
  display: flex;
  flex-direction: column;

  background: linear-gradient(145deg, #0d141f, #0a1018);
  padding: 20px;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 16px; /* Köşe yuvarlama */
  overflow: hidden;
  z-index: 1;
}

.powerful-and-accessible-area .card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px; /* Köşe yuvarlama */
  padding: 1.8px; /* Border genişliği */
  background: linear-gradient(to left, #2e7ca7, #213138); /* Gradyan border */
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0); /* İç kısmı maskele */
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0); /* İç kısmı maskele */
  mask-composite: exclude; /* İç kısmı şeffaf yap */
  -webkit-mask-composite: destination-out; /* Tarayıcı uyumu */
  z-index: -1;
}


.powerful-and-accessible-area .border {
  border: 0.6px solid #c6c5c554;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.powerful-and-accessible-area .card .bg-stars {
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
}

.powerful-and-accessible-area .card .bg-stars-two {
  opacity: 0.4;
  position: absolute;
  bottom: 0;
  left: 0;
}

.powerful-and-accessible-area .ellipse-powerful {
  opacity: 0.7;
  position: absolute;
  top: 0;
}

.powerful-and-accessible-area .card:hover {
  box-shadow: -4px -4px 30px rgba(0, 170, 255, 0.4),
    /* Sol üst köşe parlaklık */ 4px 4px 80px rgba(0, 170, 255, 0.2); /* Sağ alt köşe parlaklık */
    transition: all 80ms ease-in;
}

.powerful-and-accessible-area .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.powerful-and-accessible-area .card-header span {
  color: #9ba4bf;
  font-size: 14px;
  font-weight: bold;
}

.powerful-and-accessible-area .card-header .icon {
  background: #2a89ff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.powerful-and-accessible-area .card-header .icon::before {
  content: "↗";
  color: white;
  font-size: 14px;
}

.powerful-and-accessible-area .card-title {
  font-size: 20px;
  font-weight: bold;
  margin: 20px 0 10px;
}

.powerful-and-accessible-area .card-description {
  font-size: 14px;
  color: #9ba4bf;
  line-height: 1.6;
}

/* ---------------------------------- powerful-and-accessible-area Area menü - END  ---------------------------------*/

/* ---------------------------------- Conctact Area menü - START  ---------------------------------*/
.contact-area{
  display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.contact-form-area {
  padding: 40px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 600px;
  margin: 40px auto;
  position: relative;
}

.contact-form-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #9ba4bf;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
}

.contact-form-description {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #9ba4bf;
  font-family: "Montserrat", sans-serif;
}

.contact-form .form-group {
  margin-bottom: 15px;
  text-align: left;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 500;
  color: #9ba4bf;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 15px;
  font-size: 14px;
  border-radius: 15px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #10151f, #1a2332);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.8), -4px -4px 10px rgba(50, 50, 70, 0.2);
  height: 40px;
  min-width: 100%;
  border: none;
  margin-bottom: 14px;
  color: #fffa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #4caf50;
  outline: none;
}

.contact-submit-button {
  padding: 0.8rem 1.1rem;
  justify-content: center;
  align-items: center;
  min-width: 120px;
  text-align: center;
  font-size: 1.1rem;
  color: #ffffff;
  cursor: pointer;
  background-color: #000000;
  border-radius: 30px;
  position: relative;
  box-shadow: inset 0 0 20px rgba(10, 124, 255, 0.7),
    inset 0 0 30px rgba(10, 124, 255, 0.5), 0 0 10px rgba(10, 124, 255, 0.6);

  border: 1px solid rgba(10, 124, 255, 0.9);
  transition: all 0.3s ease;
}

.contact-submit-button i {
  margin-left: 10px;
}

.contact-submit-button:hover {
  box-shadow: inset 0 0 25px rgba(10, 124, 255, 0.9),
    inset 0 0 40px rgba(10, 124, 255, 0.7), 0 0 15px rgba(10, 124, 255, 0.8);
  transform: scale(1.05);
}

/* ---------------------------------- Conctact Area menü - END  ---------------------------------*/

/* ---------------------------------- Footer Area menü - Start  ---------------------------------*/
.footer-container {
  background: linear-gradient(145deg, #05060f, #05060f);
  color: rgba(255, 255, 255, 0.8);
  font-family: "Arial", sans-serif;
  padding: 40px 20px;
  border-radius: 0 0 30px 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex-wrap: wrap;
  margin-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 2rem 0rem 3rem;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-logo .text{
  font-size: 14px;
  font-weight: 300;
  text-align: center;
}

.footer-logo .logo {
  max-width: 120px;
  position: sticky;
}

.footer-logo p {
  font-size: 24px;
  font-weight: bold;
  color: white;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-links div{
  min-width: 175px;
  text-align: center;
}

.footer-links h4 {
  font-size: 18px;
  color: #9ba4bf;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
  color: #9ba4bf9e;
}

.footer-links a {
  text-decoration: none;
  color: #9ba4bf9e;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #9c69ff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #9ba4bf9e;
  flex-wrap: wrap;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #9c69ff;
}

.footer-policies {
  display: flex;
  gap: 20px;
}

.footer-policies a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: color 0.3s;
}

.footer-policies a:hover {
  color: #9c69ff;
}
/* ---------------------------------- Responsive Design - Mobile View ---------------------------------*/
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-items: center;
    grid-template-columns: 1fr;
  }

  .footer-logo {
    align-items: center;
    margin-bottom: 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 40px;
    width: 100%;
  }

  .footer-links h4 {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .footer-links ul {
    padding-left: 10px;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-policies {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .footer-logo .logo {
    max-width: 100px;
  }

  .footer-logo p {
    font-size: 20px;
  }

  .footer-links h4 {
    font-size: 14px;
  }

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

  .footer-social a {
    font-size: 18px;
  }

  .footer-policies a {
    font-size: 12px;
  }
}
/* ---------------------------------- Footer Area menü - END  ---------------------------------*/

@media (max-width: 1338px) {
  .navbar {
    padding: 20px 8px;
  }

  .logo {
    max-width: 150px;
  }

  .custom-button {
    padding: 0.8rem 0.9rem;
    font-size: 0.8rem;
  }

  .email-input-container {
    width: 400px;
  }

  .powerful-and-accessible-area .card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .powerful-and-accessible-area .head {
    display: grid;
    align-items: center;
    justify-content: space-between;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .powerful-and-accessible-area .head p {
    color: #c5c6c5;
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .mala-card-area {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 20px 20px;
  }

  .side-menu ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 35px;
  }

  .menu-icon {
    display: flex;
    z-index: 2;
    font-size: 32px;
  }

  .references-logos {
    grid-template-columns: repeat(3, 1fr);
    /* 3 sütun */
  }

  .nav-links {
    display: none;
  }

  .right-side {
    display: none;
  }

  .banner-tops-text-span {
    margin-top: 3rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .buttons-area {
    flex-direction: column;
    gap: 1rem;
  }

  .logo {
    min-width: auto;
    position: absolute;
    top: 20px;
    left: 20px;
  }

  .filter-overlay {
    width: 300px;
    height: 600px;
  }

  .hero .stars2 {
    height: 100vh;
  }

  .hero .stars1 {
    height: 100vh;
  }

  .references-logos {
    padding: 0rem 1rem;
  }

  .mala-area {
    padding: 2rem 1rem;
  }

  .mala-card {
    min-height: 200px;
    width: 200px;
  }
  .email-input-container {
    width: 100%;
  }

  .email-input {
    padding: 0 10px;
  }

  .powerful-and-accessible-area .card-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .references-logos {
    grid-template-columns: repeat(1, 1fr);
  }

  .banner-tops-text-span {
    margin-top: 6rem;
  }

  .side-menu {
    width: 100%;
  }

  .side-menu-relative {
    width: 100%;
  }

  .mala-card-area {
    grid-template-columns: repeat(1, 1fr);
  }

  .powerful-and-accessible-area .card-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .hero{
    height: auto;
  }
}
