.modal-overlay {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000;
}

.modal-overlay.is-open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25); /* lighter for clearer page */
  opacity: 0;
  transition: opacity 180ms ease;
  z-index: 1;
}

.modal-overlay.is-open .modal-backdrop {
  opacity: 1;
}

.modal-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%) scale(0.98);
  width: 94vw; /* bigger */
  max-width: 1200px; /* bigger */
  height: 86vh; /* taller, supports internal scroll */
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  opacity: 0;
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1), opacity 160ms ease;
  z-index: 2; /* ensure dialog above backdrop */
}

.modal-overlay.is-open .modal-dialog {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.modal-frame {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.modal-close {
  position: absolute;
  top: 10px;
  inset-inline-end: 10px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 24px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  z-index: 2;
  transition: background 180ms ease, transform 180ms ease;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.05);
}

.no-scroll {
  overflow: hidden;
}
/* Modal overlay for speaker details */
.modal-overlay {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000;
}

.modal-overlay.is-open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 250ms ease;
}

.modal-overlay.is-open .modal-backdrop {
  opacity: 1;
}

.modal-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%) scale(0.98);
  width: 90vw;
  max-width: 1000px;
  height: 80vh;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  opacity: 0;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), opacity 300ms ease;
}

.modal-overlay.is-open .modal-dialog {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.modal-frame {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.modal-close {
  position: absolute;
  top: 10px;
  inset-inline-end: 10px; /* RTL friendly */
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 24px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  z-index: 2;
  transition: background 200ms ease, transform 200ms ease;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.05);
}

/* Disable background scroll when modal open */
.no-scroll {
  overflow: hidden;
}
/* Main Styles */
:root {
  --primary-color: #3498db;
  --secondary-color: #2c3e50;
  --accent-color: #e0912b;
  --light-color: #ecf0f1;
  --dark-color: #2c3e50;
  --text-color: #333;
  --text-light: #7f8c8d;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
}

/* Mobile responsive body adjustments */
@media (max-width: 768px) {
  body {
  }

  /* Remove any default body margins/padding that might cause mobile issues */
  html,
  body {
    overflow-x: hidden;
    width: 100%;
  }
}

/* Small mobile body adjustments */
@media (max-width: 576px) {
  body {
  }
}

/* Updated Hero Banner Styles */
.hero-banner {
  position: relative; /* normal flow */
  height: 90vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

/* Make the first content section slide up as hero fades */
.hero-banner + .section {
  transform: none;
  opacity: 1;
}

/* Dark overlay that fades away when visible */
.hero-banner::before {
  content: none; /* remove dark overlay */
}

/* Sun light glow overlay */
.hero-banner::after {
  content: none; /* remove glow overlay */
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

/* Initial hidden state for hero content children */
.hero-banner .hero-content > * {
  opacity: 1;
  transform: none;
}

/* Reveal states when banner becomes visible */
/* Removed is-visible transitions for normal scrolling */

/* Staggered reveal */
.hero-banner.is-visible .hero-content > *:nth-child(1) {
  transition-delay: 120ms;
}
.hero-banner.is-visible .hero-content > *:nth-child(2) {
  transition-delay: 220ms;
}
.hero-banner.is-visible .hero-content > *:nth-child(3) {
  transition-delay: 320ms;
}
.hero-banner.is-visible .hero-content > *:nth-child(4) {
  transition-delay: 420ms;
}
.hero-banner.is-visible .hero-content > *:nth-child(5) {
  transition-delay: 520ms;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-banner::before,
  .hero-banner .hero-content > * {
    transition: none !important;
  }
}

/* Scroll-driven fade out states */
/* Remove scroll-driven fading states */
.hero-banner.hero--fading,
.hero-banner.hero--hidden {
  opacity: 1;
  visibility: visible;
}

.conference-logo {
  width: clamp(160px, 14vw, 220px);
  height: clamp(160px, 14vw, 220px);
  object-fit: contain;
  margin: 0 auto 1rem;
}

.hero-title {
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 0.25rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.6rem);
  margin-bottom: 1.5rem;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Reorganized meta items to stack vertically */
.hero-meta {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1.75rem;
}

.hero-meta-line {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.3px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.hero-meta-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-meta-item i {
  margin-right: 0.5rem;
  color: var(--accent-color);
}

.btn-register {
  background-color: #e0912b;
  color: white;
  padding: 0.9rem 2.8rem;
  border-radius: 999px;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
  border: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
}

.btn-register:hover {
  background-color: #e0945e;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  color: white;
}

/* For RTL (Arabic) support */
html[dir="rtl"] .hero-meta-item i {
  margin-right: 0;
  margin-left: 0.5rem;
}

/* Section Styles */
.section {
  padding: 0rem 78px;
  position: relative;
  background: #fff;
}

/* About Section */
.about-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 0rem;
  background: #fff;
  padding-top: 5vh;
  padding-bottom: 11vh;
}

/* Reverse the order for RTL (Arabic) */
html[dir="rtl"] .about-content {
  flex-direction: row-reverse;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 10vw;
  position: relative;
}

.about-image img {
  width: 30vw;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  will-change: transform;
}

/* Gentle continuous float for about image, starts when section is in view */
.about-content.is-inview .about-image img {
  animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-content.is-inview .about-image img {
    animation: none;
  }
}

/* Light glow behind about image */
.about-image::before {
  content: "";
  position: absolute;
  inset: -6% -8% -8% -6%;
  background: radial-gradient(
      circle at 50% 50%,
      rgba(255, 247, 209, 0.65) 0%,
      rgba(255, 240, 175, 0.35) 28%,
      rgba(255, 228, 140, 0.15) 52%,
      rgba(255, 255, 255, 0) 70%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 255, 255, 0.85) 0%,
      rgba(255, 255, 255, 0) 22%
    );
  filter: blur(18px);
  z-index: 1;
  opacity: 0.9;
  animation: aboutGlowPulse 5s ease-in-out infinite;
}

/* Moving bright sun core behind about image */
.about-image::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42%;
  height: 42%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 244, 200, 0.6) 35%,
    rgba(255, 235, 160, 0.25) 60%,
    rgba(255, 255, 255, 0) 75%
  );
  filter: blur(10px);
  mix-blend-mode: screen;
  opacity: 0.9;
  z-index: 1;
  pointer-events: none;
  animation: aboutSunOrbit 7s ease-in-out infinite;
}

@keyframes aboutSunOrbit {
  0% {
    transform: translate(-50%, -50%) translate(0, -16px) scale(1);
  }
  25% {
    transform: translate(-50%, -50%) translate(16px, 0) scale(1.02);
  }
  50% {
    transform: translate(-50%, -50%) translate(0, 16px) scale(1.04);
  }
  75% {
    transform: translate(-50%, -50%) translate(-16px, 0) scale(1.02);
  }
  100% {
    transform: translate(-50%, -50%) translate(0, -16px) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-image::after {
    animation: none;
  }
}

@keyframes aboutGlowPulse {
  0%,
  100% {
    opacity: 0.78;
    transform: scale(1);
    filter: blur(18px);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
    filter: blur(16px);
  }
}

/* About section scroll-in effect handled by the section wrapper itself */

.about-text {
  flex: 1;
  text-align: right; /* Right alignment for Arabic */
  padding-right: 7vw;
}

/* About text: smooth staggered fade-in when section enters view */
.about-text > * {
  opacity: 1;
  transform: none;
  transition: none;
}

.about-content.is-inview .about-text > * {
  opacity: 1;
  transform: none;
}

/* remove stagger delays */

@media (prefers-reduced-motion: reduce) {
  .about-text > * {
    transition: none !important;
  }
}

html[dir="rtl"] .about-text {
  text-align: right;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
  text-align: right; /* Right alignment for Arabic */
}

html[dir="rtl"] .section-title {
  text-align: right;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  margin: 1rem 0 1rem auto; /* Right alignment for Arabic */
}

html[dir="rtl"] .section-title::after {
  margin: 1rem 0 1rem auto;
}

.section-description {
  text-align: right; /* Right alignment for Arabic */
  color: var(--text-light);
}

/* Speakers Section */
.sections {
  background-color: #1f3f54; /* خلفية زرقاء داكنة */
  padding: 0rem 0;
  text-align: center;
  color: #fff;
  padding-bottom: 5vh;
  padding-top: 1vw;
}
.section-titles {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  color: #fff;
}

.section-descriptions {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 2rem;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  line-height: 2;
}
/* Grid Layout */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 3rem;
  justify-items: center;
  padding-left: 10vw;
  padding-right: 10vw;
}

/* Speaker Card */
.speaker-card {
  background: transparent;
  text-align: center;
  transition: transform 0.3s ease;
}

.speaker-card:hover {
  transform: translateY(-5px);
}

/* Image */
.speaker-image {
  width: 100%;
  max-width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.speaker-image:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 16px;
}

.speaker-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(128, 128, 128, 0.5);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.6);
}

.speaker-image:hover::before {
  opacity: 1;
}

/* Name */
.speaker-name {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.5rem;
}

/* Skills (Short Bio) */
.speaker-skills {
  color: #e4e4e4;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 90%;
  margin: 0 auto;
  text-align: center;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* "See more" button */
.see-more-btn {
  background: none;
  border: none;
  color: #f8a23a;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-block;
  margin-top: 0.5rem;
  transition: color 0.3s;
  padding: 0;
  text-decoration: none;
  font-family: inherit;
}

.see-more-btn:hover {
  color: #ffd393;
}

.see-more-btn:focus {
  outline: none;
  color: #ffd393;
}

/* "See more" link */
.see-more {
  color: #f8a23a;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-block;
  margin-top: 0.5rem;
  transition: color 0.3s;
  text-decoration: none;
  font-family: inherit;
}

.see-more:hover {
  color: #ffd393;
}

.see-more:focus {
  outline: none;
  color: #ffd393;
}

/* CKEDITOR Content Styles for Speakers and Promotional Sections */
.speaker-skills.ck-content {
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.speaker-skills.ck-content p {
  margin: 0 0 0.5rem 0;
}

.speaker-skills.ck-content ul,
.speaker-skills.ck-content ol {
  margin: 0.5rem 0;
  padding-right: 1.5rem;
}

.speaker-skills.ck-content li {
  margin-bottom: 0.25rem;
}

.promotional-description.ck-content {
  line-height: 1.6;
}

.promotional-description.ck-content p {
  margin: 0 0 0.5rem 0;
}

.promotional-description.ck-content ul,
.promotional-description.ck-content ol {
  margin: 0.5rem 0;
  padding-right: 1.5rem;
}

.promotional-description.ck-content li {
  margin-bottom: 0.25rem;
}

.question-answer.ck-content {
  line-height: 1.6;
}

.question-answer.ck-content p {
  margin: 0 0 0.5rem 0;
}

.question-answer.ck-content ul,
.question-answer.ck-content ol {
  margin: 0.5rem 0;
  padding-right: 1.5rem;
}

.question-answer.ck-content li {
  margin-bottom: 0.25rem;
}

/* Goals Section - Matching the Image Design */
.goals-section {
  background: linear-gradient(135deg, #065287 0%, #35a2ce 100%);
  position: relative;
  overflow: hidden;
  padding-left: 10vw;
  padding-right: 7vw;
}

.goals-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/images/backgrounds/office-conference.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  filter: blur(2px);
  z-index: 1;
}

.goals-section .container {
  position: relative;
  z-index: 2;
}

.goals-header {
  text-align: center;
  padding: 3rem 0 2rem 0;
}

.goals-title {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 0 0 3rem 0;
}

.goal-card {
  background: linear-gradient(135deg, #065287 0%, #35a2ce 100%);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: right;
}

.goal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.goal-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: flex-start;
}

.goal-icon-image {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.goal-icon-placeholder {
  width: 60px;
  height: 60px;
  background: #f8a23a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.goal-content {
  color: #ffffff;
}

.goal-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: #ffffff;
  line-height: 1.3;
}

.goal-description.ck-content {
  color: #e8f3f9;
  line-height: 1.7;
  font-size: 1rem;
}

.goal-description.ck-content p {
  margin: 0 0 0.8rem 0;
}

.goal-description.ck-content ul,
.goal-description.ck-content ol {
  margin: 0.8rem 0;
  padding-right: 1.5rem;
}

.goal-description.ck-content li {
  margin-bottom: 0.5rem;
}

/* Responsive Design for Goals Section */
@media (max-width: 768px) {
  .goals-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 0 2rem 0;
  }

  .goals-title {
    font-size: 2rem;
  }

  .goal-card {
    padding: 1.5rem;
  }

  .goal-card-title {
    font-size: 1.2rem;
  }
}

/* ModelconEN Section - Matching the Image Design */
.modelcon-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding-left: 10vw;
  padding-right: 7vw;
}

/* Background pattern removed for white background */

.modelcon-section .container {
  position: relative;
  z-index: 2;
}

.modelcon-header {
  text-align: center;
  padding: 3rem 0 2rem 0;
}

.modelcon-title {
  color: #1e293b;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  text-shadow: none;
}

.modelcon-description {
  color: #475569;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  max-width: 800px;
  margin: 0 auto;
  opacity: 1;
}

.modelcon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0 0 3rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.modelcon-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 0;
  text-align: center;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.modelcon-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(110, 193, 228, 0.1) 0%,
    rgba(110, 193, 228, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.modelcon-card:hover::before {
  opacity: 1;
}

.modelcon-card:hover {
  transform: translateY(-5px);
  border-color: 065287;
  box-shadow: 0 8px 30px rgba(110, 193, 228, 0.2);
}

.modelcon-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modelcon-icon-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 6px 25px rgba(110, 193, 228, 0.3);
  transition: all 0.3s ease;
}

.modelcon-card:hover .modelcon-icon-image {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(110, 193, 228, 0.4);
}

.modelcon-icon-placeholder {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #6ec1e4 0%, #4a90c3 100%);
  border-radius: 16px 16px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 3rem;
  box-shadow: 0 6px 25px rgba(110, 193, 228, 0.3);
}

.modelcon-content {
  text-align: center;
  padding: 1.5rem;
}

.modelcon-card-title {
  color: #1e293b;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  line-height: 1.4;
}

.modelcon-card-description {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  opacity: 1;
}

.modelcon-card-description.ck-content p {
  margin: 0 0 0.5rem 0;
}

.modelcon-card-description.ck-content p:last-child {
  margin-bottom: 0;
}

/* Responsive Design for ModelconEN Section */
@media (max-width: 768px) {
  .modelcon-section {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .modelcon-title {
    font-size: 2rem;
  }

  .modelcon-description {
    font-size: 1rem;
  }

  .modelcon-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 0 2rem 0;
    max-width: 100%;
  }

  .modelcon-card {
    padding: 0;
  }

  .modelcon-content {
    padding: 1rem;
  }

  .modelcon-card-title {
    font-size: 1.2rem;
  }
}

/* Workshops Section - Grid Layout */
.sectionwp-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
  text-align: center;
}
.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  direction: rtl;
}

/* Mobile responsive grid */
@media (max-width: 768px) {
  .workshops-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
  }
}

.workshop-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  height: 350px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Mobile responsive workshop card */
@media (max-width: 768px) {
  .workshop-card {
    height: auto;
    min-height: 300px;
    margin: 0.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

.workshop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 2);
}

/* Image always visible */
.workshop-image-container {
  width: 100%;
  height: 100%;
}

/* Mobile responsive image container */
@media (max-width: 768px) {
  .workshop-image-container {
    height: 200px;
    max-height: 200px;
    overflow: hidden;
  }
}

.workshop-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  position: relative;
}

/* Mobile responsive image */
@media (max-width: 768px) {
  .workshop-image {
    height: 200px;
    max-width: 100%;
  }
}

.workshop-card:hover .workshop-image {
  transform: scale(1.05);
}

.workshop-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 193, 7, 0.3);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.workshop-card:hover .workshop-image::before {
  opacity: 1;
}

/* Overlay info on hover */
.workshop-info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  text-align: center;
  overflow-y: auto;
}

/* Mobile responsive workshop info */
@media (max-width: 768px) {
  .workshop-info {
    padding: 1rem;
    font-size: 0.9rem;
  }
}

.workshop-card:hover .workshop-info {
  opacity: 5;
}

/* Title and metadata inside overlay */
.workshop-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #fff;
}

/* Mobile responsive workshop title */
@media (max-width: 768px) {
  .workshop-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

.workshop-meta {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #ffd479;
}

/* Mobile responsive workshop meta */
@media (max-width: 768px) {
  .workshop-meta {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }
}

.workshop-meta i {
  margin-left: 5px;
}

.workshop-description {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Mobile responsive workshop description */
@media (max-width: 768px) {
  .workshop-description {
    font-size: 0.85rem;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

/* Optional: CKEditor content styles inside overlay */
.workshop-description p,
.workshop-description ul,
.workshop-description ol {
  margin-bottom: 1rem;
}

.workshop-description ul,
.workshop-description ol {
  padding-right: 1.5rem;
}

.workshop-description img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

/* Plan File Section Styling */
.plan-file-container {
  max-width: 100%;
  margin: 0 auto;
  padding-top: 2rem;
}

.plan-file-icon {
  flex: 0 0 100px;
  color: #e0912b;
  text-align: center;
  margin-left: 2rem;
}

.plan-file-info {
  flex: 1;
  text-align: center;
}

.btn-download {
  display: inline-block;
  padding: 15px 67px;
  background-color: #e0912b;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  transition: background-color 0.3s;
  font-size: 1.2rem;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-download:hover {
  background-color: #e0945e;
}

/* Responsive adjustments for plan file */
@media (max-width: 768px) {
  .plan-file-card {
    flex-direction: column;
    text-align: center;
  }

  .plan-file-icon {
    margin-left: 0;
    margin-bottom: 1.5rem;
  }

  .plan-file-info {
    text-align: center;
  }
}

/* Plan File Registration Styles */
.plan-file-registration {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #e9ecef;
  text-align: center;
}

.plan-file-registration .registration-title {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.plan-file-registration .registration-title i {
  color: var(--accent-color);
  margin-left: 0.5rem;
}

.plan-file-registration .registration-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.plan-file-registration .btn-register-now {
  background: linear-gradient(135deg, var(--accent-color), #f39c12);
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(224, 145, 43, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.plan-file-registration .btn-register-now:hover {
  background: linear-gradient(135deg, #f39c12, var(--accent-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(224, 145, 43, 0.4);
  text-decoration: none;
  color: white;
}

.plan-file-registration .btn-register-now:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(224, 145, 43, 0.3);
}

@media (max-width: 768px) {
  .plan-file-registration {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }

  .plan-file-registration .registration-title {
    font-size: 1.3rem;
  }

  .plan-file-registration .registration-description {
    font-size: 0.9rem;
  }

  .plan-file-registration .btn-register-now {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Subscription Registration Styles */
.subscription-registration {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #e9ecef;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  padding: 2rem;
  margin-left: 1rem;
  margin-right: 1rem;
  box-sizing: border-box;
  width: calc(100% - 2rem);
  max-width: 100%;
}

.subscription-registration .registration-title {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.subscription-registration .registration-title i {
  color: var(--accent-color);
  margin-left: 0.5rem;
}

.subscription-registration .registration-description {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.subscription-registration .btn-register-now {
  background: linear-gradient(135deg, var(--accent-color), #f39c12);
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 12px rgba(224, 145, 43, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.subscription-registration .btn-register-now:hover {
  background: linear-gradient(135deg, #f39c12, var(--accent-color));
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(224, 145, 43, 0.4);
  text-decoration: none;
  color: white;
}

.subscription-registration .btn-register-now:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(224, 145, 43, 0.3);
}

/* Mobile responsive subscription registration */
@media (max-width: 768px) {
  .subscription-registration {
    margin-top: 2rem;
    padding: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 2rem);
    max-width: 500px;
    border-radius: 10px;
    display: block;
  }

  .subscription-registration .registration-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .subscription-registration .registration-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }

  .subscription-registration .btn-register-now {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
  }
}

/* Small mobile subscription adjustments */
@media (max-width: 576px) {
  .subscription-registration {
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 1rem);
    max-width: 400px;
    padding: 1rem;
  }

  .subscription-registration .registration-title {
    font-size: 1.3rem;
  }

  .subscription-registration .registration-description {
    font-size: 0.9rem;
  }

  .subscription-registration .btn-register-now {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Countdown Timer Styles */
.countdown-section {
  background-color: #ffffff;
  padding: 40px 0;
}

.countdown-container {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.countdown-title {
  color: #1c1c1c;
  font-size: 2rem;
  margin-bottom: 40px;
  direction: rtl;
  font-weight: bold;
  text-align: center;
  margin-top: -29px;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.countdown-item {
  width: 180px;
  height: 150px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Colors for countdown blocks */
.countdown-item:nth-child(1), /* Days */
.countdown-item:nth-child(2), /* Hours */
.countdown-item:nth-child(3),  /* Minutes */
.countdown-item:nth-child(4) {
  background-color: #0e223d;
  border-bottom: 12px solid #e0912b;
}

/* Number and label inside cards */
.countdown-number {
  font-size: 2.8rem;
  font-weight: bold;
  color: white;
  display: block;
  line-height: 1;
}

.countdown-label {
  font-size: 1rem;
  color: #ddd;
  margin-top: 8px;
  font-weight: 500;
  display: block;
}

/* Responsive adjustments for countdown */
@media (max-width: 768px) {
  .countdown-item {
    width: 80px;
    height: 110px;
  }

  .countdown-number {
    font-size: 2rem;
  }

  .countdown-label {
    font-size: 0.9rem;
  }
}

/* Sponsors Section */
.sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem; /* More spacing between logos */
  margin-top: 2rem;
}
.sectionsp {
  background-color: #fff; /* Dark blue background */
  padding: 3rem 0; /* Increased padding for better spacing */
  color: #000; /* White text color */
}
.sectionsp-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  direction: rtl;
}

.sponsor-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px; /* Fixed size for logo container */
  height: 80px;
  background: none; /* No background to match screenshot */
  box-shadow: none;
  padding: 0;
  transition: transform 0.3s ease;
}

.sponsor-item:hover {
  transform: scale(1.05);
}

.sponsor-logo {
  max-width: 350px;
  max-height: 150px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.sponsor-item:hover .sponsor-logo {
  filter: grayscale(0%);
  opacity: 1;
}

/* Subscriptions Section */
/* Section Title */
.sectionsu {
  background-color: #fff; /* White background */
  padding: 3rem 0; /* Increased padding for better spacing */
  color: #000; /* Black text color */
}

/* Mobile responsive subscriptions section */
@media (max-width: 768px) {
  .sectionsu {
    padding: 2rem 0;
  }

  .sectionpp-title {
    font-size: 2rem;
    padding: 0.4rem 1.5rem;
    margin-bottom: 2rem;
    margin-right: 5vw;
    margin-left: 5vw;
    width: calc(100% - 10vw);
    text-align: center;
  }
}

.sectionpp-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #002f4c;
  background-color: #e0912b;
  display: inline-block;
  padding: 0.5rem 2rem;
  border-radius: 4px;
  margin-bottom: 3rem;
  direction: rtl;
  margin-right: 42vw;
}

/* Pricing Container */
.pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  direction: rtl;
}

/* Mobile responsive pricing container */
@media (max-width: 768px) {
  .pricing-container {
    gap: 1rem;
    padding: 0 1rem;
  }
}

/* Card Style */
.pricing-card {
  background: #002f4c;
  color: white;
  width: 320px;
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Mobile responsive pricing card */
@media (max-width: 768px) {
  .pricing-card {
    width: 100%;
    max-width: 350px;
    padding: 1.5rem 1rem;
    margin: 0 auto;
  }
}

/* Small mobile pricing adjustments */
@media (max-width: 576px) {
  .pricing-card {
    padding: 1rem 0.75rem;
  }

  .sectionpp-title {
    font-size: 1.8rem;
    padding: 0.3rem 1rem;
    margin-bottom: 1.5rem;
  }
}

/* Header */
.pricing-header {
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: white;
}

.pricing-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #d1a640;
}

/* Body Content from CKEditor */
.pricing-description {
  text-align: right;
  direction: rtl;
  font-size: 1rem;
  line-height: 2;
}

.pricing-description ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-description li {
  position: relative;
  padding-right: 1.5rem;
  margin-bottom: 0.7rem;
  font-weight: 500;
}

.pricing-description li::before {
  content: "‹";
  position: absolute;
  right: 0;
  color: #d1a640;
  font-weight: bold;
  font-size: 1.3rem;
}

/* Pricing Footer Styles */
.pricing-footer {
  padding: 1.5rem 0 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 1.5rem;
}

.btn-register-plan {
  background: linear-gradient(135deg, #d1a640, #f39c12);
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(209, 166, 64, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
}

.btn-register-plan:hover {
  background: linear-gradient(135deg, #f39c12, #d1a640);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(209, 166, 64, 0.4);
  text-decoration: none;
  color: white;
}

.btn-register-plan:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(209, 166, 64, 0.3);
}

/* Update pricing card to accommodate footer */
.pricing-card {
  background: #002f4c;
  color: white;
  width: 320px;
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .btn-register-plan {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }

  .pricing-footer {
    padding: 1rem 0 0 0;
  }
}

/* Organizers Section - Updated Style */
.sectionor {
  background-color: #fff; /* White background */
  padding: 3rem 0; /* Increased padding for better spacing */
  color: #000; /* Black text color */
}
.sectionor-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  direction: rtl;
}
.organizers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 2rem;
}

.organizer-card {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  text-align: center;
  transition: none;
}

.organizer-card:hover {
  transform: none;
  box-shadow: none;
}

.organizer-logo {
  width: 130px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  border: none;
  padding: 0;
  border-radius: 0;
}

.organizer-description {
  display: none; /* Hide since it's not used in the screenshot */
}
.sectionor-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--text-light);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    height: 70vh;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-meta {
    flex-direction: column;
    gap: 1rem;
  }

  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 576px) {
  .hero-banner {
    height: 60vh;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

/* Registration Section Styles */
.registration-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 80px 0;
}

.registration-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.registration-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.registration-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.registration-title i {
  color: var(--accent-color);
  font-size: 2rem;
}

.registration-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

.btn-register-now {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-register-now:hover {
  background: #d17a1a;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  color: white;
  text-decoration: none;
}

.btn-register-now:active {
  transform: translateY(-1px);
}

/* Responsive Design for Registration */
@media (max-width: 768px) {
  .registration-section {
    padding: 60px 0;
  }

  .registration-card {
    padding: 30px 20px;
  }

  .registration-title {
    font-size: 2rem;
    flex-direction: column;
    gap: 10px;
  }

  .registration-description {
    font-size: 1.1rem;
  }

  .btn-register-now {
    padding: 12px 30px;
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .registration-title {
    font-size: 1.8rem;
  }

  .registration-description {
    font-size: 1rem;
  }

  .btn-register-now {
    padding: 10px 25px;
    font-size: 1rem;
  }
}

/* Question Section Styling - Matching the Image Design */
.question-section {
  background: #065287;
  padding: 4rem 8vw;
  position: relative;
  overflow: hidden;
}

.question-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.question-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  margin-bottom: 2rem;
}

.question-text {
  flex: 1;
  text-align: right;
}

.question-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.question-answer {
  flex: 1;
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.8;
  margin: 0;
  text-align: right;
}

.question-image {
  width: 100%;
  text-align: center;
  margin: 2rem 0;
  background: none;
  padding: 0;
}

.question-image img {
  width: 100%;
  height: auto;
  display: block;
  background: none;
  border: none;
  box-shadow: none;
}

/* Promotional Grid Styling */
.promotional-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 3rem;
  width: 100%;
}

.promotional-card {
  flex: 1;
  text-align: center;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}

.promotional-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.promotional-description {
  font-size: 1.3rem;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

/* Responsive font sizes for promotional sections */
@media (max-width: 768px) {
  .promotional-title {
    font-size: 1.5rem;
  }

  .promotional-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .promotional-title {
    font-size: 1.4rem;
  }

  .promotional-description {
    font-size: 1rem;
  }
  #about-section .about-image img {
    width: 83vw;
    height: 32vh;
    aspect-ratio: 5 / 0;
    object-fit: fill;
    display: block;
    border-radius: 20px;
  }
}

/* Pricing Section Styling - Matching the Image Design Exactly */
.pricing-section {
  background: #ffffff;
  padding: 4rem 0;
  position: relative;
}

.pricing-main-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #000000;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.2;
}

.pricing-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  flex: 1;
  width: 350px;
  height: 100%;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.pricing-header {
  background: #065287;
  color: #ffffff;
  padding: 2rem 1.5rem;
  text-align: center;
  flex-shrink: 0;
  border-radius: 3vw;
}

.pricing-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  color: #ffffff;
}

.pricing-body {
  padding: 0.5rem;
  background: #ffffff;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-features {
  color: #374151;
  line-height: 0.1;
  font-size: 0.95rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.pricing-features li {
  padding: 1rem 0;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: "✓";
  color: #10b981;
  font-weight: bold;
  margin-left: 0.5rem;
  font-size: 1.2rem;
}

.pricing-footer {
  padding: 1.5rem;
  background: #ffffff;
  text-align: center;
  flex-shrink: 0;
}

.pricing-button {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.pricing-button:hover {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

/* Responsive design for pricing section */
@media (max-width: 768px) {
  .pricing-container {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .pricing-card {
    max-width: 400px;
    width: 100%;
  }

  .pricing-main-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .pricing-section {
    padding: 2rem 0;
  }

  .pricing-card {
    max-width: 100%;
    margin: 0 1rem;
  }

  .pricing-main-title {
    font-size: 1.8rem;
  }
}

/* Four Information Columns Section */
.question-info-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.question-info-column {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.question-info-column h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.question-info-column p {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

/* Responsive adjustments for question section */
@media (max-width: 768px) {
  .question-section {
    padding: 3rem 5vw;
  }

  .question-container {
    gap: 2rem;
  }

  .question-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .question-text {
    text-align: center;
  }

  .question-title {
    font-size: 2rem;
  }

  .question-answer {
    font-size: 1rem;
    text-align: center;
  }

  .promotional-grid {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .question-section {
    padding: 2rem 3vw;
  }

  .question-container {
    gap: 1.5rem;
  }

  .question-title {
    font-size: 1.8rem;
  }

  .promotional-grid {
    flex-direction: column;
    gap: 1rem;
  }
}

/* About Section – final overrides to match design and ensure visibility */
#about-section .about-content {
  display: grid !important;
  grid-template-columns: 1.5fr 0.7fr;
  align-items: stretch;
  gap: 40px;
  padding-right: 3vw;
  padding-left: 8vw;
  justify-content: center;
  justify-items: center;
  align-content: center;
}

#about-section .about-image {
  margin: 0 !important;
  border-radius: 18px;
  overflow: hidden;
  max-width: 100%;
  justify-self: start;
}

#about-section .about-image::before,
#about-section .about-image::after {
  content: none !important;
}

#about-section .about-image img {
  width: 100%;
  height: 100%;
  /* aspect-ratio: 1 / 1; */
  object-fit: contain;
  display: block;
  border-radius: 20px;
}

#about-section .about-text {
  padding: 0;
  text-align: right;
}
#about-section .about-text > * {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
#about-section .section-title {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  font-weight: 800;
  margin-bottom: 14px;
  color: #1b1b1b;
  text-align: right;
}
#about-section .section-title::after {
  content: none;
}
#about-section .section-description {
  text-align: right;
  color: #3a3a3a;
  line-height: 2.2;
  font-size: 1.1rem;
  margin: 0;
}
#about-section .ck-content p {
  margin: 0 0 0.9rem;
}
#about-section .ck-content ul {
  padding-right: 1.2rem;
  margin: 0 0 0.9rem;
}
#about-section .ck-content li {
  margin: 0.35rem 0;
}

@media (max-width: 992px) {
  #about-section .about-content {
    grid-template-columns: 1fr !important;
  }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  /* Modal adjustments for mobile */
  .modal-dialog {
    width: 95vw;
    height: 90vh;
    transform: translate(-50%, -50%) scale(0.95);
  }

  .modal-overlay.is-open .modal-dialog {
    transform: translate(-50%, -50%) scale(1);
  }

  .modal-close {
    width: 35px;
    height: 35px;
    font-size: 20px;
    line-height: 35px;
  }

  /* Hero banner mobile adjustments */
  .hero-banner {
    height: 70vh;
    min-height: 400px;
  }

  /* Speaker cards mobile layout */
  .speaker-card {
    margin: 0.5rem;
    padding: 1rem;
  }

  .speaker-image {
    max-width: 100%;
    height: 250px;
    margin-bottom: 0.75rem;
  }

  .speaker-name {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .speaker-title {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .speaker-bio {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  /* Conference details mobile */
  .conference-details {
    padding: 1rem;
  }

  .conference-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .conference-meta {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .conference-description {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  /* Pricing cards mobile */
  .pricing-card {
    margin: -0.5rem;
    padding: 0rem;
  }

  .pricing-header {
    padding: 1.5rem 1rem;
  }

  .pricing-title {
    font-size: 1.3rem;
  }

  .pricing-price {
    font-size: 2rem;
  }

  .pricing-body {
    padding: 1rem;
  }

  .pricing-features {
    line-height: 1.6;
  }

  .pricing-features li {
    padding: 0.75rem 0;
  }

  /* Navigation mobile adjustments */
  .nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }

  /* Buttons mobile */
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  /* Forms mobile */
  .form-control {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 0.75rem;
  }

  .form-label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  /* Grid adjustments for mobile */
  .row {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }

  .col,
  .col-md,
  .col-lg {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  /* Spacing adjustments for mobile 
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
*/
  .section {
    padding: 2rem 1rem;
  }

  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .my-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  #about-section .about-image img {
    width: 83vw;
    height: 32vh;
    aspect-ratio: 5 / 0;
    object-fit: fill;
    display: block;
    border-radius: 20px;
  }

  .countdown-timer {
    display: flex;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
  }
}

/* Small mobile devices */
@media (max-width: 576px) {
  .modal-dialog {
    width: 98vw;
    height: 95vh;
  }

  .speaker-image {
    height: 200px;
  }

  /* Small mobile workshop adjustments */
  .workshop-card {
    margin: 0.25rem;
    min-height: 280px;
  }

  .workshop-image-container {
    height: 180px;
    max-height: 180px;
  }

  .workshop-image {
    height: 180px;
  }

  .workshop-info {
    padding: 0.75rem;
  }

  .workshop-title {
    font-size: 1.1rem;
  }

  .workshop-meta {
    font-size: 0.8rem;
  }

  .workshop-description {
    font-size: 0.8rem;
  }

  .conference-title {
    font-size: 1.3rem;
  }
  #about-section .about-image img {
    width: 83vw;
    height: 32vh;
    aspect-ratio: 5 / 0;
    object-fit: fill;
    display: block;
    border-radius: 20px;
  }
  #about-section .about-content {
    display: grid !important
;
    grid-template-columns: 1.5fr 0.5fr;
    align-items: stretch;
    gap: 40px;
    /* padding: 60px 5vw; */
    padding-right: 2vw;
    padding-left: 0vw;
    justify-content: center;
    justify-items: center;
    align-content: center;
  }
}

/* Landscape mobile orientation */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-banner {
    height: 60vh;
    min-height: 300px;
  }

  .modal-dialog {
    height: 85vh;
  }

  .speaker-image {
    height: 180px;
  }

  .workshop-image {
    height: 160px;
  }
}

.conference-title {
  font-size: 1.3rem;
}

.pricing-title {
  font-size: 1.2rem;
}

.pricing-price {
  font-size: 1.8rem;
}

.section {
  padding: 1.5rem 0.75rem;
}

.btn + .btn {
  margin-left: 0;
}
