/* ========== BASE STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #f9f9f9;
  overflow-x: hidden;
}

/* ========== COMMON COMPONENTS ========== */
.section {
  padding: 80px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading h1 {
  font-size: 48px;
  font-weight: 700;
  color: #8865e1;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-heading h6 {
  color: #8865e1;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}

/* CTA Button */
.cta-button,
.final-cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #8865e1, #6b46c1);
  color: white;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.cta-button {
  font-size: 18px;
  padding: 18px 40px;
  box-shadow: 0 4px 15px rgba(136, 101, 225, 0.3);
}

.final-cta-button {
  font-size: 20px;
  padding: 20px 50px;
  box-shadow: 0 15px 35px rgba(136, 101, 225, 0.4);
}

.cta-button:hover,
.final-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(136, 101, 225, 0.5);
  color: white;
}

.final-cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.final-cta-button:hover::before {
  left: 100%;
}

/* ========== CUBE COMPONENTS ========== */
.cube {
  width: 100px;
  height: 100px;
  position: relative;
  transform-style: preserve-3d;
  margin: 0 auto;
  transform: rotateX(-10deg) rotateY(-10deg);
}

.cube-face {
  position: absolute;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  font-weight: bold;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.cube-face.front {
  transform: translateZ(50px);
}

.cube-face.back {
  transform: rotateY(180deg) translateZ(50px);
}

.cube-face.right {
  transform: rotateY(90deg) translateZ(50px);
}

.cube-face.left {
  transform: rotateY(-90deg) translateZ(50px);
}

.cube-face.top {
  transform: rotateX(90deg) translateZ(50px);
}

.cube-face.bottom {
  transform: rotateX(-90deg) translateZ(50px);
}

.cube-purple .cube-face {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.bx {
  font-family: boxicons !important;
  font-weight: 400;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  display: inline-block;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 40px;
}

/* ========== HERO SECTION ========== */
.hero-section {
  min-height: 50vh;
  padding: 80px 0;
  position: relative;
}

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

.hero-header {
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero-header h1 {
  font-size: 48px;
  font-weight: 700;
  color: #8865e1;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-header h2 {
  font-size: 24px;
  font-weight: 400;
  color: #666;
  margin-bottom: 40px;
  font-style: italic;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Video Interface */
.video-interface {
  width: 400px;
  height: 500px;
  background: #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
}

.video-area {
  width: 100%;
  height: 85%;
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.speaker-image {
  width: 280px;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.participant-count {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.live-indicator {
  background: #ff4444;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.video-controls {
  height: 15%;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 0 20px;
}

.control-btn {
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.control-btn.mute,
.control-btn.camera,
.control-btn.share {
  background: #4a4a4a;
  color: white;
}

.control-btn.end {
  background: #ff4444;
  color: white;
}

.control-btn:hover {
  transform: scale(1.1);
}

/* Stat Cards */
.stat-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.stat-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(136, 101, 225, 0.1);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.card-icon {
  width: 40px;
  height: 40px;
  background: rgba(136, 101, 225, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8865e1;
  font-size: 18px;
}

.card-title {
  font-size: 16px;
  font-weight: 600;
  color: #1e1e1e;
}

.stat-item {
  text-align: center;
  padding: 15px;
  background: rgba(136, 101, 225, 0.1);
  border-radius: 10px;
  margin-bottom: 15px;
}

.stat-item:last-child {
  margin-bottom: 0;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #8865e1;
  margin-bottom: 5px;
  display: block;
}

.stat-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.revenue-card .stat-item {
  padding: 20px;
}

.revenue-card .stat-number {
  font-size: 36px;
}

/* ========== TARGET AUDIENCE SECTION ========== */
.who-is-this-for {
  background-color: #f9f9f9;
  padding: 0 0;
}

.target-audience-card {
  background: transparent;
  transition: all 0.3s ease;
  position: relative;
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  height: 250px;
}

.target-audience-icon {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  text-align: center;
  line-height: 0px;
  position: relative;
  width: 100%;
  perspective: 1000px;
}

.target-audience-content h4 {
  font-size: 22px;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 10px;
  line-height: 1.3;
}

.target-audience-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.4;
  margin: 0;
  font-weight: 400;
}

/* ========== EXPERT BENEFITS SECTION ========== */
.why-become-expert {
  background-color: #f9f9f9;
  padding: 0;
}

.expert-benefit-card {
  background: white;
  border: 2px solid #e0e0e0;
  padding: 40px 30px;
  transition: all 0.3s ease;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  justify-content: flex-start;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  margin: 0 auto;
}

.expert-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: #8865e1;
}

.expert-benefit-icon {
  width: 80px;
  height: 80px;
  background: #f8f9ff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-right: 20px;
  flex-shrink: 0;
}

.expert-benefit-card:hover .expert-benefit-icon {
  background: #8865e1;
  color: white;
}

.expert-benefit-icon i {
  font-size: 36px;
  color: #8865e1;
  transition: all 0.3s ease;
}

.expert-benefit-card:hover .expert-benefit-icon i {
  color: white;
}

.expert-benefit-content {
  display: block;
  text-align: left;
  flex: 1;
}

.expert-benefit-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 15px;
  line-height: 1.3;
}

.expert-benefit-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}

/* ========== NUMBERS SECTION ========== */
.numbers-section {
  background: linear-gradient(135deg, #8865e1, #6b46c1);
  padding: 80px 0;
  color: white;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.number-card {
  text-align: center;
  padding: 40px 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.number-value {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  display: block;
}

.number-label {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

/* ========== HOW TO START SECTION ========== */
.how-to-start {
  margin: 0;
}

.vertical-tabs-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.tabs-navigation {
  flex: 0 0 350px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tab-item {
  display: flex;
  align-items: center;
  padding: 25px;
  background: white;
  border: 2px solid #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.tab-item:hover {
  transform: translateX(5px);
  border-color: #8865e1;
  box-shadow: 0 10px 25px rgba(136, 101, 225, 0.15);
}

.tab-item.active {
  background: linear-gradient(135deg, #8865e1, #7a6ad8);
  border-color: #8865e1;
  color: white;
  transform: translateX(10px);
  box-shadow: 0 15px 35px rgba(136, 101, 225, 0.25);
}

.tab-number {
  width: 50px;
  height: 50px;
  background: #f8f9ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #8865e1;
  margin-right: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.tab-item.active .tab-number {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.tab-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.3;
}

.tab-content p {
  font-size: 14px;
  opacity: 0.8;
  margin: 0;
  line-height: 1.4;
}

.tab-item.active .tab-content h4,
.tab-item.active .tab-content p {
  color: white;
}

.tabs-content {
  flex: 1;
  background: white;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-content-detailed {
  height: 100%;
}

.step-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.step-number-large {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #8865e1, #7a6ad8);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin-right: 20px;
  flex-shrink: 0;
}

.step-header h3 {
  font-size: 28px;
  font-weight: 600;
  color: #1e1e1e;
  margin: 0;
  line-height: 1.3;
}

.step-content-detailed p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.step-highlight {
  background: #f8f9ff;
  padding: 20px;
  border-left: 4px solid #8865e1;
  margin-bottom: 25px;
}

.step-highlight h4 {
  font-size: 16px;
  font-weight: 600;
  color: #8865e1;
  margin-bottom: 8px;
}

.step-highlight p {
  font-size: 14px;
  color: #8865e1;
  margin: 0;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
  background: linear-gradient(135deg, #8865e1, #6b46c1);
  padding: 80px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonials-carousel {
  overflow: hidden;
}

.testimonials-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.testimonial-text.arabic {
  direction: rtl;
  text-align: right;
}

/* 3D Cube with Person Image */
.testimonial-cube-container {
  flex: 0 0 250px;
  height: 350px;
  perspective: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-cube {
  width: 200px;
  height: 200px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-10deg) rotateY(-10deg);
  animation: testimonialFloat 6s ease-in-out infinite;
}

@keyframes testimonialFloat {

  0%,
  100% {
    transform: translateY(0px) rotateX(-10deg) rotateY(-10deg);
  }

  50% {
    transform: translateY(-15px) rotateX(-10deg) rotateY(-10deg);
  }
}

.testimonial-cube-face {
  position: absolute;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(10px);
}

.testimonial-cube-face.front {
  transform: translateZ(100px);
}

.testimonial-cube-face.back {
  transform: rotateY(180deg) translateZ(100px);
}

.testimonial-cube-face.right {
  transform: rotateY(90deg) translateZ(100px);
}

.testimonial-cube-face.left {
  transform: rotateY(-90deg) translateZ(100px);
}

.testimonial-cube-face.top {
  transform: rotateX(90deg) translateZ(100px);
}

.testimonial-cube-face.bottom {
  transform: rotateX(-90deg) translateZ(100px);
}

.person-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Testimonial Content */
.testimonial-content {
  flex: 1;
  max-width: 800px;
  padding-left: 40px;
}

.testimonial-text {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  font-style: italic;
}

.testimonial-author {
  margin-bottom: 10px;
}

.author-name {
  font-size: 22px;
  font-weight: 600;
  color: white;
  margin-bottom: 5px;
}

.author-specialty {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

/* Carousel Controls */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 50px;
  margin-bottom: 50px !important;
  padding-bottom: 0px;
}

.indicator-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator-dot.active {
  background: white;
  transform: scale(1.2);
}

/* ========== FINAL CTA SECTION ========== */
.final-cta-section {
  padding: 120px 0 0 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(136,101,225,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url("#grid#grid")"/></svg>');
  opacity: 0.3;
}

.final-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.final-cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: #8865e1;
  margin-bottom: 25px;
  line-height: 1.2;
}

.final-cta-content h2 {
  font-size: 24px;
  font-weight: 400;
  color: #8865e1;
  margin-bottom: 50px;
  line-height: 1.4;
}

/* Floating Elements */
.floating-element {
  position: absolute;
  opacity: 0.1;
  animation: floatUpDown 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  top: 20%;
  right: 15%;
  animation-delay: 2s;
}

.floating-element:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.floating-element:nth-child(4) {
  bottom: 30%;
  right: 10%;
  animation-delay: 1s;
}

@keyframes floatUpDown {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* ========== RESPONSIVE DESIGN ========== */

/* Large screens */
@media (max-width: 1200px) {
  .target-audience-card {
    height: 320px;
  }


  .target-audience-content h4 {
    font-size: 20px;
  }

  .target-audience-content p {
    font-size: 15px;
  }


  .expert-benefit-content h4 {
    font-size: 18px;
  }

  .expert-benefit-content p {
    font-size: 15px;
  }
}

/* Medium screens */
@media (max-width: 1024px) {
  .hero-header {
    margin-bottom: 30px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .video-interface {
    order: 1;
  }

  .stat-cards {
    order: 2;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
  }

  .vertical-tabs-container {
    flex-direction: column;
    gap: 30px;
  }


  .tabs-navigation {
    flex-direction: column;
    overflow-x: visible;
  }

  .tab-item {
    margin-right: 15px;
  }

  .tabs-content {
    padding: 30px;
  }

  .target-audience-card {
    height: 280px;
    margin-bottom: 40px;
  }

  .target-audience-content h4 {
    font-size: 18px;
  }

  .target-audience-content p {
    font-size: 14px;
  }

  .expert-benefit-content h4 {
    font-size: 17px;
  }

  .expert-benefit-content p {
    font-size: 14px;
  }
}



@media (max-width: 1399px) {
  .numbers-grid {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 50px;
  }
}


/* Tablet screens */
@media (max-width: 992px) {
  .hero-header {
    margin-bottom: 50px;
  }

  .testimonial-slide {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .testimonial-content {
    padding-left: 0;
    max-width: 100%;
  }

  .testimonial-text {
    font-size: 18px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .person-image {
    width: 100px ;
    height: 100px ;
  }

  .testimonials-container {
    padding: 0 10px;
  }

  .final-cta-section {
    padding: 80px 0;
  }

  .final-cta-content h1 {
    font-size: 36px;
  }

  .final-cta-content h2 {
    font-size: 20px;
  }

  .final-cta-button {
    font-size: 18px;
    padding: 18px 40px;
  }

  .numbers-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
  }

  .target-audience-card {
    height: 250px;
    margin-bottom: 30px;
  }

  .target-audience-icon {
    height: 160px;
  }

  .target-audience-content h4 {
    font-size: 16px;
  }

  .target-audience-content p {
    font-size: 13px;
  }


  .expert-benefit-content h4 {
    font-size: 16px;
  }

  .expert-benefit-content p {
    font-size: 13px;
  }
}

/* Mobile screens */
@media (max-width: 768px) {
  .hero-header h1 {
    font-size: 36px;
  }

  .hero-header h2 {
    font-size: 20px;
  }

  .video-interface {
    width: 320px;
    height: 400px;
  }

  .speaker-image {
    width: 220px;
    height: 280px;
  }

  .stat-cards {
    flex-direction: column;
    align-items: center;
  }

  .stat-card {
    width: 100%;
    max-width: 400px;
  }

  .stat-number {
    font-size: 28px;
  }

  .testimonials-section {
    padding: 60px 0;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .testimonial-cube {
    width: 120px;
    height: 120px;
  }

  .testimonial-cube-face {
    width: 120px;
    height: 120px;
  }

  .testimonial-cube-face.front,
  .testimonial-cube-face.back {
    transform: translateZ(60px);
  }

  .testimonial-cube-face.right {
    transform: rotateY(90deg) translateZ(60px);
  }

  .testimonial-cube-face.left {
    transform: rotateY(-90deg) translateZ(60px);
  }

  .testimonial-cube-face.top {
    transform: rotateX(90deg) translateZ(60px);
  }

  .testimonial-cube-face.bottom {
    transform: rotateX(-90deg) translateZ(60px);
  }

  .person-image {
    width: 80px !important;
    height: 80px !important;
  }

  .testimonial-text {
    font-size: 16px;
  }

  .author-name {
    font-size: 20px;
  }

  .testimonial-cube-container {
    height: 180px;
  }

  .final-cta-section {
    padding: 60px 0;
  }

  .final-cta-content h1 {
    font-size: 28px;
  }

  .final-cta-content h2 {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .final-cta-button {
    font-size: 16px;
    padding: 16px 35px;
  }

  .floating-element {
    display: none;
  }

  .tabs-navigation {
    flex-direction: column;
    overflow-x: visible;
  }

  .tab-item {
    flex: none;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .tab-item:hover,
  .tab-item.active {
    transform: none;
  }

  .tabs-content {
    padding: 25px 20px;
  }

  .step-header {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .step-number-large {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .step-header h3 {
    font-size: 24px;
  }

  .target-audience-card {
    height: 220px;
    margin-bottom: 25px;
    padding: 15px;
  }

  .target-audience-icon {
    height: 140px;
    margin-bottom: 20px;
  }

  .target-audience-content h4 {
    font-size: 15px;
  }

  .target-audience-content p {
    font-size: 12px;
  }

  .expert-benefit-card {
    margin-bottom: 20px;
    padding: 30px 20px;
  }

  .expert-benefit-content h4 {
    font-size: 15px;
  }

  .expert-benefit-content p {
    font-size: 12px;
  }

  .expert-benefit-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .expert-benefit-icon i {
    font-size: 30px;
  }

  .number-value {
    font-size: 36px;
  }

  .number-label {
    font-size: 16px;
  }
}

/* Small mobile screens */
@media (max-width: 480px) {
  .hero-header h1 {
    font-size: 28px;
  }

  .hero-header h2 {
    font-size: 18px;
  }

  .cta-button {
    font-size: 16px;
    padding: 15px 30px;
  }

  .video-interface {
    width: 280px;
    height: 350px;
  }

  .speaker-image {
    width: 180px;
    height: 230px;
  }

  .stat-card {
    padding: 20px;
  }

  .stat-number {
    font-size: 24px;
  }



  .person-image {
    width: 70px !important;
    height: 70px !important;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .author-name {
    font-size: 18px;
  }

  .author-specialty {
    font-size: 14px;
  }

  .final-cta-container {
    padding: 0 15px;
  }

  .final-cta-content h1 {
    font-size: 24px;
  }

  .final-cta-content h2 {
    font-size: 16px;
  }

  .final-cta-button {
    font-size: 14px;
    padding: 14px 30px;
  }

  .vertical-tabs-container {
    margin-top: 40px;
  }

  .tab-item {
    padding: 20px;
  }

  .tab-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
    margin-right: 15px;
  }

  .tab-content h4 {
    font-size: 16px;
  }

  .tab-content p {
    font-size: 13px;
  }

  .tabs-content {
    padding: 20px 15px;
  }

  .step-number-large {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .step-header h3 {
    font-size: 20px;
  }

  .numbers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .number-card {
    padding: 30px 15px;
  }

  .target-audience-card {
    height: 200px;
  }

  .target-audience-icon {
    height: 120px;
  }

  .target-audience-content h4 {
    font-size: 13px;
  }

  .target-audience-content p {
    font-size: 11px;
  }

  .expert-benefit-card {
    padding: 25px 15px;
  }

  .expert-benefit-content h4 {
    font-size: 14px;
  }

  .expert-benefit-content p {
    font-size: 11px;
  }

  .expert-benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .expert-benefit-icon i {
    font-size: 24px;
  }
}

/* Extra small screens */
@media (max-width: 360px) {
  .target-audience-card {
    height: 180px;
  }

  .target-audience-icon {
    height: 100px;
  }

  .target-audience-content h4 {
    font-size: 12px;
  }

  .target-audience-content p {
    font-size: 10px;
  }

  .expert-benefit-content h4 {
    font-size: 13px;
  }

  .expert-benefit-content p {
    font-size: 10px;
  }
}


@media (max-width: 1200px) {
  .testimonial-slide {
    display: block !important;
    /* نكسر flex بالكامل على الموبايل */
  }

  .testimonial-cube-container {
    margin-bottom: 20px;
    text-align: center;
  }

  .testimonial-content {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    direction: rtl;
    text-align: right;
    word-break: break-word;
  }

  .person-image {
    width: 150px;
    height: 150px;
  }

  .testimonial-content {
    margin-bottom: 80px !important;
  }
}