@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url(responsive.css);


:root {
  --var-primary-color: white;
  --var-secondary-color: rgb(67, 67, 237);
  --var-gray: #b7b7b7;
  --var-blue-bg: rgba(67, 67, 237, 0.12);
}

html {
  max-width: 100vw !important;
  overflow-x: hidden !important;
}

* {
  margin: 0;
  padding: 0;
  cursor: none;
  box-sizing: border-box;
}

::selection {
  background-color: var(--var-secondary-color);
  color: var(--var-primary-color);
}

body {
  background-color: #111111;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

body a {
  cursor: none;
}

.title {
  color: var(--var-primary-color);
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: .5rem;
  background-color: #1f1f1f;
  padding: 3px 48px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.circle {
  border: 1px solid #2f2f2f;
  background-color: #141414;
  height: 300px;
  width: 300px;
  border-radius: 100%;
  transition: .3s;
}

.circle:hover {
  background-color: #212121;
  transform: scale(1.05);
}

.custom-cursor {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  pointer-events: none;
  border: 2px solid #828282c1;
  background-color: #8282824f;
  transition: transform 0.15s;
  z-index: 2000;
}

.container {
  padding: 0 15rem;
}

.width-adjust {
  margin: 0 15rem;
}

nav.wide {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 101;
  transition: all 0.3s ease;
  width: 100vw;
  padding: 15px 80px;
  border-bottom: 1px solid #1d1c1c;
}

nav.wide a.logo {
  max-height: 70px;
}

nav.wide a.logo img {
  height: 70px;
}

nav.wide ul {
  display: flex;
}

nav.wide ul li {
  padding: 0 2rem;
  list-style: none;
}

nav.wide ul li a {
  color: var(--var-primary-color);
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  transition: all .3s ease;
}

nav.wide ul li a:hover {
  color: #d1d1d1;
}

nav.wide a.contact-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--var-primary-color);
  text-decoration: none;
  background-color: var(--var-secondary-color);
  padding: 10px 30px;
  border-radius: 12px;
  transition: 0.3s ease-in;
  font-size: 20px;
}

nav.wide a.contact-button:hover {
  background-color: #0026ffb6;
}

/* Hamburger Menu - 1000px altında aktif */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1002;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--var-primary-color);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #111111;
  border-left: 1px solid #2f2f2f;
  transition: right 0.3s ease;
  z-index: 1001;
  padding: 100px 30px 30px;
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav ul li {
  padding: 15px 0;
  border-bottom: 1px solid #2f2f2f;
}

.mobile-nav ul li:last-child {
  border-bottom: none;
}

.mobile-nav ul li a {
  color: var(--var-primary-color);
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  display: block;
  transition: color 0.3s ease;
}

.mobile-nav ul li a:hover {
  color: var(--var-secondary-color);
}

/* Mobile Mega Menu */
.mobile-nav .has-megamenu > a::after {
  content: '+';
  float: right;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.mobile-nav .has-megamenu.active > a::after {
  transform: rotate(45deg);
}

.mobile-nav .mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #1a1a1a;
  margin-top: 15px;
  border-radius: 8px;
}

.mobile-nav .mobile-submenu.active {
  max-height: 400px;
  padding: 20px;
}

.mobile-nav .mobile-submenu h4 {
  color: var(--var-secondary-color);
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.mobile-nav .mobile-submenu ul {
  margin-bottom: 20px;
}

.mobile-nav .mobile-submenu ul li {
  padding: 8px 0;
  border-bottom: 1px solid #2f2f2f;
}

.mobile-nav .mobile-submenu ul li:last-child {
  border-bottom: none;
}

.mobile-nav .mobile-submenu .product-image {
  max-height: 40px;
  margin-bottom: 10px;
}

.mobile-nav .mobile-contact-button {
  display: block;
  text-align: center;
  background-color: var(--var-secondary-color);
  color: var(--var-primary-color);
  padding: 15px;
  border-radius: 12px;
  text-decoration: none;
  margin-top: 30px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.mobile-nav .mobile-contact-button:hover {
  background-color: #0026ffb6;
}

/* Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1000px) {
  nav.wide .main-nav,
  nav.wide .contact-button {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Mega Menu Stilleri */

.mega-menu {
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  background-color: #111111;
  padding: 15px 70px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  /* Sadece alt gölge */
}

.has-megamenu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

.mega-menu-content {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem;
}

.mega-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mega-column h4 {
  color: var(--var-primary-color);
  font-size: 20px;
  font-weight: 600;
}

.mega-column ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-column li {
  margin-bottom: 12px;
  padding: 0 !important;
  font-weight: 300;
}

.mega-column ul li a {
  font-weight: 300 !important;
}

.mega-column a {
  display: block;
}

.mega-column a:hover {
  color: var(--var-secondary-color);
}

.mega-column img.product-image {
  height: 65px;
  transition: 0.3s ease all;
  opacity: 0.9;
}

.mega-column img.product-image:hover {
  opacity: 1;
}

.mega-cta {
  max-width: 40%;
  gap: 1.5rem;
  color: var(--var-primary-color);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(67, 67, 237, 0.12);
  border-radius: 32px;
  box-shadow: rgba(67, 67, 237, 0.1) 0px 1px 40px 0px;
  border: 1px solid var(--var-secondary-color);
  padding: 30px;
}

.mega-cta p.mega-cta-title {
  font-size: 23px;
  font-weight: 600;
}

.mega-cta p.mega-cta-description {
  font-size: 18x;
  color: var(--var-primary-color);
}

.mega-cta a {
  color: var(--var-primary-color) !important;
  text-decoration: none;
  background-color: rgba(67, 67, 237, 0.2);
  border: 1px solid var(--var-secondary-color);
  padding: 10px 30px;
  border-radius: 12px;
  transition: 0.3s ease-in;
  font-weight: 400 !important;
}

.mega-cta a:hover {
  background-color: rgba(66, 66, 237, 0.6);
  box-shadow: rgb(86, 89, 227) 0px 0px 15px 0px inset;
}

/* Mobil Uyumluluk */

.intro {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  transition: .5s opacity;
  z-index: 100;
}

.intro .slogan {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  position: absolute;
  color: var(--var-primary-color);
  z-index: 10;
}

.intro .slogan h1 {
  font-weight: 400;
  font-size: 65px;
  text-align: center;
}

.intro .slogan h1 span {
  color: var(--var-secondary-color);
  transition: .3s;
}

.intro .slogan svg {
  width: 50px;
  height: 50px;
  color: var(--var-secondary-color);
}

.intro form.intro-mailform {
  display: flex;
  align-items: center;
  position: relative;
  flex-direction: column;
  gap: 0.5rem;
}

.intro form.intro-mailform .intro-error-message {
  color: #ff4757;
  font-size: 14px;
  display: none;
  animation: fadeIn 0.3s ease;
  align-self: flex-start;
  margin-left: 25px;
}

.intro form.intro-mailform input[type=email] {
  border: 1px solid #a8a8c04e;
  border-radius: 30px;
  background-color: unset;
  padding: 15px 140px 15px 25px;
  color: var(--var-primary-color);
  transition: .3s;
  width: 100%;
}

.intro form.intro-mailform input[type=email].error {
  border-color: #ff4757;
  box-shadow: 0 0 5px rgba(255, 71, 87, 0.3);
}

.intro form.intro-mailform input[type=email]:hover {
  border: 1px solid #a8a8c0bd;
}

.intro form.intro-mailform input[type=email]:focus {
  border: 1px solid var(--var-secondary-color);
  outline: none;
  box-shadow: 0 0 5px rgba(67, 67, 237, 0.3);
}

.intro form.intro-mailform input[type=email]::placeholder {
  font-family: "Poppins", sans-serif;
  color: #a8a8c0;
}

.intro form.intro-mailform input[type=submit] {
  border: none;
  border-radius: 30px;
  background-color: rgba(66, 66, 237, 0.6);
  color: #cccceb;
  margin-left: -92px;
  padding: 0 25px;
  height: 46px;
  font-family: "Poppins", sans-serif;
  transition: all .3s ease;
  cursor: pointer;
  position: absolute;
  right: 1px;
  top: 1px;
}

.intro form.intro-mailform input[type=submit]:hover:not(:disabled) {
  background-color: rgba(66, 66, 237, 0.792);
  transform: translateY(-1px);
}

.intro form.intro-mailform input[type=submit]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.intro .circles {
  display: flex;
  align-items: center;
  margin: auto;
}

.intro .circles .s-circle {
  border: 3px solid #2f2f2f;
  background-color: #141414;
  height: 350px;
  width: 350px;
  border-radius: 100%;
  transition: .3s;
}

.intro .circles .s-circle:hover {
  background-color: #212121;
  transform: scale(1.05) translateX(11px) !important;
}

.intro .circles .s-circle:nth-child(1):hover {
  transform: scale(1.05) translateX(-11px) !important;
}

.intro .circles .l-circle {
  width: 530px;
  height: 530px;
  border-radius: 100%;
  background: url(assets/images/l-circle.png);
  background-size: cover;
  transition: .3s;
  margin-bottom: -30px;
}

.brand-carousel {
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125);
  overflow: hidden;
  position: relative;
  padding-bottom: 30px;
  z-index: 1000;
  cursor: grab !important;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.brand-carousel:active {
  cursor: grabbing !important;
}

.brand-carousel * {
  cursor: inherit !important;
  pointer-events: auto;
}

.brand-carousel::before,
.brand-carousel::after {
  background: linear-gradient(to right, rgba(17, 17, 17, 1) 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100px;
  position: absolute;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.brand-carousel::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.brand-carousel::before {
  left: 0;
  top: 0;
}

.brand-carousel .slide-track {
  display: flex;
  z-index: 100;
  will-change: transform;
  transition: none !important;
}

.brand-carousel .logo-item {
  height: 50px;
  width: 200px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  pointer-events: auto;
}

.brand-carousel .logo-item img {
  max-height: 40px;
  max-width: 160px;
  object-fit: contain;
  transition: .5s;
  pointer-events: none;
  user-select: none;
}

.brand-carousel .logo-item a {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.brand-carousel .logo-item img:hover {
  filter: brightness(1.2);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .brand-carousel .logo-item img {
    max-height: 30px;
    max-width: 120px;
  }
}

.about {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100vh;
  gap: 3rem;
  margin-top: -55rem;
  opacity: 0;
}

.about-circle {
  margin-top: -5rem;
}

.about .main-text {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.about .main-text h1 {
  color: var(--var-primary-color);
  font-size: 70px;
  font-weight: 300;
  line-height: 85px;
  max-width: 70%;
}

.about span {
  color: var(--var-secondary-color);
}


.about .sub-text {
  color: var(--var-primary-color);
  font-size: 20px;
}

.about .stats {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 50px;
  flex-wrap: wrap;
}

.about .stats .item {
  display: flex;
  flex: 1 1 calc(32% - 50px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #1F1F1F;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 25px;
  padding: 20px 10px;
  text-align: center;
}

.about .stats .item p {
  color: var(--var-primary-color);
  font-size: 20px;
}

.services {
  display: flex;
  gap: 3rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin: 10rem 0;
}

.srvcontainer {
  position: relative;
}

.srvcontainer .circle {
  position: absolute;
  left: 20px;
  top: 50px;
  z-index: -1;
}

.services .entry {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: left;
  position: relative;
  gap: 2rem;
}

.services .entry h2 {
  display: inline-block;
  background-image: linear-gradient(92.2106deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.203) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 70px;
  font-weight: 300;
  line-height: 75px;
  letter-spacing: 2px;
}

.services .entry p {
  display: inline-block;
  background-image: linear-gradient(92.2106deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.36) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--var-gray);
  font-size: 20px;
}

.services .entry p span {
  background-image: linear-gradient(92.2106deg, rgb(67, 67, 237) 0%, rgba(66, 66, 237, 0.5) 100%);
  display: inline-block;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services .accordion {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 2rem;
}

.services .accordion .item {
  transition: .5s;
}

.services .accordion .acc-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--var-primary-color);
  border-bottom: 1px solid var(--var-primary-color);
  padding-bottom: 20px;
  transition: .5s;
}

.services .accordion .acc-title:hover .arrow svg {
  transform: rotate(90deg) !important;
}

.services .accordion .acc-title .r {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 40%;
  transition: .5s;
}

.services .accordion .acc-title .number {
  font-size: 65px;
}

.services .accordion .acc-title .name {
  font-size: 35px;
  font-weight: 300;
}

.services .accordion .acc-title .arrow svg {
  min-width: 70px;
  min-height: 70px;
  transform: rotate(45deg);
  transition: .3s;
}

.services .accordion .item .content {
  display: none;
}

.services .accordion .item.active {
  background: linear-gradient(90deg, rgb(67, 67, 237) 0%, rgba(66, 66, 237, 0) 100%);
  border-radius: 20px;
  padding: 30px;
}

.services .accordion .item.active .acc-title {
  border-bottom: none;
}

.services .accordion .item.active .acc-title .r {
  width: 55%;
}

.services .accordion .item.active .content {
  display: flex;
  flex-direction: column;
}

.services .accordion .item.active .content p {
  color: var(--var-primary-color);
  font-size: 20px;
}

.faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin: 10rem 0;
}

.faq h3 {
  display: inline-block;
  background-image: linear-gradient(92.2106deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 70px;
  font-weight: 300;
  line-height: 75px;
  letter-spacing: 2px;
  text-align: center;
}

.faq .accordion {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1rem;
}

.faq .accordion .item {
  width: 100%;
  color: var(--var-primary-color);
  background-color: #1f1f1f;
  border: 1px solid #3a3a3a;
  border-radius: 10px;
  padding: 15px 30px;
  transition: .5s;
}

.faq .accordion .item .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: .3s;
}

.faq .accordion .item .question h4 {
  font-weight: 500;
  font-size: 22px;
}

.faq .accordion .item .question .plus {
  font-size: 35px;
  font-weight: 300;
  transition: .3s;
}

.faq .accordion .item .answer {
  max-width: 95%;
  height: 0;
  opacity: 0;
  transition: .3s;
}

.faq .accordion .item .answer p {
  display: none;
  font-size: 20px;
}

.faq .accordion .item.active .answer {
  height: 100%;
  opacity: 1;
  padding-top: 10px;
}

.faq .accordion .item.active .answer p {
  display: block;
}

.faq .accordion .item.active .plus {
  transform: rotate(45deg);
}

.cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10rem;
  background-color: rgba(67, 67, 237, 0.12);
  border-radius: 32px;
  box-shadow: rgba(67, 67, 237, 0.1) 0px 1px 40px 0px;
  border: 1px solid var(--var-secondary-color);
  padding: 70px 100px;
}

.cta .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  color: var(--var-primary-color);
  max-width: 100%
}

.cta .text h2 {
  font-weight: 300;
  font-size: 50px;
  line-height: 50px;
}

.cta .text p {
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 0px;
}

.cta .text a {
  color: var(--var-primary-color);
  text-decoration: none;
  background-color: rgba(67, 67, 237, 0.2);
  border: 1px solid var(--var-secondary-color);
  padding: 10px 30px;
  border-radius: 12px;
  transition: 0.3s ease-in;
}

.cta .text a:hover {
  background-color: rgba(66, 66, 237, 0.6);
  box-shadow: rgb(86, 89, 227) 0px 0px 15px 0px inset;
}

.testimonials {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 3rem;
}

.testimonials .main-text {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.testimonials .main-text h2 {
  display: inline-block;
  background-image: linear-gradient(92.2106deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 70px;
  font-weight: 300;
  line-height: 75px;
  letter-spacing: 2px;
  width: 70%;
}

.testimonials-carousel .item {
  display: flex;
  flex-direction: column;
  background-color: #1f1f1f;
  border: 1px solid #3a3a3a;
  border-radius: 20px;
  padding: 20px;
  gap: 1rem;
  transition: .3s;
}

.testimonials-carousel .item:hover {
  background-color: rgb(24, 24, 51);
}

.testimonials-carousel .item .person {
  display: flex;
  gap: 1rem;
}

.testimonials-carousel .item .person .signature {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.testimonials-carousel .item .person img {
  width: 50px;
  height: 50px;
  border-radius: 100%;
}

.testimonials-carousel .item .person .signature h3 {
  color: var(--var-primary-color);
  font-weight: 400;
}

.testimonials-carousel .item .person .signature p {
  color: var(--var-gray);
  font-weight: 300;
  font-size: 16px;
}

.testimonials-carousel .item .comment {
  color: var(--var-gray);
  font-size: 16px;
}

footer {
  display: flex;
  justify-content: space-between;
  background-color: white;
  padding: 60px 15rem;
  border-radius: 50px 50px 0 0;
  margin-top: 10rem;
}

footer .col {
  gap: 1rem;
  display: flex;
  flex-direction: column;
  font-size: 20px;
  font-weight: 300;
}

footer .col a {
  color: black;
  text-decoration: none;

}

footer img {
  height: 60px;
}

footer .col p {
  max-width: 300px;
}

footer a.btt {
  writing-mode: vertical-rl;
  letter-spacing: 2px;
  font-size: 22px;
  font-weight: 200;
  text-orientation: mixed;
  color: black;
  text-decoration: none;
}

.footer-carousel {
  background-color: white;
}

.footer-carousel .item a {
  font-size: 200px;
  overflow: hidden;
  font-weight: 200;
  width: auto;
  color: black;
  text-decoration: none;
  transition: .3s;
}

.footer-carousel .item a:hover {
  opacity: .7;
}

/* Side Page  Stilleri */

h2.gradient-title {
  display: inline-block;
  background-image: linear-gradient(92.2106deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 70px;
  font-weight: 300;
  line-height: 75px;
  letter-spacing: 2px;
  width: 100%;
}

h3.gradient-title {
  display: inline-block;
  background-image: linear-gradient(92.2106deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 50px;
  font-weight: 300;
  line-height: 75px;
  letter-spacing: 2px;
  width: 100%;
}

h4.gradient-title {
  display: inline-block;
  background-image: linear-gradient(92.2106deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 30px;
  font-weight: 300;
  line-height: 40px;
  letter-spacing: 1px;
  width: 100%;
}

.page-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 15rem;
  margin-bottom: 5rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 14px;
}

.breadcrumb a {
  color: var(--var-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb span:not(:last-child) {
  color: var(--var-gray);
}

.breadcrumb span:last-child {
  color: white;
  font-weight: 500;
}

.page-header-container {
  display: flex;
  justify-content: space-between;
}

.page-header-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.page-header-title {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.page-header-content h1 {
  font-size: 60px;
  font-weight: 600;
  color: var(--var-primary-color);
}

.page-header-content p {
  color: var(--var-primary-color);
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  max-width: 700px;
}

.page-header .circle {
  width: 250px;
  height: 250px;
}

.side-page {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.side-page p {
  color: var(--var-primary-color);
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
}

.side-page p b {
  font-weight: 500;
}

.side-page p span {
  background-image: linear-gradient(92.2106deg, rgb(67, 67, 237) 0%, rgba(66, 66, 237, 0.5) 100%);
  display: inline-block;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-4d {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-4d {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.steps .box {
  background: #1F1F1F;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 25px;
  padding: 3rem;
  transition: all .3s ease-out;
}

.steps .box:hover {
  border: 1px solid #2E2F91;
}

.steps .box .box-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.steps .box .box-header .step-number {
  background: linear-gradient(90deg, rgba(46, 47, 145, 1) 0%, rgba(30, 32, 80, 1) 100%);
  color: var(--var-primary-color);
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

.steps .box .box-header h4 {
  color: var(--var-primary-color);
  font-size: 22px;
  font-weight: 600;
}

.steps .box .description {
  color: var(--var-primary-color);
  font-size: 17px;
  line-height: 28px;
  font-weight: 300;
}

.web-design-page {
  display: flex;
  flex-direction: column;
  gap: 10rem;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  margin-bottom: 5rem;
}

.web-design-page .web-design-desc {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.web-design-page video {
  width: 100%;
}

.web-design-page .card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  backdrop-filter: blur(10px);
  border-radius: 40px;
  width: 100%;
}

.web-design-page .card h3.gradient-title {
  margin-top: 2rem;
  margin-bottom: 5rem;
}

.web-design-page .timeline {
  position: relative;
  padding-left: 80px;
}

.web-design-page .timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(67, 67, 237, 0.2);
}

.web-design-page .step {
  position: relative;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
}

.web-design-page .step:first-child {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.web-design-page .step:last-child {
  margin-bottom: 0;
}

.web-design-page .step-icon {
  position: absolute;
  left: -80px;
  width: 48px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(67, 67, 237, 0.1);
  border: 3px solid rgba(67, 67, 237, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.web-design-page .step-icon::after {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(67, 67, 237, 0.5);
  transition: all 0.3s ease;
}

.web-design-page .step.active .step-icon {
  background: var(--var-secondary-color);
  border-color: var(--var-secondary-color);
  box-shadow: 0 0 30px rgba(67, 67, 237, 0.5);
}

.web-design-page .step.active .step-icon::after {
  background: var(--var-primary-color);
  width: 12px;
  height: 12px;
}

.web-design-page .step-content {
  background: rgba(255, 255, 255, 0.02);
  padding: 25px 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.web-design-page .step.active .step-content {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(67, 67, 237, 0.3);
  box-shadow: 0 10px 30px rgba(67, 67, 237, 0.1);
}

.web-design-page .step-title {
  font-size: 20px;
  font-weight: 400;
  color: var(--var-primary-color);
  margin-bottom: 8px;
}

.web-design-page .step-description {
  color: var(--var-gray);
}

.web-design-page .step.inactive {
  opacity: 0.4;
}

.web-design-page .step.inactive .step-title,
.step.inactive .step-description {
  color: var(--var-gray);
}

.criteria-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3rem;
}

.criteria-section .bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 20px;
  width: 100%;
  min-height: 700px;
}

.criteria-section .bento-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
}

.criteria-section .bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(67, 67, 237, 0.15), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.criteria-section .bento-card:hover::before {
  opacity: 1;
}

.criteria-section .bento-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(67, 67, 237, 0.3);
  transform: translateY(-5px);
}

.criteria-section .bento-card.large {
  grid-row: span 1;
}

/* SEO kartı (data-card="1") - Sol üst, yüksek */
.criteria-section .bento-card[data-card="1"] {
  min-height: 350px;
  grid-row: 1 / 3;
}

/* Kullanıcı Dostu Arayüz (data-card="2") - Sol alt, alçak */
.criteria-section .bento-card[data-card="2"] {
  min-height: 180px;
}

/* Hızlı Yükleme (data-card="3") - Sağ üst, alçak */
.criteria-section .bento-card[data-card="3"] {
  min-height: 180px;
}

/* Pixel Perfect (data-card="4") - Sağ alt, yüksek */
.criteria-section .bento-card[data-card="4"] {
  min-height: 350px;
  grid-row: 2 / 4;
}

.criteria-section .card-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.criteria-section .card-title {
  font-size: 22px;
  font-weight: 400;
  color: var(--var-primary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.criteria-section .card-description {
  font-size: 20px;
  line-height: 1.7;
  color: var(--var-gray);
  margin-bottom: 30px;
}

.criteria-section .card-visual {
  margin-top: auto;
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.criteria-section .bento-card.large .card-visual {
  height: 350px;
}

/* SEO Card Visual */
.criteria-section .browser-mockup {
  width: 100%;
  background: #1a1a2e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.criteria-section .browser-header {
  background: #252538;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.criteria-section .browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #444;
}

.criteria-section .browser-url {
  flex: 1;
  background: #1a1a2e;
  padding: 0 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
}

.criteria-section .browser-url span {
  font-size: 12px;
  color: #a8a8c0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.criteria-section .lock-icon {
  width: 12px;
  height: 12px;
  color: #4caf50;
}

.criteria-section .browser-content {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.criteria-section .search-icon {
  width: 80px;
  height: 80px;
  animation: float 3s ease-in-out infinite;
}

/* UX Card Visual */
.criteria-section .device-mockup {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.criteria-section .phone-frame {
  width: 200px;
  height: 100%;
  background: #1a1a2e;
  border-radius: 30px;
  padding: 15px;
  box-shadow: 0 20px 60px rgba(67, 67, 237, 0.3);
  position: relative;
  overflow: hidden;
}

.criteria-section .phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(67, 67, 237, 0.1) 0%, rgba(67, 67, 237, 0.05) 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.criteria-section .flow-lines {
  position: absolute;
  width: 100%;
  height: 100%;
}

.criteria-section .flow-line {
  position: absolute;
  width: 2px;
  height: 30px;
  background: linear-gradient(to bottom, transparent, var(--var-secondary-color), transparent);
  animation: flow 2s ease-in-out infinite;
}

.criteria-section .flow-line:nth-child(1) {
  left: 20%;
  animation-delay: 0s;
}

.criteria-section .flow-line:nth-child(2) {
  left: 40%;
  animation-delay: 0.3s;
}

.criteria-section .flow-line:nth-child(3) {
  left: 60%;
  animation-delay: 0.6s;
}

.criteria-section .flow-line:nth-child(4) {
  left: 80%;
  animation-delay: 0.9s;
}

.criteria-section .ui-labels {
  position: absolute;
  top: 52%;
  left: 40%;
  z-index: 10;
  transform: translateY(-50%);
}

.criteria-section .ui-label {
  background: var(--var-secondary-color);
  color: white;
  opacity: .7 !important;
  padding: 4px 7px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 10px;
  animation: pulse 2s ease-in-out infinite;
}

.criteria-section .ui-label:nth-child(2) {
  animation-delay: 0.5s;
  margin-left: 60px;
}

.criteria-section .ui-label:nth-child(3) {
  animation-delay: 1s;
}

/* Code Card Visual */
.criteria-section .code-editor {
  width: 100%;
  background: #1a1a2e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.criteria-section .code-header {
  background: #252538;
  padding: 10px 15px;
  display: flex;
  gap: 6px;
}

.criteria-section .code-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.criteria-section .code-dot:nth-child(1) {
  background: #ff5f56;
}

.criteria-section .code-dot:nth-child(2) {
  background: #ffbd2e;
}

.criteria-section .code-dot:nth-child(3) {
  background: #27c93f;
}

.criteria-section .code-content {
  padding: 20px;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  line-height: 1.8;
  color: #a8a8c0;
}

.criteria-section .code-line {
  opacity: 0;
  transform: translateX(-10px);
}

.criteria-section .code-keyword {
  color: #ff79c6;
}

.criteria-section .code-function {
  color: #50fa7b;
}

.criteria-section .code-string {
  color: #f1fa8c;
}

.criteria-section .code-comment {
  color: #6272a4;
}

/* Loading Card Visual */
.criteria-section .loading-visual {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.criteria-section .spinner-container {
  position: relative;
  width: 120px;
  height: 120px;
}

.criteria-section .spinner {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 4px solid rgba(67, 67, 237, 0.1);
  border-top-color: var(--var-secondary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.criteria-section .spinner:nth-child(2) {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  border-top-color: #50fa7b;
  animation-delay: 0.2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes flow {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateY(300%);
    opacity: 0;
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(0.95);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes scaleIn {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.web-design-portfolio {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.web-design-portfolio h3.gradient-title {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.web-design-portfolio-carousel a.item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 20px;
  text-align: center;
  gap: 1rem;
  text-decoration: none;
  transition: .5s;
}

.web-design-portfolio-carousel a.item:hover {
  transform: scale(.95);
}

.web-design-portfolio-carousel a.item:hover span {
  color: rgb(178, 178, 255);
}

.web-design-portfolio-carousel img {
  border-radius: 20px;
}

.web-design-portfolio-carousel a.item span {
  color: var(--var-primary-color);
  font-size: 20px;
  font-weight: 300;
  transition: .5s;
}

.web-design-portfolio-carousel .owl-dots {
  padding-top: 2rem;
}

.web-design-portfolio-carousel .owl-dots button span {
  background-color: #d6d6d696 !important;
}

.web-design-portfolio-carousel .owl-dots button.active span {
  background-color: var(--var-secondary-color) !important;
}

.software-page .software-paragraph {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Code Animation Section */
.software-page .code-animation-section {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: flex-start;
}

.software-page .code-editor-mockup {
  width: 100%;
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  border-radius: 16px;
  border: 1px solid #333;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
}

.software-page .code-header {
  background: linear-gradient(90deg, #2a2a2a, #1f1f1f);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #333;
}

.software-page .code-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5f57;
}

.software-page .code-dot:nth-child(2) {
  background: #ffbd2e;
}

.software-page .code-dot:nth-child(3) {
  background: #28ca42;
}

.software-page .code-content {
  padding: 24px;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
  min-height: 400px;
  background: #111;
}

.software-page .code-line {
  margin-bottom: 8px;
  opacity: 0;
  transform: translateX(-20px);
}

.software-page .code-keyword {
  color: #ff79c6;
}

.software-page .code-function {
  color: #50fa7b;
}

.software-page .code-string {
  color: #f1fa8c;
}

.software-page .code-comment {
  color: #6272a4;
  font-style: italic;
}

.software-page .code-variable {
  color: #8be9fd;
}

.software-page .faq {
  margin: 0 !important;
}

.saas-page .saas-p {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.saas-page .saas-benefits {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
.saas-page .saas-benefits .saas-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.saas-page .saas-benefits .benefit-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.saas-page .saas-benefits .benefit-item h4{
  color: var(--var-primary-color);
  font-size: 20px;
  font-weight: 500;
}

.contact-wrapper{
  display: flex;
  justify-content: space-between;
  gap: 20%;
}

.contact-page h3{
  color: var(--var-primary-color);
  font-size: 40px;
  font-weight: 300;
}

.contact-desc {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-wrapper .contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-wrapper .contact-info a {
  color: var(--var-primary-color);
  text-decoration: none;
  font-size: 20px;
}

.contact-wrapper .contact-form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.contact-wrapper .contact-form form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-wrapper .contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  width: 100%;
}

.contact-wrapper .contact-form .form-group span {
  color: var(--var-secondary-color);
}

.contact-wrapper .contact-form .form-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.contact-wrapper .contact-form .form-group label {
  color: var(--var-primary-color);
  font-size: 20px;
}

.contact-wrapper .contact-form input {
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #3a3a3a;
  background-color: #1f1f1f;
  color: var(--var-primary-color);
  font-size: 16px;
  width: 100%;
  transition: .3s ease;
}

.contact-wrapper .contact-form input:focus, .contact-wrapper .contact-form select:focus, .contact-wrapper .contact-form textarea:focus {
  outline: none;
  border-color: var(--var-secondary-color);
  box-shadow: 0 0 5px var(--var-secondary-color);
}

.contact-wrapper .contact-form textarea {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #3a3a3a;
  background-color: #1f1f1f;
  color: var(--var-primary-color);
  font-size: 16px;
  resize: vertical;
  transition: .3s ease;
  font-family: 'Roboto', sans-serif;
}

.contact-wrapper .contact-form select {
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #3a3a3a;
  background-color: #1f1f1f;
  color: var(--var-primary-color);
  font-size: 16px;
  transition: .3s ease;
  width: 100%;
}

.contact-wrapper .contact-form button {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  border: none;
  background-color: var(--var-secondary-color);
  color: var(--var-primary-color);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
}

.contact-wrapper .contact-form button:hover:not(:disabled) {
  background-color: rgb(86, 89, 227);
  transform: translateY(-2px);
}

.contact-wrapper .contact-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.contact-wrapper .contact-form button .btn-loader {
  display: flex;
  align-items: center;
}

.contact-wrapper .contact-form button .btn-loader svg {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Form validation styles */
.contact-wrapper .contact-form .error-message {
  color: #ff4757;
  font-size: 14px;
  margin-top: 0.25rem;
  display: none;
  animation: fadeIn 0.3s ease;
}

.contact-wrapper .contact-form input.error,
.contact-wrapper .contact-form select.error,
.contact-wrapper .contact-form textarea.error {
  border-color: #ff4757;
  box-shadow: 0 0 5px rgba(255, 71, 87, 0.3);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Toast notification styles */
#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  min-width: 300px;
  max-width: 500px;
  background: #1f1f1f;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid #333;
  transform: translateX(400px);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.toast.show {
  transform: translateX(0);
}

.toast.hide {
  transform: translateX(400px);
  opacity: 0;
}

.toast-success {
  border-left: 4px solid #2ed573;
}

.toast-error {
  border-left: 4px solid #ff4757;
}

.toast-content {
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.toast-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.toast-success .toast-icon {
  color: #2ed573;
}

.toast-error .toast-icon {
  color: #ff4757;
}

.toast-message {
  color: var(--var-primary-color);
  font-size: 14px;
  line-height: 1.4;
  flex: 1;
}

.toast-close {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.2s ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--var-primary-color);
}

.toast-progress {
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--var-secondary-color) 50%,
    transparent 100%
  );
  animation: progress 5s linear forwards;
}

.toast-success .toast-progress {
  background: linear-gradient(
    90deg,
    transparent 0%,
    #2ed573 50%,
    transparent 100%
  );
}

.toast-error .toast-progress {
  background: linear-gradient(
    90deg,
    transparent 0%,
    #ff4757 50%,
    transparent 100%
  );
}

@keyframes progress {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

/* Mobile responsiveness for toast */
@media (max-width: 768px) {
  #toast-container {
    top: 10px;
    right: 10px;
    left: 10px;
  }

  .toast {
    min-width: auto;
    max-width: none;
    transform: translateY(-100px);
  }

  .toast.show {
    transform: translateY(0);
  }

  .toast.hide {
    transform: translateY(-100px);
  }
}