* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-VariableFont_wdth\,wght.ttf') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'IBM Plex Sans Arabic';
  src: url('../fonts/IBMPlexSansArabic-Regular.ttf') format('woff2');
  font-weight: 400;
  font-style: normal;
}

html, body {
  font-family: 'roboto' , 'IBM Plex Sans Arabic', sans-serif;
  direction: rtl;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;  
  z-index: 1000;
  transform: translateY(0); 
  transition: transform 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
}

.header-cont {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo img {
  padding-right: 30px;
  padding-top: 10px;
  width: 350px;
  height: 80px;
}

.button-wrapper{
  padding-left: 30px;
  padding-top: 10px;
}

.ticket {
  background: #b55412;
  padding: 7px 20px;
  font-size: 22px;
  font-weight: bold;
  border-radius: 20px;
  cursor: pointer;
  color: white;
  border: none  ;
  animation: pulse 2s infinite;
  box-shadow: 2px 5px 5px rgba(71, 71, 71, 0.5);
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.ticket:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 15px rgba(180, 150, 100, 0.25);
}

.button-wrapper button {
  margin-left: 10px; 
}

.badges {
  background: #b55412; 
  padding: 7px 20px;
  font-size: 22px;
  font-weight: bold;
  border-radius: 20px;
  cursor: pointer;
  color: white;
  border: none;
  animation: pulse 2s infinite; 
  box-shadow: 2px 5px 5px rgba(71, 71, 71, 0.5);
}

.badges:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 15px rgba(71, 113, 190, 0.25);
}


.main-nav {
  background-color: inherit;
  padding: 10px 0;
}
.main-nav ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-nav a {
  position: relative;
  color: #555;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}

nav ul li a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  position: relative;
  text-decoration: none;
  padding: 5px;
}
nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background-color: #a14e00;
  transition: width 0.3s ease;
}
nav ul li a:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

nav a.activee {
  color: #D96027; 
  border-bottom: 3px solid #D96027; 
  font-weight: 700;
  position: relative;
  padding-top: 5px;
}

.trap {
  display: flex;
  align-items: center;
  gap: 40px; 
  padding: 10px 25px;
  background: linear-gradient(45deg, #ffcd73, #fcb661, #faa653, #f68d3e);
  color: #4a2c1a;
  background-size: 200% 200%;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
}

.trap .inner {
  display: inline-flex;
  align-items: center;
  gap: 80px; 
  animation: scroll 15s linear infinite;
}

.trap .loca,
.trap .clock,
.trap .bus,
.trap .visited,
.trap .open{
  gap: 5px;
  display: flex;
  align-items: center;
  text-align: center;
}
.trap i {
  color:black;
  margin-left: 6px;
}

@keyframes scroll {
  100% {
    transform: translateX(110%); 
  }
  0% {
    transform: translateX(-105%); 
  }
}

main {
  background-image: url("../image/logo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  padding-top: 20px;
}

.background-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px); 
  z-index: 1;
}

.overlay {
  color: white;
  padding: 30px;
  border-radius: 20px;
  max-width: 40%;
  position: absolute;
  top: 30%;
  right: 0;
  transform: translateY(-50%);
  z-index: 4;
  animation: fadeUp 1.5s ease forwards;
}



.overlay h1,
.overlay h2,
.overlay h3 {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  text-align: right;
  margin: 15px 0;
  white-space: normal;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(20px);
}

.overlay h1{
  animation: slideUp 1s ease forwards;
}

.overlay h2 {
  animation: slideUp 1.3s ease forwards;
}

.overlay h3 {
  animation: slideUp 1.6s ease forwards;
}

.gide{
    background: #b55412;
  padding: 7px 20px;
  font-size: 22px;
  font-weight: bold;
  border-radius: 20px;
  cursor: pointer;
  color: white;
  border: none  ;
  animation: pulse 2s infinite;
  box-shadow: 2px 5px 5px rgba(71, 71, 71, 0.5);
}

.map{
    background: #b55412;
  padding: 7px 20px;
  font-size: 22px;
  font-weight: bold;
  border-radius: 20px;
  cursor: pointer;
  color: white;
  border: none  ;
  animation: pulse 2s infinite;
  box-shadow: 2px 5px 5px rgba(71, 71, 71, 0.5);
}

.overlay button {
  margin-left: 15px; 
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}


.sidebar {
  position: absolute;
  top: 250px;
  left: 100px;
  display: flex;
  flex-direction: column;
  background-color: #faefec;
  padding: 10px;
  border-radius: 30px;
  align-items: center;
  gap: 30px;
  z-index: 3;
}

.sidebar img {
  width: 70px;
  height: 70px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.sidebar a img {
  transition: transform 0.3s ease; 
}

.sidebar a img:hover {
  transform: scale(1.2); 
}

.logo-slider {
  position: relative;   
  max-width: 500px;     
  margin: 0 auto;      
  margin-top: -70px;    
  z-index: 5;           
  background-color: #f9f9f9;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  padding: 70px;
  margin-bottom: 40px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: fadeLoop 9s infinite;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 10px;
  box-sizing: border-box;
}

.slide-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  height: 125%;
  width: 100%;
  transform: translateX(-40px);
}

.slide-content img {
  flex-shrink: 0;
  margin-bottom: 50px;
}

.caption {
  font-size: 24px;
  color: #333;
  line-height: 1.8;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 40px;
  margin-bottom: 37px; 
}
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 3s; }
.slide:nth-child(3) { animation-delay: 6s; }

@keyframes fadeLoop {
  0% { opacity: 1; }
  33% { opacity: 0; }
  100% { opacity: 0; }
}
.slider-dots {
  position: absolute;
  top: 10px;
  right: 15px;
  display: flex;
  gap: 6px;
  flex-direction: column;
  margin-top: 35px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #333;
}
.motex-intro {
  padding: 40px 0 ;
  margin-bottom: 40px;
}

.intro-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  max-width: 1000px;
  margin: auto;
  flex-wrap: wrap;
  direction: rtl;
}

.intro-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.intro-image img {
  background-color: #fff7f3;
  width: 100%;
  max-width: none;
  width: 400px;
  border-radius: 40px;
  object-fit: cover;
  margin-right: 50px;
  padding: 100px; 
  box-sizing: border-box; 
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); 
}

.intro-text {
  flex: 1;
  text-align: right;
  font-size: 15px;
  margin-left: 20px;
}

.intro-text h2 {
  font-size: 25px;
  margin-bottom: 15px;
}

.intro-text p {
  font-size: 22px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.intro-text, .intro-image {
  opacity: 0; 
  transform: translateX(50px);
  transition: all 1s ease;
}

.intro-text.show, .intro-image.show {
  opacity: 1;
  transform: translateX(0);
}

.more-button {
  background-color: #D96027;
  color: white;
  padding: 5px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  display: inline-block;
  transition: transform 0.3s ease;
  text-decoration: none; 
}
.more-button:hover{
  animation: pulse 2s infinite;
  transform: scale(1.05);
  box-shadow: 0px 8px 15px rgba(180, 150, 100, 0.25);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.video-section {
  padding: 40px 20px;
  text-align: center;
  gap: 40px;
}

.video-container {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  overflow: hidden;
  transform: scale(0.9);
  opacity: 0;
  transition: all 1s ease;
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

.video-js {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9; 
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.video-container.show {
  opacity: 1;
  transform: scale(1);
}

.why-join {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.why-join h2 {
  font-size: 25px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #000;
  text-align: right;
  margin-right: 120px;
}

.why-join p {
  font-size: 24px;
  color: #333;
  margin-bottom: 40px;
  text-align: right;
}
.text{
  font-size: 24px;
  color: #333;
  margin-bottom: 40px;
  text-align: right;
  margin-right: 120px;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.benefit-card1{
  background-color: #f6f1ed;
  border-radius: 10px;
  padding: 20px;
  width: 230px;
  text-align: right;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.benefit-card2{
  background-color: #ffe8de;
  border-radius: 10px;
  padding: 20px;
  width: 230px;
  text-align: right;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.benefit-card .number {
  font-weight: bold;
  color: #333;
  display: block;
  margin-bottom: 10px;
}

.benefit-card h3 {
  font-size: 25px;
  color: #000;
  margin-bottom: 10px;
}

.benefit-card1 p {
  font-size: 20px;
  color: #444;
}
.benefit-card2 p {
  font-size: 20px;
  color: #444;
}

.benefit-card1, .benefit-card2 {
  position: relative;
  overflow: hidden;
}

.benefit-card1 p, .benefit-card2 p {
  transition: transform 0.5s ease, opacity 0.5s ease;
  transform: translateY(10px);
  opacity: 0.8;
}

.benefit-card1:hover p, .benefit-card2:hover p {
  transform: translateY(0);
  opacity: 1;
}


.benefit-card1 h3, .benefit-card2 h3 {
  transition: transform 0.5s ease, color 0.5s ease;
}

.benefit-card1:hover h3, .benefit-card2:hover h3 {
  transform: scale(1.05);
  color: #D96027;
}

.benefit-card1 .number, .benefit-card2 .number {
  transition: transform 0.5s ease, color 0.5s ease;
}

.benefit-card1:hover .number, .benefit-card2:hover .number {
  transform: translateY(-5px) scale(1.1);
  color: #b55412;
}

.register-btn {
  text-align: left;
  margin-left: 115px;
  margin-bottom: 10px;
  z-index: 3;
}

.btn {
  background-color: #D96027;
  color: white;
  padding: 5px 25px;
  font-size: 16px;
  border-radius: 5px;
  font-weight: bold; 
  cursor: pointer;
  display: inline-block;
  transition: transform 0.3s ease;
  text-decoration: none; 
}

.btn:hover{
  animation: pulse 2s infinite;
  transform: scale(1.05);
  box-shadow: 0px 8px 15px rgba(180, 150, 100, 0.25);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.exhibitors-section {
  background-color: #fff5f1;
  padding: 10px 20px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 60px;
}

.exhibitors-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  direction: rtl;
}

.exhibitors-text {
  flex: 1;
  font-size: 18px;
  line-height: 2;
}

.exhibitors-text h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.exhibitors-text p {
  font-size: 20px;
  color: #2f2f2f;
}

.exhibitors-image, .exhibitors-text {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.exhibitors-image.visible, .exhibitors-text.visible {
  opacity: 1;
  transform: translateY(0);
}

.more-button1 {
  display: inline-block;
  margin-top: 20px;
  background-color: #D96027;
  color: #fff;
  padding: 0 30px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;  
  float: left;
  cursor: pointer;
  display: inline-block;
  transition: transform 0.3s ease;
  text-decoration: none; 
}
.more-button1:hover{
  animation: pulse 2s infinite;
  transform: scale(1.05);
  box-shadow: 0px 8px 15px rgba(180, 150, 100, 0.25);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}


.exhibitors-image {
  flex: 1;
}

.exhibitors-image img {
  width: 350px;           
  height: 400px;          
  object-fit: cover; 
  border-radius: 40px 40px 40px 40px;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.countdown-section {
  text-align: center;
  padding: 30px 20px;
  font-family: Arial, sans-serif;
  direction: ltr;
  border: 2px solid #D96027;
  border-radius: 16px;
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(90deg, #D96027, #FFB347);
  background-size: 200% 200%;
  animation: gradientMove 5s ease infinite;
  margin-bottom: 40PX;
  transition: transform 0.8s ease, opacity 0.8s ease;
  opacity: 0;
  transform: translateY(40px);
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.countdown-section.visible {
  opacity: 1;
  transform: translateY(0);
}
.countdown-box {
  padding: 20px 30px;
  display: inline-block;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
}

.countdown div {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.countdown div:hover {
  transform: scale(1.2);
  color: #FFD700; /* لون ذهبي جذاب */
}

.countdown .label {
  color: white;
}

.countdown span:not(.label) {
  color: white;
  font-size: 22px;
}
.contact-container {
  display: flex;
  max-width: 1000px;
  margin: 50px auto;
  box-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  overflow: hidden;
}

.map-section {
  flex: 1;
}

.form-section {
  flex: 1;
  background-color: #ffe3d3;
  padding: 40px 30px;
  box-sizing: border-box;
}

.form-section, .map-section {
  opacity: 0;
  transform: translateY(40px);
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.form-section.visible, .map-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.form-section h2 {
  margin-top: 0;
  font-size: 24px;
  color: #432818;
  text-align: center;
}

.form-section form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.form-section input{
  padding: 15px;
  font-size: 16px;
  border: 1px solid #d2691e;
  border-radius: 10px;
  resize: none;
}
.form-section textarea{
  padding: 15px;
  font-size: 16px;
  border: 1px solid #d2691e;
  border-radius: 10px;
  resize: none;
  height: 180px; 
}

.form-section button {
  background-color: #d2691e;
  color: white;
  border: none;
  padding: 5px 12px;
  font-size: 16px;
  border-radius: 5px;
  width: 100px;
  align-self: center;
  cursor: pointer;
  display: inline-block;
  transition: transform 0.3s ease;
  text-decoration: none; /* عشان الرابط ما يكون تحته خط */
}

.form-section button:hover{
  animation: pulse 2s infinite;
  transform: scale(1.05);
  box-shadow: 0px 8px 15px rgba(180, 150, 100, 0.25);
}

/* تعريف حركة النبضة */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.form-section button:hover {
  background-color: #b55412;
}

.motex-footer {
  background-color: #2A1510;
  padding: 40px 20px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logoo img {
  width: 350px;
  height: 80px;
}

.top-button button {
  background-color: #e06623;
  color: white;
  border: none;
  padding: 14px 35px;
  font-size: 18px;
  border-radius: 25px;
  cursor: pointer;
  margin-bottom: 30px;
}

.top-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.top-logos img {
  max-height: 60px;
}

.event-date {
  font-size: 20px;
  margin-bottom: 40px;
}

.event-date h2 {
  font-size: 28px;
  margin: 5px 0;
}
.ticket1 {
  background: #b55412;
  padding: 10px 40px;
  font-size: 24px;
  font-weight: bold;
  border-radius: 20px;
  cursor: pointer;
  color: white;
  border: none  ;
  margin-left: 100px;
  animation: pulse 2s infinite;
}

.columns {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  text-align: right;
  margin-top: 90px;
  color: white;
  margin-right: 50px;
  flex: 0 1 250px;
  padding: 0 20px; 
}

.column:not(:last-child) {
  border-left: 1px solid white; 
} 

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.ticket1:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 15px rgba(180, 150, 100, 0.25);
}

.column {
  flex: 0 1 250px;
}
.column h4{
  font-size: 24px;
  margin-bottom: 15px;
}

.column h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
}

.column p {
  font-size: 18px;
  margin: 6px 0;
}

.columns a {
  color: inherit; 
  text-decoration: none; 
  cursor: pointer; 
}

.columns a:hover {
  text-decoration: underline; 
  color: #e06623; 
}

.copyright {
  margin-top: 40px;
  font-size: 14px;
  color: #ccc;
  text-align: center;
}
.date h2{
  color: white;
  margin-top: 30px;
  margin-right: 60px;
}

.icons {
  display: flex;
  flex-direction: column; 
  gap: 10px; 
}

.icons a {
  color: white;
  font-size: 18px; 
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap; 
}

.icons a:hover {
  color: #e06623;
}

.icons a i {
  font-size: 24px;
}

@media (min-width: 992px) {
  .video-container {
    max-width: 1000px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
.header {
    margin-top: 30px; 
    padding: 10px 15px;
  }

  .button-wrapper {
    display: flex;
    justify-content: space-between; 
    width: 100%;
    padding: 15px 20px; 
  }

  .ticket, .badges {
    width: 45%; 
    text-align: center;
    font-size: 16px;
    padding: 8px 0;
  }
  
  .ticket {
    background-color: #b55412;
    color: white;
    border: none;
  }
  
  .badges {
    background-color: #b55412;
    color: white;
    border: none;
    font-size: 14px;
  }

  .logo img {
    width: 60%;        
    max-width: 100%;     
    height: auto;
    margin-right: 16%;
  }

  .main-nav ul {
    font-size: 14px;
    margin-top: -7px; 
    gap: 4px;
  }
  
  .overlay {
    max-width: 100%;
    padding: 20px;
    margin: 20px 0;
  }
  
  .overlay h1 {
    font-size: 1rem;
  }

  .overlay h2,
  .overlay h3 {
    font-size: 1rem;
  }
  nav ul{
    gap: 14px;
  }

  .sidebar {
    position: static;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 10px;
    border-radius: 20px;
  }
  
  .sidebar img {
    width: 45px;
    height: 45px;
  }

  .logo-slider{
    margin-right: 0;
    margin-top: 60px;
  }
  .slide-content{
    transform: none;
    margin-bottom: 60px;
  }
  .slide-content .caption{
    margin-right: 35px;
    line-height: 1;
  }
  
  .intro-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .intro-text {
    text-align: center;
  }

  .intro-image {
    order: 2;
    justify-content: center;
    margin-top: 20px;
  }

  .intro-image img {
    width: 80%;
    height: auto;
    border-radius: 16px;
    margin-right: 10px;
  }

  .intro-text h2 {
    font-size: 18px;
  }

  .intro-text p {
    font-size: 15px;
  }

  .why-join h2
  {
    position: static !important;
    left: 0 !important;
    margin: 0 15px 15px 15px !important;
    padding-bottom: 8px;
    font-size: 18px;
  }

  .why-join p.text {
    position: static !important;
    left: 0 !important;
    margin: 0 15px 15px 15px !important;
    padding-bottom: 8px;
    font-size: 15px;
  }

  .register-btn {
    padding: 0 15px;
    margin-bottom: 15px;
  }

  .benefits {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    margin: 0 15px !important;
  }

  .benefit-card1,
  .benefit-card2 {
    width: 100% !important;
    box-sizing: border-box;
  }

  .benefit-card1 .number,
  .benefit-card2 .number {
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
  }

  .benefit-card1 h3,
  .benefit-card2 h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .benefit-card1 p,
  .benefit-card2 p {
    font-size: 14px;
    line-height: 1.4;
  }

  .benefit-card1:active,
  .benefit-card2:active {
    transform: scale(1.1);
  }

  .exhibitors-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .exhibitors-text {
    font-size: 16px;
    line-height: 1.8;
  }

  .exhibitors-text h2 {
    font-size: 18px;
  }

  .exhibitors-text p {
    font-size: 16px;
  }

  .more-button1 {
    font-size: 16px;
    padding: 0 20px;
    margin-left: 130px;
  }

  .exhibitors-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
  }
    .countdown {
    gap: 20px;
  }

  .countdown-section {
    padding: 20px 15px;
  }

  .countdown div {
    justify-content: center;
    font-size: 18px;
  }

  .countdown span:not(.label) {
    font-size: 20px;
  }
  .contact-container {
    flex-direction: column;
    margin: 20px;
    box-shadow: none;
  }

  .map-section,
  .form-section {
    width: 100%;
    min-height: 300px;
  }

  .form-section {
    padding: 20px;
  }

  .form-section h2 {
    font-size: 20px;
  }

  .form-section input,
  .form-section textarea {
    font-size: 14px;
    padding: 12px;
  }

  .form-section button {
    width: 40%;
    font-size: 16px;
    border-radius: 10px;
  }
  .motex-footer {
    padding: 20px 10px;
  }

  .header-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .logoo img {
    margin-right: 35px !important; 
    max-width: 80%;
    height: auto;
  }

  .button-wrapper {
    margin-left: 0 !important;
  }
  
  .ticket1{
    margin-right: 100px;
  }

  .date h2 {
    font-size: 16px;
    margin-right: 0 !important;
    text-align: center;
  }

  .columns {
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
  }

  .column {
    flex: none;
    width: 70%;
    border: none;
    padding: 10px 0;
    position: relative; border-right: none !important;
    border-left: none !important;
    
  }

  .column:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: white; 
  }

  .column h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .column p, .column a {
    font-size: 16px;
  }

.icons {
    display: flex;
    flex-direction: column; 
    align-items: flex-start; 
    gap: 10px; 
  }

  .icons a {
    display: flex;
    align-items: center;
    color: white; 
    font-size: 16px;
    text-decoration: none;
    gap: 8px; 
    position: relative;
    left: 25px;
  }

  .icons a i {
    font-size: 20px; 
    color: white;
  }

  .copyright {
    font-size: 14px;
    margin-top: 30px;
  }

  @keyframes scroll-mobile {
    100%   { transform: translateX(100%); }
    0% { transform: translateX(-50%); }
  }

  .trap .inner {
    animation: scroll-mobile 10s linear infinite;
  }

  .trap p {
    font-size: 16px; 
  }

  .trap i {
    font-size: 16px; 
  }

  form{
    margin-top: -50px;
  }

  .overlay a { 
    margin: 10px 0; 
    text-align: center; 
  }

  .gide, .map {
    box-sizing: border-box; 
    font-size: 18px;
  }
}
