/* ======================================
   دالّة - Main CSS (Cleaned & Fixed)
   ====================================== */

/* ======================
   ROOT VARIABLES
   ====================== */
:root {
  --primary: #062141;
  --primary-dark: #041829;
  --primary-light: #0a4d4d;
  --primary-soft: rgba(6, 33, 65, 0.08);

  --secondary: #0a4d4d;
  --secondary-light: #1a7a7a;
  --secondary-soft: rgba(10, 77, 77, 0.08);

  --accent: #1a7a7a;
  --accent-hover: #0d5555;

  --text-main: #01203a;
  --text-secondary: #475569;
  --text-muted: #64748b;

  --bg-white: #ffffff;
  --bg-soft: #f8fafc;
  --bg-light: #f1f5f9;

  --gradient-primary: linear-gradient(135deg, #062141, #0a4d4d);
  --gradient-soft: linear-gradient(135deg, #f0f8f9, #e6f1f4);
  --gradient-accent: linear-gradient(135deg, #1a7a7a, #0a4d4d);

  --border-color: rgba(6, 33, 65, 0.12);
  --shadow-sm: 0 2px 8px rgba(6, 33, 65, 0.08);
  --shadow-md: 0 8px 24px rgba(6, 33, 65, 0.12);
  --shadow-lg: 0 16px 40px rgba(6, 33, 65, 0.16);
  --shadow-xl: 0 24px 56px rgba(6, 33, 65, 0.20);

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-2xl: 28px;
  --radius-full: 999px;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --transition-smooth: 0.3s ease-in-out;
}

/* ======================
   GLOBAL RESET
   ====================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Tajawal", sans-serif !important;
}

body {
  color: var(--text-main);
  direction: rtl;
  background: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html { scroll-behavior: smooth; }

/* ======================
   HERO SECTION
   ====================== */
.background-wrapper {
  background-image: url('../images/background/back11.png') !important;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  padding-top: 82px;
  position: relative;
}

.background-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 33, 65, 0.90), rgba(10, 77, 77, 0.85));
  z-index: 1;
}

.background-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(26, 122, 122, 0.1) 0%, transparent 50%);
  z-index: 1;
  animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

.overlay {
  min-height: 75vh;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.main-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideInFromLeft {
  from { opacity: 0; transform: translateX(-120px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInFromRight {
  from { opacity: 0; transform: translateX(120px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

.slogan {
  font-size: 58px;
  margin-bottom: 24px;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.15;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  letter-spacing: -1.5px;
  animation: slideInFromRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s backwards;
}

.sub-slogan {
  font-size: 24px;
  color: #e6f1f4;
  margin-bottom: 40px;
  font-weight: 500;
  line-height: 1.7;
  max-width: 700px;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
  animation: slideInFromLeft 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s backwards;
  letter-spacing: 0.3px;
}

.action-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  animation: fadeInScale 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s backwards;
}

.btn-secondary {
  padding: 18px 48px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: white;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.btn-secondary:hover::before { opacity: 1; }
.btn-secondary:active { transform: translateY(-2px); }

/* ======================
   HEADER & NAVIGATION
   ====================== */
.header-nav {
  position: fixed;
  top: 0; right: 0;
  width: 100%;
  z-index: 1000;
  background-color: #ffffff !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  padding: 0 60px;
  flex-direction: row-reverse;
  transition: all 0.3s ease;
}

.header-nav.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
  background-color: rgba(255, 255, 255, 0.98) !important;
}

.site-logo img {
  height: 58px;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.site-logo img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 35px;
  margin: 0 40px;
  height: 100%;
}

.nav-links .nav-link,
.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
  color: #1a1a1a !important;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700 !important;
  letter-spacing: 0.3px;
  padding: 0 4px;
  line-height: 1;
  border: none !important;
  transition: color 0.3s ease;
}

.nav-links .nav-link::after,
.nav-links > a::after,
.dropdown .dropbtn::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 18px;
  height: 3px;
  background: linear-gradient(90deg, #0a4d4d, #1a7a7a);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 3px;
}

.nav-links .nav-link:hover,
.nav-links .nav-link.active,
.dropdown:hover .dropbtn {
  color: #0a4d4d !important;
}

.nav-links .nav-link:hover::after,
.nav-links .nav-link.active::after,
.dropdown:hover .dropbtn::after {
  transform: scaleX(1);
  transform-origin: left;
}

.dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.dropbtn { cursor: pointer; }

.dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 260px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  padding: 12px 0;
  z-index: 9999;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-content a {
  display: block;
  text-decoration: none;
  color: #111 !important;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 18px;
  text-align: right;
  transition: all 0.2s ease;
  position: relative;
}

.dropdown-content a::before {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 0;
  background: linear-gradient(180deg, #0a4d4d, #1a7a7a);
  transition: height 0.3s ease;
  border-radius: 3px;
}

.dropdown-content a:hover {
  background: #f8f9fa;
  color: #0a4d4d !important;
  padding-right: 24px;
}

.dropdown-content a:hover::before { height: 70%; }

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: #0a4d4d;
  padding: 10px;
  min-width: 44px; min-height: 44px;
  transition: transform 0.3s ease;
}

.menu-toggle:hover { transform: scale(1.1); }

@media (max-width: 992px) {
  .menu-toggle { display: block !important; z-index: 1001; position: relative; }
  .header-nav { padding: 0 18px; }

  .nav-links {
    position: fixed !important;
    top: 82px !important;
    left: 14px !important; right: auto !important;
    width: min(340px, calc(100% - 28px)) !important;
    max-height: calc(100vh - 110px) !important;
    overflow-y: auto !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2) !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    padding: 14px !important;
    margin: 0 !important;
    transform: translateX(-110%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    height: auto !important;
    z-index: 1000 !important;
    display: flex !important;
  }

  .nav-links.open {
    transform: translateX(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    visibility: visible !important;
  }

  .nav-links .nav-link,
  .nav-links a {
    height: auto !important;
    padding: 14px !important;
    border-radius: 10px !important;
    color: #111 !important;
    justify-content: flex-start !important;
    display: flex !important;
  }

  .nav-links .nav-link::after,
  .nav-links > a::after,
  .dropdown .dropbtn::after { display: none !important; }

  .nav-links .nav-link.active {
    background: linear-gradient(135deg, #0a4d4d, #1a7a7a) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
  }

  .nav-links .nav-link:hover {
    background: #f4f6f6 !important;
    color: #0a4d4d !important;
  }

  .dropdown { width: 100% !important; display: block !important; }

  .dropdown-content {
    position: static !important;
    display: none !important;
    box-shadow: none !important;
    border-radius: 12px !important;
    margin-top: 6px !important;
    padding: 6px 0 !important;
    border: 1px solid #eee !important;
    background: #f8f9fa !important;
  }

  .dropdown.open .dropdown-content { display: block !important; }
  .dropdown-content a { padding: 12px 14px !important; font-size: 15px !important; }
  .dropdown-content a:hover { background: #e9ecef !important; }
}

#topics { scroll-margin-top: 95px; }

/* ======================
   SHARED SECTION HEADS
   ====================== */
.section-header-academic,
.workshops-head,
.experts-head,
.achievements-head,
.tweets-head {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 70px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #1a7a7a;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 18px;
  position: relative;
  padding: 0 50px;
}

.section-label::before,
.section-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px; height: 2px;
}

.section-label::before {
  right: 0;
  background: linear-gradient(90deg, #1a7a7a, transparent);
}

.section-label::after {
  left: 0;
  background: linear-gradient(90deg, transparent, #1a7a7a);
}

.section-title-clean {
  font-size: 44px;
  font-weight: 800;
  color: #01203a;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-description {
  font-size: 18px;
  color: #5a5a5a;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* Shared section title style */
.section-title {
  font-size: 48px;
  font-weight: 800;
  color: #062141;
  margin: 0 0 24px;
  letter-spacing: -0.8px;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%; transform: translateX(-50%);
  width: 0; height: 4px;
  background: linear-gradient(90deg, #062141, #0a4d4d, #1a7a7a);
  border-radius: var(--radius-full);
  animation: expandLine 0.8s ease-out 0.3s forwards;
  box-shadow: 0 2px 10px rgba(6, 33, 65, 0.3);
}

@keyframes expandLine {
  to { width: 120px; }
}

.section-subtitle {
  margin: 0;
  color: #475569;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
  padding-top: 12px;
  letter-spacing: 0.2px;
}

/* ======================
   TOPICS SECTION
   ====================== */
.topics-section {
  padding: 80px 20px 60px;
  text-align: center;
  background: #ffffff;
}

.topics-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.topic-card-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  cursor: pointer;
}

.topic-card-v2:hover { transform: translateY(-18px); }
.topic-card-v2:active { transform: translateY(-15px) scale(0.98); }

.icon-circle {
  width: 160px; height: 160px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 22px;
  position: relative;
  transition: all 0.5s ease;
  box-shadow: 0 12px 45px rgba(10, 77, 77, 0.18);
}

.icon-circle::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a4d4d, #1a7a7a, #0d6666, #0a4d4d);
  background-size: 300% 300%;
  z-index: -1;
  opacity: 0.8;
  transition: opacity 0.4s ease;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.topic-card-v2:hover .icon-circle::before { opacity: 1; }

.icon-circle img {
  width: 80px; height: 80px;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.topic-card-v2:hover .icon-circle img { transform: scale(1.2) rotate(-5deg); }

.topic-title {
  font-size: 20px;
  font-weight: 700;
  color: #0a4d4d;
  transition: color 0.3s ease;
  letter-spacing: 0.2px;
}

.topic-card-v2:hover .topic-title { color: #1a7a7a; }

/* Topics Mobile */
@media (max-width: 992px) {
  .topics-grid {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    justify-content: flex-start !important;
    gap: 20px !important;
    padding: 20px 15px 30px !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    direction: rtl;
    scrollbar-width: none;
    max-width: 100%;
    scroll-padding: 15px;
  }

  .topics-grid::-webkit-scrollbar { display: none; }

  .topic-card-v2 {
    flex: 0 0 85%;
    max-width: 85%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    transform: none !important;
  }
}

@media (min-width: 600px) and (max-width: 992px) {
  .topic-card-v2 { flex: 0 0 45%; max-width: 45%; }
  .topics-grid { gap: 25px !important; }
}

/* Topics Dots */
.topics-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  width: 100%;
  direction: rtl;
  padding: 8px 0;
}

.topics-dots button {
  width: 10px; height: 10px;
  border-radius: 999px;
  border: 0; padding: 0;
  background: rgba(10, 77, 77, 0.25);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.topics-dots button.active {
  width: 32px;
  background: linear-gradient(90deg, #0a4d4d, #1a7a7a);
  box-shadow: 0 4px 15px rgba(10, 77, 77, 0.4);
}

@media (max-width: 992px) {
  .topics-dots { display: flex; }
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #062141, #0a4d4d, #1a7a7a);
  z-index: 9999;
  transition: width 0.1s linear;
  border-radius: 0 3px 3px 0;
}

/* ======================
   SHARED SWIPER PAGINATION
   Fixes huge gap: use padding-bottom instead of large fixed space
   ====================== */
.swiper {
  /* Override any inherited padding that creates gaps */
}

/* All section swipers: correct bottom padding so dots sit just below cards */
.workshops-swiper,
.myExpertsSwiper,
.achievements-swiper,
.tweets-swiper {
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 10px 10px 48px !important; /* tight: just enough room for dots */
  box-sizing: border-box;
}

/* Shared pagination dot style */
.workshops-swiper .swiper-pagination,
.myExpertsSwiper .swiper-pagination,
.achievements-swiper .swiper-pagination,
.tweets-swiper .swiper-pagination {
  bottom: 8px !important;
}

.workshops-swiper .swiper-pagination-bullet,
.myExpertsSwiper .swiper-pagination-bullet,
.achievements-swiper .swiper-pagination-bullet,
.tweets-swiper .swiper-pagination-bullet {
  width: 10px; height: 10px;
  opacity: 1;
  background: rgba(6, 33, 65, 0.22);
  transition: all 0.35s ease;
}

.workshops-swiper .swiper-pagination-bullet-active,
.myExpertsSwiper .swiper-pagination-bullet-active,
.achievements-swiper .swiper-pagination-bullet-active,
.tweets-swiper .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, #062141, #0a4d4d);
  box-shadow: 0 4px 12px rgba(6, 33, 65, 0.4);
}

/* ======================
   WORKSHOPS SECTION
   ====================== */
.workshops-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.workshops-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.workshops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto;
}

.workshop-card-v3 {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(6, 33, 65, 0.08);
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  cursor: pointer;
}

.workshop-card-v3::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #062141, #0a4d4d, #1a7a7a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.workshop-card-v3:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(6, 33, 65, 0.18);
  border-color: rgba(10, 77, 77, 0.25);
}

.workshop-card-v3:hover::before { transform: scaleX(1); }

.workshop-header-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.workshop-card-v3 .wc-icon {
  width: 85px; height: 85px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(10, 77, 77, 0.12), rgba(6, 33, 65, 0.1));
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(10, 77, 77, 0.2);
  flex-shrink: 0;
}

.workshop-card-v3:hover .wc-icon {
  background: linear-gradient(135deg, rgba(10, 77, 77, 0.18), rgba(6, 33, 65, 0.15));
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 10px 25px rgba(6, 33, 65, 0.2);
}

.workshop-card-v3 .wc-icon svg {
  width: 42px; height: 42px;
  fill: none;
  stroke: #0a4d4d;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workshop-badge-inline {
  display: inline-flex;
  align-items: center; justify-content: center;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 13px; font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.3px;
}

.workshop-badge-inline.upcoming  { background: linear-gradient(135deg, #3b82f6, #2563eb); color: white; }
.workshop-badge-inline.available { background: linear-gradient(135deg, #10b981, #059669); color: white; }
.workshop-badge-inline.full      { background: linear-gradient(135deg, #ef4444, #dc2626); color: white; }
.workshop-badge-inline.ended     { background: linear-gradient(135deg, #6b7280, #4b5563); color: white; }

.workshop-card-v3 .workshop-title {
  color: #062141;
  font-size: 23px; line-height: 1.4;
  margin: 0 0 14px;
  font-weight: 800;
  word-wrap: break-word;
  letter-spacing: -0.3px;
}

.workshop-card-v3 .workshop-desc {
  margin: 0 0 22px;
  color: #475569;
  font-size: 15px; line-height: 1.7;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: 0.2px;
}

.workshop-card-v3 .workshop-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
  padding-top: 22px;
  border-top: 2px solid #f1f5f9;
}

.workshop-card-v3 .meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #64748b;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.2px;
}

.workshop-card-v3 .meta-item i { color: #0a4d4d; font-size: 16px; width: 20px; text-align: center; }

.workshop-card-v3 .workshop-partnership {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-radius: 12px;
  margin-bottom: 18px;
  border-right: 4px solid #0a4d4d;
  font-size: 14px; color: #555;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.workshop-card-v3 .workshop-partnership i { color: #0a4d4d; font-size: 18px; }
.workshop-card-v3 .workshop-partnership strong { color: #062141; font-weight: 700; }

.workshop-card-v3 .workshop-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.workshop-card-v3 .btn-details-full {
  width: 100%;
  text-align: center;
  padding: 16px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700; font-size: 15px;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #084343, #0e4343);
  color: white;
  box-shadow: 0 6px 15px rgba(10, 77, 77, 0.3);
  position: relative; overflow: hidden;
  min-height: 52px;
}

.workshop-card-v3 .btn-details-full::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.workshop-card-v3 .btn-details-full:hover::before { opacity: 1; }

.workshop-card-v3 .btn-details-full:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(10, 77, 77, 0.4);
}

.workshop-card-v3 .btn-details-full:active { transform: translateY(-1px); }

/* workshops footer / view-all buttons: hidden (cards are clickable) */
.workshops-footer,
.experts-footer,
.achievements-footer,
.btn-view-all,
.btn-view-all-experts,
.btn-view-all-achievements,
.section-footer { display: none !important; }

/* Responsive toggle: grid vs swiper */
#workshopsGrid    { display: grid; }
#workshopsSwiper  { display: none !important; }
#achievementsGrid { display: grid; }
#achievementsSwiper { display: none; }

@media (max-width: 1024px) {
  #workshopsGrid    { display: none !important; }
  #workshopsSwiper  { display: block !important; }
  #achievementsGrid { display: none !important; }
  #achievementsSwiper { display: block !important; }
}

@media (max-width: 768px) {
  .workshops-section { padding: 60px 20px; }
  .workshop-card-v3  { padding: 26px; min-height: 420px; }
}

/* ======================
   EXPERTS SECTION
   ====================== */
.experts-section {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.experts-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.experts-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 30px;
  margin: 0 auto;
  max-width: 1200px;
}

.expert-card {
  width: 100%;
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(6, 33, 65, 0.08);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow: visible;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.expert-card::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(90deg, #062141, #0a4d4d, #1a7a7a);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.expert-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(6, 33, 65, 0.18);
  border-color: rgba(10, 77, 77, 0.25);
}

.expert-card:hover::before { opacity: 1; transform: scaleX(1); }

.expert-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.expert-avatar-modern {
  width: 105px; height: 105px;
  display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
}

.expert-avatar-modern::before { display: none !important; }

.expert-photo {
  width: 105px; height: 105px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid white;
  position: relative; z-index: 2;
  box-shadow: 0 10px 30px rgba(6, 33, 65, 0.25);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  background: linear-gradient(135deg, #062141, #0a4d4d);
}

.expert-card:hover .expert-photo {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 15px 40px rgba(6, 33, 65, 0.35);
}

.expert-icon-fallback {
  width: 105px; height: 105px;
  border-radius: 50%;
  background: linear-gradient(135deg, #062141, #0a4d4d);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  border: 5px solid white;
  box-shadow: 0 10px 30px rgba(6, 33, 65, 0.25);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.expert-icon-fallback i {
  font-size: 44px; color: white; opacity: 0.95;
  transition: transform 0.4s ease;
}

.expert-card:hover .expert-icon-fallback {
  background: linear-gradient(135deg, #0a4d4d, #1a7a7a);
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 15px 40px rgba(6, 33, 65, 0.35);
}

.expert-card:hover .expert-icon-fallback i { transform: scale(1.12); }

.expert-badge {
  display: inline-flex;
  align-items: center; justify-content: center;
  padding: 11px 18px;
  border-radius: var(--radius-full);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--secondary);
  background: var(--secondary-soft);
  border: 1px solid var(--border-color);
  white-space: normal; text-align: center;
  flex: 1; min-width: 0; line-height: 1.4;
  max-width: 200px;
}

.expert-name {
  font-size: 25px; font-weight: 800;
  color: #062141;
  margin: 14px 0 12px;
  word-wrap: break-word;
  letter-spacing: -0.3px;
}

.expert-specialty {
  font-size: 16px; font-weight: 600;
  color: #475569;
  margin: 0 0 16px;
  flex-grow: 1;
  word-wrap: break-word;
  line-height: 1.7;
  letter-spacing: 0.2px;
}

.expert-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: auto;
}

.expert-link {
  color: var(--secondary);
  font-weight: 700;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 12px;
  background: var(--secondary-soft);
  border: 1px solid var(--border-color);
  transition: all var(--transition);
  min-height: 48px;
  display: inline-flex; align-items: center;
  letter-spacing: 0.3px;
}

.expert-link:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.expert-link:active { transform: translateY(-1px); }

.myExpertsSwiper { display: none !important; }

@media (max-width: 1024px) {
  .experts-grid    { display: none !important; }
  .myExpertsSwiper { display: block !important; }
}

@media (max-width: 768px) {
  .experts-section { padding: 60px 20px; }
  .expert-card { padding: 26px; }
}

/* ======================
   ACHIEVEMENTS SECTION
   ====================== */
.achievements-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  text-align: center;
}

.achievements-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto;
}

.achievement-card-v2 {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  text-align: right;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  cursor: pointer;
}

.achievement-card-v2:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(6, 33, 65, 0.2);
  border-color: rgba(10, 77, 77, 0.3);
}

.achieve-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--bg-light);
}

.achieve-image {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.achievement-card-v2:hover .achieve-image { transform: scale(1.12) rotate(1deg); }

.achieve-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gradient-primary);
  color: white;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.3px;
  padding: 11px 20px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

.achieve-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.achieve-title {
  margin: 0;
  font-size: 21px; font-weight: 800;
  color: #062141; line-height: 1.4;
  letter-spacing: -0.3px;
}

.achieve-meta { display: flex; gap: 12px; flex-wrap: wrap; }

.meta-chip {
  display: inline-flex;
  align-items: center; gap: 10px;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  background: var(--secondary-soft);
  color: var(--secondary);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.2px;
  border: 1px solid var(--border-color);
}

.meta-chip i { color: var(--secondary); }

.achieve-description {
  margin: 0;
  color: #475569; font-size: 15px; line-height: 1.75;
  letter-spacing: 0.2px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.achieve-link {
  margin-top: auto;
  display: inline-flex; align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--secondary); font-weight: 700; font-size: 15px;
  letter-spacing: 0.3px;
  width: fit-content;
  transition: gap 0.3s ease, color 0.3s ease;
  padding: 8px 0;
  min-height: 44px;
}

.achievement-card-v2:hover .achieve-link { gap: 16px; color: var(--accent); }

.achieve-link span { transition: transform 0.3s ease; font-size: 18px; font-weight: bold; }
.achievement-card-v2:hover .achieve-link span { transform: translateX(-6px); }

@media (max-width: 768px) {
  .achievements-section { padding: 60px 20px; }
}

/* ======================
   TWEETS SECTION
   ====================== */
.tweets-section {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.tweets-swiper .swiper-slide {
  display: flex;
  justify-content: center;
}

.tweets-swiper .twitter-tweet {
  margin: 0 !important;
  width: 340px !important;
  max-width: 340px !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-shadow: var(--shadow-md) !important;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
}

.tweets-swiper .swiper-slide:hover .twitter-tweet {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
  transform: translateY(-8px) !important;
}

@media (max-width: 992px) { .tweets-section { padding: 60px 16px; } }

/* ======================
   FOOTER
   ====================== */
.main-footer {
  background: var(--gradient-primary);
  color: rgba(255, 255, 255, 0.95);
  padding: 70px 20px 24px;
  margin-top: 90px;
  position: relative;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1a7a7a, #0a4d4d, #062141);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px;
  align-items: start;
}

.footer-col h4 {
  font-size: 23px; font-weight: 800;
  margin: 0 0 26px;
  padding-bottom: 16px;
  display: inline-block;
  border-bottom: 3px solid rgba(255, 255, 255, 0.3);
  letter-spacing: 0.3px;
}

.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin: 16px 0; }

.main-footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all var(--transition);
  font-weight: 500; font-size: 16px;
  letter-spacing: 0.2px;
}

.main-footer a:not(.social-icon):hover {
  color: white;
  display: inline-block;
  transform: translateX(-5px);
}

.footer-contact .contact-details p {
  margin: 16px 0;
  direction: ltr; text-align: center;
  font-weight: 500; font-size: 16px;
}

.footer-social .social-icons {
  display: flex; gap: 18px;
  justify-content: flex-start;
  margin-top: 18px; flex-wrap: wrap;
}

.footer-social .social-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  text-decoration: none;
}

.footer-social .social-icon i {
  color: white !important;
  font-size: 23px !important;
  transition: all 0.3s ease;
}

.footer-social .social-icon:hover {
  transform: translateY(-6px) scale(1.12);
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Social brand colors on hover */
.footer-social .social-icon[href*="twitter"]:hover i,
.footer-social .social-icon[href*="x.com"]:hover i   { color: #000000 !important; }
.footer-social .social-icon[href*="youtube"]:hover i  { color: #FF0000 !important; }
.footer-social .social-icon[href*="instagram"]:hover i{ color: #E4405F !important; }
.footer-social .social-icon[href*="linkedin"]:hover i { color: #0077B5 !important; }
.footer-social .social-icon[href*="github"]:hover i   { color: #6e5494 !important; }
.footer-social .social-icon[href*="facebook"]:hover i { color: #1877F2 !important; }
.footer-social .social-icon[href*="tiktok"]:hover i   { color: #fe2c55 !important; }
.footer-social .social-icon[href*="mailto"]:hover i   { color: #0a4d4d !important; }

.footer-bottom {
  max-width: 1200px;
  margin: 50px auto 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  text-align: center; font-size: 15px;
  letter-spacing: 0.2px;
}

@media (max-width: 768px) {
  .footer-container { grid-template-columns: 1fr; text-align: center; }
  .footer-social .social-icons { justify-content: center; }
}

/* ======================
   BACK TO TOP BUTTON
   ====================== */
.back-to-top-btn {
  position: fixed;
  bottom: 32px; left: 32px;
  z-index: 9999;
  width: 62px; height: 62px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0a4d4d, #1a7a7a);
  box-shadow: 0 10px 30px rgba(10, 77, 77, 0.4);
  border: none; cursor: pointer;
  opacity: 0; visibility: hidden;
  transform: translateY(30px) scale(0.8);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.back-to-top-btn.show {
  opacity: 1; visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top-btn i {
  color: white !important; font-size: 23px !important;
  transition: transform 0.3s ease;
}

.back-to-top-btn:hover {
  transform: translateY(-10px) scale(1.15);
  box-shadow: 0 20px 50px rgba(10, 77, 77, 0.5);
  background: linear-gradient(135deg, #1a7a7a, #2a9a9a);
}

.back-to-top-btn:hover i { transform: translateY(-4px); }
.back-to-top-btn:active { transform: translateY(-8px) scale(1.12); }

/* ======================
   FONT AWESOME FIX
   ====================== */
footer i, #backToTopBtn i {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  font-style: normal !important;
  display: inline-block !important;
  line-height: 1 !important;
  color: #ffffff !important;
  visibility: visible !important;
  opacity: 1 !important;
}

footer .fa-brands { font-family: "Font Awesome 6 Brands" !important; font-weight: 400 !important; }

i.fa-solid, i.fas { font-family: "Font Awesome 6 Free" !important; font-weight: 900 !important; }
i.fa-regular, i.far { font-family: "Font Awesome 6 Free" !important; font-weight: 400 !important; }
i.fa-brands, i.fab { font-family: "Font Awesome 6 Brands" !important; font-weight: 400 !important; }

/* ======================
   GLOBAL RESPONSIVE
   ====================== */
@media (max-width: 768px) {
  .slogan { font-size: 42px; }
  .sub-slogan { font-size: 20px; }
  .section-title { font-size: 36px !important; }
  .section-subtitle { font-size: 17px !important; }

  .action-buttons {
    flex-direction: column;
    width: 100%; max-width: 320px;
  }

  .btn-secondary { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .slogan { font-size: 36px; }
  .sub-slogan { font-size: 18px; }
  .section-title { font-size: 30px !important; }
  .section-subtitle { font-size: 16px !important; }
}