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

html {
  margin: 0;
  padding: 0;
}

body {
  background: url(../Images/Swatch.png) no-repeat top left, linear-gradient(135deg, #040722 0%, #151F6D 50%, #040722 100%);
  background-size: cover, cover;
  background-attachment: fixed, fixed;
  background-position: top left, center;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.navbar-hero-wrapper {
  background-image: url(../Images/Frame\ \ lines.png), url(../Images/Frame\ \ dots.png);
}

.custom-navbar {
  background: rgba(23, 25, 28, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 8px 0;
  min-height: 80px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  width: 75%;
  margin: 20px auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.custom-navbar .container {
  padding: 0 30px;
  max-width: 100%;
}
.custom-navbar .navbar-brand .navbar-logo {
  height: 60px;
  width: auto;
}
.custom-navbar .navbar-nav .nav-link {
  color: #ffffff !important;
  font-weight: 300;
  font-size: 16px;
  margin: 0 15px;
  padding: 10px 0 !important;
  position: relative;
  transition: all 0.3s ease;
}
.custom-navbar .navbar-nav .nav-link:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}
.custom-navbar .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: #ffffff;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.custom-navbar .navbar-nav .nav-link:hover::after {
  width: 100%;
}
.custom-navbar .navbar-actions .btn-download {
  background: #D353EA;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  outline: none !important;
  box-shadow: none !important;
}
.custom-navbar .navbar-actions .btn-download:focus {
  outline: none !important;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2) !important;
  border: 2px solid rgba(255, 255, 255, 0.6) !important;
}
.custom-navbar .navbar-actions .btn-download:active {
  outline: none !important;
}
.custom-navbar .navbar-actions .btn-download:focus-visible {
  outline: none !important;
}
.custom-navbar .navbar-actions .btn-download:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}
.custom-navbar .navbar-actions .btn-language {
  background: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.custom-navbar .navbar-actions .btn-language:focus {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}
.custom-navbar .navbar-actions .btn-language:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}
.custom-navbar .navbar-actions .btn-language:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}
.custom-navbar .navbar-actions .btn-language .language-text {
  margin: 0 5px;
  font-weight: 600;
}
.custom-navbar .custom-toggler {
  border: none;
  padding: 4px 8px;
}
.custom-navbar .custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.custom-navbar .custom-toggler:focus {
  box-shadow: none;
}

body.rtl .custom-navbar .navbar-nav .nav-link {
  margin: 0 15px;
}
body.rtl .custom-navbar .navbar-actions .btn-download {
  margin-left: 15px;
  margin-right: 0;
}

@media (max-width: 991px) {
  .custom-navbar {
    width: 90%;
    margin: 15px auto;
    border-radius: 25px;
  }
  .custom-navbar .navbar-collapse {
    background: rgba(23, 25, 28, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    margin-top: 15px;
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  .custom-navbar .navbar-nav {
    margin-bottom: 20px;
  }
  .custom-navbar .navbar-nav .nav-link {
    margin: 5px 0;
    padding: 10px 0 !important;
    text-align: center;
  }
  .custom-navbar .navbar-actions {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .custom-navbar .navbar-actions .btn-download {
    margin: 0;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .custom-navbar {
    width: 95%;
    margin: 10px auto;
    border-radius: 20px;
  }
  .custom-navbar .container {
    padding: 0 20px;
  }
  .custom-navbar .navbar-brand .navbar-logo {
    height: 50px;
  }
}
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.countdown-wrapper {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  padding: 25px 40px;
  display: inline-block;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
  margin-bottom: 40px;
}

.countdown-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.countdown-number {
  color: #3CDBC0;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  font-family: "Inter", sans-serif;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.countdown-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}

.countdown-separator {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  margin: 0 5px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.hero-content .hero-title {
  color: #ffffff;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 25px;
  font-family: "Inter", sans-serif;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}
.hero-content .hero-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.download-buttons {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.download-buttons .download-btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  width: auto;
  min-width: 180px;
}
.download-buttons .download-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.download-buttons .download-btn .download-icon {
  width: 35px;
  height: 35px;
}
.download-buttons .download-btn .btn-text {
  text-align: left;
}
.download-buttons .download-btn .btn-text .btn-subtitle {
  display: block;
  font-size: 11px;
  opacity: 0.8;
  margin-bottom: 2px;
}
.download-buttons .download-btn .btn-text .btn-title {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.phones-gallery {
  position: relative;
  height: 500px;
  width: 100%;
  overflow: hidden;
  margin: 60px auto 0;
}
.phones-gallery .container {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.phones-gallery .phones-slider {
  display: flex;
  gap: 25px;
  animation: slideShow 25s linear infinite;
  height: 100%;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
.phones-gallery .phone-item {
  flex-shrink: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  width: 200px;
  height: 380px;
}
.phones-gallery .phone-item:hover {
  transform: translateY(-5px) scale(1.03);
  z-index: 10;
}
.phones-gallery .phone-item .phone-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 18px;
}

@keyframes slideShow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
body.rtl .download-buttons .download-btn .btn-text {
  text-align: right;
}
body.rtl .phones-gallery .phones-slider {
  animation: slideShowRTL 25s linear infinite;
}

@keyframes slideShowRTL {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}
@media (max-width: 991px) {
  .hero-section {
    padding: 50px 0 60px;
    min-height: 80vh;
  }
  .countdown-wrapper {
    margin-bottom: 30px;
    padding: 20px 30px;
  }
  .countdown-wrapper .countdown-container {
    gap: 15px;
  }
  .countdown-wrapper .countdown-number {
    font-size: 2rem;
  }
  .countdown-wrapper .countdown-text {
    font-size: 10px;
  }
  .countdown-wrapper .countdown-separator {
    font-size: 1.5rem;
  }
  .hero-content .hero-title {
    font-size: 2.2rem;
  }
  .hero-content .hero-description {
    font-size: 0.95rem;
  }
  .download-buttons {
    flex-direction: column;
    gap: 12px;
  }
  .download-buttons .download-btn {
    min-width: 200px;
  }
  .phones-gallery {
    height: 300px;
    margin-top: 40px;
  }
  .phones-gallery .phone-item {
    width: 120px;
    height: 230px;
  }
  .phones-gallery .phone-item:hover {
    transform: translateY(-3px) scale(1.02);
  }
}
@media (max-width: 576px) {
  .hero-section {
    padding: 30px 0 40px;
    min-height: 70vh;
  }
  .countdown-wrapper {
    padding: 15px 25px;
    margin-bottom: 25px;
  }
  .countdown-wrapper .countdown-container {
    gap: 10px;
  }
  .countdown-wrapper .countdown-item {
    min-width: 60px;
  }
  .countdown-wrapper .countdown-number {
    font-size: 1.7rem;
  }
  .countdown-wrapper .countdown-text {
    font-size: 9px;
    margin-top: 5px;
  }
  .countdown-wrapper .countdown-separator {
    font-size: 1.3rem;
    margin: 0 2px;
  }
  .hero-content .hero-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .hero-content .hero-description {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }
  .download-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .download-buttons .download-btn {
    min-width: 250px;
  }
  .phones-gallery {
    height: 220px;
    margin-top: 30px;
  }
  .phones-gallery .phone-item {
    width: 90px;
    height: 170px;
  }
}
.quote-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.quote-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 8px 20px;
  padding-top: 0px;
  margin-bottom: 40px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 2rem;
  border: none;
  border-radius: 500px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background: rgba(23, 25, 28, 0.2);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  box-shadow: 0px 1px 4px rgba(38, 40, 46, 0.37);
  z-index: 1;
  overflow: hidden;
}
.quote-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: inherit;
  background: linear-gradient(to bottom, #6663F6, #17191C);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: -1;
}
.quote-badge span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}

.quote-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px 0;
  margin-top: 0px;
  flex-wrap: nowrap;
  gap: 25px;
}

.quote-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.quote-mark .quote-icon {
  width: 55px;
  height: 55px;
  opacity: 0.9;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 15px rgba(211, 83, 234, 0.4));
}
.quote-mark .quote-icon:hover {
  opacity: 1;
  transform: scale(1.1);
}

.quote-text {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  font-family: "Inter", sans-serif;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  max-width: 900px;
  margin: 0 auto;
  flex: 1;
  min-width: 250px;
  white-space: normal;
}

.quote-logo {
  margin-top: 40px;
}
.quote-logo .logo-icon {
  width: 60px;
  height: 60px;
  opacity: 0.8;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 15px rgba(211, 83, 234, 0.3));
}
.quote-logo .logo-icon:hover {
  opacity: 1;
  transform: scale(1.1);
}

@media (max-width: 991px) {
  .quote-section {
    padding: 80px 0;
  }
  .quote-content {
    flex-direction: row;
    gap: 20px;
    margin: 40px 0;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
  }
  .quote-mark {
    flex-shrink: 0;
  }
  .quote-mark .quote-icon {
    width: 45px;
    height: 45px;
  }
  .quote-text {
    font-size: 1.8rem;
    white-space: normal;
    flex: 1;
    min-width: 200px;
    padding: 0 10px;
  }
  .quote-logo .logo-icon {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 768px) {
  .quote-section {
    padding: 70px 0;
  }
  .quote-content {
    gap: 15px;
    margin: 35px 0;
    flex-wrap: nowrap;
  }
  .quote-mark .quote-icon {
    width: 40px;
    height: 40px;
  }
  .quote-text {
    font-size: 1.6rem;
    min-width: 180px;
    padding: 0 8px;
  }
}
@media (max-width: 576px) {
  .quote-section {
    padding: 60px 0;
  }
  .quote-badge {
    margin-bottom: 30px;
  }
  .quote-badge span {
    font-size: 12px;
  }
  .quote-content {
    margin: 30px 0;
    gap: 12px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
  }
  .quote-mark {
    flex-shrink: 0;
  }
  .quote-mark .quote-icon {
    width: 35px;
    height: 35px;
  }
  .quote-text {
    font-size: 1.4rem;
    padding: 0 5px;
    white-space: normal;
    flex: 1;
    min-width: 160px;
    text-align: center;
    line-height: 1.2;
  }
  .quote-logo {
    margin-top: 30px;
  }
  .quote-logo .logo-icon {
    width: 40px;
    height: 40px;
  }
}
.about-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: url(../Images/stars.png);
  background-position: center;
  background-repeat: no-repeat;
}
.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.about-content:nth-child(even) .about-text {
  order: 2;
}
.about-content:nth-child(even) .about-image {
  order: 1;
}

.about-text {
  color: rgba(255, 255, 255, 0.9);
}
.about-text h3 {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 2rem;
  border: none;
  border-radius: 500px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background: rgba(23, 25, 28, 0.2);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  box-shadow: 0px 1px 4px rgba(38, 40, 46, 0.37);
  z-index: 1;
  overflow: hidden;
}
.about-text h3::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: inherit;
  background: linear-gradient(to bottom, #6663F6, #17191C);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: -1;
}
.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Inter", sans-serif;
  margin-bottom: 15px;
}
.about-text p:last-child {
  margin-bottom: 0;
}

.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.about-image img:hover {
  transform: translateY(-10px);
}

body.rtl .about-section {
  direction: rtl;
}
body.rtl .about-section .about-text {
  text-align: right;
}
body.rtl .about-section .about-text h3 {
  text-align: right;
}
body.rtl .about-section .about-text p {
  text-align: right;
}

@media (max-width: 991px) {
  .about-section {
    padding: 80px 0;
  }
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
  .about-content:nth-child(even) .about-text {
    order: 1;
  }
  .about-content:nth-child(even) .about-image {
    order: 2;
  }
  .about-text {
    text-align: center;
  }
  .about-text h3 {
    font-size: 2rem;
  }
  .about-text p {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .about-section {
    padding: 60px 0;
  }
  .about-section .container {
    padding: 0 15px;
  }
  .about-content {
    gap: 30px;
    margin-bottom: 40px;
  }
  .about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  .about-text p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .about-image img {
    border-radius: 15px;
  }
}
.story-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.03);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.story-section .story-content {
  padding: 0 20px;
}
.story-section .story-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  padding: 8px 20px;
  margin-bottom: 30px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 2rem;
  border: none;
  border-radius: 500px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background: rgba(23, 25, 28, 0.2);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  box-shadow: 0px 1px 4px rgba(38, 40, 46, 0.37);
  z-index: 1;
  overflow: hidden;
}
.story-section .story-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: inherit;
  background: linear-gradient(to bottom, #6663F6, #17191C);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: -1;
}
.story-section .story-badge span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}
.story-section .story-title {
  color: #ffffff;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 40px;
  font-family: "Inter", sans-serif;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.story-section .story-text {
  color: rgba(255, 255, 255, 0.85);
}
.story-section .story-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  font-family: "Inter", sans-serif;
  color: rgba(255, 255, 255, 0.85);
}
.story-section .story-text p:last-child {
  margin-bottom: 0;
}
.story-section .story-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 40px 20px;
}
.story-section .story-logo .logo-container {
  text-align: center;
  position: relative;
}
.story-section .story-logo .logo-container .main-logo {
  width: 300px;
  height: 300px;
  opacity: 0.9;
  transition: all 0.3s ease;
  filter: drop-shadow(0 10px 30px rgba(60, 219, 192, 0.3));
  margin-bottom: 20px;
}
.story-section .story-logo .logo-container .main-logo:hover {
  opacity: 1;
  transform: scale(1.05);
  filter: drop-shadow(0 15px 40px rgba(60, 219, 192, 0.4));
}
.story-section .story-logo .logo-container .logo-text {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #3CDBC0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.rtl .story-section {
  direction: rtl;
}
body.rtl .story-section .story-content {
  text-align: right;
}
body.rtl .story-section .story-badge {
  text-align: right;
}
body.rtl .story-section .story-title {
  text-align: right;
}
body.rtl .story-section .story-text {
  text-align: right;
}
body.rtl .story-section .story-text p {
  text-align: right;
}

@media (max-width: 991px) {
  .story-section {
    padding: 80px 0;
  }
  .story-section .story-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  .story-section .story-text p {
    font-size: 1.05rem;
    margin-bottom: 20px;
  }
  .story-section .story-logo {
    margin-top: 40px;
    padding: 20px;
  }
  .story-section .story-logo .logo-container .main-logo {
    width: 200px;
    height: 200px;
  }
  .story-section .story-logo .logo-container .logo-text {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .story-section {
    padding: 60px 0;
  }
  .story-section .story-content {
    padding: 0 15px;
  }
  .story-section .story-badge {
    margin-bottom: 20px;
  }
  .story-section .story-badge span {
    font-size: 12px;
  }
  .story-section .story-title {
    font-size: 2rem;
    margin-bottom: 25px;
  }
  .story-section .story-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 18px;
  }
  .story-section .story-logo {
    margin-top: 30px;
    padding: 15px;
  }
  .story-section .story-logo .logo-container .main-logo {
    width: 160px;
    height: 160px;
  }
  .story-section .story-logo .logo-container .logo-text {
    font-size: 1.8rem;
  }
}
@media (max-width: 576px) {
  .story-section {
    padding: 50px 0;
  }
  .story-section .story-content {
    padding: 0 10px;
  }
  .story-section .story-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .story-section .story-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  .story-section .story-logo .logo-container .main-logo {
    width: 140px;
    height: 140px;
  }
  .story-section .story-logo .logo-container .logo-text {
    font-size: 1.5rem;
  }
}
.experience-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.experience-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 40%, rgba(60, 219, 192, 0.08) 0%, transparent 50%), radial-gradient(circle at 70% 60%, rgba(211, 83, 234, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.experience-section .container {
  position: relative;
  z-index: 2;
}

.experience-badge {
  display: inline-block;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 10px 25px;
  margin-bottom: 30px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 2rem;
  border: none;
  border-radius: 500px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background: rgba(23, 25, 28, 0.2);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  box-shadow: 0px 1px 4px rgba(38, 40, 46, 0.37);
  z-index: 1;
  overflow: hidden;
  color: #ffffff;
}
.experience-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: inherit;
  background: linear-gradient(to bottom, #6663F6, #17191C);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: -1;
}
.experience-badge span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}

.experience-title {
  color: #ffffff;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 25px;
  font-family: "Inter", sans-serif;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .experience-title {
    font-size: 2.5rem;
  }
}

.experience-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 80px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.experience-analytics {
  position: relative;
  width: 100%;
  max-width: 700px;
  height: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.analytics-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.analytics-item .analytics-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}
.analytics-item .analytics-icon:hover {
  background: rgba(60, 219, 192, 0.2);
  border-color: #3CDBC0;
  color: #3CDBC0;
  transform: scale(1.1);
}
.analytics-item .analytics-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  font-family: "Inter", sans-serif;
  line-height: 1.3;
}

.watch-time {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.clicks-engagement {
  top: 30%;
  left: 5%;
}

.interactions {
  top: 30%;
  right: 5%;
}

.likes {
  bottom: 0;
  left: 25%;
}

.views {
  bottom: 0;
  right: 25%;
}

.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.center-logo .logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.center-logo .play-button {
  position: relative;
}
.center-logo .play-button svg {
  filter: drop-shadow(0 8px 25px rgba(60, 219, 192, 0.4));
  transition: all 0.3s ease;
}
.center-logo .play-button svg:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 12px 35px rgba(60, 219, 192, 0.6));
}
.center-logo .logo-text {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #3CDBC0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.connection-line {
  position: absolute;
  width: 2px;
  background: linear-gradient(to bottom, rgba(60, 219, 192, 0.6), rgba(60, 219, 192, 0.1));
  pointer-events: none;
}

.watch-time .connection-line {
  height: 120px;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}

.clicks-engagement .connection-line {
  width: 180px;
  height: 2px;
  top: 30px;
  right: -180px;
  background: linear-gradient(to right, rgba(60, 219, 192, 0.6), rgba(60, 219, 192, 0.1));
  transform: rotate(25deg);
  transform-origin: left center;
}

.interactions .connection-line {
  width: 180px;
  height: 2px;
  top: 30px;
  left: -180px;
  background: linear-gradient(to left, rgba(60, 219, 192, 0.6), rgba(60, 219, 192, 0.1));
  transform: rotate(-25deg);
  transform-origin: right center;
}

.likes .connection-line {
  height: 120px;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  background: linear-gradient(to bottom, rgba(60, 219, 192, 0.1), rgba(60, 219, 192, 0.6));
}

.views .connection-line {
  height: 120px;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  background: linear-gradient(to bottom, rgba(60, 219, 192, 0.1), rgba(60, 219, 192, 0.6));
}

body.rtl .experience-section {
  direction: rtl;
}
body.rtl .experience-section .experience-badge {
  text-align: right;
}
body.rtl .experience-section .experience-title,
body.rtl .experience-section .experience-description {
  text-align: right;
}

@media (max-width: 991px) {
  .experience-section {
    padding: 80px 0;
  }
  .experience-analytics {
    height: 400px;
    max-width: 500px;
  }
  .analytics-item .analytics-icon {
    width: 50px;
    height: 50px;
  }
  .analytics-item .analytics-label {
    font-size: 0.8rem;
  }
  .center-logo .logo-text {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .experience-section {
    padding: 60px 0;
  }
  .experience-description {
    margin-bottom: 50px;
    font-size: 1rem;
  }
  .experience-analytics {
    height: 350px;
    max-width: 400px;
  }
  .analytics-item .analytics-icon {
    width: 45px;
    height: 45px;
  }
  .analytics-item .analytics-label {
    font-size: 0.75rem;
  }
  .center-logo .logo-text {
    font-size: 1.4rem;
  }
}
@media (max-width: 576px) {
  .experience-section {
    padding: 50px 0;
  }
  .experience-badge {
    margin-bottom: 20px;
  }
  .experience-badge span {
    font-size: 12px;
  }
  .experience-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .experience-description {
    font-size: 0.9rem;
    margin-bottom: 40px;
  }
  .experience-analytics {
    height: 300px;
    max-width: 320px;
  }
  .analytics-item .analytics-icon {
    width: 40px;
    height: 40px;
  }
  .analytics-item .analytics-label {
    font-size: 0.7rem;
  }
  .center-logo .play-button svg {
    width: 50px;
    height: 50px;
  }
  .center-logo .logo-text {
    font-size: 1.2rem;
  }
}
.logo-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.02);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.logo-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.logo-badge {
  display: inline-block;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  padding: 8px 20px;
  margin-bottom: 30px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 2rem;
  border: none;
  border-radius: 500px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background: rgba(23, 25, 28, 0.2);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  box-shadow: 0px 1px 4px rgba(38, 40, 46, 0.37);
  z-index: 1;
  overflow: hidden;
}
.logo-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: inherit;
  background: linear-gradient(to bottom, #6663F6, #17191C);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: -1;
}
.logo-badge span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}

.logo-title {
  color: #ffffff;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 60px;
  font-family: "Inter", sans-serif;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.logo-formula {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}
.logo-formula .formula-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 0 auto;
}
.logo-formula .formula-item .icon-container {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.logo-formula .formula-item .icon-container:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.logo-formula .formula-item .icon-container .formula-icon {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 8px rgba(60, 219, 192, 0.3));
}
.logo-formula .formula-item .formula-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  max-width: 120px;
  line-height: 1.4;
  margin: 0;
}
.logo-formula .formula-operator {
  color: #3CDBC0;
  font-size: 2.5rem;
  font-weight: 300;
  margin: 0 20px;
  opacity: 0.8;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  transition: all 0.3s ease;
}
.logo-formula .formula-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.logo-formula .formula-result .result-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo-formula .formula-result .result-container .result-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
  filter: drop-shadow(0 4px 15px rgba(60, 219, 192, 0.4));
  transition: all 0.3s ease;
}
.logo-formula .formula-result .result-container .result-icon:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 6px 20px rgba(60, 219, 192, 0.6));
}
.logo-formula .formula-result .result-container .result-text .brand-name {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #ffffff 0%, #3CDBC0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

body.rtl .logo-section {
  direction: rtl;
}
body.rtl .logo-section .logo-badge {
  text-align: right;
}
body.rtl .logo-section .logo-title {
  text-align: right;
}
body.rtl .logo-section .logo-formula {
  flex-direction: row-reverse;
}
body.rtl .logo-section .logo-formula .formula-item .formula-text {
  text-align: right;
}
@media (max-width: 768px) {
  body.rtl .logo-section .logo-formula {
    flex-direction: column;
  }
  body.rtl .logo-section .logo-formula .formula-item .formula-text {
    text-align: center;
  }
  body.rtl .logo-section .logo-formula .formula-operator {
    align-self: center;
  }
}

@media (max-width: 991px) {
  .logo-section {
    padding: 80px 0;
  }
  .logo-section .logo-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }
  .logo-section .logo-formula {
    gap: 20px;
  }
  .logo-section .logo-formula .formula-item .icon-container {
    width: 70px;
    height: 70px;
  }
  .logo-section .logo-formula .formula-item .icon-container .formula-icon {
    width: 35px;
    height: 35px;
  }
  .logo-section .logo-formula .formula-item .formula-text {
    font-size: 0.8rem;
    max-width: 100px;
  }
  .logo-section .logo-formula .formula-operator {
    font-size: 2rem;
    margin: 0 15px;
    height: 80px;
  }
  .logo-section .logo-formula .formula-result .result-container .result-icon {
    width: 80px;
    height: 80px;
  }
  .logo-section .logo-formula .formula-result .result-container .result-text .brand-name {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .logo-section {
    padding: 60px 0;
  }
  .logo-section .logo-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .logo-section .logo-formula {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  .logo-section .logo-formula .formula-operator {
    transform: rotate(90deg);
    margin: 5px 0;
    align-self: center;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    font-size: 1.8rem;
  }
  .logo-section .logo-formula .formula-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .logo-section .logo-formula .formula-item .icon-container {
    width: 60px;
    height: 60px;
  }
  .logo-section .logo-formula .formula-item .icon-container .formula-icon {
    width: 30px;
    height: 30px;
  }
  .logo-section .logo-formula .formula-item .formula-text {
    font-size: 0.75rem;
    max-width: 150px;
    text-align: center;
  }
  .logo-section .logo-formula .formula-result {
    display: flex;
    align-items: center;
  }
  .logo-section .logo-formula .formula-result .result-container .result-icon {
    width: 70px;
    height: 70px;
  }
  .logo-section .logo-formula .formula-result .result-container .result-text .brand-name {
    font-size: 1.3rem;
  }
}
@media (max-width: 576px) {
  .logo-section {
    padding: 50px 0;
  }
  .logo-section .logo-badge {
    margin-bottom: 20px;
  }
  .logo-section .logo-badge span {
    font-size: 12px;
  }
  .logo-section .logo-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }
  .logo-section .logo-formula {
    gap: 12px;
  }
  .logo-section .logo-formula .formula-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .logo-section .logo-formula .formula-item .icon-container {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
  .logo-section .logo-formula .formula-item .icon-container .formula-icon {
    width: 25px;
    height: 25px;
  }
  .logo-section .logo-formula .formula-item .formula-text {
    font-size: 0.7rem;
    text-align: center;
  }
  .logo-section .logo-formula .formula-operator {
    font-size: 1.5rem;
    margin: 3px 0;
    align-self: center;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
  }
  .logo-section .logo-formula .formula-result {
    display: flex;
    align-items: center;
  }
  .logo-section .logo-formula .formula-result .result-container .result-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }
  .logo-section .logo-formula .formula-result .result-container .result-text .brand-name {
    font-size: 1.1rem;
  }
}
.what-do-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.02);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.what-do-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.what-do-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  padding: 8px 20px;
  margin-bottom: 30px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 2rem;
  border: none;
  border-radius: 500px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background: rgba(23, 25, 28, 0.2);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  box-shadow: 0px 1px 4px rgba(38, 40, 46, 0.37);
  z-index: 1;
  overflow: hidden;
}
.what-do-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: inherit;
  background: linear-gradient(to bottom, #6663F6, #17191C);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: -1;
}
.what-do-badge span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}

.what-do-title {
  color: #ffffff;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 25px;
  font-family: "Inter", sans-serif;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.what-do-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  font-family: "Inter", sans-serif;
}

.features-list .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
}
.features-list .feature-item .feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.features-list .feature-item .feature-icon i {
  color: #3CDBC0;
  font-size: 18px;
}
.features-list .feature-item span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  font-family: "Inter", sans-serif;
  flex: 1;
}

.what-do-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.what-do-image .what-do-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 15px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}
.what-do-image .what-do-img:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.3));
}

body.rtl .what-do-section {
  direction: rtl;
}
body.rtl .what-do-section .what-do-badge {
  text-align: right;
}
@media (max-width: 991px) {
  body.rtl .what-do-section .what-do-badge {
    text-align: center;
  }
}
body.rtl .what-do-section .what-do-title,
body.rtl .what-do-section .what-do-description {
  text-align: right;
}
@media (max-width: 991px) {
  body.rtl .what-do-section .what-do-title,
  body.rtl .what-do-section .what-do-description {
    text-align: center;
  }
}
body.rtl .what-do-section .features-list .feature-item {
  flex-direction: row-reverse;
  text-align: right;
}
body.rtl .what-do-section .features-list .feature-item .feature-icon {
  margin-left: 15px;
  margin-right: 0;
  order: 2;
}
body.rtl .what-do-section .features-list .feature-item span {
  text-align: right;
  order: 1;
}
@media (max-width: 991px) {
  body.rtl .what-do-section .features-list .feature-item {
    flex-direction: row-reverse;
    text-align: right;
  }
  body.rtl .what-do-section .features-list .feature-item .feature-icon {
    margin-left: 15px;
    margin-right: 0;
    order: 2;
  }
  body.rtl .what-do-section .features-list .feature-item span {
    text-align: right;
    order: 1;
  }
}
@media (max-width: 768px) {
  body.rtl .what-do-section .features-list .feature-item {
    flex-direction: row-reverse;
    text-align: right;
  }
  body.rtl .what-do-section .features-list .feature-item .feature-icon {
    margin-left: 12px;
    margin-right: 0;
    order: 2;
  }
  body.rtl .what-do-section .features-list .feature-item span {
    text-align: right;
    order: 1;
  }
}
@media (max-width: 576px) {
  body.rtl .what-do-section .features-list .feature-item {
    flex-direction: row-reverse;
    text-align: right;
  }
  body.rtl .what-do-section .features-list .feature-item .feature-icon {
    margin-left: 12px;
    margin-right: 0;
    order: 2;
  }
  body.rtl .what-do-section .features-list .feature-item span {
    text-align: right;
    order: 1;
  }
}
@media (min-width: 992px) {
  body.rtl .what-do-section .row .what-do-content {
    order: 2;
  }
  body.rtl .what-do-section .row .what-do-image {
    order: 1;
  }
}

@media (max-width: 991px) {
  .what-do-section {
    padding: 80px 0;
  }
  .what-do-section .row {
    flex-direction: column-reverse;
  }
  .what-do-section .what-do-content {
    text-align: center;
    margin-top: 40px;
  }
  .what-do-section .what-do-badge {
    text-align: center;
  }
  .what-do-section .what-do-title {
    font-size: 2.2rem;
    text-align: center;
  }
  .what-do-section .what-do-description {
    text-align: center;
    font-size: 1rem;
  }
  .what-do-section .features-list .feature-item {
    text-align: left;
  }
  .what-do-section .features-list .feature-item span {
    font-size: 0.95rem;
  }
  .what-do-section .what-do-image {
    margin-bottom: 20px;
  }
  .what-do-section .what-do-image .what-do-img {
    max-width: 400px;
  }
}
@media (max-width: 768px) {
  .what-do-section {
    padding: 60px 0;
  }
  .what-do-section .what-do-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .what-do-section .what-do-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  .what-do-section .features-list .feature-item {
    margin-bottom: 15px;
  }
  .what-do-section .features-list .feature-item .feature-icon {
    width: 20px;
    height: 20px;
  }
  .what-do-section .features-list .feature-item .feature-icon i {
    font-size: 16px;
  }
  .what-do-section .features-list .feature-item span {
    font-size: 0.9rem;
  }
  .what-do-section .what-do-image .what-do-img {
    max-width: 350px;
  }
}
@media (max-width: 576px) {
  .what-do-section {
    padding: 50px 0;
  }
  .what-do-section .what-do-badge {
    margin-bottom: 20px;
  }
  .what-do-section .what-do-badge span {
    font-size: 12px;
  }
  .what-do-section .what-do-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
  .what-do-section .what-do-description {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }
  .what-do-section .features-list .feature-item {
    gap: 12px;
    margin-bottom: 12px;
  }
  .what-do-section .features-list .feature-item span {
    font-size: 0.85rem;
  }
  .what-do-section .what-do-image {
    padding: 10px;
  }
  .what-do-section .what-do-image .what-do-img {
    max-width: 280px;
  }
}
.footer-section {
  background: linear-gradient(135deg, #040722 0%, #151F6D 50%, #040722 100%);
  padding: 60px 0 20px;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
}
.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
}

.footer-brand .footer-logo {
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 4px 15px rgba(60, 219, 192, 0.3));
}
.footer-brand .brand-name {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: "Inter", sans-serif;
}
.footer-brand .footer-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.footer-links .footer-title {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
}
.footer-links .footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links .footer-nav li {
  margin-bottom: 12px;
}
.footer-links .footer-nav li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}
.footer-links .footer-nav li a:hover {
  color: #3CDBC0;
  transform: translateX(5px);
}

.footer-contact .footer-title {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
  max-width: 250px;
  justify-content: flex-start;
}
.social-icons .social-link {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  flex: 0 0 calc(20% - 10px);
}
.social-icons .social-link:hover {
  background: rgba(60, 219, 192, 0.2);
  border-color: #3CDBC0;
  color: #3CDBC0;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(60, 219, 192, 0.3);
}
.social-icons .social-link:nth-child(n+6) {
  margin-top: 8px;
}

.footer-download .download-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: "Inter", sans-serif;
}

.download-buttons-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.download-buttons-footer .download-btn-footer {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.download-buttons-footer .download-btn-footer:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}
.download-buttons-footer .download-btn-footer .download-icon-footer {
  height: 35px;
  width: auto;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom .copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
  font-family: "Inter", sans-serif;
}

body.rtl .footer-section {
  direction: rtl;
}
body.rtl .footer-section .footer-brand,
body.rtl .footer-section .footer-links,
body.rtl .footer-section .footer-contact {
  text-align: right;
}
body.rtl .footer-section .footer-nav li a:hover {
  transform: translateX(-5px);
}
body.rtl .footer-section .social-icons {
  justify-content: flex-end;
}

@media (max-width: 991px) {
  .footer-section {
    padding: 50px 0 20px;
  }
  .footer-brand,
  .footer-links,
  .footer-contact {
    text-align: center;
    margin-bottom: 30px;
  }
  .social-icons {
    justify-content: center;
    max-width: 240px;
    margin: 0 auto 20px;
    gap: 8px;
  }
  .social-icons .social-link {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
    flex: 0 0 calc(20% - 7px);
  }
  .social-icons .social-link:nth-child(n+6) {
    margin-top: 6px;
  }
  .download-buttons-footer {
    align-items: center;
  }
  .download-buttons-footer .download-btn-footer {
    max-width: 200px;
  }
}
@media (max-width: 576px) {
  .footer-section {
    padding: 40px 0 15px;
  }
  .footer-brand .brand-name {
    font-size: 1.5rem;
  }
  .footer-brand .footer-description {
    font-size: 0.9rem;
  }
  .footer-links .footer-title,
  .footer-contact .footer-title {
    font-size: 1.1rem;
  }
  .social-icons {
    gap: 6px;
    max-width: 200px;
    margin: 0 auto 20px;
  }
  .social-icons .social-link {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
    flex: 0 0 calc(20% - 5px);
  }
  .social-icons .social-link:nth-child(n+6) {
    margin-top: 5px;
  }
  .download-buttons-footer .download-btn-footer .download-icon-footer {
    height: 30px;
  }
}
/* ===================
   Terms and Conditions Page Styles
   =================== */
.terms-section {
  padding: 60px 0;
  min-height: 100vh;
}
.terms-section .terms-header {
  margin-bottom: 3rem;
}
.terms-section .terms-header .terms-title {
  font-family: "Inter", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}
.terms-section .terms-header .terms-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}
.terms-section .terms-content .terms-clause {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.terms-section .terms-content .terms-clause:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.terms-section .terms-content .terms-clause .clause-title {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #3CDBC0;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(60, 219, 192, 0.3);
}
.terms-section .terms-content .terms-clause .clause-content p {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.terms-section .terms-content .terms-clause .clause-content p:last-child {
  margin-bottom: 0;
}
.terms-section .terms-content .terms-clause .clause-content h4, .terms-section .terms-content .terms-clause .clause-content h5 {
  font-family: "Inter", sans-serif;
  color: #ffffff;
  margin: 1rem 0 0.5rem 0;
  font-weight: 600;
}
.terms-section .terms-content .terms-clause .clause-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.terms-section .terms-content .terms-clause .clause-content ul li {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.terms-section .terms-content .terms-clause .clause-content .last-updated {
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rtl .terms-section .terms-header .terms-title,
.rtl .terms-section .terms-header .terms-subtitle {
  text-align: right;
  font-family: "Cairo", "Inter", sans-serif;
}
.rtl .terms-section .terms-content .terms-clause .clause-title {
  text-align: right;
  font-family: "Cairo", "Inter", sans-serif;
}
.rtl .terms-section .terms-content .terms-clause .clause-content p, .rtl .terms-section .terms-content .terms-clause .clause-content h4, .rtl .terms-section .terms-content .terms-clause .clause-content h5 {
  text-align: right;
  font-family: "Cairo", "Inter", sans-serif;
}
.rtl .terms-section .terms-content .terms-clause .clause-content ul {
  padding-left: 0;
  padding-right: 1.5rem;
  text-align: right;
}
.rtl .terms-section .terms-content .terms-clause .clause-content ul li {
  text-align: right;
  font-family: "Cairo", "Inter", sans-serif;
}

@media (max-width: 768px) {
  .terms-section {
    padding: 40px 0;
  }
  .terms-section .terms-header .terms-title {
    font-size: 2rem;
  }
  .terms-section .terms-header .terms-subtitle {
    font-size: 1rem;
  }
  .terms-section .terms-content .terms-clause {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  .terms-section .terms-content .terms-clause .clause-title {
    font-size: 1.1rem;
  }
  .terms-section .terms-content .terms-clause .clause-content p {
    font-size: 0.9rem;
  }
  .terms-section .terms-content .terms-clause .clause-content ul li {
    font-size: 0.85rem;
  }
}
@media (max-width: 576px) {
  .terms-section .terms-header .terms-title {
    font-size: 1.75rem;
  }
  .terms-section .terms-content .terms-clause {
    padding: 0.8rem;
  }
  .terms-section .terms-content .terms-clause .clause-title {
    font-size: 1rem;
  }
  .terms-section .terms-content .terms-clause .clause-content p {
    font-size: 0.85rem;
  }
  .terms-section .terms-content .terms-clause .clause-content ul li {
    font-size: 0.8rem;
  }
}/*# sourceMappingURL=styleSass.css.map */