

module-title {
  display: block;
  margin-bottom: 12px;
  align-items: center;
}

/* Membership showcase wrapper */
.membership-showcase {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.membership-showcase h2 {
  text-align: center;
  margin: 30px 0 15px;
  font-size: 28px;
  color: #333;
}

/* Section headings */
.membership-heading {
  text-align: center;
  margin: 20px 20px;
}

/* Grid layout for all sections */
.membership-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
  max-width: 1800px;
}

/* Gold section bottom margin only */
.gold.membership-grid {
  margin-bottom: 50px;
}

/* Member cards – shared styles */
.member-card {
  position: relative;
  width: 130px;
  height: 130px;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.member-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.member-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.member-card:hover img {
  transform: scale(1.1);
}

/* Overlay – shared, invisible by default */
.member-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

/* VIP members */
.vip .member-info {
  background: linear-gradient(
    135deg,
    rgb(43, 54, 92),
    rgba(219, 109, 180, 0.85)
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 15px;
  text-align: center;
  color: #cbcbca;
}

.vip .member-card:hover .member-info {
  opacity: 1;
}

.vip .member-info h4,
.vip .member-info p {
  color: #e2e2dc;
  font-style: normal;
}

/* Platinum members */
.platinum .member-card {
  width: 100px;
  height: 100px;
}

.platinum .member-info {
  background: transparent;
}

.platinum .member-card:hover .member-info {
  opacity: 1;
  background: rgba(160, 160, 170, 0.4);
}

/* Gold members */
.gold .member-card {
  width: 90px;
  height: 90px;
  box-shadow: 0 6px 18px rgba(180, 140, 50, 0.25);
}

.gold .member-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 24px rgba(180, 140, 50, 0.3);
}

.gold .member-info {
  background: transparent;
}

.gold .member-card:hover .member-info {
  opacity: 1;
  background: rgba(212, 175, 55, 0.35);
}

/* Floating animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .membership-grid {
    flex-direction: column;
    align-items: center;
  }
}

/*/// Mobile view for VIP members ////*/
@media (max-width: 767px) {
  .t3-sidebar {
    display: block !important;
    min-height: auto !important;
  }
}
@media (max-width: 767px) {
  .row {
    display: flex;
    flex-direction: column;
  }
  .t3-sidebar {
    order: -1; /* put sidebar on top */
  }
}


/* Exhibition Module Styles - RTL */
.exhibition-module {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  direction: rtl;
}

/* Section Titles - Center All */
.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #1a2a6c;
  position: relative;
  padding-bottom: 15px;
  font-weight: 700;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, #1a2a6c, #b21f1f);
}

/* Header Section */
.exhibition-header {
  background: linear-gradient(135deg, #e8993e 0%, #4b6cb7 50%, #0b1934 100%);
  color: white;
  border-radius: 15px;
  padding: 40px 30px;
  margin-bottom: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.event-info {
  flex: 1;
  max-width: 60%;
  padding-left: 40px; /* Changed from padding-right for RTL */
}

.logo_ex {
  width: 220px;
  height: 120px;
  margin-bottom: 25px;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(50px);
  background: rgba(235, 233, 233, 0.15);
}

.event-title {
  font-size: 2.8rem;
  margin: 0 0 25px;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.event-description {
  font-size: 1.5rem;
  line-height: 1.7;
  margin: 0;
  opacity: 0.95;
  max-width: 600px;
  font-weight: 300;
}

.countdown-container {
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 30px 25px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  min-width: 320px;
}

.countdown-title {
  margin-top: 0;
  font-size: 1.6rem !important;
  margin-bottom: 25px;
  font-weight: 600;
  text-align: center;
}

.countdown {
  display: flex;
  justify-content: space-around;
  margin-bottom: 30px;
  gap: 10px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.countdown-value {
  font-size: 2.8rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.countdown-label {
  font-size: 1.5rem;
  font-weight: 500;
  opacity: 0.9;
}

.register-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    border: none;
    padding: 7px 13px;
    font-size: 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s 
ease;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    text-decoration: none;
    display: inline-block;
}

.register-btn:hover {
  background: linear-gradient(135deg, #ff8e53 0%, #ff6b6b 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.6);
  color: white;
  text-decoration: none;
}

/* Sponsorship Packages Section - Enhanced */
.sponsorship-packages {
  margin-bottom: 50px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  justify-items: center;
}

.package-card {
  border-radius: 15px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  background: white;
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.package-header {
  padding: 30px 25px;
  color: white;
  text-align: center;
}

.platinum .package-header {
  background: linear-gradient(135deg, #536976, #292e49);
}

.gold .package-header {
  background: linear-gradient(135deg, #b7af91, #94716b);
}

.silver .package-header {
  background: linear-gradient(135deg, #757f9a, #d7dde8);
}

.package-name {
  font-size: 2.8rem;
  margin: 0 0 10px;
  font-weight: 700;
  text-align: center;
}

.package-price {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
}

.package-features-container {
  position: relative;
  flex-grow: 1;
  overflow: hidden;
}

.package-features {
  list-style: none;
  padding: 20px;
  margin: 0;
  max-height: 300px;
  overflow-y: hidden;
  transition: all 0.4s ease;
}

.package-card:hover .package-features {
  overflow-y: auto;
}

.package-features li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-right: 25px;
  padding-left: 0;
  text-align: right;
  font-size: 14px;
  line-height: 1.4;
}

.package-features li:before {
  content: "★";
  position: absolute;
  right: 0;
  color: #ffc107;
  font-weight: bold;
}

.package-features li:last-child {
  border-bottom: none;
}

/* Scrollbar styling */
.package-features::-webkit-scrollbar {
  width: 6px;
}

.package-features::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.package-features::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.package-features::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.package-features li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-right: 25px;
  padding-left: 0;
  text-align: right;
  font-size: 13حط; /* Slightly smaller font for more content */
  line-height: 1.4;
}

.package-features li:before {
  content: "★";
  position: absolute;
  right: 0;
  color: #ffc107;
  font-weight: bold;
}

.package-features li:last-child {
  border-bottom: none;
}

/* Keep text RTL, but scrollbar on the right side */
.package-features {
  text-align: right;
  direction: rtl; /* for text only */
  unicode-bidi: plaintext; /* ensures only text follows RTL */
  overflow-y: auto;
}

/* Reset container so scrollbar stays on the right */
.package-features-container {
  direction: rtl; /* this keeps scrollbar on the right */
}

/* Scrollbar styling */
.package-features::-webkit-scrollbar {
  width: 6px;
}

.package-features::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.package-features::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.package-features::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Firefox */
.package-features {
  scrollbar-width: thin;
  scrollbar-color: #c1c1c1 #f1f1f1;
  direction: ltr;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .package-features {
    max-height: 350px;
    overflow-y: auto;
  }

  .package-card:hover .package-features {
    overflow-y: auto;
  }

  .scroll-hint {
    display: none;
  }
}

/* Booth Specifications Section */
.booth-specifications {
  margin-bottom: 50px;
}

.booth-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  justify-content: center;
}

.booth-card {
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #1a2a6c;
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.booth-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0; /* Changed for RTL */
  width: 100%;
  height: 4px;
  background: linear-gradient(
    to left,
    #1a2a6c,
    #b21f1f
  ); /* Changed direction */
  transform: scaleX(0);
  transform-origin: right; /* Changed for RTL */
  transition: transform 0.3s ease;
}

.booth-card:hover::before {
  transform: scaleX(1);
}

.booth-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.booth-content {
  text-align: center;
}

.booth-name {
  font-size: 18px;
  margin: 0 0 15px 0;
  color: #1a2a6c;
  font-weight: 600;
  line-height: 1.3;
}

.booth-price-main {
  font-size: 1.8rem;
  font-weight: 700;
  color: #b21f1f;
  margin: 0 0 5px 0;
}

.booth-price-unit {
  font-size: 12px;
  color: #666;
  font-weight: 500;
}

/* Contact Information Section */
.contact-info {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 30px;
  direction: rtl; /* Changed for RTL */
}

.contact-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: start;
}

.contact-left {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-right: 4px solid #1a2a6c; /* Changed for RTL */
  border-left: none;
}

.contact-right {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.venue-background {
  position: relative;
  height: 100%;
  padding: 40px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 250px;
  overflow: hidden;
  border-radius: 10px;
}

.venue-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.venue-overlay {
  position: relative;
  z-index: 2;
  color: white;
}

.venue-overlay h3 {
  text-align: center;
  font-size: 1.5rem;
  color: white;
  margin: 0 0 25px 0;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}

.venue-overlay h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, #ffffff, #ffd700);
}

.venue-name {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.email-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.email-list a {
  font-size: 15px;
  color: #1a2a6c;
  text-decoration: none;
  font-weight: 500;
  padding: 12px 15px;
  background: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  text-align: right; /* Changed for RTL */
}

.email-list a:hover {
  background: #1a2a6c;
  color: white;
  transform: translateX(-5px); /* Changed direction for RTL */
}

.phone-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.phone-list a {
  font-size: 17px;
  color: #555;
  text-decoration: none;
  font-weight: 500;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 6px;
  text-align: center;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  direction: ltr;
}

.phone-list a:hover {
  background: #1a2a6c;
  color: white;
  transform: translateY(-2px);
}

.venue-name {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  text-align: center;
}
.email-label {
  font-weight: 600;
  margin-left: 10px;
}

.email-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
}

.email-list a:hover .email-label {
  color: white;
}

/* localtion link style */
.exhibition-link {
  color: white;         /* set your custom color */
  font-size: 20px;        /* adjust size as you prefer */
  font-weight: 500;       /* optional for better readability */
  text-decoration: none;  /* removes underline */
}

.exhibition-link:hover {
  color: #1a2a6c;         /* hover color */
  text-decoration: underline; /* optional hover effect */
}


/* Responsive Design */
@media (max-width: 1200px) {
  .booth-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .header-content {
    flex-direction: column;
  }

  .event-info {
    max-width: 100%;
    padding-left: 0;
    margin-bottom: 30px;
    text-align: center;
  }

  .countdown-container {
    width: 100%;
    min-width: auto;
  }

  .event-title {
    font-size: 2.2rem;
  }

  .booth-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .contact-info {
    padding: 30px 25px;
  }

  .contact-left {
    padding: 25px;
  }

  .venue-background {
    padding: 30px 20px;
    min-height: 200px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .booth-grid {
    grid-template-columns: 1fr;
  }

  .booth-card {
    padding: 25px 15px;
    min-height: 160px;
  }
}
/* Mobile Countdown Fix */
@media (max-width: 768px) {
  .countdown-container {
    padding: 20px 15px;
    min-width: auto;
    width: 100%;
  }

  .countdown-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .countdown {
    margin-bottom: 20px;
    gap: 5px;
  }

  .countdown-item {
    flex: 1;
  }

  .countdown-value {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    margin-bottom: 5px;
  }

  .countdown-label {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }

  .register-btn {
    padding: 12px 25px;
    font-size: 1.9rem;
  }
}

@media (max-width: 480px) {
  .countdown-container {
    padding: 15px 10px;
  }

  .countdown-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .countdown-value {
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
  }

  .countdown-label {
    font-size: 1.5rem;
  }

  .countdown {
    gap: 3px;
    margin-bottom: 15px;
  }
}

/* Hiding the Whtatsapp button on the exhibition page */
@media (max-width: 992px) {
  .header-right .whatsnew {
    display: none !important;
  }
}

/* Hide on smaller devices */
@media (max-width: 768px) {
  .header-right .whatsnew {
    display: none !important;
  }
}

