/* Global Design System */
:root {
  --primary-color: #0066ff;
  --primary-glow: rgba(0, 102, 255, 0.5);
  --bg-dark: #050505;
  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.6);
  --font-main: "Outfit", system-ui, sans-serif;
  --container-padding: 30px;
  --border-glass: rgba(255, 255, 255, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Header & Navbar */
/* Header & Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 0;
  z-index: 1000;
  transition:
    background 0.3s,
    backdrop-filter 0.3s,
    border-color 0.3s;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid #ffffff15;
}

header.scrolled {
  background: rgb(0 0 0 / 76%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hamburger — Premium Cool Aesthetic */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
  padding: 10px;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.2),
    rgba(0, 200, 255, 0.1)
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 102, 255, 0.3);
  border-radius: 12px;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hamburger:hover {
  background: var(--primary-color);
  border-color: #fff;
  box-shadow: 0 0 20px var(--primary-glow);
  transform: scale(1.05);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #fff;
  border-radius: 10px;
  transition: 0.3s;
}

.hamburger:hover span {
  background-color: #fff;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* Hero Slider */
.hero-slider {
  min-height: 100vh;
  height: auto;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  min-height: 100vh;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 100px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.hero-slide-1 {
  background-image: url("../img/hero_1.webp");
}
.hero-slide-2 {
  background-image: url("../img/hero_2.webp");
}
.hero-slide-3 {
  background-image: url("../img/hero_3.webp");
}

.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(5, 5, 5, 0.9), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  text-align: left;
}

.small-heading {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.small-heading::before {
  content: "";
  width: 40px;
  height: 1px;
  background: #fff;
}

.hero-logo-large {
  font-size: clamp(50px, 8vw, 60px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 25px;
  letter-spacing: -0.05em;
  color: #fff;
}

.hero-logo-large span {
  color: var(--primary-color);
}

.hero-title {
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 400;
  margin-bottom: 25px;
  line-height: 1.2;
  max-width: 600px;
}

.hero-title i {
  font-style: italic;
  font-weight: 300;
}
.hero-title b {
  font-weight: 700;
}

.hero-desc {
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--text-muted);
  margin-bottom: 45px;
  max-width: 500px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}

.btn {
  padding: 12px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  background: transparent;
}

.btn-primary {
  border-color: var(--primary-color);
  background: rgba(0, 102, 255, 0.05);
}

.btn-primary:hover {
  background: var(--primary-color);
  box-shadow: 0 0 20px var(--primary-glow);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

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

.hero-bottom-right {
  position: absolute;
  bottom: 50px;
  right: 0;
  text-align: right;
  z-index: 10;
}

.cosmic-edition {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.hero-bottom-right p {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  max-width: 300px;
}

.logo img {
  height: 65px;
  width: auto;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .logo img {
    height: 60px;
  }
}

.nav-menu {
  display: flex;
  gap: 30px;
  position: absolute;
  left: 45%;
  transform: translateX(-50%);
}

.nav-link {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s;
}

.nav-link:hover {
  color: #fff;
}

.nav-cta-outline {
  padding: 12px 30px;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* Cosmic Separator */
.cosmic-separator-wrapper {
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.cosmic-separator {
  width: 100%;
  max-width: 1000px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cosmic-separator::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transform: rotate(45deg);
  box-shadow: 0 0 15px var(--primary-glow);
}

/* Cosmic Marquee */
.cosmic-marquee {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  padding: 15px 0;
  position: relative;
  z-index: 20;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

.marquee-group {
  display: flex;
  gap: 60px;
  padding-right: 60px;
  flex-shrink: 0;
}

.marquee-group span {
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 7px;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Seminar Master Section */
.seminar-master-sec {
  padding: 70px 0;
  position: relative;
}

.master-grid {
  display: grid;
  grid-template-columns: 1.2fr auto 1fr;
  align-items: center;
  gap: 60px;
}

.master-divider {
  width: 1px;
  height: 300px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
}

.master-left {
  max-width: 650px;
}

.intro-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  color: var(--primary-color);
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.intro-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  margin-top: 10px;
  margin-bottom: 25px;
}

.intro-title i {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  margin-right: 5px;
}

.intro-text {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 500px;
}

/* Right Side: Edition Card */
.edition-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent);
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  backdrop-filter: blur(5px);
}

.version-badge {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--primary-color);
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: block;
}

.edition-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.edition-title span {
  font-weight: 300;
  opacity: 0.6;
}

.edition-specs {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.spec-item {
  display: block;
}

.spec-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.spec-val {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  color: #fff;
}

@media (max-width: 1200px) {
  .master-grid {
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .seminar-master-sec {
    padding: 70px 0;
  }
  .master-grid {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 50px;
  }
  .master-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(
      to right,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent
    );
  }
  .edition-card {
    padding: 40px;
  }
}

/* Glimpses of the Signal Section */
.signal-glimpses-sec {
  padding: 70px 0;
}

.glimpses-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.social-pills {
  display: flex;
  gap: 15px;
}

.pill-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  transition: 0.3s;
}

.pill-btn i {
  font-size: 16px;
  opacity: 0.7;
}

.pill-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.video-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  overflow: hidden;
  transition: 0.3s;
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  background: #ff0000;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 5;
}

.play-btn i {
  margin-left: 0;
}

.video-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: #fff;
  color: #ff0000;
}

.video-info {
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.video-title-wrap {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.video-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  color: #fff;
}

.video-title-wrap i {
  font-size: 20px;
  color: var(--text-muted);
  transition: 0.3s;
}

.video-card:hover .video-title-wrap i {
  color: var(--primary-color);
  transform: translate(3px, -3px);
}

.video-duration {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: 4px;
  width: max-content;
  color: var(--text-muted);
}

/* Social Connect Row */
.social-connect-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.connect-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  transition: 0.3s;
  text-decoration: none;
}

.connect-left {
  flex: 1;
}

.connect-card.instagram:hover {
  border-color: rgba(225, 48, 108, 0.4);
  background: rgba(225, 48, 108, 0.03);
}

.connect-card.linkedin:hover {
  border-color: rgba(0, 119, 181, 0.4);
  background: rgba(0, 119, 181, 0.03);
}

.connect-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.connect-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
  line-height: 1.2;
}

.connect-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
}

.connect-right {
  margin-left: 30px;
}

.connect-right svg {
  width: 44px;
  height: 44px;
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.connect-card:hover .connect-right svg {
  color: #fff;
  transform: scale(1.1);
}

@media (max-width: 1200px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .glimpses-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .social-connect-row {
    grid-template-columns: 1fr;
  }
  .connect-card {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
  .connect-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .connect-right {
    margin-left: 0;
    margin-top: 20px;
  }
}

/* Founder Section */
.founder-sec {
  padding: 70px 0;
  overflow: visible;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
}

.founder-image-wrap {
  position: relative;
}

.portrait-container {
  background: #111;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.founder-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.founder-badge {
  position: absolute;
  top: -20px;
  right: -30px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 20px 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 2px;
  line-height: 1.6;
  z-index: 10;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.img-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
}

.founder-content {
  display: flex;
  flex-direction: column;
}

.founder-desc p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 25px;
}

.founder-desc p i {
  color: #fff;
}

/* Stats Dashboard */
.founder-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.02);
  padding: 30px 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: 0.3s;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.stat-num {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.stat-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--text-muted);
}

@media (max-width: 1200px) {
  .founder-grid {
    gap: 60px;
  }
  .founder-badge {
    right: 0;
  }
}

@media (max-width: 991px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  .founder-image-wrap {
    max-width: 500px;
    margin: 0 auto;
  }
  .founder-stats {
    grid-template-columns: 1fr;
  }
}

/* Footer Premium */
.footer-premium {
  position: relative;
  padding: 70px 0 30px;
  background-image: url("../img/footer_bg.webp");
  background-size: cover;
  background-position: center;
  border-top: 1px solid var(--border-glass);
  overflow: hidden;
}

.footer-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 5, 0.95),
    rgba(0, 0, 0, 0.8)
  );
  z-index: 1;
}

.footer-premium .container {
  position: relative;
  z-index: 2;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  gap: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 50px;
}

.footer-logo-box {
  margin-bottom: 0;
  flex-shrink: 0;
}

.footer-logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
}

.footer-tagline-box {
  position: relative;
  padding-left: 50px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-tagline {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 400px;
  line-height: 1.6;
}

.footer-tagline i {
  color: #fff;
  font-style: italic;
}

.footer-connect {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 25px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  color: #fff;
}

.footer-contact-item i {
  color: var(--text-muted);
}

.footer-social-row {
  display: flex;
  gap: 15px;
}

.social-circle,
.social-square {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 20px;
  transition: 0.3s;
}

.social-circle {
  border-radius: 50%;
}

.social-square {
  border-radius: 12px;
  border-color: var(--primary-color);
  background: rgba(0, 102, 255, 0.05);
}

.social-circle:hover,
.social-square:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 20px var(--primary-glow);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 991px) {
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .footer-connect {
    align-items: flex-start;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Mobile Navigation & Hamburger - Unified */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #ffffff;
  z-index: 1200;
  padding: 60px 0 0;
  transition: right 0.3s ease;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1150;
  display: none;
}

.mobile-overlay.active {
  display: block;
}

.mobile-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 22px;
  color: #333;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-close:hover {
  color: var(--primary-color);
  transform: rotate(90deg);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
}

.mobile-link {
  padding: 12px 16px;
  color: #333;
  font-weight: 500;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-link:hover {
  background: #f5f5f5;
  color: var(--primary-color);
}

.cta-mobile {
  color: #fff !important;
  background: var(--primary-color);
  margin: 10px 16px;
  border-radius: 8px;
  justify-content: center;
  border-bottom: none;
}

.cta-mobile:hover {
  background: #0055ff;
  color: #fff !important;
}

@media (max-width: 1200px) {
  .nav-menu,
  .nav-actions {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN (320px - 1920px+)
   ========================================================================== */

/* --- Ultra Wide Displays (1921px+) --- */
@media (min-width: 1921px) {
  .container {
    max-width: 1800px;
  }
  .hero-logo-large {
    font-size: 80px;
  }
  .hero-title {
    font-size: 64px;
  }
}

/* --- Large Desktops (1441px - 1920px) --- */
@media (max-width: 1920px) {
  .container {
    max-width: 1400px;
  }
}

/* --- Standard Laptops/Desktops (1201px - 1440px) --- */
@media (max-width: 1440px) {
  .container {
    max-width: 1200px;
  }
}

/* --- Small Laptops & Tablets (1025px - 1200px) --- */
@media (max-width: 1200px) {
  .nav-menu,
  .nav-actions {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-slide {
    padding-top: 120px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* --- Tablet Landscape (992px - 1024px) --- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 42px;
  }
  .hero-desc {
    max-width: 450px;
  }
}

/* --- Tablet Portrait (769px - 991px) --- */
@media (max-width: 991px) {
  .hero-content {
    max-width: 100%;
    text-align: left;
  }
  .small-heading {
    justify-content: flex-start;
  }
  .hero-logo-large {
    font-size: 50px;
  }
}

/* --- Large Mobile (481px - 768px) --- */
@media (max-width: 768px) {
  header {
    padding: 12px 0;
  }
  .page-banner {
    padding: 110px 0 50px;
    margin-bottom: 40px;
  }
  .banner-title {
    font-size: 32px;
    text-align: left;
    margin-bottom: 10px;
  }
  .breadcrumb {
    justify-content: flex-start;
    font-size: 11px;
  }
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
    min-width: 100% !important;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-logo img {
    margin: 0 auto 20px;
  }

  .footer-desc {
    margin: 0 auto 20px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* --- Small Mobile (320px - 480px) --- */
@media (max-width: 480px) {
  :root {
    --container-padding: 15px;
  }
  .logo img {
    height: 50px;
  }
  .page-banner {
    padding: 90px 0 40px;
    margin-bottom: 30px;
  }
  .banner-title {
    font-size: 28px;
  }
  .hero-bottom-right {
    display: none;
  }
}

/* Fix for Display Scaling */
@media screen and (-webkit-min-device-pixel-ratio: 1.25),
  screen and (min-resolution: 120dpi) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* Seminars Page Styles */
.seminars-hero {
  padding: 160px 0 80px;
  background: linear-gradient(to bottom, rgba(0, 102, 255, 0.05), transparent);
  text-align: left;
}

.seminars-grid {
  padding-bottom: 100px;
}

.event-section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.event-section-title::before {
  content: "";
  width: 4px;
  height: 32px;
  background: var(--primary-color);
  border-radius: 2px;
}

/* Event Card */
.event-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 30px;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 240px 1fr 200px;
  gap: 40px;
  align-items: flex-start;
  transition: 0.3s;
}

.event-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.2);
}

.upcoming-event-card {
  grid-template-columns: 240px 1fr;
}

.event-cta-wrap {
  margin-top: 30px;
}

.event-date-box {
  text-align: center;
  padding: 20px;
  background: rgba(0, 102, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(0, 102, 255, 0.1);
}

.event-month {
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--primary-color);
  display: block;
}

.event-day {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  display: block;
  margin: 5px 0;
}

.event-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--text-muted);
}

.event-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-meta i {
  color: var(--primary-color);
}

.event-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.event-actions {
  text-align: right;
}

/* Past Seminar Gallery */
.past-event-card {
  grid-template-columns: 1fr 1fr;
}

.past-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 25px;
}

.past-img-item {
  aspect-ratio: 16/10;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.past-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.past-img-item:hover img {
  transform: scale(1.1);
}

.past-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 14px;
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  .event-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .event-date-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 15px;
  }
  .event-day {
    font-size: 32px;
    margin: 0;
  }
  .event-actions {
    text-align: left;
  }
  .past-event-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .past-gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Tab Navigation */
.seminar-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.tab-btn {
  padding: 12px 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.tab-btn.active {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  box-shadow: 0 0 20px var(--primary-glow);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Upcoming Event with Image */
.upcoming-img {
  width: 100%;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 15px;
  cursor: pointer;
}

.upcoming-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.upcoming-img:hover img {
  transform: scale(1.05);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  transition: 0.3s;
}

.lightbox-close:hover {
  color: var(--primary-color);
  transform: rotate(90deg);
}

/* Page Banner & Breadcrumbs */
.page-banner {
  position: relative;
  padding: 160px 0 80px;
  background-image: url("../img/subpage_banner_bg.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  margin-bottom: 70px;
}

.page-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgb(5 5 5 / 50%), rgba(5, 5, 5, 0.7));
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
}

.banner-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: var(--primary-color);
}

.breadcrumb i {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.2);
}

.breadcrumb span {
  color: #fff;
}

.banner-accent {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
  filter: blur(2px);
}

.banner-accent-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mask-image: radial-gradient(circle, black, transparent 70%);
  -webkit-mask-image: radial-gradient(circle, black, transparent 70%);
}

@media (max-width: 768px) {
  .banner-accent {
    width: 250px;
    height: 250px;
    top: -10%;
    right: -5%;
  }
}

/* Mobile Fixes for 650px and below */
@media (max-width: 768px) {
  .page-banner {
    padding: 120px 0 40px;
  }
  .banner-content {
    display: flex;
    flex-direction: column;
    align-items: left;
  }
}

@media (max-width: 650px) {
  .page-banner {
    padding: 150px 0 50px; /* Ultra-tight padding for 'no space' look */
    background-position: 70% center;
    background-size: cover;
    margin-bottom: 40px;
  }

  .page-banner::before {
    background: linear-gradient(
      to bottom,
      rgba(5, 5, 5, 0.4),
      rgba(5, 5, 5, 0.8)
    );
  }

  .banner-title {
    font-size: 32px;
    margin-bottom: 8px;
  }
}

@media (max-width: 550px) {
  .page-banner {
    padding: 80px 0 30px; /* Reduced padding to fix whitespace gaps */
    margin-bottom: 30px;
  }
  .banner-title {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .page-banner {
    padding: 70px 0 25px;
  }
  .banner-title {
    font-size: 26px;
  }
}

/* ==========================================================================
   REVIEW & ACCORDION & FOOTER GRID UPDATES
   ========================================================================== */

/* Review Section */
.reviews-sec {
  padding: 70px 0;
  position: relative;
  background-image: linear-gradient(to right, rgba(5, 5, 5, 0.95) 45%, rgba(5, 5, 5, 0.3) 100%), url('../img/reviews_bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.reviews-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--bg-dark) 0%, transparent 15%, transparent 85%, var(--bg-dark) 100%);
  pointer-events: none;
  z-index: 1;
}

.reviews-sec .container {
  position: relative;
  z-index: 2;
}

.reviews-slider {
  width: 55%;
  position: relative;
  margin-left: 0;
  margin-right: auto;
}

.review-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 40px;
}

.review-meta-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-color);
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.review-meta-badge i {
  font-size: 10px;
  animation: pulse-glow 2s infinite ease-in-out;
}

.review-quote {
  font-size: 38px;
  font-weight: 400;
  line-height: 1.45;
  color: #fff;
  margin: 0 0 50px 0;
  border-left: none;
  padding-left: 0;
  letter-spacing: -0.5px;
}

.review-quote::before {
  content: "“";
  font-family: "Playfair Display", Georgia, serif;
  font-size: 60px;
  line-height: 0;
  color: var(--primary-color);
  display: inline-block;
  margin-right: 5px;
  vertical-align: -15px;
}

.review-quote::after {
  content: "”";
  font-family: "Playfair Display", Georgia, serif;
  font-size: 60px;
  line-height: 0;
  color: var(--primary-color);
  display: inline-block;
  margin-left: 5px;
  vertical-align: -30px;
}

.review-author-info {
  margin-top: 10px;
  padding-right: 140px; /* Prevent overlap with absolute arrows on right */
}

.review-author-info .author-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.review-author-info .author-title {
  font-size: 14px;
  color: var(--text-muted);
  font-family: "JetBrains Mono", monospace;
}

/* Swiper Navigation positioning */
.reviews-swiper-nav {
  position: absolute;
  right: 0;
  bottom: 34px;
  display: flex;
  gap: 15px;
  width: max-content;
  z-index: 10;
}

.reviews-nav-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  outline: none;
}

.reviews-nav-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
}

@keyframes pulse-glow {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; text-shadow: 0 0 10px var(--primary-color); }
  100% { transform: scale(1); opacity: 0.8; }
}

/* Questions / FAQ Section */
.questions-sec {
  padding: 70px 0;
  position: relative;
}

.questions-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.questions-left {
  /* Centered block styling */
}

.questions-img-wrap {
  margin-top: 40px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.01);
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 400px;
}

.questions-side-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Accordion */
.accordion-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.accordion-item {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.15);
}

.accordion-item.active {
  background: rgba(0, 102, 255, 0.02);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.05);
}

.accordion-header {
  padding: 24px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  user-select: none;
}

.faq-number {
  font-size: 18px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.accordion-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  flex: 1;
  margin: 0;
  transition: color 0.3s ease;
}

.accordion-item.active .accordion-header h3 {
  color: var(--primary-color);
}

.accordion-icon {
  font-size: 20px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  color: var(--primary-color);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 0 30px 0 64px;
}

.accordion-item.active .accordion-body {
  max-height: 300px;
  padding-bottom: 30px;
}

.accordion-body p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* Footer Columns & Equal Width */
.footer-grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  align-items: flex-start;
  width: 100%;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-col-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 15px;
  transition: all 0.3s ease;
  width: max-content;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-connect-col {
  align-items: flex-start;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .reviews-sec {
    padding: 70px 0;
    background-image: linear-gradient(rgba(5, 5, 5, 0.9) 100%, rgba(5, 5, 5, 0.9) 100%), url('../img/reviews_bg.webp');
    background-position: center;
  }
  
  .reviews-slider {
    width: 100%;
    text-align: center;
  }
  
  .review-left {
    padding-bottom: 0;
    align-items: center;
  }
  
  .review-meta-badge {
    justify-content: center;
  }
  
  .review-quote {
    font-size: 26px;
    margin-bottom: 30px;
  }
  
  .review-author-info {
    padding-right: 0;
  }
  
  .reviews-swiper-nav {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 20px auto 0;
    justify-content: center;
  }
  
  .questions-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .questions-left {
    position: relative;
    top: 0;
  }
  
  .questions-img-wrap {
    margin: 30px 0 0;
    max-width: 100%;
    aspect-ratio: 16/9;
  }
  
  .footer-grid-three {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    align-items: center;
  }
  
  .footer-col {
    align-items: center;
    text-align: center;
  }
  
  .footer-logo-box {
    margin: 0 auto;
  }
  
  .footer-col-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-connect-col {
    align-items: center;
  }
}

/* Social Grid Boxes */
.social-grid-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.social-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 30px 40px;
  display: block;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.social-box-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.social-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  transition: all 0.4s ease;
}

.social-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.social-platform {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  transition: color 0.3s ease;
}

.social-handle {
  font-size: 13px;
  color: var(--text-muted);
  font-family: "JetBrains Mono", monospace;
}

.social-arrow {
  font-size: 18px;
  color: var(--text-muted);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateX(0);
}

/* Brand Hover Effects & Glows */
.social-box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1;
  pointer-events: none;
}

.social-box:hover {
  transform: translateY(-8px);
  border-color: var(--hover-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.social-box:hover::before {
  transform: translate(-50%, -50%) scale(2);
  opacity: 0.15;
}

.social-box:hover .social-icon-wrap {
  background: var(--brand-color);
  border-color: var(--brand-color);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 20px var(--brand-color-glow);
}

.social-box:hover .social-arrow {
  color: #fff;
  transform: translateX(5px);
}

/* Platform specific variables */
.youtube-box {
  --brand-color: #ff0000;
  --brand-color-glow: rgba(255, 0, 0, 0.4);
  --glow-color: #ff0000;
  --hover-border: rgba(255, 0, 0, 0.3);
}

.instagram-box {
  --brand-color: #ff0056;
  --brand-color-glow: rgba(255, 46, 115, 0.4);
  --glow-color: #ff0056;
  --hover-border: rgba(225, 48, 108, 0.3);
}

.linkedin-box {
  --brand-color: #0077b5;
  --brand-color-glow: rgba(0, 119, 181, 0.4);
  --glow-color: #0077b5;
  --hover-border: rgba(0, 119, 181, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
  .social-grid-boxes {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  
  .social-box {
    padding: 24px 30px;
  }
}

/* ==========================================
   Seminar Page: New Layout & Grid
   ========================================== */
.seminars-portal-sec {
  padding: 70px 0;
  background: var(--bg-dark);
}

.portal-header {
  margin-bottom: 50px;
}

/* 1. Recent Seminar Hero (Full Width) */
.recent-seminar-hero {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 30px;
  overflow: hidden;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  margin-bottom: 60px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.recent-hero-grid {
  display: grid;
  grid-template-columns: 45% 55%;
}

.recent-left-col {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border-glass);
}

.recent-intro-text-wrap {
  padding: 35px 40px;
}

.recent-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.recent-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.recent-seminar-hero:hover .recent-hero-img {
  transform: scale(1.05);
}

.recent-status-badge {
  position: absolute;
  top: 30px;
  left: 30px;
  background: var(--primary-color);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
  z-index: 2;
}

.recent-content-wrap {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recent-badge {
  color: var(--primary-color);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.recent-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.recent-desc {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.recent-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.spec-tile {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 15px 20px;
}

.tile-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.tile-label i {
  color: var(--primary-color);
}

.tile-val {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

/* Seats Progress Bar */
.seats-progress-wrap {
  margin-bottom: 35px;
}

.seats-info-text {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.seats-count {
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
}

.seats-count.highlight-red {
  color: var(--primary-color);
}

.progress-bar-container {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--primary-color);
  border-radius: 10px;
  transition: width 1s ease-out;
}

.recent-actions-row {
  display: flex;
  gap: 15px;
}

/* 2. Grid Sections & Cards */
.grid-section-title {
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 800;
  color: #fff;
  margin: 60px 0 30px;
  position: relative;
  padding-left: 15px;
}

.grid-section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 2px;
}

.seminars-grid-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.event-grid-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.event-grid-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.card-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-grid-card:hover .card-img {
  transform: scale(1.05);
}

.card-badge-status {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.card-badge-status.upcoming {
  background: var(--primary-color);
  color: #fff;
}

.card-badge-status.completed {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-meta {
  color: var(--primary-color);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.card-title {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.3;
  min-height: 52px;
}

.card-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 25px;
  flex: 1;
}

.card-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 25px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.detail-label {
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  display: flex;
  align-items: center;
  gap: 6px;
}

.detail-label i {
  font-size: 12px;
  color: var(--primary-color);
}

.detail-val {
  color: #fff;
  font-weight: 600;
}

.detail-val.highlight-orange {
  color: #ff9900;
}

.card-actions {
  display: flex;
  gap: 10px;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 13px;
}

/* ==========================================
   Global Reservation Modal Popup
   ========================================== */
.reservation-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  padding: 40px 15px;
}

.reservation-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.reservation-modal-container {
  background: #0a0a0a;
  border: 1px solid var(--border-glass);
  border-radius: 28px;
  width: 100%;
  max-width: 500px;
  padding: 40px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin: auto;
}

.reservation-modal-overlay.open .reservation-modal-container {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}

.modal-close-btn:hover {
  color: #fff;
}

.modal-header {
  margin-bottom: 30px;
}

.modal-meta-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--primary-color);
  letter-spacing: 2px;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.modal-title {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group-custom {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-custom label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'JetBrains Mono', monospace;
}

.form-group-custom input,
.form-group-custom textarea {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 14px 18px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group-custom textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group-custom input:focus,
.form-group-custom textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.04);
}

/* Google reCAPTCHA wrapper style */
.recaptcha-wrapper-custom {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 15px;
  margin: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.input-readonly-custom {
  background: rgba(255, 255, 255, 0.02) !important;
  cursor: not-allowed;
  color: var(--primary-color) !important;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.g-recaptcha-mock {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.recaptcha-checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.recaptcha-checkbox-wrap input[type="checkbox"] {
  width: 24px;
  height: 24px;
  cursor: pointer;
  accent-color: var(--primary-color);
}

.recaptcha-checkbox-wrap label {
  font-size: 13px;
  color: #fff;
  cursor: pointer;
}

.recaptcha-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Roboto, helvetica, arial, sans-serif;
}

.recaptcha-logo-wrap span {
  font-size: 8px;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 500;
}

.recaptcha-privacy-links {
  font-size: 7px;
  color: var(--text-muted);
  margin-top: 2px;
}

.recaptcha-privacy-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.recaptcha-privacy-links a:hover {
  text-decoration: underline;
}

.w-100-btn {
  width: 100%;
  padding: 15px;
  font-size: 15px;
  margin-top: 10px;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
  .recent-hero-grid {
    grid-template-columns: 1fr;
  }
  
  .recent-left-col {
    border-right: none;
    border-bottom: 1px solid var(--border-glass);
  }
  
  .recent-intro-text-wrap {
    padding: 30px 20px;
  }
  
  .recent-img-wrap {
    min-height: 240px;
    height: 240px;
  }
  
  .recent-content-wrap {
    padding: 30px 20px;
  }
  
  .seminars-grid-two {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .recent-title {
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  .recent-specs-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .recent-actions-row {
    flex-direction: column;
  }
  
  .reservation-modal-container {
    padding: 30px 20px;
    margin: 15px;
  }
  
  .step-item {
    flex-direction: column;
    gap: 10px;
  }
  
  .step-item:not(:last-child)::before {
    display: none;
  }
}

/* Section Separator */
.section-horizontal-divider {
  width: calc(100% - 60px);
  max-width: 1240px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.15) 15%,
    rgba(255, 255, 255, 0.15) 85%,
    transparent
  );
  margin: 0 auto;
  opacity: 0.8;
}

/* ==========================================
   Cosmic Reservation Success View
   ========================================== */
.success-message-wrapper {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  text-align: center;
  padding: 40px 20px;
}

.success-message-wrapper.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.success-icon {
  font-size: 56px;
  color: #00ff66;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(0, 255, 102, 0.3));
}

.success-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  font-family: "Outfit", sans-serif;
}

.success-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.6;
  font-family: "Outfit", sans-serif;
}

/* ==========================================
   Logo Styling with Neon Glow
   ========================================== */
.logo {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 26px !important;
  color: #fff !important;
  letter-spacing: -0.03em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}
.logo span {
  color: #00f0ff !important;
  margin-left: 1px;
  text-shadow: 0 0 5px rgba(0, 240, 255, 0.6), 0 0 15px rgba(0, 240, 255, 0.8);
  animation: logoGlow-anim 2.5s ease-in-out infinite alternate;
}
.hero-logo-large {
  font-size: clamp(55px, 9vw, 85px) !important;
}
.hero-logo-large span {
  color: #0055ff !important;
  text-shadow: 0 0 8px rgba(0, 85, 255, 0.6), 0 0 20px rgba(0, 85, 255, 0.8), 0 0 40px rgba(0, 85, 255, 1) !important;
  animation: heroLogoGlow-anim 2.5s ease-in-out infinite alternate;
}

@keyframes logoGlow-anim {
  from {
    text-shadow: 0 0 4px rgba(0, 240, 255, 0.5), 0 0 10px rgba(0, 240, 255, 0.6), 0 0 20px rgba(0, 240, 255, 0.8);
  }
  to {
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.7), 0 0 20px rgba(0, 240, 255, 0.9), 0 0 40px rgba(0, 240, 255, 1), 0 0 60px rgba(0, 240, 255, 1);
  }
}

@keyframes heroLogoGlow-anim {
  from {
    text-shadow: 0 0 4px rgba(0, 85, 255, 0.5), 0 0 10px rgba(0, 85, 255, 0.6), 0 0 20px rgba(0, 85, 255, 0.8);
  }
  to {
    text-shadow: 0 0 8px rgba(0, 85, 255, 0.7), 0 0 20px rgba(0, 85, 255, 0.9), 0 0 40px rgba(0, 85, 255, 1), 0 0 60px rgba(0, 85, 255, 1);
  }
}

/* ==========================================
   Overhauled Seminars Grid & Cards
   ========================================== */
.container-new {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.portal-header-new {
  margin-bottom: 48px;
}
.intro-meta-new {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}
.intro-title-new {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: clamp(32px, 5vw, 56px);
  color: #fff;
  line-height: 1.05;
  margin: 0;
  max-width: 800px;
}
.intro-title-new .italic-accent {
  font-style: italic;
  font-weight: 300;
  color: #0055FF;
}

.seminar-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

/* Glassmorphism card effect */
.seminar-card-new {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.seminar-card-new:hover {
  border-color: rgba(0, 85, 255, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 85, 255, 0.12);
}

.seminar-card-new.double-width {
  grid-column: span 2;
}

.card-img-container {
  position: relative;
  overflow: hidden;
}
.card-img-container.aspect-16-9 {
  aspect-ratio: 16/9;
}
.card-img-container.aspect-4-3 {
  aspect-ratio: 4/3;
}
.card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.seminar-card-new:hover .card-img-container img {
  transform: scale(1.04);
}
.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}
.badges-left {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.badge-mode {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  border-radius: 99px;
  border: 1px solid rgba(0, 85, 255, 0.6);
  background: rgba(0, 85, 255, 0.15);
  color: #99ccff;
}
.badge-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
}
.badge-featured {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  border-radius: 99px;
  background: #fff;
  color: #000;
  font-weight: 600;
}

.card-body-new {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}
.card-title-new {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}
.seminar-card-new.double-width .card-title-new {
  font-size: 28px;
}
.seminar-card-new:not(.double-width) .card-title-new {
  font-size: 20px;
}

.card-desc-new {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
}
.specs-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}
.spec-item-new {
  display: flex;
  align-items: center;
  gap: 8px;
}
.spec-item-new.full-width {
  grid-column: span 2;
}
.spec-item-new i {
  color: #0055FF;
  font-size: 12px;
}
.footer-row-new {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: auto;
}
.price-label-new, .seats-label-new {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2px;
}
.price-value-new {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #fff;
  line-height: 1;
}
.price-currency-new {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 2px;
}
.seats-value-new {
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}
.seats-value-new.warning-orange {
  color: #ff9900;
}
.seats-value-new.warning-red {
  color: #ff3333;
}
.seats-total-new {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}
.btn-join-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  border-radius: 12px;
  background: #0055FF;
  color: #fff;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 14px;
  padding: 14px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 28px rgba(0, 85, 255, 0.2);
  margin-top: 8px;
}
.btn-join-new:hover {
  background: #2f6bff;
  box-shadow: 0 0 42px rgba(0, 85, 255, 0.4);
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.2);
}

/* Responsive grid overrides */
@media (max-width: 991px) {
  .seminar-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .seminar-grid-new {
    grid-template-columns: 1fr;
  }
  .seminar-card-new.double-width {
    grid-column: span 1;
  }
  .seminar-card-new.double-width .card-title-new {
    font-size: 20px;
  }
}

/* Logo Image Styling */
.logo-img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.logo:hover .logo-img {
  transform: scale(1.05);
}


/* ============================================================
   experiences.css
   ============================================================ */

.experiences-sec {
    padding: 70px 0 70px;
}

.exp-header {
    margin-bottom: 52px;
}

.exp-subtopic {
    margin-bottom: 60px;
}

.exp-subtopic:last-child {
    margin-bottom: 0;
}

/* ── Subtopic Heading ── */
.exp-subtopic-heading {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.exp-subtopic-label {
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary-color);
    white-space: nowrap;
    flex-shrink: 0;
}

.exp-subtopic-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(0, 102, 255, 0.4), transparent);
}

/* ── Swiper override — prevent clipping ── */
.exp-swiper {
    overflow: hidden;
    width: 100%;
}

/* ── Slide width is controlled via JS breakpoints ── */
.exp-slide {
    height: auto;
}

/* ── Card ── */
.exp-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.exp-card:hover {
    border-color: rgba(0, 102, 255, 0.45);
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
}

.exp-card-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #111;
    flex-shrink: 0;
}

.exp-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.exp-card:hover .exp-card-img-wrap img {
    transform: scale(1.06);
}

.exp-card-desc {
    padding: 14px 16px 16px;
    font-family: var(--font-main);
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-muted);
    margin: 0;
    border-top: 1px solid var(--border-glass);
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .experiences-sec { padding: 60px 0 80px; }
    .exp-subtopic { margin-bottom: 50px; }
}

@media (max-width: 768px) {
    .experiences-sec { padding: 50px 0 70px; }
    .exp-subtopic { margin-bottom: 44px; }
    .exp-subtopic-label { font-size: 11px; letter-spacing: 0.16em; }
    .exp-card-desc { font-size: 12px; padding: 11px 13px 13px; }
}

@media (max-width: 480px) {
    .experiences-sec { padding: 40px 0 56px; }
    .exp-header { margin-bottom: 30px; }
    .exp-subtopic { margin-bottom: 36px; }
    .exp-subtopic-label { font-size: 10px; letter-spacing: 0.12em; }
    .exp-card-desc { font-size: 11px; padding: 9px 10px 11px; }
    .exp-card { border-radius: 10px; }
}
/* ============================================================
   FOOTER UPDATE
   ============================================================ */

/* ── 4-Column Grid (replaces footer-grid-three layout) ── */
.footer-grid-four {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 48px;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 20px;
}

/* ── Hide duplicate "Quick Links" heading on col 3 ──
      Keeps both link columns vertically aligned            ── */
.footer-col-title--hidden {
    visibility: hidden;
    pointer-events: none;
    user-select: none;
}

/* ── 1201px – 1440px ── */
@media (max-width: 1440px) {
    .footer-grid-four {
        grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
        gap: 40px;
    }
}

/* ── 993px – 1200px ── */
@media (max-width: 1200px) {
    .footer-grid-four {
        grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
        gap: 32px;
    }
}

/* ── 769px – 992px: 2×2 grid, brand spans full top row ── */
@media (max-width: 992px) {
    .footer-grid-four {
        grid-template-columns: 1fr 1fr;
        gap: 40px 32px;
    }

    .footer-col-brand {
        grid-column: 1 / -1;
    }

    /* Show hidden heading so col 3 is self-explanatory */
    .footer-col-title--hidden {
        visibility: visible;
    }
}

/* ── 320px – 768px: single column, centered ── */
@media (max-width: 768px) {
    .footer-grid-four {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .footer-col-title--hidden {
        visibility: visible;
    }

    .footer-col-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a {
        width: auto;
    }

    .footer-connect-col {
        align-items: center;
    }

    .footer-social-row {
        justify-content: center;
    }

    .footer-contact-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-grid-four {
        gap: 28px;
    }
}