:root {
  --color-primary-bg: #0c5884;
  --color-primary-accent: #38b6ff;
  --color-text-light: #f9f9f9;
  --color-text-white: #ffffff;
  --color-dark-card: #030410;
  --color-border: #38b6ff;
  --font-main: 'Cairo', sans-serif;
  --container-width: 1340;
  --container-height: 786;
}

body {
  background-color: var(--color-primary-bg);
  color: var(--color-text-white);
  font-family: var(--font-main);
  margin: 0;
  direction: rtl;
  overflow-x: hidden;
  transform: scale(0.9);
  transform-origin: top center;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.container1 {
  max-width: 1226px;
  margin: 0 auto;
  position: relative;
}

.container2 {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

section {
  position: relative;
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 20px 35px;
  border-radius: 48px;
  background-color: var(--color-primary-accent);
  color: var(--color-text-white);
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  opacity: 0.9;
}

.deco-element-3 {
  position: absolute;
  top: 70%;
  left: 58%;
  width: 173px;
  height: 173px;
  z-index: 1000;
}

/* CSS for section section:header */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-top: 20px;
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.top-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 58px;
  font-size: 24px;
  font-weight: 700;
}

.top-bar-links a {
  color: var(--color-text-white);
}

.top-bar-links .login-link {
  color: var(--color-primary-accent);
}

.separator {
  width: 1px;
  height: 86.5px;
  background-color: rgba(255, 255, 255, 0.26);
}

.language-selector,
.menu-lang {
  position: relative;
  cursor: pointer;
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #1A1A25;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  display: none;
  flex-direction: column;
  min-width: 140px;
  z-index: 99999;
}

.lang-dropdown a {
  color: #fff;
  text-decoration: none;
  padding: 10px 16px;
  font-size: 15px;
  transition: background 0.2s;
}

.lang-dropdown a:hover {
  background-color: rgba(255,255,255,0.08);
}

.menu-lang.active .lang-dropdown,
.language-selector.active .lang-dropdown {
  display: flex;
}

.menu-lang {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  position: relative;
}

.menu-lang img {
  width: 20px;
  height: 20px;
}

.main-nav-wrapper {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background: linear-gradient(90deg, rgba(36, 56, 87, 0.36) 0%, rgba(36, 56, 87, 0.36) 100%);
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 70px;
  backdrop-filter: blur(2px);
  padding-left: 10px;
}

.main-nav-wrapper.sticky {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  border-radius: 70px;
  background: linear-gradient(90deg, rgba(36, 56, 87, 0.36), rgba(36, 56, 87, 0.36));
  border: 2px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(2px);
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo .logo-container {
  width: 335px;
  height: 106px;
}

.brand-logo img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 61px;
  font-size: 24px;
  font-weight: 700;
}

.btn-signup {
  background: linear-gradient(270deg, #0c5884 0%, #38b6ff 72.77%);
  padding: 7px 39px;
  border-radius: 46px;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-white);
}

@media (max-width: 1200px) {
  .nav-links { display: none; }
  .main-nav { justify-content: space-around; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .main-nav-wrapper { padding: 5px; }
  .brand-logo { flex-grow: 1; }
  .btn-signup { font-size: 18px; padding: 5px 20px; }
}

/* CSS for section section:hero */
.hero-section {
  padding-top: 250px;
  min-height: 500px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  text-align: right;
  max-width: 630px;
}

.hero-title {
  font-size: 67px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-light);
}

.hero-title .highlight {
  color: #38b6ff;
}

.hero-subtitle {
  font-size: 21px;
  font-weight: 700;
  color: var(--color-text-light);
}

.hero-description {
  font-size: 21px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--color-text-light);
}

.hero-image-wrapper {
  flex: 1;
  position: relative;
  height: 594px;
  max-width: 618px;
}

.hero-image-group {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.hero-image-group img {
  position: absolute;
}

.deco-ellipse-1 { top: 61px; left: 0; width: 525px; height: 527px; transform: rotate(-101.6deg); }
.deco-ellipse-2 { top: 68px; left: 7px; width: 510px; height: 512px; filter: blur(20px); }
.deco-ellipse-3 { top: 68px; left: 7px; width: 510px; height: 512px; }
.deco-element-1 { top: 35px; left: 368px; width: 184px; height: 184px; }
.deco-element-4 { top: 350px; left: 461px; width: 148px; height: 148px; }
.deco-sparkles { top: 85px; left: 422px; width: 78px; height: 78px; z-index: 6; }
.deco-element-2 { position: absolute; top: 298px; left: -11px; width: 173px; height: 173px; }
.deco-element-2 img { top: 0; left: 0; }
.deco-element-chip { position: absolute; top: 379px; left: 495px; width: 87px; height: 87px; }
.deco-element-chip img { top: 4px; left: 4px; width: 80px; height: 80px; }

.bg-blur-1 {
  position: absolute;
  width: 479px;
  height: 249px;
  left: -100px;
  top: 0;
  background: linear-gradient(180deg, rgba(24, 75, 255, 0) 0%, #174aff 100%);
  filter: blur(200px);
  transform: rotate(55.66deg);
  z-index: -1;
}

.bg-blur-2 {
  position: absolute;
  width: 479px;
  height: 449px;
  right: -150px;
  top: 50px;
  background: linear-gradient(180deg, rgba(24, 75, 255, 0) 0%, #174aff 100%);
  filter: blur(200px);
  transform: rotate(55.66deg);
  z-index: -1;
}

@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-content {
    align-items: center;
    text-align: center;
  }
  .hero-image-wrapper {
    margin-top: 40px;
    height: 400px;
  }
}

/* CSS for section section:partners */
.partners-section {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: visible;
  background: transparent;
}

.curve-top {
  position: absolute;
  top: -62px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  width: 160%;
  height: 150px;
  background: linear-gradient(131deg, #07293e 0%, #07293e 115%);
  border-radius: 50% / 100%;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 1;
}

.curve-top1 {
  position: absolute;
  top: 0px;
  left: 49%;
  transform: translateX(-50%);
  width: 1494px;
  height: 112%;
  max-height: 1260px;
  background: linear-gradient(131deg, #07293d 0%, #07293d 130.02%);
  border-radius: 111% / 100%;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  z-index: -1;
}

.partners-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(131deg, #034971 0%, #030410 130%);
  z-index: 0;
}

.curve-bottom {
  position: absolute;
  bottom: -220px;
  left: 50%;
  transform: translateX(-51%) rotate(0deg);
  width: 180%;
  height: 280px;
  background: linear-gradient(131deg, #07293d 0%, #07293d 130%);
  border-radius: 50% / 100%;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 0;
}

.partners-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text-white);
  opacity: 0.77;
  margin-bottom: 80px;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
  flex-wrap: wrap;
}

.partners-logos img {
  max-height: 74px;
  object-fit: contain;
}

/* CSS for section section:features-overview */
.features-overview-section {
  text-align: center;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  max-width: 650px;
  margin: 0 auto 80px;
}

.section-title1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  max-width: 974px;
  margin: 0 auto;
  text-align: center;
}

.section-title3 {
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  max-width: 974px;
  margin: 0 auto 80px;
}

.features-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 100px;
  flex-wrap: wrap;
}

.feature-card {
  background-color: var(--color-dark-card);
  border-radius: 25px;
  padding: 32px 24px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  box-shadow: 0px 4px 20.4px 0px rgba(56, 182, 255, 0.13);
  flex: 1;
  min-width: 300px;
  max-width: 460px;
}

.feature-card p {
  font-size: 24px;
  font-weight: 700;
  line-height: 31.2px;
}

.feature-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glass-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  backdrop-filter: blur(1px);
}

.glass-icon {
  position: relative;
  z-index: 1;
  width: 33px;
  height: 33px;
}

.features-showcase {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: right;
}

.showcase-image {
  flex: 1;
}

.showcase-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

.showcase-accordion {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.accordion-item {
  background-color: var(--color-dark-card);
  border: 1px solid var(--color-border);
  border-radius: 22px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-item p {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  max-width: 517px;
}

.accordion-item.active p {
  line-height: 38px;
}

.plus-icon {
  font-size: 36px;
  font-weight: 300;
  color: var(--color-border);
}

@media (max-width: 992px) {
  .features-showcase {
    flex-direction: column;
  }
}

/* CSS for section section:ai-agent */
.ai-agent-section {
  position: relative;
  text-align: center;
  padding: 150px 0 -48px;
  background: linear-gradient(131deg, #0679be 0%, #031f3c 79.02%);
  color: white;
  overflow: visible;
  z-index: 2;
  border-bottom-right-radius: 0;
}

.ai-agent-section .section-title {
  font-size: 48px;
}

.ai-agent-section .section-subtitle {
  font-size: 24px;
  font-weight: 600;
  max-width: 934px;
  margin: 26px auto 80px;
}

.ai-features-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-image-container {
  position: absolute;
  width: 900px;
  height: 876px;
  transform: rotate(55.66deg);
  z-index: -1;
}

.ai-blur-1 {
  position: absolute;
  width: 564px;
  height: 564px;
  top: 140px;
  left: 191px;
  filter: blur(350px);
}

.ai-texture {
  position: absolute;
  width: 1008px;
  height: 1037px;
  top: -56px;
  left: -91px;
  opacity: 0.7;
  mask: url(#ai-mask);
  -webkit-mask: url(#ai-mask);
}

.ai-cards-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.ai-feature-card {
  background-color: var(--color-dark-card);
  border-radius: 25px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 380px;
  box-shadow: 0px 4px 20.4px 0px rgba(56, 182, 255, 0.13);
}

.ai-feature-card h3 {
  font-size: 32px;
  font-weight: 800;
  line-height: 41.6px;
  margin-top: 16px;
}

.ai-feature-card p {
  font-size: 16px;
  font-weight: 500;
  line-height: 28.5px;
  flex-grow: 1;
}

.ai-feature-card a {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary-accent);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
}

.ai-cta-button {
  margin-top: 60px;
  padding: 20px 52px;
}

/* CSS for section section:sectors */
.sectors-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.sectors-background {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1637px;
  height: 100%;
  max-height: 1260px;
  background: linear-gradient(131deg, #005688 0%, #030410 79.02%);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  z-index: -1;
}

.sectors-section .section-title {
  font-size: 48px;
  margin-bottom: 80px;
}

.video-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.video-placeholder {
  border-radius: 11px;
  overflow: hidden;
}

.video-placeholder img {
  display: block;
  width: 100%;
  height: auto;
}

.video-placeholder { width: 326px; height: 326px; }
.main-video { width: 380px; height: 380px; }

.testimonial {
  max-width: 1073px;
  margin: 0 auto;
  font-size: 32px;
  font-weight: 500;
  line-height: 60px;
  border: none;
  padding: 0;
}

/* CSS for section section:awards */
.awards-section {
  padding: 100px 0;
}

.awards-content-wrapper {
  background-color: rgba(56, 182, 255, 0.24);
  border-radius: 17px;
  backdrop-filter: blur(8px);
  padding: 40px;
  position: relative;
}

.awards-section .section-title {
  font-size: 48px;
  text-align: center;
  margin-bottom: 60px;
}

.awards-grid {
  position: relative;
  width: 100%;
  height: 620px;
  margin: 0 auto;
}

.awards-grid img {
  position: absolute;
}

.award-main {
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 167px;
}

.award-item {
  width: 132px;
  height: 152px;
}

.award-support {
  width: 111px;
  height: 117px;
}

.features-links-section .section-title {
  text-align: center;
  font-size: 48px;
  margin-bottom: 80px;
  max-width: 895px;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 56px 55px;
  margin-bottom: 60px;
}

.feature-link {
  background: linear-gradient(148deg, rgba(0, 0, 0, 0) 0%, rgba(56, 182, 255, 0.3) 113.78%);
  background-color: rgba(39, 40, 41, 0.7);
  border-radius: 20px;
  padding: 13px 17px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  min-height: 98px;
  width: 468px;
}

.feature-link span {
  font-size: 18px;
  font-weight: 700;
  color: rgba(217, 217, 217, 0.85);
  text-align: right;
  padding-right: 7px;
}

.link-icon-bg {
  width: 50.01px;
  height: 50px;
  background-color: var(--color-primary-accent);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.link-icon-bg img {
  width: 34px;
  height: 34px;
}

.more-link-wrapper {
  text-align: center;
}

.more-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 15px 34px;
  background-color: var(--color-primary-accent);
  border-radius: 10px;
  color: var(--color-text-white);
  font-size: 20px;
  font-weight: 700;
}

.cta-form-section {
  position: relative;
  color: #fff;
  direction: rtl;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-top: 86px;
}

.cta-background {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, #04375c 0%, #030b17 90%);
  opacity: 0.95;
  z-index: -1;
  border-radius: 20px;
}

.form-container {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(56, 182, 255, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  padding: 50px 40px;
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
}

.form-container h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 45px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 35px;
  border: 1px solid rgba(56, 182, 255, 0.5);
  border-radius: 12px;
  padding: 40px 35px;
  box-sizing: border-box;
}

.form-group {
  text-align: right;
}

.form-group label {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #bde6ff;
}

.input-wrapper {
  position: relative;
}

.input-wrapper input {
  width: 100%;
  height: 65px;
  background: rgba(0, 45, 75, 0.8);
  border: 1px solid rgba(56, 182, 255, 0.3);
  border-radius: 14px;
  padding: 0 50px 0 50px;
  color: #fff;
  font-size: 18px;
  outline: none;
  box-sizing: border-box;
}

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

.input-wrapper img {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  opacity: 0.8;
}

.phone-input {
  display: flex;
  align-items: center;
}

.phone-input input {
  padding-right: 120px;
}

.country-code {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  color: #fff;
  opacity: 0.8;
}

.country-code img {
  width: 10px;
  opacity: 0.8;
}

.submit-btn {
  background: linear-gradient(90deg, #009dff 0%, #38b6ff 100%);
  color: white;
  font-size: 20px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 20px 70px;
  margin-top: 45px;
  box-shadow: 0px 10px 25px rgba(56, 182, 255, 0.4);
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0px 15px 35px rgba(56, 182, 255, 0.6);
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
    padding: 25px 20px;
  }

  .form-container {
    padding: 35px 25px;
  }

  .form-container h2 {
    font-size: 24px;
  }

  .input-wrapper input {
    height: 55px;
  }

  .submit-btn {
    width: 100%;
  }
}

.newsletter-box {
  background: linear-gradient(90deg, rgba(79, 70, 229, 0.2) 0%, rgba(59, 130, 246, 0.2) 50%, rgba(147, 51, 234, 0.2) 100%);
  padding: 50px;
  margin-top: -60px;
  position: relative;
  z-index: 2;
  text-align: center;
  border-radius: 0 0 30px 30px;
}

.newsletter-box h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
}

.newsletter-input-group {
  background-color: rgba(217, 217, 217, 0.04);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 21px;
  max-width: 1021px;
  height: 139px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}

.newsletter-input-group input {
  background: transparent;
  border: none;
  color: var(--color-text-primary);
  font-size: 24px;
  flex-grow: 1;
}

.newsletter-input-group input::placeholder {
  color: var(--color-text-muted);
}

.newsletter-btn {
  background-color: var(--color-primary);
  color: var(--color-text-primary);
  font-size: 20px;
  font-weight: 700;
  padding: 31px 106px;
  border-radius: 47px;
  border: none;
  cursor: pointer;
  box-shadow: 0px 12px 34.7px 0px rgba(56, 182, 255, 0.56);
}

.subscribe-section {
  padding: 60px 70px;
}

.subscribe-container {
  background: linear-gradient(90deg, rgba(79, 70, 229, 0.2) 0%, rgba(59, 130, 246, 0.2) 50%, rgba(147, 51, 234, 0.2) 100%);
  padding: 50px;
  text-align: center;
  border-radius: 20px;
}

.subscribe-container h3 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.subscribe-form {
  max-width: 1021px;
  margin: 0 auto;
}

.subscribe-input-wrapper {
  position: relative;
  background-color: rgba(217, 217, 217, 0.04);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 21px;
  height: 139px;
  display: flex;
  align-items: center;
  padding: 0 30px;
}

.subscribe-input-wrapper input {
  flex-grow: 1;
  background: transparent;
  border: none;
  color: var(--color-text-light);
  font-size: 24px;
  height: 100%;
}

.subscribe-input-wrapper input::placeholder {
  color: var(--color-text-muted);
}

.subscribe-input-wrapper button {
  background-color: var(--color-primary-accent);
  color: var(--color-text-light);
  border: none;
  border-radius: 47px;
  padding: 31px 106px;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0px 12px 34.7px 0px rgba(56, 182, 255, 0.56);
}

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

  .subscribe-container {
    padding: 30px 20px;
  }

  .subscribe-container h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .subscribe-input-wrapper {
    flex-direction: column;
    height: auto;
    padding: 20px;
    gap: 15px;
  }

  .subscribe-input-wrapper input {
    width: 100%;
    height: 60px;
    text-align: center;
    font-size: 18px;
  }

  .subscribe-input-wrapper button {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    border-radius: 30px;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .subscribe-section {
    padding: 50px 40px;
  }

  .subscribe-container {
    padding: 40px;
  }

  .subscribe-container h3 {
    font-size: 30px;
    margin-bottom: 25px;
  }

  .subscribe-input-wrapper {
    height: 100px;
    padding: 15px 25px;
  }

  .subscribe-input-wrapper input {
    font-size: 20px;
  }

  .subscribe-input-wrapper button {
    padding: 20px 70px;
    font-size: 18px;
  }
}

.footer-container {
  display: flex;
  flex-direction: column;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 26px;
}

.footer-logo {
  width: 236px;
  height: 96px;
}

.footer-brand p {
  font-size: 32px;
  font-weight: 700;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a img {
  width: 38px;
  height: 38px;
}

.footer-links-grid {
  display: flex;
  gap: 24px;
  flex-grow: 1;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: right;
}

.footer-column h4 {
  font-size: 24px;
  font-weight: 700;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column a {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.footer-divider {
  border: none;
  height: 1px;
  background-color: var(--color-border);
  width: 100%;
  margin-bottom: 40px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 20px;
  font-weight: 500;
}

.legal-links {
  display: flex;
  gap: 30px;
}

@media (max-width: 992px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand {
    align-items: center;
  }
  .footer-links-grid {
    justify-content: center;
    text-align: center;
  }
  .footer-column {
    align-items: center;
  }
  .footer-bottom {
    flex-direction: column-reverse;
  }
}

.user-choice-section {
  padding: 50px 20px;
  display: grid;
  place-items: center;
  min-height: 100vh;
  overflow: hidden;
}

.awards-container {
  position: relative;
  width: 100%;
  max-width: 1340px;
  aspect-ratio: 1340 / 786;
  background-color: rgba(56, 182, 255, 0.24);
  border-radius: 17px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.background-glow-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(239px);
  z-index: -1;
  overflow: hidden;
}

.awards-graphics,
.background-glow-wrapper,
.awards-container > h2,
.awards-container > img {
  position: absolute;
}

.awards-graphics,
.background-glow-wrapper {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.awards-graphics img,
.background-glow-wrapper img {
  position: absolute;
}

.text-41-66 {
  left: calc(339 / var(--container-width) * 100%);
  top: calc(40 / var(--container-height) * 100%);
  width: calc(655 / var(--container-width) * 100%);
  height: calc(60 / var(--container-height) * 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(24px, 3.5vw, 48px);
  line-height: 1.25;
  text-align: center;
  margin: 0;
}

.img-41-62 {
  left: calc(147 / var(--container-width) * 100%);
  top: calc(3 / var(--container-height) * 100%);
  width: calc(427 / var(--container-width) * 100%);
  height: calc(427 / var(--container-height) * 100%);
}

.img-41-63 {
  left: calc(575.3 / var(--container-width) * 100%);
  top: calc(88.4 / var(--container-height) * 100%);
  width: calc(533.7 / var(--container-width) * 100%);
  height: calc(533.7 / var(--container-height) * 100%);
}

.img-41-67 {
  left: calc(1109 / var(--container-width) * 100%);
  top: calc(622 / var(--container-height) * 100%);
  width: calc(111 / var(--container-width) * 100%);
  height: calc(117 / var(--container-height) * 100%);
}

.img-41-68 {
  left: calc(119 / var(--container-width) * 100%);
  top: calc(622 / var(--container-height) * 100%);
  width: calc(111 / var(--container-width) * 100%);
  height: calc(117 / var(--container-height) * 100%);
}

.img-41-69 {
  left: calc(580 / var(--container-width) * 100%);
  top: calc(149 / var(--container-height) * 100%);
  width: calc(180 / var(--container-width) * 100%);
  height: calc(167 / var(--container-height) * 100%);
}

.img-41-70 {
  left: calc(785 / var(--container-width) * 100%);
  top: calc(180 / var(--container-height) * 100%);
  width: calc(132 / var(--container-width) * 100%);
  height: calc(152 / var(--container-height) * 100%);
}

.img-41-71 {
  left: calc(785 / var(--container-width) * 100%);
  top: calc(380 / var(--container-height) * 100%);
  width: calc(132 / var(--container-width) * 100%);
  height: calc(152 / var(--container-height) * 100%);
}

.img-41-72 {
  left: calc(423 / var(--container-width) * 100%);
  top: calc(180 / var(--container-height) * 100%);
  width: calc(132 / var(--container-width) * 100%);
  height: calc(152 / var(--container-height) * 100%);
}

.img-41-73 {
  left: calc(423 / var(--container-width) * 100%);
  top: calc(380 / var(--container-height) * 100%);
  width: calc(132 / var(--container-width) * 100%);
  height: calc(152 / var(--container-height) * 100%);
}

.img-41-74 {
  left: calc(266 / var(--container-width) * 100%);
  top: calc(191 / var(--container-height) * 100%);
  width: calc(132 / var(--container-width) * 100%);
  height: calc(152 / var(--container-height) * 100%);
}

.img-41-75 {
  left: calc(266 / var(--container-width) * 100%);
  top: calc(391 / var(--container-height) * 100%);
  width: calc(132 / var(--container-width) * 100%);
  height: calc(152 / var(--container-height) * 100%);
}

.img-41-76 {
  left: calc(109 / var(--container-width) * 100%);
  top: calc(211 / var(--container-height) * 100%);
  width: calc(132 / var(--container-width) * 100%);
  height: calc(152 / var(--container-height) * 100%);
}

.img-41-77 {
  left: calc(109 / var(--container-width) * 100%);
  top: calc(411 / var(--container-height) * 100%);
  width: calc(132 / var(--container-width) * 100%);
  height: calc(152 / var(--container-height) * 100%);
}

.img-41-78 {
  left: calc(942 / var(--container-width) * 100%);
  top: calc(191 / var(--container-height) * 100%);
  width: calc(132 / var(--container-width) * 100%);
  height: calc(152 / var(--container-height) * 100%);
}

.img-41-79 {
  left: calc(942 / var(--container-width) * 100%);
  top: calc(391 / var(--container-height) * 100%);
  width: calc(132 / var(--container-width) * 100%);
  height: calc(152 / var(--container-height) * 100%);
}

.img-41-80 {
  left: calc(1099 / var(--container-width) * 100%);
  top: calc(211 / var(--container-height) * 100%);
  width: calc(132 / var(--container-width) * 100%);
  height: calc(152 / var(--container-height) * 100%);
}

.img-41-81 {
  left: calc(1099 / var(--container-width) * 100%);
  top: calc(411 / var(--container-height) * 100%);
  width: calc(132 / var(--container-width) * 100%);
  height: calc(152 / var(--container-height) * 100%);
}

.img-41-82 {
  left: calc(755.5 / var(--container-width) * 100%);
  top: calc(228 / var(--container-height) * 100%);
  width: calc(29.5 / var(--container-width) * 100%);
  height: calc(28 / var(--container-height) * 100%);
}

.img-41-83 {
  left: calc(555 / var(--container-width) * 100%);
  top: calc(228 / var(--container-height) * 100%);
  width: calc(29.5 / var(--container-width) * 100%);
  height: calc(28 / var(--container-height) * 100%);
}

.img-41-84 {
  left: calc(1074 / var(--container-width) * 100%);
  top: calc(267 / var(--container-height) * 100%);
  width: calc(29.5 / var(--container-width) * 100%);
  height: calc(24.5 / var(--container-height) * 100%);
}

.img-41-85 {
  left: calc(917 / var(--container-width) * 100%);
  top: calc(256 / var(--container-height) * 100%);
  width: calc(29.5 / var(--container-width) * 100%);
  height: calc(15.5 / var(--container-height) * 100%);
}

.img-41-86 {
  left: calc(1160.5 / var(--container-width) * 100%);
  top: calc(358.5 / var(--container-height) * 100%);
  width: calc(9 / var(--container-width) * 100%);
  height: calc(52.5 / var(--container-height) * 100%);
}

.img-41-87 {
  left: calc(1003.5 / var(--container-width) * 100%);
  top: calc(338.5 / var(--container-height) * 100%);
  width: calc(9 / var(--container-width) * 100%);
  height: calc(52.5 / var(--container-height) * 100%);
}

.img-41-88 {
  left: calc(846.5 / var(--container-width) * 100%);
  top: calc(327.5 / var(--container-height) * 100%);
  width: calc(9 / var(--container-width) * 100%);
  height: calc(52.5 / var(--container-height) * 100%);
}

.img-41-89 {
  left: calc(1160.5 / var(--container-width) * 100%);
  top: calc(558.5 / var(--container-height) * 100%);
  width: calc(9 / var(--container-width) * 100%);
  height: calc(63.5 / var(--container-height) * 100%);
}

.img-41-90 {
  left: calc(398 / var(--container-width) * 100%);
  top: calc(251.5 / var(--container-height) * 100%);
  width: calc(29.5 / var(--container-width) * 100%);
  height: calc(15.5 / var(--container-height) * 100%);
}

.img-41-91 {
  left: calc(241 / var(--container-width) * 100%);
  top: calc(262.5 / var(--container-height) * 100%);
  width: calc(29.5 / var(--container-width) * 100%);
  height: calc(24.5 / var(--container-height) * 100%);
}

.img-41-92 {
  left: calc(484.5 / var(--container-width) * 100%);
  top: calc(327.5 / var(--container-height) * 100%);
  width: calc(9 / var(--container-width) * 100%);
  height: calc(52.5 / var(--container-height) * 100%);
}

.img-41-93 {
  left: calc(327.5 / var(--container-width) * 100%);
  top: calc(338.5 / var(--container-height) * 100%);
  width: calc(9 / var(--container-width) * 100%);
  height: calc(52.5 / var(--container-height) * 100%);
}

.img-41-94 {
  left: calc(170.5 / var(--container-width) * 100%);
  top: calc(358.5 / var(--container-height) * 100%);
  width: calc(9 / var(--container-width) * 100%);
  height: calc(52.5 / var(--container-height) * 100%);
}

.img-41-95 {
  left: calc(170.5 / var(--container-width) * 100%);
  top: calc(558.5 / var(--container-height) * 100%);
  width: calc(9 / var(--container-width) * 100%);
  height: calc(63.5 / var(--container-height) * 100%);
}

.img-41-96 {
  left: calc(1300 / var(--container-width) * 100%);
  top: calc(-12 / var(--container-height) * 100%);
  width: calc(52 / var(--container-width) * 100%);
  height: calc(52 / var(--container-height) * 100%);
}

.img-41-97 {
  left: calc(-12 / var(--container-width) * 100%);
  top: calc(-12 / var(--container-height) * 100%);
  width: calc(52 / var(--container-width) * 100%);
  height: calc(52 / var(--container-height) * 100%);
}

.img-41-98 {
  left: calc(1300 / var(--container-width) * 100%);
  top: calc(750 / var(--container-height) * 100%);
  width: calc(52 / var(--container-width) * 100%);
  height: calc(52 / var(--container-height) * 100%);
}

.img-41-99 {
  left: calc(-16 / var(--container-width) * 100%);
  top: calc(750 / var(--container-height) * 100%);
  width: calc(52 / var(--container-width) * 100%);
  height: calc(52 / var(--container-height) * 100%);
}

.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 20px;
  z-index: 1001;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 260px;
  height: 100vh;
  background-color: #0E0F1A;
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 60px 20px;
  transition: right 0.3s ease;
  z-index: 9999;
  font-family: "Tajawal", sans-serif;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.2) transparent;
}

.mobile-menu::-webkit-scrollbar {
  width: 6px;
}

.mobile-menu::-webkit-scrollbar-thumb {
  background-color: rgba(255,255,255,0.2);
  border-radius: 4px;
}

.mobile-menu.active {
  right: 0;
}

.menu-lang img {
  width: 20px;
  opacity: 0.8;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  cursor: pointer;
  font-size: 15px;
  transition: 0.2s;
}

.menu-item:hover {
  color: #32A3E5;
}

.menu-item .arrow {
  font-size: 12px;
  opacity: 0.7;
}

.menu-login {
  margin-top: auto;
  padding-top: 20px;
}

.menu-login .login-link {
  color: #E03178;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}

.menu-login .login-link:hover {
  opacity: 0.8;
}

.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
}

.menu-overlay.active {
  display: block;
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  .hamburger {
    display: block;
  }
}

@media (max-width: 768px) {
  .awards-container {
    position: relative;
    width: 100%;
    max-width: 1340px;
    aspect-ratio: 1340 / 786;
    background-color: rgba(56, 182, 255, 0.24);
    border-radius: 17px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  
  .awards-container {
    position: relative !important;
    height: auto !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 400px;
  }

  .background-glow-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(239px);
    z-index: -1;
    overflow: hidden;
  }

  .awards-graphics,
  .background-glow-wrapper,
  .awards-container > h2,
  .awards-container > img {
    position: absolute;
  }

  .awards-graphics,
  .background-glow-wrapper {
    top: 72px;
    left: 35px;
    height: 84%;
  }
  
  .user-choice-section {
    padding: 30px 10px;
  }

  .text-41-66 {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
  }

  .awards-graphics {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    justify-items: center;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
  }

  .awards-graphics img {
    position: static !important;
    width: 80px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
  }

  .awards-graphics img:hover {
    transform: scale(1.05);
  }

  .img-41-82,
  .img-41-83,
  .img-41-84,
  .img-41-85,
  .img-41-86,
  .img-41-87,
  .img-41-88,
  .img-41-89,
  .img-41-90,
  .img-41-91,
  .img-41-92,
  .img-41-93,
  .img-41-94,
  .img-41-95,
  .img-41-96,
  .img-41-97,
  .img-41-98,
  .img-41-99 {
    display: none !important;
  }

  .background-glow-wrapper {
    top: -20px;
    opacity: 0.6;
  }

  .img-41-62, .img-41-63 {
    width: 180px;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .awards-container {
    position: relative;
    width: 90%;
    margin: 0 auto;
    height: auto;
    background-color: rgba(56, 182, 255, 0.24);
    border-radius: 17px;
    padding: 60px 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .awards-graphics {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    justify-items: center;
    align-items: center;
    width: 100%;
    margin-top: 40px;
  }
  
  .awards-graphics, .background-glow-wrapper {
    top: 38px;
    left: 0;
    width: 100%;
    height: 83%;
  }

  .awards-graphics img {
    position: static !important;
    width: 90px;
    height: auto;
    object-fit: contain;
  }
  
  .img-41-82,
  .img-41-83,
  .img-41-84,
  .img-41-85,
  .img-41-86,
  .img-41-87,
  .img-41-88,
  .img-41-89,
  .img-41-90,
  .img-41-91,
  .img-41-92,
  .img-41-93,
  .img-41-94,
  .img-41-95,
  .img-41-96,
  .img-41-97,
  .img-41-98,
  .img-41-99 {
    display: none !important;
  }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100%;
  background-color: #111;
  padding-top: 60px;
  transition: right 0.3s ease, opacity 0.3s ease;
  z-index: 1000;
  opacity: 0;
}

.mobile-menu.active {
  right: 0;
  opacity: 1;
  display: flex;
}

.mobile-menu a {
  padding: 15px 25px;
  text-decoration: none;
  color: white;
  font-size: 18px;
  border-bottom: 1px solid #333;
}

.mobile-menu a:hover {
  background-color: #222;
}

.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
}

.menu-overlay.active {
  display: block;
}

@media (max-width: 768px) {
  .mobile-nav-container {
    background: linear-gradient(to right, #18181C, #20202A);
    border-radius: 40px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
    gap: 10px;
  }

  .mobile-logo img {
    height: 36px;
  }

  .btn-mobile {
    background: linear-gradient(to bottom, #32A3E5, #18181C);
    color: #fff;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    margin-right: 20px;
  }

  .btn-mobile:hover {
    opacity: 0.85;
  }

  .hamburger {
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    margin-left: 18px;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: -260px;
    width: 240px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 80px 20px;
    transition: right 0.3s ease;
    z-index: 9999;
  }

  .mobile-menu.active {
    right: 0;
  }

  .mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 18px;
  }

  .mobile-menu a:hover {
    color: #32A3E5;
  }

  .menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
  }

  .menu-overlay.active {
    display: block;
  }
}

@media (max-width: 768px) {
  header.site-header {
    display: none;
  }
}

@media (min-width: 769px) {
  .mobile-header {
    display: none;
  }
}