.experience-item {
  display: flex;
  gap: 32px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  padding: 48px 0;
}
.experience-item::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 0;
  width: 100%;
  transition: 0.3s ease-in-out;
  background-color: var(--Primary);
}
.experience-item .date {
  white-space: nowrap;
  width: 200px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .experience-item .date {
    width: 100px;
  }
}
.experience-item .content {
  position: relative;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
  padding-left: 32px;
  border-left: 1px solid var(--Line);
}
.experience-item .content .title {
  margin-bottom: 8px;
}
.experience-item .date,
.experience-item .title,
.experience-item p {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.experience-item:hover {
  padding-left: 32px !important;
}
.experience-item:hover .date,
.experience-item:hover .title,
.experience-item:hover p {
  color: var(--Secondary);
}
.experience-item:hover .content {
  border-color: rgba(8, 8, 7, 0.1019607843);
}
.experience-item:hover::after {
  height: 100%;
}
@media (max-width: 575px) {
  .experience-item {
    gap: 12px;
  }
  .experience-item .content {
    padding-left: 18px;
  }
}

.box-contact {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background-image: url(../ss.avif);
  background-size: cover;
  background-repeat: no-repeat;
}
.box-contact .content-inner {
  display: flex;
  padding: 64px;
}
@media (max-width: 1199px) {
  .box-contact .content-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 991px) {
  .box-contact .content-inner {
    flex-direction: column;
    gap: 40px;
  }
  .box-contact .content-inner .form-contact {
    order: 1;
  }
}
@media (max-width: 767px) {
  .box-contact .content-inner {
    padding: 34px 15px;
  }
}
@media (min-width: 992px) {
  .box-contact .form-contact {
    max-width: 508px;
  }
}
.box-contact .thumbs img {
  min-height: 843px;
}
.box-contact .content {
  margin-left: 77px;
}
@media (max-width: 1199px) {
  .box-contact .content {
    margin-left: 40px;
  }
}
@media (max-width: 991px) {
  .box-contact .content {
    margin-left: 0;
  }
}
.box-contact .content .title {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .box-contact .content .title {
    margin-bottom: 24px;
  }
}
.box-contact .description {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .box-contact .description {
    margin-bottom: 40px;
  }
}
@media (min-width: 1200px) {
  .box-contact .description {
    margin-bottom: 81px;
    max-width: 448px;
  }
}
.box-contact .phone i {
  font-size: 22px;
}
.box-contact .number {
  font-size: 50px;
  line-height: 65px;
}

.service-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--Line);
}
.service-item .category {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 7px;
  max-width: 300px;
}
.service-item .category a {
  padding: 7px 16px;
  border: 1px solid var(--Line);
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.05);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.service-item .category a:hover {
  background-color: var(--Primary);
  color: var(--Secondary);
}
.service-item .box-left {
  flex-direction: column;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.service-item .box-right {
  display: flex;
  justify-content: end;
  align-items: end;
  gap: 36px;
}
.service-item .box-right .number {
  font-size: clamp(75px, 11vw, 200px);
  line-height: clamp(83px, 9vw, 144px);
  color: transparent;
  -webkit-text-stroke: 1px rgb(57, 57, 57);
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.service-item .box-right .img-style {
  border-radius: 32px;
  overflow: hidden;
  max-width: 448px;
}
.service-item:hover .tf-btn-2 {
  background-color: var(--Primary);
}
.service-item:hover .tf-btn-2 span,
.service-item:hover .tf-btn-2 i {
  color: var(--Secondary);
}
.service-item:hover .box-right .number {
  color: var(--Primary);
  -webkit-text-stroke: unset;
}
@media (max-width: 767px) {
  .service-item {
    padding-bottom: 40px;
    flex-direction: column;
    gap: 30px;
  }
  .service-item .box-left {
    order: 1;
  }
}
.service-item.style-2 {
  justify-content: start;
  align-items: center;
  gap: 32px;
  position: relative;
  padding: 8px 32px;
  flex-direction: row;
}
.service-item.style-2 .number {
  font-size: clamp(56px, 4.6vw, 88px);
  line-height: clamp(66px, 6vw, 114px);
  width: 110px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .service-item.style-2 .number {
    width: 70px;
  }
}
.service-item.style-2 .content {
  position: relative;
  z-index: 1;
  padding-left: 32px;
  border-left: 1px solid var(--Line);
}
.service-item.style-2 .content .title {
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
@media (max-width: 767px) {
  .service-item.style-2 .content {
    padding-left: 0;
  }
}
.service-item.style-2 .bg-img {
  position: absolute;
  inset: 0;
}
.service-item.style-2 .bg-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .service-item.style-2 {
    padding: 8px 15px;
  }
}

.work-item {
  display: grid;
}
.work-item .img-style {
  width: 100%;
}
.work-item .img-style img {
  width: 100%;
  object-fit: cover;
}
.work-item .content {
  padding: 16px 24px 14px;
  border: 1px solid var(--Line);
  background-color: rgba(255, 255, 255, 0.0509803922);
}
@media (max-width: 767px) {
  .work-item .content {
    padding: 16px 15px 14px;
  }
}
.work-item .list {
  display: flex;
}
.work-item .list li {
  color: var(--White);
}
.work-item .list li:first-child {
  color: var(--Primary);
  text-transform: uppercase;
}
.work-item .list li:not(:last-child) {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 12px;
}
.work-item .list li:not(:last-child)::after {
  content: "";
  position: relative;
  height: 3px;
  width: 3px;
  background-color: var(--White);
  border-radius: 50%;
}

.project-item {
  display: grid;
  gap: 16px;
}
.project-item .img-style {
  border-radius: 32px;
  overflow: hidden;
}
.project-item .content {
  padding: 24px 32px;
  background: rgba(36, 36, 36, 0.5);
  backdrop-filter: blur(20px);
  border-radius: 32px;
}
.project-item .list {
  display: flex;
}
.project-item .list li:not(:last-child) {
  margin-right: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.project-item .list li:not(:last-child)::after {
  content: "";
  position: relative;
  width: 4px;
  height: 4px;
  background-color: var(--White);
  border-radius: 50%;
}
.project-item .list li:not(:first-child) {
  color: var(--White);
}
.project-item .list li:first-child {
  color: var(--Primary);
}

.pricing-item {
  position: relative;
  padding: 30px;
  border: 1px solid var(--Line);
}
.pricing-item .title,
.pricing-item .sub {
  font-size: 30px;
  line-height: 39px;
}
.pricing-item .title-wrap {
  margin-bottom: 34px;
}
.pricing-item .wrap-price {
  color: var(--White);
  display: flex;
  align-items: end;
  gap: 10px;
  margin-bottom: 42px;
}
.pricing-item .price {
  font-size: 70px;
  line-height: 70px;
}
.pricing-item .list {
  margin-bottom: 32px;
}
.pricing-item .list li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-item .list li:not(:last-child) {
  margin-bottom: 13px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--Line);
}
.pricing-item .list i {
  font-size: 20px;
  color: var(--Primary);
}
.pricing-item .tag-recommend {
  position: absolute;
  color: var(--Secondary);
  font-size: 12px;
  line-height: 17px;
  width: max-content;
  top: 20px;
  right: -32px;
  transform: rotate(45deg);
}
.pricing-item .tag-recommend .wrap {
  padding: 4px 26px;
  width: 100%;
  background-color: var(--Primary);
  clip-path: polygon(20% 0%, 80% 0%, 98% 100%, 0 113%);
}
.pricing-item .tag-recommend .after,
.pricing-item .tag-recommend .before {
  position: absolute;
  background: #687c00;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  width: 6px;
  height: 4px;
  display: block;
  transform: rotate(-180deg);
  bottom: -4px;
}
.pricing-item .tag-recommend .before {
  left: 2px;
}
.pricing-item .tag-recommend .after {
  right: 2px;
}
.pricing-item .tf-btn {
  height: 56px;
}
@media (max-width: 767px) {
  .pricing-item .tf-btn {
    height: 40px;
  }
}
@media (max-width: 767px) {
  .pricing-item {
    padding: 24px 15px;
  }
}

.wrap-banner .marquee-item {
  margin-left: 64px;
}
.wrap-banner .text {
  font-size: 56px;
  line-height: 73px;
}

.wrap-banner-2 .marquee-item {
  width: 192.2px;
  height: 116px;
  border: 1px solid rgb(32, 32, 31);
  border-right: none;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.counter-item.style-default .counter {
  display: flex;
  color: var(--Primary);
}
.counter-item.style-default .sub-counter {
  font-size: 46px;
  line-height: 56px;
}
.counter-item.style-default .content {
  padding-top: 26px;
  border-top: 1px solid var(--Line);
  margin-top: 40px;
}
@media (max-width: 767px) {
  .counter-item.style-default .content {
    padding-top: 18px;
    margin-top: 14px;
  }
  .counter-item.style-default .title {
    margin-bottom: 4px;
  }
}
.counter-item.style-2 {
  border: 1px solid var(--Line);
  overflow: hidden;
  position: relative;
  padding: 32px 32px 21px;
}
.counter-item.style-2::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 125px;
  left: -8px;
  top: calc(50% - 62.5px + 0.5px);
  background: #d1f801;
  filter: blur(30px);
}
.counter-item.style-2 .counter {
  display: flex;
  margin-bottom: 32px;
  background: linear-gradient(180deg, #ffffff 0%, #d1f801 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.counter-item.style-2 .sub-counter {
  font-size: 46px;
  line-height: 56px;
}
.counter-item.style-2 .sub-title {
  width: 142px;
}
.counter-item.style-3 .counter {
  display: flex;
  color: var(--White);
  margin-bottom: 20px;
}
.counter-item.style-3 .sub-counter {
  font-size: 48px;
  line-height: 58px;
}

.preloader {
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999999;
  --preloader-clip: 0;
  clip-path: inset(0 0 0 var(--preloader-clip));
}
.preloader span {
  font-size: 80px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  overflow-x: hidden;
}
.preloader .preloader-gutters {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
}
.preloader .preloader-gutters .bar {
  width: 12.5%;
  height: 100%;
  background: transparent;
  position: relative;
}
.preloader .preloader-gutters .bar .inner-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: black;
}
.preloader .preloader-overlay {
  background-color: var(--White);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  transform: translateX(-100%);
  opacity: 0.2;
}
.preloader .site-name {
  background-color: red;
  width: 100%;
  height: 100%;
  text-align: center;
  align-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.preloader .site-name span {
  font-size: 80px;
}

@media only screen and (max-width: 767px) {
  .preloader .site-name span {
    font-size: 40px;
  }
}
/*------------ sections ---------------- */
/* ---------------------------------------------------------
    * Name: 
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Reset css styles

    * Components

    * section

    * dashboard

    * Responsive
 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
.page-title {
  margin-bottom: 219px;
  margin-top: -115px;
}
.page-title .wrap-partner-infinity {
  margin-top: 168px;
}
@media (max-width: 991px) {
  .page-title {
    margin-bottom: 120px;
  }
}
.page-title .infiniteslide {
  gap: 52.49px;
}

.wrap-partner-infinity .marquee-1 {
  transform: rotate(2.4deg);
  position: relative;
  z-index: 1;
  margin-bottom: -58px;
}
@media (max-width: 767px) {
  .wrap-partner-infinity .marquee-1 {
    transform: rotate(7.4deg);
    position: relative;
    z-index: 1;
    margin-bottom: -40px;
  }
}
.wrap-partner-infinity .marquee-2 {
  transform: rotate(-5deg);
}
@media (max-width: 767px) {
  .wrap-partner-infinity {
    margin-top: 120px;
  }
}
.wrap-partner-infinity .infiniteslide {
  gap: 52.49px;
}

.hero-banner {
  padding-bottom: 174px;
  position: relative;
}
.hero-banner .hero-title {
  font-size: clamp(64px, 11vw, 175px);
  line-height: clamp(52px, 8.8vw, 140px);
}
.hero-banner .hero-title-2 {
  font-size: clamp(45px, 10vw, 160px);
  line-height: clamp(40px, 8vw, 128px);
}
.hero-banner .sub {
  font-size: clamp(18px, 4vw, 36px);
  line-height: clamp(20px, 3vw, 28px);
}
.hero-banner .desc {
  margin-bottom: 32px;
  padding-left: 2px;
}
@media (min-width: 768px) {
  .hero-banner .desc {
    max-width: 307px;
  }
}
.hero-banner .hero-title {
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.hero-banner .hero-title .item {
  padding: 12px 24px;
  border-radius: 999px;
  background-color: var(--Primary);
  font-weight: 400;
  font-size: clamp(16px, 2.5vw, 24px);
  line-height: clamp(20px, 2.5vw, 24px);
  color: var(--Black);
  position: absolute;
  right: 0;
  transform: rotate(9.69deg);
  bottom: 0;
}
@media (min-width: 1200px) {
  .hero-banner .hero-title .item {
    top: 15%;
    right: 117px;
    transform: translateY(-50%) rotate(9.69deg);
    bottom: unset;
  }
}
.hero-banner .hero-title-2 {
  margin-bottom: 15px;
}
.hero-banner .image img {
  width: 100%;
  min-height: 700px;
  object-fit: cover;
}
.hero-banner .content-wrap {
  position: absolute;
  bottom: 177px;
  left: 0;
  right: 0;
  z-index: 5;
}
@media (max-width: 767px) {
  .hero-banner .content-wrap {
    bottom: 130px;
  }
}
.hero-banner .content-wrap-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
}
.hero-banner .box-title-2 {
  margin-left: auto;
  width: max-content;
}
.hero-banner .btn_wrapper {
  position: absolute;
  right: 0;
  top: 40.1%;
  transform: translateY(-50%);
  z-index: 6;
}
.hero-banner .btn-view-all {
  width: 167px;
  height: 167px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1019607843);
  border-radius: 50%;
  flex-direction: column;
  z-index: 4;
}
.hero-banner .btn-view-all .text {
  margin-bottom: 8px;
  z-index: 2;
  position: relative;
}
.hero-banner .btn-view-all i {
  font-size: 32px;
  color: var(--White);
}
.hero-banner .btn-view-all .text,
.hero-banner .btn-view-all i {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hero-banner .btn-view-all:hover .text,
.hero-banner .btn-view-all:hover i {
  color: var(--Secondary);
}
.hero-banner .tf-btn {
  padding: 0 49px;
  padding-right: 53px;
}
.hero-banner .tf-btn .btn-text {
  margin-left: -17px;
}
@media (min-width: 1200px) {
  .hero-banner .box-title-2 {
    margin-right: 24px;
  }
}
@media (max-width: 767px) {
  .hero-banner {
    padding-bottom: 0;
  }
  .hero-banner .content-wrap-2,
  .hero-banner .content-wrap {
    padding-bottom: 20px;
    z-index: 2;
  }
  .hero-banner .btn-view-all {
    width: 120px;
    height: 120px;
  }
  .hero-banner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    pointer-events: none;
    z-index: 0;
  }
}

.text-clip {
  color: transparent;
  -webkit-text-stroke: 1px white;
}

.banner-image-text .content-image {
  border-radius: 32px;
  overflow: hidden;
  margin-bottom: -247px;
  position: relative;
  z-index: 1;
}
.banner-image-text .content-image img {
  width: 100%;
  object-fit: cover;
  min-height: 600px;
}
.banner-image-text .content-text {
  padding-left: 80px;
  padding-right: 80px;
  position: relative;
  z-index: 2;
}
.banner-image-text .box-author {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
  padding: 16px;
  border-radius: 32px;
  background-color: #080807;
  margin-right: 45px;
  padding-right: 73px;
}
@media (max-width: 991px) {
  .banner-image-text .box-author {
    margin-right: 15px;
  }
}
@media (max-width: 767px) {
  .banner-image-text .box-author {
    padding: 12px;
  }
}
.banner-image-text .author_avatar {
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .banner-image-text .author_avatar {
    width: 54px;
  }
}
.banner-image-text .infor__name {
  margin-bottom: 3px;
}
.banner-image-text .box-text {
  padding: 42px 43px 0;
  border-radius: 32px;
}
.banner-image-text .reveal-type {
  letter-spacing: -0.2px;
}
@media (max-width: 1440px) {
  .banner-image-text .content-text {
    padding-left: 0;
    padding-right: 0;
  }
  .banner-image-text .box-text {
    padding: 30px 72px;
  }
}
@media (max-width: 767px) {
  .banner-image-text .box-text {
    padding: 30px 20px;
  }
}

.banner-image .parallaxie {
  height: 820px;
}
@media (max-width: 767px) {
  .banner-image .parallaxie {
    height: 520px;
  }
}
.banner-image div {
  border-radius: 24px;
  overflow: hidden;
}
.banner-image img {
  width: 100%;
  object-fit: cover;
  min-height: 350px;
}

.section-portfoli-1 .wrap-portfolio {
  column-count: 2;
  column-gap: 48px;
  row-gap: 80px;
}
@media (max-width: 991px) {
  .section-portfoli-1 .wrap-portfolio {
    column-gap: 24px;
  }
}
@media (max-width: 767px) {
  .section-portfoli-1 .wrap-portfolio {
    column-gap: 15px;
  }
}
@media (max-width: 575px) {
  .section-portfoli-1 .wrap-portfolio {
    column-count: 1;
    row-gap: 40px;
  }
}
.section-portfoli-1 .portfolio-item:not(:last-child) {
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .section-portfoli-1 .portfolio-item:not(:last-child) {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .section-portfoli-1 .portfolio-item:not(:last-child) {
    margin-bottom: 40px;
  }
}

.section-experience .experience-item:not(:last-child) {
  border-bottom: 1px solid var(--Line);
}

@media (min-width: 992px) {
  .section-work .tf-grid-layout {
    gap: 48px;
  }
}

.section-about .tf-grid-layout {
  gap: 46px;
}
@media (max-width: 767px) {
  .section-about .tf-grid-layout {
    gap: 24px;
  }
}

.section-about-2 .box-about {
  margin-top: 78px;
}
@media (min-width: 1025px) {
  .section-about-2 .box-about {
    padding-left: 94px;
  }
}
.section-about-2 .scroll-effect {
  margin-bottom: 33px;
}

.section-about-3 {
  padding-top: 72px;
}
@media (max-width: 991px) {
  .section-about-3 {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .section-about-3 {
    padding-top: 30px;
  }
}
.section-about-3 .tag-title {
  margin-bottom: 41px;
}
.section-about-3 .heading-title .title {
  font-size: clamp(87px, 9.2vw, 175.85px);
  line-height: clamp(98px, 7.3vw, 140px);
  color: var(--White);
  margin-bottom: 21px;
}
@media (max-width: 767px) {
  .section-about-3 .heading-title .title .split-line {
    display: flex;
    flex-direction: column;
  }
}
.section-about-3 .heading-title .title img {
  width: 100%;
  order: -1;
  object-fit: cover;
}
@media (min-width: 768px) {
  .section-about-3 .heading-title .title img {
    order: 0;
    margin-top: -30px;
    margin-left: 8.4%;
    width: 36%;
  }
}
.section-about-3 .content .title {
  margin-bottom: 33px;
}
.section-about-3 .content .text {
  margin-bottom: 55px;
}
@media (min-width: 1200px) {
  .section-about-3 .content .text {
    line-height: 45px;
  }
}
.section-about-3 .desc {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .section-about-3 .desc {
    max-width: 307px;
  }
}
.section-about-3 .tf-btn-3 i {
  font-size: 24px;
}

.section-services .wrap-services {
  display: grid;
  gap: 80px;
}
@media (max-width: 767px) {
  .section-services .wrap-services {
    gap: 40px;
  }
}

@media (min-width: 1200px) {
  .section-pricing .tf-grid-layout {
    gap: 48px;
  }
}

.section-portfolio .tf-grid-layout {
  gap: 5px 8px;
}

@media (max-width: 767px) {
  .section-project .tf-grid-layout {
    gap: 40px;
  }
}

.section-contact .parallax-img {
  background-repeat: no-repeat;
  height: 843px;
}

    .hero {
    background: linear-gradient(135deg, #0f0f0f, #1c1c1c);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,0,0,0.15), transparent);
    top: -200px;
    left: -200px;
    z-index: 0;
}

.hero-left {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.hero h1 span {
    color: #ff2e2e;
}

.hero p {
    margin-top: 25px;
    color: #bbb;
    font-size: 18px;
    line-height: 1.6;
}

.hero-buttons {
    margin-top: 35px;
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #ff2e2e;
    padding: 12px 30px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #e60000;
}

.btn-outline {
    border: 1px solid #fff;
    padding: 12px 30px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

.hero-right {
    text-align: center;
}

.hero-right img {
    max-width: 100%;
    border-radius: 20px;
    transform: rotate(-5deg);
    transition: 0.4s ease;
}

.hero-right img:hover {
    transform: rotate(0deg) scale(1.05);
}

/*# sourceMappingURL=styles.css.map */


.efexChatWrapper_x91 {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}


/* Toggle Buton */
.efexChatToggle_x91 {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg,#25D366,#128C7E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
    transition: all 0.4s ease;
    animation: pulseGlow 2.5s infinite;
}

.efexChatToggle_x91:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(37,211,102,0.6);
}

/* Chat Box */
.efexChatBox_x91 {
    width: 340px;
    backdrop-filter: blur(20px);
    background: rgba(255,255,255,0.85);
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    overflow: hidden;
    position: absolute;
    bottom: 85px;
    right: 0;
    transform: translateY(40px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.efexChatBox_x91.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

/* Header */
.efexChatHeader_x91 {
    background: linear-gradient(135deg,#128C7E,#075E54);
    color: white;
    padding: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
}

.efexChatHeader_x91 button {
    background: rgba(255,255,255,0.2);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.efexChatHeader_x91 button:hover {
    background: rgba(255,255,255,0.4);
}

/* Body */
.efexChatBody_x91 {
    padding: 18px;
}

/* Sorular */
.efexChatQuestion_x91 {
    background: white;
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.efexChatQuestion_x91:hover {
    background: #f0fff6;
    transform: translateX(6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Pulse animasyonu */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Mobil */
@media(max-width:480px){
    .efexChatBox_x91{
        width: 90vw;
        right: 5vw;
    }
}
.efexPhoneWrapper_x91 {
    position: fixed; 
    bottom: 105px; /* 25px + buton boyu + boşluk */
    right: 25px;
    z-index: 9999;
}

.efexPhoneButton_x91 {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.efexPhoneButton_x91:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255,0,0,0.5);
}


.eo-hero-v2 {
    min-height: 100vh;
    background: radial-gradient(circle at 80% 20%, rgba(255,0,0,0.15), transparent 40%),
                linear-gradient(135deg, #0b0b0b, #111);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.eo-hero-grid {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.eo-hero-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255,0,0,0.15);
    border: 1px solid rgba(255,0,0,0.4);
    border-radius: 30px;
    color: #ff3b3b;
    font-size: 13px;
    margin-bottom: 20px;
    backdrop-filter: blur(6px);
}

.eo-hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.eo-hero-accent {
    color: #ff2e2e;
    text-shadow: 0 0 20px rgba(255,0,0,0.6);
}

.eo-hero-desc {
    color: #aaa;
    font-size: 16px;
    max-width: 500px;
    margin-bottom: 35px;
}

.eo-hero-buttons {
    display: flex;
    gap: 15px;
}

.eo-btn-primary {
    padding: 12px 28px;
    background: linear-gradient(90deg,#ff1a1a,#ff3b3b);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 0 25px rgba(255,0,0,0.4);
}

.eo-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(255,0,0,0.7);
}

.eo-btn-outline {
    padding: 12px 28px;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
}

.eo-btn-outline:hover {
    background: rgba(255,255,255,0.05);
}

.eo-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.eo-neon-ring {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: conic-gradient(#ff1a1a, #ff4d4d, #ff1a1a);
    filter: blur(25px);
    animation: eo-rotate-ring 8s linear infinite;
    opacity: 0.6;
}

.eo-floating-usb {
    width: 600px;
    position: relative;
    z-index: 2;
    animation: eo-float 4s ease-in-out infinite;
}

@keyframes eo-float {
    0%,100% { transform: translateY(0px); }
    50% { transform: translateY(-18px); }
}

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

   /* Sadece mobil */
   @media (min-width:768px){
   .efeNav-wrapper{display:none;}
   .efeXNav{display:none;}
   }
   @media (max-width:768px){
   .efexChatToggle_x91{display: none;}
   .efexPhoneWrapper_x91{display: none;}
   .efeXNav{display:flex;}

   }     

   .efeXNav{
   position:fixed;
   bottom:0;
   left:0;
   width:100%;
   height:85px;
   background:rgba(12,12,12,0.92);
   backdrop-filter:blur(20px);
   justify-content:space-around;
   align-items:center;
   box-shadow:0 -5px 40px rgba(255,0,0,0.15);
   z-index:9999;
   transition:all .35s ease;
   }
   /* Scroll küçülme */
   .efeXNav.shrink{
   height:65px;
   }
   /* Menü item */
   .efeXNav-item{
   text-decoration:none;
   color:#777;
   font-size:11px;
   display:flex;
   flex-direction:column;
   align-items:center;
   gap:4px;
   transition:.3s;
   }
   .efeXNav-icon{
   font-size:22px;
   transition:.4s cubic-bezier(.68,-0.55,.27,1.55);
   }
   /* Aktif animasyon */
   .efeXNav-active{
   color:#ff2d2d;
   }
   .efeXNav-active .efeXNav-icon{
   transform:scale(1.2);
   text-shadow:0 0 15px rgba(255,0,0,0.9);
   }
   /* ORTA BUTON FULL */
   .efeXNav-center{
   position:relative;
   margin-top:-35px;
   }
   .efeXNav-call{
   width:75px;
   height:75px;
   border-radius:50%;
   background:linear-gradient(145deg,#ff2d2d,#ff0000);
   display:flex;
   align-items:center;
   justify-content:center;
   font-size:26px;
   color:#fff;
   box-shadow:
   0 0 30px rgba(255,0,0,0.8),
   0 10px 30px rgba(0,0,0,0.8);
   animation:efeXPulse 2.5s infinite;
   transition:.2s;
   }
   /* Pulse */
   @keyframes efeXPulse{
   0%{box-shadow:0 0 25px rgba(255,0,0,0.8);}
   50%{box-shadow:0 0 45px rgba(255,0,0,1);}
   100%{box-shadow:0 0 25px rgba(255,0,0,0.8);}
   }
   /* Titreşim */
   .efeXNav-call.vibrate{
   animation:efeXVibrate .3s linear;
   }
   @keyframes efeXVibrate{
   0%{transform:translateX(0);}
   25%{transform:translateX(-3px);}
   50%{transform:translateX(3px);}
   75%{transform:translateX(-3px);}
   100%{transform:translateX(0);}
   }

     .kampanya-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.4s ease;
}

.kampanya-box {
  background: #111;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  width: 400px;
  max-width: 90%;
  position: relative;
  box-shadow: 0 0 40px rgba(255,0,0,0.3);
  border: 1px solid rgba(255,0,0,0.4);
}

.kampanya-img {
  width: 150px;
  margin-bottom: 20px;
}

.kampanya-fiyat {
  font-size: 20px;
  margin: 15px 0;
  color: #fff;
}

.kampanya-fiyat strong {
  color: #ff0000;
  font-size: 28px;
}

.kampanya-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  background: #ff0000;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.kampanya-btn:hover {
  background: #cc0000;
}

.kampanya-kapat {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

 .support-section {
         background: #000;
         padding: 120px 0;
         color: #fff;
         }
         .support-container {
         width: 90%;
         max-width: 1200px;
         margin: auto;
         }
         .support-header {
         text-align: center;
         margin-bottom: 80px;
         }
         .support-header h1 {
         font-size: 52px;
         font-weight: 800;
         background: linear-gradient(90deg, #fff, #ff2d2d);
         -webkit-background-clip: text;
         -webkit-text-fill-color: transparent;
         }
         .support-header p {
         color: #888;
         margin-top: 15px;
         }
       
         /* SOLUTION AREA */
         .solution-area h2 {
         font-size: 34px;
         margin-bottom: 40px;
         }
         .solution-item {
         background: #0f0f0f;
         border-radius: 15px;
         margin-bottom: 20px;
         border: 1px solid rgba(255,0,0,0.1);
         overflow: hidden;
         transition: 0.3s;
         }
         .solution-item:hover {
         border: 1px solid rgba(255,0,0,0.4);
         }
         .solution-question {
         padding: 20px;
         display: flex;
         justify-content: space-between;
         cursor: pointer;
         font-weight: 600;
         }
         .solution-answer {
         max-height: 0;
         overflow: hidden;
         transition: max-height 0.4s ease;
         padding: 0 20px;
         }
         .solution-answer p {
         padding: 15px 0;
         color: #bbb;
         }
         .solution-item.active .solution-answer {
         max-height: 500px;
         }
         .solution-icon {
         color: #ff2d2d;
         transition: 0.3s;
         }
         .solution-item.active .solution-icon {
         transform: rotate(45deg);
         }

         .download-section {
    background: #000;
    padding: 240px 0;
    color: #fff;
}

.download-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.download-header {
    text-align: center;
    margin-bottom: 50px;
}

.download-header h2 {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(90deg, #fff, #ff2d2d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 4 KOLON GRID */
.download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Kart */
.download-card {
    background: #0f0f0f;
    border-radius: 18px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 0, 0, 0.1);
    transition: 0.3s ease;
}

.download-card:hover {
    border: 1px solid rgba(255, 0, 0, 0.5);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.25);
    transform: translateY(-4px);
}

.app-logo img {
    height: 45px;
    width: auto;
}

.app-info {
    flex: 1;
}
.app-info p{
    color: #7d7b7b;
}

.app-info h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.download-btn {
    font-size: 13px;
    padding: 6px 14px;
    background: #ff2d2d;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    transition: 0.3s ease;
}

.download-btn:hover {
    background: #ff0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}

/* Responsive */
@media (max-width: 1024px) {
    .download-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .download-grid {
        grid-template-columns: 1fr;
    }
}

  .support-section {
         background: #000;
         padding: 120px 0;
         color: #fff;
         }
         .support-container {
         width: 90%;
         max-width: 1200px;
         margin: auto;
         }
         .support-header {
         text-align: center;
         margin-bottom: 80px;
         }
         .support-header h1 {
         font-size: 52px;
         font-weight: 800;
         background: linear-gradient(90deg, #fff, #ff2d2d);
         -webkit-background-clip: text;
         -webkit-text-fill-color: transparent;
         }
         .support-header p {
         color: #888;
         margin-top: 15px;
         }
       
         /* SOLUTION AREA */
         .solution-area h2 {
         font-size: 34px;
         margin-bottom: 40px;
         }
         .solution-item {
         background: #0f0f0f;
         border-radius: 15px;
         margin-bottom: 20px;
         border: 1px solid rgba(255,0,0,0.1);
         overflow: hidden;
         transition: 0.3s;
         }
         .solution-item:hover {
         border: 1px solid rgba(255,0,0,0.4);
         }
         .solution-question {
         padding: 20px;
         display: flex;
         justify-content: space-between;
         cursor: pointer;
         font-weight: 600;
         }
         .solution-answer {
         max-height: 0;
         overflow: hidden;
         transition: max-height 0.4s ease;
         padding: 0 20px;
         }
         .solution-answer p {
         padding: 15px 0;
         color: #bbb;
         }
         .solution-item.active .solution-answer {
         max-height: 500px;
         }
         .solution-icon {
         color: #ff2d2d;
         transition: 0.3s;
         }
         .solution-item.active .solution-icon {
         transform: rotate(45deg);
         }

         .download-section {
    background: #000;
    padding: 240px 0;
    color: #fff;
}

.download-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.download-header {
    text-align: center;
    margin-bottom: 50px;
}

.download-header h2 {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(90deg, #fff, #ff2d2d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 4 KOLON GRID */
.download-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Kart */
.download-card {
    background: #0f0f0f;
    border-radius: 18px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 0, 0, 0.1);
    transition: 0.3s ease;
}

.download-card:hover {
    border: 1px solid rgba(255, 0, 0, 0.5);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.25);
    transform: translateY(-4px);
}

.app-logo img {
    height: 45px;
    width: auto;
}

.app-info {
    flex: 1;
}
.app-info p{
    color: #7d7b7b;
}

.app-info h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.download-btn {
    font-size: 13px;
    padding: 6px 14px;
    background: #ff2d2d;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    transition: 0.3s ease;
}

.download-btn:hover {
    background: #ff0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}

/* Responsive */
@media (max-width: 1024px) {
    .download-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .download-grid {
        grid-template-columns: 1fr;
    }
}
.efexPriceCard_x91 {
    position: relative;
    overflow: hidden;
}

.efexPriceBadge_x91 {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff0000, #ff4d4d);
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    padding: 12px 18px 8px 18px;
    border-radius: 14px;
    z-index: 5;
    box-shadow: 0 0 20px rgba(255,0,0,0.6);
    animation: efexPulse_x91 2s infinite;
    text-align: center;
    line-height: 1.1;
}

/* KAMPANYA yazısı */
.efexCampaignText_x91 {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 4px;
    opacity: 0.9;
    text-align: justify;
}

/* Hafif pulse animasyon */
@keyframes efexPulse_x91 {
    0% { box-shadow: 0 0 10px rgba(255,0,0,0.5); }
    50% { box-shadow: 0 0 30px rgba(255,0,0,0.9); }
    100% { box-shadow: 0 0 10px rgba(255,0,0,0.5); }
}
.sr-only {
   position: absolute;
   width: 1px;
   height: 1px;
   padding: 0;
   margin: -1px;
   overflow: hidden;
   clip: rect(0,0,0,0);
   border: 0;
}