@font-face {
  font-family: IRANSansX;
  font-style: normal;
  font-weight: 100;
  src: url('./assets/woff2/IRANSansX-Thin.woff2') format('woff2');
}

@font-face {
  font-family: IRANSansX;
  font-style: normal;
  font-weight: 200;
  src: url('./assets/woff2/IRANSansX-UltraLight.woff2') format('woff2');
}

@font-face {
  font-family: IRANSansX;
  font-style: normal;
  font-weight: 300;
  src: url('./assets/woff2/IRANSansX-Light.woff2') format('woff2');
}

@font-face {
  font-family: IRANSansX;
  font-style: normal;
  font-weight: 500;
  src: url('./assets/woff2/IRANSansX-Medium.woff2') format('woff2');
}

@font-face {
  font-family: IRANSansX;
  font-style: normal;
  font-weight: 600;
  src: url('./assets/woff2/IRANSansX-DemiBold.woff2') format('woff2');
}

@font-face {
  font-family: IRANSansX;
  font-style: normal;
  font-weight: 800;
  src: url('./assets/woff2/IRANSansX-ExtraBold.woff2') format('woff2');
}

@font-face {
  font-family: IRANSansX;
  font-style: normal;
  font-weight: 900;
  src: url('./assets/woff2/IRANSansX-Black.woff2') format('woff2');
}

@font-face {
  font-family: IRANSansX;
  font-style: normal;
  font-weight: 950;
  src: url('./assets/woff2/IRANSansX-ExtraBlack.woff2') format('woff2');
}

@font-face {
  font-family: IRANSansX;
  font-style: normal;
  font-weight: 1000;
  src: url('./assets/woff2/IRANSansX-Heavy.woff2') format('woff2');
}

@font-face {
  font-family: IRANSansX;
  font-style: normal;
  font-weight: bold;
  src: url('./assets/woff2/IRANSansX-Bold.woff2') format('woff2');
}

@font-face {
  font-family: IRANSansX;
  font-style: normal;
  font-weight: normal;
  src: url('./assets/woff2/IRANSansX-Regular.woff2') format('woff2');
}

/* ===== root ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition: 0.3s;
}

html {
  scroll-behavior: smooth;
}

/* ===== theme ===== */
:root {
  --wf-blue: #2196F3;
  --wf-yellow: #ffcb0f;
  --wf-white: #ffffff;
  --wf-black: #000000;
  --wf-gray: #878787;
  --wf-back: #EAF4FC;

  /* Font */
  --font-primary: IRANSansX;

}

.ss03 {
  -moz-font-feature-settings: "ss03";
  -webkit-font-feature-settings: "ss03";
  font-feature-settings: "ss03";
}

ul {
  list-style: none;
}

p {
  direction: rtl;
}

/* ===== main header ===== */
.wf-header {
  height: 80%;
  background: var(--wf-blue);
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  direction: rtl;
  font-family: var(--font-primary);
}

/*  logo */
.wf-logo img {
  height: 46px;
}

/*  menu  */
.wf-nav {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 115px;

}

.wf-nav ul {
  display: flex;
  gap: 50px;
  font-size: 15px;
}

.wf-nav a {
  color: var(--wf-white);
  text-decoration: none;
  transition: color .2s ease;
}

.wf-nav a:hover {
  color: var(--wf-yellow);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: transparent;
  border: none;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: var(--wf-white);
  border-radius: 2px;
}

/* ===== active items =====*/
.wf-nav .is-active {
  color: var(--wf-yellow);
}

/* ===== buttons ===== */
.wf-nav .btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 28px;
  border-radius: 26px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}

.wf-nav .btn-primary {
  background: var(--wf-yellow);
  color: var(--wf-black);
}

.wf-nav .btn-outline {
  background: var(--wf-white);
  color: var(--wf-blue);
}


.wf-nav .btn:active {
  transform: scale(.96);
}

/* Landing */
.landing {
  height: 700px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 0px 0px;
  direction: rtl;
  font-family: var(--font-primary);
}

.landing-image {
  padding: 0;
}

.landing-image img {
  width: 100%;
}

.landing-content {
  display: flex;
  gap: 20px;
  flex-direction: column;
  padding: 0 65px;
  align-self: center;
  width: 50%;
  color: #333;
}

.landing-content h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 12px;
}

.landing-content .highlight {
  color: var(--wf-yellow);
}

.landing-content .subheading {
  color: var(--wf-gray);
  text-align: right;
  font-size: 27px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  margin-bottom: 20px;
}

.landing-content .description {
  width: 555px;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  color: var(--wf-gray);
}

.landing-btn {
  width: 186px;
  text-align: right;
  font-family: var(--font-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  background-color: var(--wf-blue);
  color: var(--wf-white);
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.landing-btn:hover {
  background: var(--wf-blue);
}

/* landing plugin */
.plugin-landing {
  direction: rtl;
  position: relative;
  height: 700px;
  display: flex;
  align-self: center;
  justify-content: flex-end;
  align-items: center;
  font-family: var(--font-primary);
}

.plugin-landing-content {
  right: 60px;
  width: 600px;
  position: absolute;

}

.plugin-landing-content h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 12px;
}

.plugin-landing-content .highlight {
  color: var(--wf-yellow);
}

.plugin-landing-content .description {
  margin: 19px 0;
  width: 555px;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  color: var(--wf-gray);
}

.plugin-landing-content ul {
  list-style: url("./assets/Polygon\ 1.svg");
}

.plugin-landing-content ul li {
  margin: 8px 0;
  color: var(--wf-gray);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.plugin-landing-image {
  width: 70%;
  height: 100%;
  display: flex;
  flex-direction: row-reverse;
  padding-left: 118px;
  align-items: center;
  background: url(./assets/Vector.webp);
  background-repeat: no-repeat;
  background-size: contain;
}

.plugin-landing-image img {
  width: 52%;
}

.plugin-gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.plugin-gallery img {
  width: 648px;
  height: 438px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s;
}

.plugin-gallery img:hover {
  transform: scale(1.05);
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 9999;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  width: 1080px;
  height: 720px;
  border-radius: 10px;
}

.lightbox span {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* landing Education */
.Education-landing {
  direction: rtl;
  position: relative;
  height: 700px;
  display: flex;
  align-self: center;
  justify-content: flex-end;
  align-items: center;
  font-family: var(--font-primary);
}

.Education-landing-content {
  right: 60px;
  width: 600px;
  position: absolute;

}

.Education-landing-content a {
  color: var(--wf-gray);
  text-decoration: none;
}

.Education-landing-content h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 12px;
}

.Education-landing-content .highlight {
  color: var(--wf-yellow);
}

.Education-landing-content .description {
  margin: 19px 0;
  width: 555px;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  color: var(--wf-gray);
}

.Education-landing-content ul {
  list-style: url("./assets/Polygon\ 1.svg");
}

.Education-landing-content ul li {
  margin: 8px 0;
  color: var(--wf-gray);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.Education-landing-image {
  width: 70%;
  height: 100%;
  display: flex;
  flex-direction: row-reverse;
  padding-left: 118px;
  align-items: center;
  background: url(./assets/Vector.webp);
  background-repeat: no-repeat;
  background-size: contain;
}

.Education-landing-image img {
  width: 52%;
}

.Education-Media {
  width: 1320px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  margin: 0 auto;
}

.Education-Media video {
  padding: 0;
  border-radius: 16px;
  border: solid #2196F3 1px;
  object-fit: cover;
}

.Education-Media .video-info {
  direction: rtl;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
}

.Education-Media .video-info h3 {
  color: var(--wf-black);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}

.Education-Media .video-info span {
  color: var(--wf-black);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}

.second {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 0 60px 60px;
  direction: rtl;
  font-family: var(--font-primary);
  gap: 40px;
}

.second-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.second-content {
  max-width: 50%;
  color: #333;
}

.second-content h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 16px;
}

.second-content .highlight {
  color: var(--wf-yellow);
}

.second-content .description {
  font-size: 15px;
  line-height: 2.2;
  color: var(--wf-gray);
}

.Third {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 60px 60px 0px;
  direction: rtl;
  font-family: var(--font-primary);
  gap: 40px;
}


.Third-content {
  max-width: 50%;
  color: var(--wf-black);
}

.Third-content h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 16px;
}

.Third-content .highlight {
  color: var(--wf-yellow);
}

.Third-content .description {
  font-size: 15px;
  line-height: 2.2;
  color: var(--wf-gray);
}

.Third-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.Fourth {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 0 60px 60px;
  direction: rtl;
  font-family: var(--font-primary);
  gap: 40px;
}


.Fourth-image img {
  max-width: 100%;
  height: auto;
  display: block;
}


.Fourth-content {
  max-width: 50%;
  color: var(--wf-black);
}

.Fourth-content h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 16px;
}

.Fourth-content .highlight {
  color: var(--wf-yellow);
}

.Fourth-content .description {
  font-size: 15px;
  line-height: 2.2;
  color: var(--wf-gray);
}

.Fifth {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  direction: rtl;
  flex-direction: column;
  font-family: var(--font-primary);
}

.Fifth h2 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 10px;
}

.Fifth .highlight {
  color: var(--wf-yellow);
}

.Fifth .description {
  color: var(--wf-gray);
  font-size: 16px;
  margin-bottom: 40px;
}

.features-bg {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-self: flex-end;
  width: 80%;
  height: 195px;
  background: var(--wf-blue);
  border-radius: 0 120px 120px 0;
  padding: 0px 95px 0px 0px;
  position: relative;
  overflow: hidden;
}

.features-bg2 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: flex-start;
  width: 80%;
  height: 195px;
  background: var(--wf-blue);
  border-radius: 120px 0px 0px 120px;
  padding: 0px 0px 0px 95px;
  position: relative;
  overflow: hidden;
}

.features-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0px;
}

.feature-item {
  width: 240px;
  height: 116px;
  padding: 0;
}

.feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="79" height="75" viewBox="0 0 79 75" fill="none"><path d="M74.9652 52.934C66.6328 72.6234 30.8824 77.278 11.1243 72.4969C-8.60519 64.1475 3.53464 41.3545 12.4624 26.4831C21.6035 11.2564 34.5995 -6.18418 54.329 2.16525C74.0585 10.5147 83.2977 33.2446 74.9652 52.934Z" fill="white" fill-opacity="0.24"/></svg>') no-repeat center/contain;
  background-position: center center;
  background-repeat: no-repeat;
  text-align: center;
}

.feature-content img {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}

.feature-item span {
  display: block;
  color: var(--wf-white);
  font-size: 16px;
}

.tab,
.tab2 {
  margin: 182px;
  padding: 60px 40px;
  font-family: var(--font-primary);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  direction: rtl;
}

.tab-header h2,
.tab2-header h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 10px;
}

.tab-header p {
  text-align: center;
  margin-bottom: 25px;
  color: var(--wf-black);
}

.tab2-header p {
  text-align: center;
  margin-bottom: 25px;
  color: var(--wf-black);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
}

.tab-header .highlight,
.tab2-header .highlight {
  color: var(--wf-yellow);
}

.tab-buttons,
.tab2-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
  margin-bottom: 40px;
}

.tab-buttons button,
.tab2-buttons button {
  padding: 10px 20px;
  background-color: var(--wf-white);
  border: 2px solid var(--wf-blue);
  color: var(--wf-blue);
  text-align: right;
  font-family: var(--font-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
  border-radius: 0px;
  cursor: pointer;
  transition: 0.3s;
}

.tab-buttons button:first-child,
.tab2-buttons button:first-child {
  border-radius: 0px 20px 20px 0px;
}

.tab-buttons button:last-child,
.tab2-buttons button:last-child {
  border-radius: 20px 0px 0px 20px;
}

.tab-buttons button.active,
.tab2-buttons button.active {
  background: var(--wf-blue);
  color: var(--wf-white);
}

.tab-body,
.tab2-body {
  display: none;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.tab-body.active,
.tab2-body.active {
  display: flex;
}

.plan-image {
  flex: 1;
  min-width: 300px;
}

.plan-image img {
  max-width: 100%;
  height: auto;
}

.plan-info {
  flex: 1;
  min-width: 300px;
}

.plan-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-info li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--wf-gray);
}

.plan-info .cross {
  color: var(--wf-blue);
}

.view-details {
  display: inline-block;
  color: var(--wf-blue);
  margin-top: 16px;
  font-size: 14px;
  text-decoration: none;
}

.plan-actions {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn {
  padding: 12px 30px;
  font-weight: bold;
  font-size: 14px;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}

.btn.blue {
  background: var(--wf-blue);
  color: var(--wf-white);
}

.btn.yellow {
  background: var(--wf-yellow);
  color: var(--wf-black);
}

.Sixth {
  font-family: var(--font-primary);
  display: flex;
  justify-content: center;
}

.Sixth-content {
  width: 1320px;
  border-radius: 150px;
  padding: 30px 75px;
  background: var(--wf-blue);
  color: var(--wf-white);
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--wf-white);
  font-family: var(--font-primary);
  direction: rtl;
  padding: 60px 40px 30px;
  margin-top: 112px;
  color: var(--wf-gray);
  position: relative;
}

.footer-top {
  padding: 20px 40px;
  display: flex;
  width: 1000px;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  border-radius: 24px;
  border: 1px dashed var(--wf-blue);
  background: var(--wf-white);
  text-align: center;
  margin-bottom: 40px;
  position: absolute;
  top: 0;
}

.footer-top-content {
  display: flex;
  width: 600px;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.footer-top .footer-title {
  color: var(--wf-black);
  text-align: right;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
}

.footer-top .footer-subtext {
  color: var(--wf-gray);
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.footer-btn {
  display: flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background: var(--wf-yellow);
  color: var(--wf-white);
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
}

.downside {
  width: 1200px;
  border-radius: 40px;
  background: var(--wf-back);
  display: flex;
  padding: 120px 60px 40px 60px;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.footer-column:nth-child(1) {
  display: none;
}

.footer-column:nth-child(2) {
  display: flex;
  flex-direction: row;
  gap: 70px;
  width: 700px;
}

.footer-column:nth-child(3) {
  width: 150px;
}

.office-box {
  background-color: var(--wf-white);
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.city {
  color: var(--wf-blue);
  margin-bottom: 8px;
}

.support-box {
  color: var(--wf-gray);
  text-align: justify;
  font-family: var(--font-primary);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
}

.support-box:nth-child(2) {
  width: 50%;
}

.support-box .highlight {
  color: var(--wf-yellow);
  font-weight: bold;
}

.support-box .highlight2 {
  font-weight: bold;
}

.support-box strong {
  font-family: var(--font-primary);
}

.support-box h4 {
  color: var(--wf-black);
  text-align: right;
  font-family: var(--font-primary);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
}

.support-box a {
  color: var(--wf-blue);
  text-decoration: none;
}

.logo-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo img {
  max-width: 130px;
  height: auto;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: var(--wf-black);
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--wf-blue);
}

.footer-bottom {
  text-align: center;
  color: var(--wf-gray);
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  padding-top: 20px;
}

.footer-bottom .highlight a {
  text-decoration: none;
  color: var(--wf-yellow);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.popup-overlay {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-overlay:target {
  display: flex;
}

.popup-box {
  background: var(--wf-white);
  padding: 45px 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  position: relative;
  text-align: right;
}

.popup-box h3 {
  margin-top: 40px;
}

.popup-box p {
  margin-bottom: 30px;
}

.popup-box .btn-primary {
  background: var(--wf-yellow);
  color: var(--wf-black);
}

.popup-box .btn-primary:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  background: var(--wf-white);
  color: var(--wf-blue);
}

.popup-close {
  position: absolute;
  top: 40px;
  left: 30px;
  font-size: 20px;
  text-decoration: none;
  color: var(--wf-gray);
}

.popup-close:hover {
  color: var(--wf-blue);
}

#close-popup {
  display: none;
}

.popup-box h3 {
  color: var(--wf-black);
  font-family: var(--font-primary);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 24px;
}

.popup-box .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  direction: rtl;
}

.popup-box .features-list li {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 16px;
  color: var(--wf-black);
  font-family: var(--font-primary);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.popup-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-box {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

/* ===== respansive ===== */
@media (max-width: 992px) {
  .wf-nav ul {
    gap: 28px;
    font-size: 14px;
  }

  .landing {
    flex-direction: column-reverse;
    text-align: center;
  }

  .landing-content {
    width: 100%;
    padding: 0px 24px;
    margin-top: 30px;
    gap: 0;
  }

  .landing-content h2 {
    text-align: right;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 12px;
  }

  .landing-content .description {
    width: 100%;
    font-size: 15px;
    text-align: right;
  }

  .landing-content .subheading {
    font-size: 20px;
    margin: 19px 0;
  }

  .landing-content .landing-btn {
    margin-top: 48px;
  }

  .landing-image {
    width: 100%;
  }

  /* landing plugin */
  .Education-landing {
    flex-direction: column-reverse;
    text-align: center;
  }

  .Education-landing-content {
    right: 24px;
    left: 24px;
    bottom: -260px;
    width: 88%;
    padding: 20px 0;
    text-align: right;
    position: absolute;
  }

  .Education-landing-content h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 12px;
  }

  .Education-landing-content .description {
    width: 100%;
  }

  .Education-landing-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 38%;
    padding-top: 80px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
  }

  .Education-landing-image img {
    width: 90%;
  }

  .Education-Media {
    margin-top: 250px;
    width: 392px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .Education-Media .video-card video {
    width: 392px;
    height: 216px;
  }

  /* landing plugin */
  .plugin-landing {
    flex-direction: column-reverse;
    text-align: center;
  }

  .plugin-landing-content {
    right: 44px;
    left: 44px;
    bottom: -60px;
    width: 88%;
    padding: 20px 0;
    text-align: right;
    position: absolute;
  }

  .plugin-landing-content h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 12px;
  }

  .plugin-landing-content .description {
    width: 100%;
  }

  .plugin-landing-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 38%;
    padding: 0;
  }

  .plugin-landing-image img {
    width: 90%;
  }

  .plugin-gallery {
    margin-top: 30px;
    flex-direction: column;
    width: 100%;
    padding: 24px;
  }

  .plugin-gallery img {
    width: 100%;
    height: 265px;
  }

  .lightbox img {
    width: 95%;
    height: 265px;
    border-radius: 10px;
  }

  .second {
    flex-direction: column;
    text-align: center;
    padding: 40px 0px;
  }

  .second-content {
    padding: 0 24px;
    max-width: 100%;
  }

  .second-image {
    width: 100%;
  }

  .Third {
    flex-direction: column-reverse;
    text-align: center;
    padding: 40px 0px;
  }

  .Third-content {
    padding: 0 24px;
    max-width: 100%;
  }

  .Third-image {
    display: flex;
    justify-content: flex-end;
    width: 100%;
  }

  .Fourth {
    flex-direction: column;
    text-align: center;
    padding: 40px 0px;
  }

  .Fourth-content {
    padding: 0 24px;
    max-width: 100%;
  }

  .Fourth-image {
    width: 100%;
  }

  .tab,
  .tab2 {
    margin: 10px 0 0 0px;
    padding: 0px 0px;
    font-family: var(--font-primary);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    direction: rtl;
  }

  .tab-body,
  .tab2-body {
    padding: 24px;
  }

  .tab-header h2,
  .tab2-header h2 {
    font-size: 24px;
  }

  .tab-header p {
    font-size: 16px;
  }

  .plan-info li {
    font-size: 15px;
  }

  .tab-buttons {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    flex-direction: row;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding: 0 0 0 20px;
  }

  .tab-buttons button:first-child {
    margin-right: 800px;
  }

  .tab-buttons button {
    flex: 0 0 auto;
    min-width: max-content;
    border: 1px solid var(--wf-blue);
  }

  .tab2-buttons {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    flex-direction: row;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding: 0 0 0 20px;
  }

  .tab2-buttons button:first-child {
    margin-right: 100px;
  }

  .tab2-buttons button {
    flex: 0 0 auto;
    min-width: max-content;
    border: 1px solid var(--wf-blue);
  }

  .plan-info .view-details {
    font-size: 15px;
  }

  .plan-info a {
    font-size: 16px;
  }

  .Fifth .description {
    padding: 0 24px;
  }

  .features-bg {
    width: 100%;
    justify-content: center;
    align-items: flex-end;
    padding: 0;
    border-radius: 0;
    height: 400px;
    align-self: center;
    gap: 48px;
  }

  .features-bg2 {
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 0;
    border-radius: 0;
    height: 450px;
    align-self: center;
  }

  .features-list {
    gap: 48px;
  }

  .popup-box .features-list {
    gap: 5px;
  }

  .Sixth {
    padding: 0 16px;
  }

  .feature-item {
    margin: 36px 0;
    height: 80px;
  }

  .Sixth-content {
    width: 100%;
    border-radius: 65px;
    padding: 40px 16px;
    background: var(--wf-blue);
    color: var(--wf-white);
    text-align: right;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
  }

  footer {
    padding: 0px 16px;
    margin-top: 250px;
    color: var(--wf-gray);
    position: relative;
  }

  .footer-top {
    flex-direction: column;
    width: 90%;
    top: -120px;
    padding: 20px 24px;
  }

  .footer-top-content {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }


  .footer-top .footer-subtext {
    text-align: right;
    font-size: 14px;
  }

  .downside {
    width: 100%;
    border-radius: 40px;
    padding: 120px 24px 40px 24px;
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .footer-column {
    margin-top: 40px;
  }

  .footer-column:nth-child(2) {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 40px;
  }

  .support-box {
    font-size: 14px;
  }

  .support-box:nth-child(2) {
    width: 100%;
  }

  .footer-bottom p {
    font-size: 8px;
  }

  .footer-bottom .highlight a {
    font-size: 8px;
  }

  .wf-nav.open {
    padding: 0;
    display: flex;
    gap: 16px;
    right: 0;
  }

  .wf-header {
    height: 100;
    padding: 24px;
    gap: 0;
  }

  .wf-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .wf-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--wf-gray);
    flex-direction: column;
    padding: 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .wf-nav.open {
    right: 0;
  }


  .wf-nav li {
    margin: 10px 0;
  }

  .wf-header {
    flex-wrap: wrap;
    row-gap: 12px;
  }

  .wf-nav ul {
    flex-direction: column;
    padding: 10px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .feature-item {
    width: 40%;
  }

}