@charset "UTF-8";
/* width */
::-webkit-scrollbar {
  width: 10px;
  border-radius: 15px;
}

/* Track */
::-webkit-scrollbar-track {
  background: none;
  margin-left: 0;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(0, 0, 0);
  border-radius: 15px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: gray;
  border-radius: 15px;
}

html,
body {
  overflow: auto !important;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  cursor: none;
}

*:hover {
  cursor: none !important;
}

.cursor-dot,
.cursor-circle {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  mix-blend-mode: difference;
}

.cursor-circle {
  width: 40px;
  height: 40px;
  border: 2px solid white;
  border-radius: 50%;
  mix-blend-mode: difference;
}

@media (hover: none) {
  .cursor-dot,
  .cursor-circle {
    display: none;
  }
  .underline-line {
    display: none;
  }
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none !important; /* WebKit */
  width: 0 !important;
  height: 0 !important;
}

/* Ensure no scrollbar space is reserved */
* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

*::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

body {
  font-family: "Poppins", sans-serif;
  /* Changed from Arial */
  overflow-x: hidden;
  background-color: rgb(249, 249, 249);
}

.ar_font {
  font-family: "Cairo", sans-serif !important;
  font-optical-sizing: auto;
  font-style: normal;
}

/* 3D Canvas */
#canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  pointer-events: auto;
}

/* Content overlay */
.content-overlay {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.section {
  height: 100vh;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 100px;
  /* Add this line */
}

.text-content {
  pointer-events: auto;
  max-width: 600px;
  padding: 2rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

/* Text positioning classes */
.hero-text {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
}

.about-text {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}

.mission-vision {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}

.logistics-text-intro {
  position: absolute;
  right: 5%;
  top: 30%;
  transform: translateY(-50%);
}

.logistics-text-mian {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
}

.facilities-text {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
}

.center-left {
  position: absolute;
  left: 5%;
  top: 50%;
}

.right-full {
  position: absolute;
  right: 5%;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

/* Typewriter effect */
.typewriter {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  min-height: 3.5rem;
  background: linear-gradient(45deg, #b71833, #3a5ba7);
  background-size: 300% 300%;
  animation: gradientShift 3s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #b71833;
}

/* Animation classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
}

.zoom-in {
  opacity: 0;
  transform: scale(0.8);
}

.slide-left {
  opacity: 0;
  transform: translateX(-50px);
}

.slide-right {
  opacity: 0;
  transform: translateX(50px);
}

/* Navigation */
.nav-dots {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(183, 24, 51, 0.4);
  margin: 1rem 0;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(183, 24, 51, 0.6);
  position: relative;
}

.nav-dot.active {
  background: rgb(183, 24, 51);
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

/* Loading screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0f0f0f;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 1000;
  transition: opacity 1s ease;
}

.loading-text {
  font-size: 2rem;
  color: white;
  margin-bottom: 2rem;
}

.loading-progress {
  width: 300px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.loading-bar {
  height: 100%;
  background: linear-gradient(45deg, #4ecdc4, #45b7d1);
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 2px;
}

/* Scroll indicator */
.scroll-indicator {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.9rem;
  text-align: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.scroll-indicator.hidden {
  opacity: 0;
}

.scroll-arrow {
  animation: bounce 2s infinite;
  margin-top: 0.5rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
/* Performance indicator */
.performance-indicator {
  position: fixed;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  z-index: 100;
  display: none;
}

.performance-indicator.show {
  display: block;
}

/* Morphing status indicator */
.morphing-status {
  position: fixed;
  top: 4rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: #4ecdc4;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  z-index: 100;
  display: none;
  border: 1px solid #4ecdc4;
}

.morphing-status.show {
  display: block;
}

/* Responsive design */
@media (max-width: 768px) {
  .text-content {
    max-width: 90%;
    padding: 1.5rem;
  }
  .typewriter {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .nav-dots {
    right: 1rem;
  }
}
/* Responsive Top Navigation */
.gradient-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 15vh; /* 15% من ارتفاع الشاشة */
  z-index: 10; /* تحكم هنا في طبقة الظهور */
  pointer-events: none; /* مهم عشان ميتعارضش مع التفاعل مع العناصر تحت */
}

body.light .gradient-layer {
  background: linear-gradient(to bottom, #e5e5e5, rgba(32, 32, 32, 0));
  mix-blend-mode: screen;
}

body.dark .gradient-layer {
  background: linear-gradient(to bottom, #202020, rgba(32, 32, 32, 0));
  mix-blend-mode: multiply;
}

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  transition: all 0.3s ease;
  z-index: 1000;
  direction: ltr !important;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  color: #b71833;
  text-decoration: none;
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  color: #3a5ba7;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  background-color: rgb(249, 249, 249);
}

.nav-icon:hover {
  transform: translateY(-2px);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .top-nav {
    padding: 0 1rem;
    height: 60px;
  }
  .nav-logo {
    font-size: 1.2rem;
  }
  .nav-center span {
    display: none;
  }
  .nav-center {
    left: 45%;
  }
  .nav-right {
    gap: 1rem;
  }
  .nav-icon {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 480px) {
  .toggle-switch,
  .language_dropdown {
    scale: 0.4;
  }
  .top-nav {
    padding: 0 0.75rem;
    padding-top: 30px;
  }
  .nav-right {
    gap: 0.5rem;
  }
  .nav-icon {
    width: 25px;
    height: 20px;
  }
}
.logo-img {
  width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

.menu-img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}

.nav-icon img {
  width: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease;
}

.nav-icon:hover img {
  transform: scale(1.1);
}

/* Mobile responsive updates */
@media (max-width: 768px) {
  .logo-img {
    width: 100px;
  }
}
@media (max-width: 480px) {
  .nav-icon img {
    width: 40px;
    height: 40px;
  }
}
.toggle-switch {
  position: relative;
  width: 57.08px;
  height: 27.13px;
  background-color: #3a5ba7;
  border-radius: 30px;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  scale: 0.8;
}

.toggle-switch img {
  position: absolute;
  width: 17px;
  height: 17px;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.3s, filter 0.3s;
  z-index: 3;
}

.toggle-switch img.sun {
  left: 5.5px;
}

.toggle-switch img.moon {
  right: 5.5px;
}

.toggle-ball {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
  transition: transform 0.3s;
  z-index: 1;
}

#modeToggle {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 10;
}

#modeToggle:checked ~ .toggle-ball {
  transform: translateX(29px) translateY(-50%);
}

#modeToggle:checked ~ img.sun {
  filter: brightness(0) saturate(100%) invert(100%) sepia(20%) saturate(500%) hue-rotate(240deg);
}

#modeToggle:checked ~ img.moon {
  filter: brightness(1);
}

#modeToggle:not(:checked) ~ img.sun {
  filter: brightness(1);
}

#modeToggle:not(:checked) ~ img.moon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(20%) saturate(500%) hue-rotate(240deg);
}

.language_dropdown {
  position: relative;
  width: 57.08px;
  height: 27.13px;
  background-color: #3a5ba7;
  border-radius: 30px;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  scale: 0.8;
}

.language_dropdown img {
  position: absolute;
  width: 20.5px;
  height: 20.5px;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.3s, filter 0.3s;
  z-index: 3;
}

.language_dropdown img.language {
  left: 5.5px;
}

.language_dropdown img.dropdown {
  right: 5.5px;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 500px;
}

.stat-item {
  background: rgba(74, 119, 202, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  color: #4a77ca;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

.dark .stat-label {
  color: #9ca3af;
}

@media (max-width: 480px) {
  .mission-vision {
    width: 100vw;
    top: 40%;
  }
  .about-text {
    top: 60%;
  }
  .vision {
    top: 20%;
  }
  .logistics-text-intro {
    top: 60%;
  }
  .logistics-text-mian {
    top: 30%;
    transform: translateY(-50%);
  }
  .facilities-text {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
  }
  /* Stats Grid */
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
    max-width: 500px;
  }
  .stat-item {
    background: rgba(74, 119, 202, 0.1);
    padding: 1rem;
    border-radius: 12px;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    text-align: center;
  }
  .facilities-text {
    position: absolute;
    right: 5%;
    top: 40%;
    transform: translateY(-50%);
  }
}
/* Services Section with Iframe */
.services-text {
  position: absolute;
  left: 0;
  right: 0;
  top: 10%;
  margin: auto;
  transform: none;
  text-align: center;
  max-width: none;
}

.services-iframe-container {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0%;
  width: 100%;
  height: 90vh;
  border-radius: 20px;
  border: none;
  pointer-events: none;
}

.services-iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
  pointer-events: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .services-iframe-container {
    position: relative;
    bottom: 0;
    width: 100%;
    height: 80vh;
    margin: 0 auto;
  }
}
/* Facility Cards Styling - Smaller version */
.facility-card {
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.facility-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.facility-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.facility-number {
  font-family: "Poppins", sans-serif;
  text-shadow: 0 0 10px currentColor;
}

.facility-title {
  letter-spacing: 0.5px;
}

.facility-description {
  line-height: 1.4;
}

.contact-text {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

/* Contact Card Styling */
.contact-card {
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-item {
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-icon {
  transition: all 0.3s ease;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item:hover .contact-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Modal Styling */
#contactModal {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

/* Custom scrollbar for modal body */
.modal-body::-webkit-scrollbar {
  width: 6px;
}

.modal-body::-webkit-scrollbar-track {
  background: transparent;
}

.modal-body::-webkit-scrollbar-thumb {
  background: #cbd5e0;
  border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background: #a0aec0;
}

/* Dark mode adjustments for facilities */
body.dark .facility-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark .facility-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

body.dark .contact-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .facilities-text {
    position: absolute;
    right: 5%;
    top: 15%;
    transform: translateY(0);
    max-width: 90%;
  }
  .facility-card {
    padding: 0.75rem;
    min-height: 120px;
  }
  .facility-number {
    font-size: 1.5rem;
  }
  .facility-title {
    font-size: 0.75rem;
  }
  .facility-description {
    font-size: 0.6rem;
  }
  .contact-card {
    padding: 1rem;
    min-width: 95%;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}
@media (max-width: 480px) {
  .facilities-text {
    top: 10%;
    width: 100%;
  }
  .contact-text {
    font-size: 0.8rem;
    position: relative;
    right: 0;
    left: 0;
    margin: auto;
    top: 10%;
    text-align: start;
    transform: translateY(-50%);
  }
  .facility-card {
    padding: 0.5rem;
    min-height: 100px;
  }
  .facility-icon i {
    font-size: 1.5rem !important;
  }
  .facility-number {
    font-size: 1.25rem;
  }
}
/* Facilities Section Styling */
.facility-icon-warehouses {
  color: #4a90e2; /* blue-400 */
}

.facility-icon-offices {
  color: #48bb78; /* green-400 */
}

.facility-icon-distribution {
  color: #f56565; /* red-400 */
}

.facility-icon-products {
  color: #9f7aea; /* purple-400 */
}

.facility-icon-customers {
  color: #ed8936; /* yellow-400 */
}

.facility-number-warehouses {
  color: #4a90e2; /* blue-400 */
}

.facility-number-offices {
  color: #48bb78; /* green-400 */
}

.facility-number-distribution {
  color: #f56565; /* red-400 */
}

.facility-number-products {
  color: #9f7aea; /* purple-400 */
}

.facility-number-customers {
  color: #ed8936; /* yellow-400 */
}

.facility-title-text {
  color: #ffffff;
}

.facility-description-text {
  color: #d1d5db; /* gray-300 */
}

/* Contact Section Styling */
.contact-icon-email {
  background-color: rgba(66, 153, 225, 0.2); /* blue-500/20 */
}

.contact-icon-phone {
  background-color: rgba(72, 187, 120, 0.2); /* green-500/20 */
}

.contact-icon-address,
.contact-icon-jeddah,
.contact-icon-riyadh {
  background-color: rgba(245, 101, 101, 0.2); /* red-500/20 */
}

.contact-icon-hours,
.contact-icon-working-hours {
  background-color: rgba(159, 122, 234, 0.2); /* purple-500/20 */
}

.contact-icon-email-color {
  color: #4299e1; /* blue-400 */
}

.contact-icon-phone-color {
  color: #48bb78; /* green-400 */
}

.contact-icon-address-color,
.contact-icon-jeddah-color,
.contact-icon-riyadh-color {
  color: #f56565; /* red-400 */
}

.contact-icon-hours-color,
.contact-icon-working-hours {
  color: #9f7aea; /* purple-400 */
}

.contact-label-text {
  color: #d1d5db; /* gray-300 */
}

.contact-value-text {
  color: #ffffff;
}

.contact-button-text {
  color: #ffffff;
}

/* Dark theme overrides */
body.dark .facility-title-text {
  color: #e5e5e5;
}

body.dark .facility-description-text {
  color: #9ca3af;
}

body.dark .contact-label-text {
  color: #9ca3af;
}

body.dark .contact-value-text {
  color: #e5e5e5;
}

body.dark .contact-button-text {
  color: #ffffff;
}

/* Light theme overrides */
body.light .facility-title-text {
  color: #333333;
}

body.light .facility-description-text {
  color: #6b7280;
}

body.light .contact-label-text {
  color: #6b7280;
}

body.light .contact-value-text {
  color: #333333;
}

body.light .contact-button-text {
  color: #ffffff;
}

/* journey */
/* Magical Journey Section - Interactive Year Dots */
.journey-container {
  position: relative;
  width: 100%;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  gap: 2rem;
  /* CRITICAL: Enable all interactions */
  pointer-events: auto !important;
  -webkit-user-select: text !important;
     -moz-user-select: text !important;
          user-select: text !important;
}

/* Header */
.journey-header {
  text-align: center;
  max-width: 900px;
  z-index: 10;
  /* Enable text selection */
  pointer-events: auto !important;
  -webkit-user-select: text !important;
     -moz-user-select: text !important;
          user-select: text !important;
}

.journey-title {
  font-size: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(135deg, #3a5ba7, #b71833);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.8rem;
  opacity: 0;
  transform: translateY(20px);
  line-height: 1.1;
  /* Enable text selection */
  pointer-events: auto !important;
  -webkit-user-select: text !important;
     -moz-user-select: text !important;
          user-select: text !important;
  cursor: text !important;
}

.journey-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: #4a5568;
  opacity: 0;
  transform: translateY(15px);
  line-height: 1.3;
  /* Enable text selection */
  pointer-events: auto !important;
  -webkit-user-select: text !important;
     -moz-user-select: text !important;
          user-select: text !important;
  cursor: text !important;
}

/* Magical Timeline */
.journey-timeline {
  display: flex;
  justify-content: center;
  width: 90%;
  position: relative;
  z-index: 5;
}

/* Timeline Milestones */
.timeline-milestone {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 5;
  max-width: 200px;
  opacity: 0;
  transform: translateY(30px);
  /* Enable all interactions */
  pointer-events: auto !important;
  -webkit-user-select: text !important;
     -moz-user-select: text !important;
          user-select: text !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1rem 0.5rem;
  border-radius: 16px;
  position: relative;
}

/* Interactive Hover Effects for Milestones */
.timeline-milestone:hover {
  transform: translateY(25px) scale(1.02);
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Magical Year Dots */
.milestone-dot-container {
  position: relative;
  margin-bottom: 1.5rem;
  /* Enable interactions */
  pointer-events: auto !important;
}

.milestone-dot {
  width: clamp(60px, 8vw, 80px);
  height: clamp(60px, 8vw, 80px);
  background: linear-gradient(135deg, #3a5ba7, #4a77ca);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 4px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 32px rgba(58, 91, 167, 0.3), inset 0 2px 8px rgba(255, 255, 255, 0.2);
  transform: scale(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  /* Enable interactions */
  pointer-events: auto !important;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none; /* Years in dots shouldn't be selectable */
}

/* Current Year Dot */
.current-dot {
  background: linear-gradient(135deg, #b71833, #d63447);
  box-shadow: 0 8px 32px rgba(183, 24, 51, 0.4), inset 0 2px 8px rgba(255, 255, 255, 0.2);
  animation: currentPulse 3s infinite ease-in-out;
}

@keyframes currentPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 32px rgba(183, 24, 51, 0.4), inset 0 2px 8px rgba(255, 255, 255, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 48px rgba(183, 24, 51, 0.6), inset 0 2px 8px rgba(255, 255, 255, 0.3);
  }
}
/* Year Text Inside Dots */
.dot-year {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  z-index: 2;
  position: relative;
  /* Disable text selection for years */
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
  pointer-events: none !important;
}

/* Magical Glow Effect */
.dot-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: radial-gradient(circle, rgba(58, 91, 167, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.current-glow {
  background: radial-gradient(circle, rgba(183, 24, 51, 0.4) 0%, transparent 70%);
}

/* Interactive Dot Hover Effects */
.milestone-dot:hover {
  transform: scale(1.1) rotateY(10deg);
  box-shadow: 0 12px 48px rgba(58, 91, 167, 0.5), inset 0 3px 12px rgba(255, 255, 255, 0.3);
}

.current-dot:hover {
  box-shadow: 0 12px 48px rgba(183, 24, 51, 0.7), inset 0 3px 12px rgba(255, 255, 255, 0.3);
}

.milestone-dot:hover .dot-glow {
  opacity: 1;
  animation: glowPulse 1.5s infinite ease-in-out;
}

@keyframes glowPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}
/* Click Effect */
.milestone-dot:active {
  transform: scale(1.05);
  transition: transform 0.1s ease;
}

/* Milestone Content */
.milestone-content {
  /* Enable text selection */
  pointer-events: auto !important;
  -webkit-user-select: text !important;
     -moz-user-select: text !important;
          user-select: text !important;
  transition: all 0.3s ease;
}

.milestone-content h3 {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #2d3748;
  margin: 0 0 0.5rem 0;
  /* Enable text selection */
  pointer-events: auto !important;
  -webkit-user-select: text !important;
     -moz-user-select: text !important;
          user-select: text !important;
  transition: all 0.3s ease;
}

.timeline-milestone:hover .milestone-content h3 {
  color: #3a5ba7;
  transform: translateY(-2px);
}

.timeline-milestone.current:hover .milestone-content h3 {
  color: #b71833;
}

.milestone-content p {
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
  color: #4a5568;
  margin: 0;
  line-height: 1.4;
  /* Enable text selection */
  pointer-events: auto !important;
  -webkit-user-select: text !important;
     -moz-user-select: text !important;
          user-select: text !important;
  transition: all 0.3s ease;
}

.timeline-milestone:hover .milestone-content p {
  color: #2d3748;
  transform: translateY(-1px);
}

/* Magical Connection Lines */
.connection-line {
  position: relative;
  flex: 1;
  height: 4px;
  margin: 0 1rem;
  border-radius: 2px;
  max-width: 100px;
  overflow: hidden;
  top: 50%;
  transform: translate(0, -50%);
}

.line-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #3a5ba7, #b71833);
  border-radius: 2px;
  transition: width 1s ease-in-out;
}

/* Magical Particles */
.line-particles {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
  opacity: 0;
  display: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #3a5ba7;
  border-radius: 50%;
  opacity: 0;
  display: none;
}

.particle:nth-child(1) {
  left: 20%;
  animation: particleMove1 2s infinite ease-in-out;
}

.particle:nth-child(2) {
  left: 50%;
  animation: particleMove2 2s infinite ease-in-out 0.5s;
}

.particle:nth-child(3) {
  left: 80%;
  animation: particleMove3 2s infinite ease-in-out 1s;
}

@keyframes particleMove1 {
  0%, 100% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}
@keyframes particleMove2 {
  0%, 100% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}
@keyframes particleMove3 {
  0%, 100% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.8);
  }
}
/* Company Values */
.journey-values {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  width: 100%;
  max-width: 900px;
  flex-wrap: wrap;
}

.value-item {
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  color: #3a5ba7;
  padding: clamp(0.6rem, 2vw, 0.8rem) clamp(1rem, 3vw, 1.3rem);
  border-radius: 25px;
  font-size: clamp(0.75rem, 1.8vw, 0.85rem);
  border: 1px solid rgba(58, 91, 167, 0.2);
  opacity: 0;
  transform: translateY(15px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  /* Enable text selection */
  pointer-events: auto !important;
  -webkit-user-select: text !important;
     -moz-user-select: text !important;
          user-select: text !important;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

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

.value-item:hover::before {
  left: 100%;
}

.value-item:hover {
  transform: translateY(12px) scale(1.02);
  background: rgba(58, 91, 167, 0.1);
  border-color: rgba(58, 91, 167, 0.3);
  box-shadow: 0 8px 32px rgba(58, 91, 167, 0.2);
  color: #2d3748;
}

/* Dark Theme */
body.dark .journey-title {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.dark .journey-subtitle {
  color: #a0aec0;
}

body.dark .milestone-content h3 {
  color: #e2e8f0;
}

body.dark .milestone-content p {
  color: #a0aec0;
}

body.dark .timeline-milestone:hover {
  background: rgba(45, 55, 72, 0.1);
}

body.dark .timeline-milestone:hover .milestone-content h3 {
  color: #a0aec0 !important; /* Light blue-gray for dark mode */
  transform: translateY(-2px);
}

body.dark .timeline-milestone.current:hover .milestone-content h3 {
  color: #ff6b6b !important; /* Light red for current milestone in dark mode */
}

body.dark .timeline-milestone:hover .milestone-content p {
  color: #cbd5e0 !important; /* Lighter gray for better readability in dark mode */
  transform: translateY(-1px);
}

/* Optional: Add subtle glow effect for dark mode hover */
body.dark .timeline-milestone:hover .milestone-content h3 {
  text-shadow: 0 1px 3px rgba(160, 174, 192, 0.3);
}

body.dark .timeline-milestone.current:hover .milestone-content h3 {
  text-shadow: 0 1px 3px rgba(255, 107, 107, 0.3);
}

body.dark .value-item {
  background: rgba(45, 55, 72, 0.9);
  color: #a0aec0;
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark .value-item:hover {
  background: rgba(58, 91, 167, 0.2);
  color: #e2e8f0;
}

/* Fixed Company Structure */
#structure {
  --ultra-primary: #3a5ba7;
  --ultra-secondary: #b71833;
  --ultra-gradient: linear-gradient(135deg, #3a5ba7, #b71833);
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.structure-wrapper {
  position: relative;
  width: 100%;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  pointer-events: auto !important;
  -webkit-user-select: text !important;
     -moz-user-select: text !important;
          user-select: text !important;
}

/* Header */
.structure-header {
  text-align: center;
  margin-bottom: 1rem;
}

.structure-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  background: var(--ultra-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 0.5rem 0;
  opacity: 0;
  transform: translateY(30px);
  letter-spacing: -0.02em;
}

.structure-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: #64748b;
  margin: 0 0 1rem 0;
  opacity: 0;
  transform: translateY(20px);
}

.header-line {
  width: 150px;
  height: 2px;
  background: var(--ultra-gradient);
  border-radius: 2px;
  margin: 0 auto;
  opacity: 0;
  transform: scaleX(0);
  display: none;
}

/* Fixed Structure Container - Reduced Gap */
.structure-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1; /* Reduced from 8rem */
  max-width: 900px; /* Reduced from 1000px */
  width: 100%;
  position: relative;
}

/* Main Node (Ultra Group) - Slightly Smaller */
.main-node {
  position: relative;
  width: 250px; /* Reduced sizes */
  height: 250px;
  border-radius: 50%;
  background: var(--ultra-gradient);
  box-shadow: var(--shadow-soft), 0 0 0 6px rgba(58, 91, 167, 0.1), 0 0 0 12px rgba(58, 91, 167, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  opacity: 0;
  transform: scale(0);
  transition: all 0.4s ease;
  cursor: pointer;
  flex-shrink: 0;
}

.main-node::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 91, 167, 0.2) 0%, transparent 70%);
  opacity: 0;
  animation: mainNodeGlow 4s ease-in-out infinite;
}

@keyframes mainNodeGlow {
  0%, 100% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}
.main-node:hover {
  transform: scale(1.05);
}

/* Logo Wrappers */
.logo-wrapper {
  border-radius: 75px;
  padding: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.main-logo {
  width: 100%; /* Reduced sizes */
  filter: brightness(0) invert(1);
}

.logo-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Branches Container - Tighter Spacing */
.branches-container {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vh, 3rem); /* Reduced gap */
  flex: 1;
  min-width: 0;
}

/* Branch */
.branch {
  display: flex;
  align-items: center;
  position: relative;
  gap: 1rem; /* Reduced gap */
}

/* Connection Lines - Shorter */
.connection-line_Structre {
  width: 100px; /* Reduced from 80px */
  height: 0.1rem;
  background: var(--ultra-primary);
  border-radius: 2px;
  opacity: 0;
  transform-origin: left center;
  transition: all 0.8s ease;
}

.sub-connection-line_Structre {
  width: 100px; /* Reduced from 60px */
  height: 2px;
  background: var(--ultra-secondary);
  border-radius: 2px;
  opacity: 0;
  transform-origin: left center;
  transition: all 0.8s ease;
}

/* Node Cards - Logo Only */
.node-card {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: scale(0);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.node-card .logo-wrapper {
  max-width: 200px;
}

.node-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 16px;
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.node-card:hover::before {
  transform: translateX(100%);
}

.node-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.node-card:hover .logo-wrapper {
  transform: scale(1.1);
}

/* Sub Branch - Reduced Margin */
.sub-branch {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

/* Dark Theme */
body.dark .structure-subtitle {
  color: #94a3b8;
}

body.dark .node-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Fixed Mobile Layout */
@media (max-width: 768px) {
  .structure-wrapper {
    padding: 1rem;
    gap: 1rem;
  }
  .structure-container {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    max-width: 100%;
  }
  .main-node {
    width: 100px;
    height: 100px;
    order: 1;
  }
  .main-logo {
    width: 70px;
    height: 42px;
  }
  /* Mobile Branches Container - Horizontal Layout */
  .branches-container {
    order: 2;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    width: 100%;
    max-width: 400px;
  }
  /* Mobile Branch Layout */
  .pharma-branch {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .distribution-branch {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  /* Mobile Connection Lines - Vertical */
  .pharma-branch .connection-line_Structre,
  .distribution-branch .connection-line_Structre {
    width: 3px;
    height: 30px;
    background: linear-gradient(180deg, var(--ultra-primary), rgba(58, 91, 167, 0.4));
    transform: scaleY(0);
    transform-origin: top center;
  }
  .sub-connection-line_Structre {
    width: 2px;
    height: 25px;
    background: linear-gradient(180deg, var(--ultra-secondary), rgba(183, 24, 51, 0.4));
    transform: scaleY(0);
    transform-origin: top center;
  }
  .sub-branch {
    margin: 0.5rem 0 0 0;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .node-card {
    margin: 0;
  }
  .node-card {
    min-width: 150px;
    min-height: 100px;
  }
  .node-card .logo-wrapper {
    min-width: 150px;
    min-height: 100px;
  }
  .sub-branch .node-card {
    position: absolute;
    margin-inline-start: -40vw;
    margin-top: 20px;
    min-width: 300px;
  }
  .sub-branch .node-card .logo-wrapper {
    min-width: 100% !important;
    min-height: 100px;
  }
}
@media (max-width: 480px) {
  .structure-wrapper {
    padding: 0.5rem;
  }
  .branches-container {
    gap: 1.5rem;
    max-width: 300px;
  }
  .main-node {
    width: 150px;
    height: 150px;
    padding: 0;
  }
  .main-logo {
    width: 100%;
    height: 60%;
  }
  .node-card .logo-wrapper {
    width: 50 vw;
    height: 36px;
  }
}
@media (max-width: 360px) {
  .branches-container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .pharma-branch,
  .distribution-branch {
    width: 100%;
  }
  .pharma-branch .connection-line_Structre,
  .distribution-branch .connection-line_Structre {
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--ultra-primary), rgba(58, 91, 167, 0.4));
    transform: scaleX(0);
    transform-origin: left center;
  }
  .sub-connection-line_Structre {
    width: 25px;
    height: 2px;
    background: linear-gradient(90deg, var(--ultra-secondary), rgba(183, 24, 51, 0.4));
    transform: scaleX(0);
    transform-origin: left center;
  }
  .pharma-branch,
  .distribution-branch,
  .sub-branch {
    flex-direction: row;
    justify-content: center;
  }
}
.menu-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 70vh;
  margin: 0;
  margin-right: 20px;
  padding: 0;
  list-style: none;
  max-height: 70vh;
  padding-right: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
  overflow-y: auto !important; /* تمكين التمرير العمودي */
  overflow-x: visible !important; /* جعل المحتوى الأفقي مرئي حتى لو خرج عن العنصر */
  position: relative !important;
  padding-inline: 50px;
}

/* Custom scrollbar for menu-text */
.menu-text::-webkit-scrollbar {
  width: 6px;
}

.menu-text::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.menu-text::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.menu-text::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* Menu Items Spacing */
.menu-text > li {
  margin-bottom: 0.5rem;
}

.menu-text > li:last-child {
  margin-bottom: 0;
}

/* Main Menu Links */
.menu-link {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
  position: relative;
  transform: translateY(0);
}

.menu-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* Link Text */
.link-text {
  font-size: 1.125rem;
  font-weight: 400;
  flex: 1;
  position: relative;
  transition: all 0.3s ease;
}

.menu-link:hover .link-text {
  font-weight: 500;
  letter-spacing: 0.025em;
}

/* Underline Animation */
.underline-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0.25rem;
  width: 0;
  background: white;
  border-radius: 0.125rem;
  transition: all 0.3s ease;
}

.menu-link:hover .underline-line {
  width: 100%;
}

/* Services Arrow */
.services-arrow {
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

/* Services Container */
.services-container {
  position: relative;
}

/* Services Toggle */
.services-toggle {
  justify-content: space-between;
}

/* Services Submenu */
.services-submenu {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-left: 1rem;
  transition: none; /* GSAP will handle this */
}

.services-submenu > li {
  margin-bottom: 0.25rem;
}

.services-submenu > li:last-child {
  margin-bottom: 0;
}

/* Submenu Links */
.submenu-link {
  display: block;
  padding: 0.4rem 0.8rem;
  margin-top: 5px;
  border-radius: 0.375rem;
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.submenu-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: width 0.3s ease;
  z-index: -1;
}

.submenu-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  /* No scale transform for submenu links */
}

.submenu-link:hover::before {
  width: 100%;
}

.submenu-link:hover .underline-line {
  width: 100%;
}

/* Submenu underline */
.submenu-link .underline-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0.125rem;
  width: 0;
  background: white;
  border-radius: 0.0625rem;
  transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  .menu-text {
    max-width: 24rem;
    max-height: 60vh;
  }
  .link-text {
    font-size: 1rem;
  }
  .submenu-link {
    font-size: 0.9rem;
    padding: 0.35rem 0.7rem;
  }
}
@media (max-width: 480px) {
  .menu-text {
    max-width: 20rem;
    max-height: 50vh;
  }
  .link-text {
    font-size: 0.95rem;
  }
  .submenu-link {
    font-size: 0.85rem;
    padding: 0.3rem 0.6rem;
  }
  .cursor-circle,
  .cursor-dot {
    display: none;
  }
}
/* Initial Animation States */
.menu-link {
  opacity: 0;
  transform: translateY(100px);
}

.submenu-link {
  opacity: 0;
  transform: translateY(20px);
}

/* Animation Ready States (will be applied by GSAP) */
.menu-link.animated {
  opacity: 1;
  transform: translateY(0);
}

.submenu-link.animated {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 700px) {
  .hero-text {
    transform: translateY(-70%);
    text-align: center;
  }
}
/* Mobile Responsive */
@media (max-width: 768px) {
  .journey-container {
    padding: 1.5rem 1rem;
    gap: 1.5rem;
  }
  .journey-timeline {
    flex-direction: column;
    gap: 1.5rem;
  }
  .timeline-milestone {
    flex-direction: row;
    align-items: center;
    text-align: left;
    max-width: 100%;
    width: 100%;
    gap: 1.2rem;
    padding: 1rem;
  }
  .milestone-dot-container {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .milestone-dot {
    width: 60px;
    height: 60px;
  }
  .dot-year {
    font-size: 0.9rem;
  }
  .milestone-content {
    flex: 1;
  }
  .milestone-content h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }
  .milestone-content p {
    font-size: 0.85rem;
  }
  .connection-line {
    display: none;
  }
  .journey-values {
    flex-direction: column;
    gap: 0.8rem;
  }
  .value-item {
    width: 100%;
    text-align: center;
    white-space: normal;
  }
}
@media (max-width: 480px) {
  .milestone-dot {
    width: 60px;
    height: 60px;
  }
  .dot-year {
    font-size: 0.6rem;
  }
  .timeline-milestone {
    padding: 0.3rem;
    gap: 0.5rem;
  }
  .journey-subtitle {
    margin-inline-start: 70px !important;
  }
  .journey-subtitle.ar {
    margin-inline-start: 60px !important;
  }
  .journey-values .button_podcast {
    scale: 0.7 !important;
    margin-top: -100px;
  }
}
@media (max-width: 400px) {
  .milestone-dot {
    width: 50px;
    height: 50px;
  }
  .dot-year {
    font-size: 0.6rem;
  }
  .timeline-milestone {
    padding: 0rem;
    gap: 0.5rem;
  }
  .milestone-content h3 {
    font-size: 0.9rem;
  }
  .milestone-content p {
    font-size: 0.6rem;
  }
  .journey-title {
    font-size: 1.5rem;
  }
  .journey-subtitle {
    margin-inline-start: 40px !important;
    font-size: 0.9rem;
  }
  .journey-subtitle.ar {
    margin-inline-start: 60px !important;
    font-size: 0.9rem;
  }
}/*# sourceMappingURL=main.css.map */