/* General Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #181818;
  color: #fff;
  line-height: 1.6;
}

/* Add to your main CSS file (style.css) or in a <style> block */
#page-loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(120deg, #222 70%, #F9C846 100%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeOutLoader 1s 2.2s forwards;
}

.loader-circle-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-circle {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 4px solid transparent;
  border-top: 4px solid #F9C846;
  border-radius: 50%;
  animation: spinCircle 2s linear infinite;
  z-index: 1;
  filter: drop-shadow(0 0 12px #F9C84688);
}

@keyframes spinCircle {
  from { transform: rrotate(0deg); }
  to { transform: rotate(360deg); }
}

.loader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7em;
  animation: logoPop 1.2s background-clip(.68,-0.55,.27,1.55);
}

.loader-logo img {
  width: 240px;
  height: 240px;
  border-radius: 100%;
  box-shadow: 0 8px 32px #F9C84644;
  animation: logoBounce 1s;
}
.loader-brand {
  font-size: 2em;
  font-weight: 900;
  color: #F9C846;
  letter-spacing: 2px;
  text-shadow: 0 2px 12px #F9C84688;
  animation: shineText 2s infinite linear;
}
.loader-bar {
  width: 180px;
  height: 8px;
  background: linear-gradient(90deg, #F9C846 0%, #fff 100%);
  border-radius: 8px;
  margin-top: 2em;
  overflow: hidden;
  position: relative;
}
.loader-bar::before {
  content: "";
  display: block;
  position: absolute;
  left: -60px;
  top: 0;
  width: 60px;
  height: 8px;
  background: linear-gradient(90deg, #fff 0%, #F9C846 100%);
  border-radius: 8px;
  animation: loaderBarMove 2s linear forwards;
}
@keyframes loaderBarMove {
  0% { left: -60px; }
  100% { left: 180px; }
}
@keyframes logoBounce {
  0% { transform: scale(0.7); opacity: 0; }
  60% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}
@keyframes logoPop {
  0% { opacity: 0; transform: scale(0.7);}
  100% { opacity: 1; transform: scale(1);}
}
@keyframes fadeOutLoader {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}
@keyframes shineText {
  0% { text-shadow: 0 2px 12px #F9C84688; }
  50% { text-shadow: 0 2px 24px #F9C846cc; }
  100% { text-shadow: 0 2px 12px #F9C84688; }
}

a { color: #F9C846; text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-weight: 700; margin: 0.5em 0; }
.btn {
  display: inline-block;
  background: #F9C846;
  color: #222;
  padding: 0.5em 1.2em;
  border-radius: 2em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.btn:hover { background: #fff; color: #222; }

/* Header & Navigation */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(24,24,24,0.98);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5em 2em;
  z-index: 1000;
  height: 64px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-bottom: 2px solid gold;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.logo img {
      border-radius: 8px;
      box-shadow: 0 0 8px gold;
    }

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #F9C846;
}

.logo a span {
  margin-left: 0.5em;
}

.brand {
  font-size: 1.3em;
  font-weight: bold;
  letter-spacing: 1px;
}
.nav ul {
  display: flex;
  gap: 1.5em;
  list-style: none;
  margin: 0; padding: 0;
}
.nav a {
  color: #fff;
  font-weight: 500;
  font-size: 1em;
  padding: 0.5em 0.8em;
  border-radius: 2em;
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
  position: relative;
  z-index: 1;
  text-decoration: none !important;
  text-decoration-thickness: 0 !important;
  text-underline-offset: 0 !important;
}
.nav a:hover,
.nav a:focus {
  background: linear-gradient(90deg, #F9C846 60%, #ffe066 100%);
  color: #222;
  box-shadow: 0 4px 16px #F9C84644;
  transform: scale(1.08);
  text-decoration: none !important;
}
.nav a.active {
  background: linear-gradient(90deg, #F9C846 60%, #ffe066 100%);
  color: #222;
  box-shadow: 0 4px 16px #F9C84644;
  transform: scale(1.08);
}

/* === Enhanced Dropdown Style === */
.nav .dropdown {
  position: relative;
}

.nav .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #222;
  border-radius: 10px;
  min-width: 200px;
  box-shadow: 0 8px 32px rgba(249,200,70,0.2);
  padding: 0.5em 0;
  z-index: 999;
  transition: all 0.3s ease;
}

.nav .dropdown-content li {
  position: relative;
}

.nav .dropdown-content li a {
  display: block;
  padding: 0.75em 1em;
  color: #fff;
  font-weight: 500;
  transition: background 0.3s, transform 0.2s;
}

.nav .dropdown-content li a:hover {
  background: linear-gradient(90deg, #F9C846 0%, #ffe066 100%);
  color: #222;
  transform: translateX(4px);
  border-left: 4px solid #222;
}

.nav .dropdown:hover .dropdown-content,
.nav .dropdown.active .dropdown-content {
  display: block;
}

/* === Description Popup on Hover === */
.dropdown-description {
  position: absolute;
  top: 0;
  right: 105%;
  width: 260px;
  padding: 1em;
  background: #1f1f1f;
  color: #fff;
  border-left: 3px solid #F9C846;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  font-size: 0.95em;
  line-height: 1.5;
  z-index: 1000;
}

.dropdown-description::before {
  content: "";
  position: absolute;
  top: 10px;
  right: -10px;
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent transparent #F9C846;
}


.nav .dropdown-content li:hover ~ .dropdown-description {
  opacity: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 1em;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #F9C846;
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px; right: 0;
  width: 70vw;
  max-width: 320px;
  height: calc(100vh - 64px);
  background: #222;
  box-shadow: -2px 0 8px rgba(0,0,0,0.15);
  z-index: 1100;
  padding: 2em 1.5em;
  transition: transform 0.3s;
  transform: translateX(100%);
}
.mobile-nav.open {
  display: block;
  transform: translateX(0);
}
.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2em;
  font-weight: 500;
}

/* Hero Section: Carousel */
.hero {
  margin-top: 64px;
  background: #222;
  min-height: 400px;
  position: relative;
}
.carousel {
  position: relative;
  max-width: 100vw;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s;
}
.carousel-slide {
  min-width: 100vw;
  position: relative;
  opacity: 0.6;
  transition: opacity 0.5s;
}
.carousel-slide.active {
  opacity: 1;
}
.carousel-slide img {
  width: 100vw;
  height: 750px;
  object-fit: cover;
  display: block;
}

.carousel-caption {
  position: absolute;
  left: 5vw; bottom: 40px;
  background: transparent;
  padding: 1.5em 2em;
  border-radius: 1em;
  color: #fff;
  max-width: 400px;
}
.carousel-caption h2 {
  font-size: 4rem;
}

.carousel-caption p {
    margin-top: -2.5em;
    margin-left: .3rem;
    margin-bottom: 2.5em;
}
.carousel-caption span {
  font-size: 0.3em;
  color: #F9C846;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(24,24,24,0.7);
  color: #F9C846;
  border: none;
  font-size: 2em;
  padding: 0.2em 0.6em;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: 0.5s ease-in-out;
  text-decoration: none;
}
.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }
.carousel-indicators {
  display: flex;
  gap: 0.7em;
  justify-content: center;
  margin: 1em 0;
}
.carousel-indicators button {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: none;
  background: #F9C846;
  opacity: 0.5;
  cursor: pointer;
}
.carousel-indicators button[aria-selected="true"] {
  opacity: 1;
  outline: 2px solid #fff;
  text-decoration: none;
}

/* About Section */
.about {
  margin: 0;
  padding: 0;
}
.about-bg {
  position: relative;
  width: 100vw;
  height: 340px;
  overflow: hidden;
  margin-bottom: 0;
}
.about-bg img {
  width: 100vw;
  height: 340px;
  object-fit: cover;
  filter: brightness(0.45) blur(1px);
  transition: filter 0.3s;
}
.about-bg::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, rgba(249,200,70,0.18) 0%, rgba(24,24,24,0.7) 100%);
  pointer-events: none;
}
.about-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.about-heading {
  font-size: 3.2em;
  font-weight: 900;
  text-align: center;
  letter-spacing: 4px;
  color: #fff;
  background: linear-gradient(90deg, #F9C846 0%, #fff 60%, #F9C846 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 2px 12px rgba(249,200,70,0.18),
    0 8px 32px rgba(0,0,0,0.22);
  padding: 0.6em 2em;
  border-radius: 1.5em;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  position: relative;
  display: inline-block;
  filter: drop-shadow(0 0 10px #F9C84688);
}
.about-us-highlight {
  color: #F9C846;
  font-size: 1.1em;
  font-weight: 900;
  letter-spacing: 6px;
  margin-left: 0.2em;
  text-shadow: 0 2px 8px rgba(249,200,70,0.18);
  -webkit-text-fill-color: #F9C846;
  background: none;
}
.about-dot {
  color: #F9C846;
  font-size: 1.2em;
  margin: 0 0.5em;
  vertical-align: middle;
  text-shadow: 0 2px 8px rgba(249,200,70,0.18);
}
.about-tagline {
  display: block;
  font-size: 0.6em;
  color: #F9C846;
  font-weight: 700;
  margin-top: 0.5em;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(249,200,70,0.18);
}

.about-flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
  margin: 4em auto;
  max-width: 1400px;
  padding: 0 2em;
}

.about-content {
  max-width: 650px;
  height: 870px;
  font-size: 1.2em;
  flex: 1 1 500px;
  padding: 2em 2em 3em 2em;
  background: rgba(34,34,34,0.92);
  border-radius: 1.2em;
  box-shadow: 0 4px 24px rgba(249,200,70,0.10);
  text-align: center;
  position: relative;
}

.announcement-container {
  background: rgba(34,34,34,0.92);
  border-radius: 1.2em;
  box-shadow: 0 4px 24px rgba(249,200,70,0.10);
  padding: 2em;
  max-width: 700px;
  margin: 2em auto;
}
.announcement-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1em;
  color: #F9C846;
}
.announcement-box {
  background: #1e1e1e;
  padding: 1em 1.5em;
  margin-bottom: 1.2em;
  border-left: 4px solid #F9C846;
  border-radius: 0.8em;
  box-shadow: 0 0 10px rgba(249,200,70,0.1);
}
.announcement-text {
  color: #fff;
  font-size: 1.1em;
  margin: 0.3em 0;
}
.announcement-release {
  color: #F9C846;
  font-weight: bold;
}
.announcement-time {
  font-size: 0.9em;
  color: #aaa;
  margin-top: 0.5em;
}
.no-announcement {
  color: #999;
  text-align: center;
  font-style: italic;
}

.delete-announcement {
  margin-top: 0.7em;
  background: #da3633;
  color: white;
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  font-size: 0.9em;
  cursor: pointer;
  transition: background 0.3s;
}

.delete-announcement:hover {
  background: #f85149;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  border-radius: 10px;
  margin-bottom: 1em;
}

.video-container iframe {
  position: absolute;
  min-width: 105%;
  top: 94em;
  left: -36.6em;
max-height: 100%;
  border: none;
  border-radius: 10px;
}

.announcement-image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1em;
}


/* === Mobile Responsive Fix for About Section === */
@media (max-width: 768px) {
  .about-content {
    margin: 1.5em 1em;
    padding: 1.5em 1em;
  }

  .about-content p {
    font-size: 1em;
    line-height: 1.6;
  }

  .about-heading {
    font-size: 1.8em;
    padding: 0.3em 1em;
    text-align: center;
    line-height: 1.4;
  }
}

.about-content p {
  font-size: 1.18em;
  color: #fff;
  font-weight: 400;
  margin-bottom: 1.2em;
  line-height: 1.7;
  text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.founders-intro {
  margin-top: 1em;
  font-weight: 700;
  color: #F9C846;
  font-size: 1.1em;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(249,200,70,0.18);
}

.about iframe {
  display: inline-block;
  justify-content: right;
  align-items: right;
  margin-left: 70%;
  margin-top: -30rem;
}

/* Projects Section */
.projects {
  max-width: 1300px;
  margin: 4em auto 4em auto;
  padding: 2em 2em 3em 2em;
  background: linear-gradient(120deg, #222 70%, #F9C846 100%);
  border-radius: 2em;
  box-shadow: 0 8px 32px rgba(249,200,70,0.10);
  position: relative;
  z-index: 1;
  height: 100vh;
  overflow: hidden;
  padding-top: 3em;
}
.projects::before {
  content: "";
  position: absolute;
  top: -40px; left: 50%; transform: translateX(-50%);
  width: 140px; height: 140px;
  background: radial-gradient(circle, #F9C846 0%, #222 80%);
  opacity: 0.18;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.projects h2 {
  text-align: center;
  margin-bottom: 1em;
  color: #222;
  font-size: 3em;
  font-weight: 900;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #F9C846 0%, #fff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 24px rgba(249,200,70,0.18);
  padding-top: 0em;
  padding-bottom: 0.2em;
  border-radius: 1em;
  position: relative;
  z-index: 1;
}
.projects-grid {
  display: inline-block;
  grid-template-columns: repeat(auto-fit,minmax(270px,1fr));
  gap: 4rem;
  justify-items: center;
  z-index: 1;
  padding: 0 1em;
  margin: 0 auto;
  max-width: 1200px;
  box-sizing: border-box;
  position: relative;
}

.project-card {
  background: linear-gradient(120deg, #222 80%, #F9C846 100%);
  border-radius: 1.5em;
  box-shadow: 0 8px 32px rgba(249,200,70,0.10);
  transition: transform 0.25s, box-shadow 0.25s;
  align-items: center;
  position: relative;
  border: 2px solid transparent;
  min-height: 450px;
  display: flex;
  max-width: 611px;
}
.project-card:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 0 16px 48px rgba(249,200,70,0.22);
  border: 2px solid #F9C846;
}
.project-card img {
  width: 60%;
  height: 650px;
  object-fit: cover;
  border-radius: 1.2em 1.2em 0 0;
  box-shadow: 0 4px 16px rgba(249,200,70,0.10);
  border-bottom: 2px solid #F9C846;
  transition: filter 0.2s;
  margin-bottom: 0;
}
.project-card:hover img {
  filter: brightness(1.08) saturate(1.2) drop-shadow(0 0 8px #F9C84688);
}
.project-card > div {
  flex: 1;
  display: block;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0em 2em 1em 1em;
  background: rgba(34,34,34,0.92);
  border-radius: 0 0 1.2em 1.2em;
  width: 40%;
  box-sizing: border-box;
  margin-top: 0;
}
.project-card h3 {
  font-size: 2.6em;
  margin: 0.5em 0 0 1.6rem;
  color: #F9C846;
  font-weight: bold;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.project-card span {
  bottom: 2rem;
  font-size: 0.5em;
  margin-right: .1em;
  color: #222;
  background: #F9C846;
  border-radius: 1em;
  padding: 0.2em 0.8em 0.2rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(249,200,70,0.10);
}
.project-card p {
  margin: 0.7em 0 0.7em 0;
  color: #eee;
  font-size: 1.05em;
  padding: 0 0.5em;
  text-align: center;
  line-height: 1.6;
}
.project-card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 80%;
  height: 8px;
  background: linear-gradient(90deg, #F9C846 0%, #fff 100%);
  opacity: 0.18;
  border-radius: 0 0 1em 1em;
  pointer-events: none;
}

/* Founders Section */
.founders {
  background: linear-gradient(120deg, #181818 70%, #F9C846 100%);
  padding: 5em 0 4em 0;
  margin: 0;
  width: 100%;
  text-decoration: none;
}
.founders-heading {
  text-align: center;
  font-size: 3em;
  font-weight: 900;
  color: #222;
  margin-bottom: 2.5em;
  letter-spacing: 4px;
  text-shadow: 0 8px 32px rgba(0,0,0,0.18);
  background: linear-gradient(90deg, #F9C846 0%, #fff 100%);
  border-radius: 2em;
  padding: 0.6em 0;
  width: 90%;
  margin: 0 auto 2em auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  border: 2px solid #F9C846;
  text-decoration: none;
}
.founders-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 2.5em 2em;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2em;
  justify-items: center;
  text-decoration: none;
}
.founders-col {
  background: #222;
  border-radius: 1.5em;
  text-align: center;
  padding: 2.5em 1.5em 2em 1.5em;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-width: 0;
  width: 100%;
  text-decoration: none;
  max-width: 300px;
}
.founders-col:hover {
  transform: translateY(-12px) scale(1.06);
  box-shadow: 0 16px 48px rgba(249,200,70,0.22);
  border: 2px solid #F9C846;
  text-decoration: none;
}
.founders-col img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1em;
  border: 5px solid #F9C846;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  background: #fff;
  transition: border-color 0.2s;
  text-decoration: none;
}
.founders-col h3 {
  color: #F9C846;
  margin-bottom: 0.3em;
  font-size: 1.35em;
  font-weight: bold;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.10);
  text-decoration: none;
}
.founder-role {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.7em;
  font-size: 1.1em;
  letter-spacing: 1px;
  text-decoration: none;
}
.founder-bio {
  color: #ccc;
  font-size: 1em;
  margin: 0.5em 0 0 0;
  min-height: 60px;
  line-height: 1.6;
  text-decoration: none;
  padding: 0 0.5em;
}

/* Shop Section */
.shop {
  max-width: 600px;
  margin: 3em auto;
  padding: 0 1em;
}
.shop-card {
  display: flex;
  gap: 2em;
  align-items: center;
  background: #222;
  border-radius: 1em;
  padding: 2em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.shop-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 1em;
  border: 2px solid #F9C846;
}
.shop-card h3 {
  color: #F9C846;
  margin-bottom: 0.7em;
}

/* Gallery Section */
.gallery {
  max-width: 1200px;
  margin: 3em auto;
  padding: 0 1em;
}
.gallery h2 {
  text-align: center;
  margin-bottom: 1em;
  color: #F9C846;
}
.gallery-scroll {
  display: flex;
  gap: 1em;
  overflow-x: auto;
  padding-bottom: 1em;
  scroll-behavior: smooth;
}
.gallery-scroll img {
  width: 220px;
  height: 140px;
  object-fit: cover;
  border-radius: 1em;
  border: 2px solid #F9C846;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.gallery-scroll img:focus, .gallery-scroll img:hover {
  outline: 2px solid #fff;
  transform: scale(1.05);
}

/* Footer Section */
.footer {
  background: linear-gradient(120deg, #222 70%, #F9C846 100%);
  color: #fff;
  padding: 3em 0 1.5em 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: -60px; left: 50%; transform: translateX(-50%);
  width: 180px; height: 180px;
  background: radial-gradient(circle, #F9C846 0%, #222 80%);
  opacity: 0.14;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  animation: footerGlow 4s infinite alternate;
}
@keyframes footerGlow {
  0% { opacity: 0.14; }
  100% { opacity: 0.28; filter: blur(2px);}
}
.footer-cta {
  text-align: center;
  margin-bottom: 2em;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s;
}
.footer-cta h2 {
  font-size: 2em;
  font-weight: 900;
  color: #F9C846;
  margin-bottom: 0.5em;
  letter-spacing: 2px;
  text-shadow: 0 2px 12px rgba(249,200,70,0.18);
  animation: shineText 2s infinite linear;
}
@keyframes shineText {
  0% { text-shadow: 0 2px 12px #F9C84688; }
  50% { text-shadow: 0 2px 24px #F9C846cc; }
  100% { text-shadow: 0 2px 12px #F9C84688; }
}
.footer-cta .email-link {
  display: inline-block;
  font-size: 1.15em;
  color: #222;
  background: #F9C846;
  padding: 0.5em 1.2em;
  border-radius: 2em;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(249,200,70,0.18);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  animation: pulseBtn 2s infinite;
}
.footer-cta .email-link:hover {
  background: #fff;
  color: #F9C846;
  transform: scale(1.07);
}
@keyframes pulseBtn {
  0% { box-shadow: 0 0 0 0 #F9C84688; }
  70% { box-shadow: 0 0 16px 8px #F9C84644; }
  100% { box-shadow: 0 0 0 0 #F9C84688; }
}
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3em;
  flex-wrap: wrap;
  margin-bottom: 2em;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1.5s;
}
.footer-links nav ul {
  display: flex;
  gap: 2em;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.08em;
  letter-spacing: 1px;
  padding: 0.5em 0.8em;
  border-radius: 2em;
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
  position: relative;
  z-index: 1;
  /* Remove any text underline */
  text-decoration-thickness: 0 !important;
  text-underline-offset: 0 !important;
}
.footer-links nav ul li a:hover {
  background: linear-gradient(90deg, #F9C846 60%, #ffe066 100%);
  color: #222;
  box-shadow: 0 4px 16px #F9C84644;
  transform: scale(1.08);
  /* No underline on hover */
  text-decoration: none !important;
}
.footer-links nav ul li a.active {
  background: linear-gradient(90deg, #F9C846 60%, #ffe066 100%);
  color: #222;
  box-shadow: 0 4px 16px #F9C84644;
  transform: scale(1.08);
}

/* === Clean Footer Dropdown Style === */
.footer-dropdown {
  position: relative;
  display: inline-block;
}

.footer-dropbtn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.08em;
  font-weight: 600;
  cursor: pointer;
  padding: 0.5em 0.8em;
  transition: color 0.3s ease;
  text-align: left;
  width: 100%;
}

.footer-dropbtn:hover {
  color: #F9C846;
}

.footer-dropdown-content {
  position: absolute;
  bottom: 120%; /* Show above the button if needed */
  left: 0;
  background: #1f1f1f;
  border-radius: 0.5em;
  min-width: 180px;
  display: none;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  padding: 0.5em 0;
}

.footer-dropdown-content li a {
  color: #fff;
  padding: 0.6em 1em;
  display: block;
  font-size: 0.95em;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.footer-dropdown-content li a:hover {
  background: #F9C846;
  color: #222;
  border-radius: 4px;
}

/* Show dropdown on desktop hover */
@media (min-width: 768px) {
  .footer-dropdown:hover .footer-dropdown-content {
    display: flex;
  }
}

/* Show dropdown on mobile when "open" class is added via JS */
.footer-dropdown.open .footer-dropdown-content {
  display: flex;
}

/* Responsive Fix */
@media (max-width: 600px) {
  .footer-dropdown-content {
    position: static;
    background: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
  }

  .footer-dropdown-content li a {
    padding: 0.3em 0;
    font-size: 0.95em;
    background: none;
    color: #fff;
  }

  .footer-dropdown-content li a:hover {
    background: #F9C846;
    color: #222;
    border-radius: 5px;
  }
}


/* Remove underline from mobile nav too */
.mobile-nav ul li a:hover,
.mobile-nav ul li a:focus {
  text-decoration: none !important;
  background: #F9C846;
  color: #222;
  transform: scale(1.05);
}
.social-icons {
  display: flex;
  gap: 1.2em;
  align-items: center;
}
.social-icons a {
  display: inline-block;
  transition: transform 0.2s;
  position: relative;
  z-index: 1;
}
.social-icons a:hover {
  transform: scale(1.2) rotate(-8deg);
  filter: drop-shadow(0 0 8px #F9C84688);
}
.social-icons svg {
  transition: fill 0.2s;
}
.social-icons i {
  transition: fill 0.2s;
  font-size: 1.5rem;
}
.footer-copy {
  text-align: center;
  color: #fff;
  font-size: 1em;
  margin-top: 2em;
  letter-spacing: 1px;
  opacity: 0.85;
  position: relative;
  z-index: 1;
  animation: fadeInUp 2s;
  
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px);}
  to { opacity: 1; transform: translateY(0);}
}

@media (max-width: 768px) {
  .carousel-slide img {
    height: 50vh;
  }
  .carousel-caption {
    max-width: 80%;
    font-size: 0.8em;
  }
  .carousel-caption h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .nav ul {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  .projects {
    height: auto;
    padding: 1em;
  }
}

@media (max-width: 1024px) {
  .project-card {
    flex-direction: column;
    max-width: 100%;
    height: auto;
    min-height: auto;
  }

  .project-card img {
    width: 100%;
    height: auto;
    border-radius: 1.2em 1.2em 0 0;
  }

  .project-card > div {
    width: 100%;
    padding: 1.5em;
    border-radius: 0 0 1.2em 1.2em;
  }

  .projects-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2em;
    padding: 0 1em;
  }

  .project-card h3 {
    font-size: 1.8em;
    margin-left: 0;
    text-align: center;
  }

  .project-card span {
    font-size: 0.7em;
  }

  .project-card p {
    font-size: 1em;
    padding: 0;
  }
}


@media (max-width: 768px) {
  .about-heading {
    font-size: 1.8em;
    padding: 0.3em 1em;
  }
  .about-content {
    padding: 1em;
  }
}

@media (max-width: 768px) {
  .founders-cols {
    grid-template-columns: 1fr;
    gap: 1em;
  }
}

/* ✅ Footer Responsive Fix */
@media (max-width: 900px) {
  .footer-links {
    flex-direction: column;
    gap: 1.2em;
    text-align: center;
  }

  .footer-links nav ul {
    flex-direction: column;
    gap: 0.7em;
    align-items: center;
  }

  .social-icons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1em;
  }
}

@media (max-width: 600px) {
  .project-card span {
    display: none;
  }
  .project-card a {
    display: none;
  }
  .footer {
    padding: 1.5em 0;
  }

  .footer-links nav ul li a {
    font-size: 0.95em;
    padding: 0.3em 0.6em;
  }

  .footer-copy {
    font-size: 0.85em;
    padding: 0 1em;
    line-height: 1.4;
  }
}

/* === RESPONSIVE FIX: YouTube Playlist Iframe in About Section === */
@media (max-width: 1024px) {
  .about-content{
    width: 50%;
  }
  .about iframe {
    margin-left: 41em;
    margin-top: -1500px;
    height: 580px;
    margin-bottom: 5em;
    width: 30%;
  }
}

@media (min-width: 1025px) {
  .about-content{
    width: 50%;
  }
  .about iframe {
    margin-left: 36em;
    margin-top: -1500px;
    height: 550px;
    margin-bottom: 5em;
    width: 30%;
  }
}

/* === RESPONSIVE FIX: Carousel Image Sizing === */
@media (max-width: 1024px) {
  .carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }

  .carousel-caption {
    max-width: 90%;
    left: 5%;
    bottom: 20px;
  }

  .carousel-caption h2 {
    font-size: 1.5rem;
  }

  .carousel-caption p {
    font-size: 0.9rem;
  }

  .btn {
    padding: 0.4em 1em;
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .hero {
    margin-bottom: -155px;
  }
  .carousel-slide {
    width: 100vh;
    height: 100%;
  }
  .carousel-slide img {
    height: 200px;
  }
  .about-bg {
    height: 200px;
  }
  .about-content {
    width: 85%;
  }
  .about .about-iframe-wrapper {
    margin-left: 0;
    margin-top: -0.1em;
  }
  .founders .founders-cols {
    width: 90%;
    margin-top: -1.5em;
  }
  .projects {
    width: 85%;
  }
  .founders {
    width: 95%;
  }
}

/* Responsive - Tablets and Below */
@media (max-width: 1024px) {
  .about-flex-container {
    flex-direction: column;
    align-items: center;
    padding: 2em 1.5em;
  }

  .about-content,
  .iframe {
    width: 100%;
    max-width: 100%;
  }

  .about-content {
    margin: -2em 0;
    margin-left: -.5em;
    padding: 1.5em 1.5em;
    text-align: center;
    width: 90%;
  }

  .about-content p {
    font-size: 1.05em;
    line-height: 1.6;
  }

  .iframe {
    margin-top: 1em;
    margin-left: -.5em;
    width: 88%;
  }

  .iframe h1.bigscreen {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1em;
  }

  .iframe iframe {
    width: 100%;
    height: 220px;
  }

  #video-list {
    padding-bottom: 0.5em;
    gap: 12px;
  }

  .video-item {
    width: 160px;
  }

  .video-item .title {
    font-size: 13px;
  }
}

/* Responsive - Mobile Phones */
@media (max-width: 600px) {
  .about-heading {
    font-size: 2em;
    padding: 0.3em 1em;
    line-height: 1.4;
  }

  .about-content p {
    font-size: 1em;
  }

  .iframe iframe {
    height: 200px;
  }

  .video-item {
    width: 140px;
  }

  .video-item .title {
    font-size: 12px;
  }
  #player {
    height: 200px;
  }
}

@media (max-width: 450px) {
  .about-content p{
    font-size: .8em;
  }
  #player {
    height: 180px;
  }
}
