@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap');
        
body {
  background-color: #0a0a0a;
  color: white;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  overflow-y: auto; /* Allow vertical scrolling */
  height: 100%;
  margin: 0;
  line-height: 1.7;
  min-height: 100vh;
  width: 100%;
  position: relative;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html {
  height: 100%;
}

.glass-card {
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(188, 36, 196, 0.2);
}

.gradient-bg {
  background: linear-gradient(135deg, rgba(188, 36, 196, 0.1) 0%, rgba(15, 15, 15, 0.8) 50%, rgba(188, 36, 196, 0.1) 100%);
}

.gradient-text {
  background: linear-gradient(90deg, #ec4899 0%, #bc24c4 50%, #9d1d9d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(188, 36, 196, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(188, 36, 196, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(188, 36, 196, 0);
  }
}

.floating {
  animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.grid-pattern {
  background-image: 
    linear-gradient(rgba(188, 36, 196, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(188, 36, 196, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  position: relative;
  overflow-x: hidden; /* Only hide horizontal overflow */
  overflow-y: auto; /* Allow vertical scrolling */
  min-height: 100%;
}

.grid-pattern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23bc24c4" opacity="0.03"><circle cx="15" cy="15" r="3"/><circle cx="35" cy="25" r="2"/><circle cx="75" cy="15" r="4"/><circle cx="85" cy="65" r="3"/><circle cx="25" cy="85" r="2"/><circle cx="65" cy="75" r="3"/><circle cx="45" cy="45" r="2"/><circle cx="85" cy="25" r="3"/><circle cx="15" cy="65" r="4"/><circle cx="55" cy="35" r="2"/></svg>'),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23bc24c4" opacity="0.03"><path d="M10,10 L90,10 L90,90 L10,90 Z" stroke-width="2"/><path d="M30,30 L70,30 L70,70 L30,70 Z" stroke-width="1"/></svg>'),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23bc24c4" opacity="0.03"><polygon points="50,5 90,90 10,90"/><polygon points="50,30 70,70 30,70"/></svg>');
  background-size: 100px 100px, 150px 150px, 120px 120px;
  background-repeat: repeat;
  z-index: -1;
}

/* Crypto grid elements */
.crypto-grid-element {
  position: fixed;
  font-size: 1.5rem;
  color: rgba(188, 36, 196, 0.1);
  z-index: -1;
}

.crypto-grid-element:nth-child(1) { top: 15%; left: 10%; }
.crypto-grid-element:nth-child(2) { top: 25%; right: 15%; }
.crypto-grid-element:nth-child(3) { top: 45%; left: 20%; }
.crypto-grid-element:nth-child(4) { top: 65%; right: 10%; }
.crypto-grid-element:nth-child(5) { top: 85%; left: 15%; }
.crypto-grid-element:nth-child(6) { top: 35%; right: 25%; }

.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 40px;
}

/* Header Styles */
header {
  background-color: rgba(11, 11, 20, 0.95);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 15px rgba(236, 10, 255, 0.1);
  width: 100%;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 35px;
  width: auto;
  margin-right: 10px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 12px;
}

nav ul li {
  margin: 0;
}

nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
  position: relative;
  padding: 5px 0;
}

nav ul li a:hover,
nav ul li a.active {
  color: #ec0aff;
}

nav ul li a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ec0aff;
}

/* About Section */
.about-us {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.about-us::before {
  content: "";
  position: absolute;
  top: 0;
  right: -100px;
  width: 70%;
  height: 100%;
  background: url("../assets/bg_assests/bg_asset1.png") no-repeat right top;
  background-size: 300px auto;
  opacity: 0.2;
  z-index: -1;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 30px;
}

.text-content {
  flex: 1;
}

.image-content {
  flex: 1;
  position: relative;
}

.image-content img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(236, 10, 255, 0.2);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
  color: #ffffff;
  position: relative;
  display: inline-block;
}

h1 u {
  text-decoration: none;
  position: relative;
}

h1 u::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 3px;
  bottom: -10px;
  left: 20%;
  background: linear-gradient(90deg, transparent, #ec0aff, transparent);
}

h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #ec0aff;
}

.tagline {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #aaaaaa;
}

p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #dddddd;
}

/* Vision Section */
.section {
  padding: 50px 0;
  text-align: center;
  position: relative;
  width: 100%;
}

.section::before {
  content: "";
  position: absolute;
  left: -300px;
  top: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(236, 10, 255, 0.1) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  border-radius: 50%;
  z-index: -1;
}

.vision-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 30px auto;
  padding: 0 20px;
}

.vision-card {
  background: rgba(30, 30, 46, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(188, 36, 196, 0.2);
  border-radius: 12px;
  padding: 20px;
  color: white;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.vision-card:hover {
  transform: translateY(-5px);
  border-color: rgba(188, 36, 196, 0.5);
  box-shadow: 0 10px 20px rgba(188, 36, 196, 0.2);
}

.vision-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.vision-card p {
  font-size: 0.9rem;
  color: #cbd5e0;
  margin: 10px 0;
}

/* Initiative Section */
.initiative-section {
  text-align: center;
  padding: 40px 0;
  width: 100%;
}

.initiative-section h2 {
  margin-bottom: 30px;
  font-size: 2rem;
}

.initiative-section .vision-container {
  grid-template-columns: repeat(2, 1fr);
  max-width: 600px;
}

.image-container {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 15px;
  border: 2px solid rgba(236, 10, 255, 0.3);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
  position: relative;
  z-index: 10; /* Add this to ensure icons are above other elements */
}

.social-icons a {
  color: #fcfafa;
  font-size: 1.2rem;
  transition: color 0.3s ease;
  display: inline-block; /* Add this */
  padding: 5px; /* Add this to increase clickable area */
  position: relative; /* Add this */
  z-index: 11; /* Add this to ensure links are clickable */
  pointer-events: auto; /* Ensure pointer events are enabled */
}

.social-icons a:hover {
  color: #b659ff;
}

/* Our Story Section */
.our-story-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.carousel-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  padding: 30px 0;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease;
  padding: 20px 0;
}

.card {
  flex: 0 0 auto;
  width: 320px;
  height: 220px;
  margin: 0 15px;
  padding: 30px;
  border-radius: 16px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(188, 36, 196, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Alternate card colors with gradient */
.card:nth-child(odd) {
  background: linear-gradient(145deg, rgba(93, 45, 140, 0.8), rgba(138, 43, 226, 0.8));
}

.card:nth-child(even) {
  background: linear-gradient(145deg, rgba(195, 43, 202, 0.8), rgba(236, 10, 255, 0.8));
}

.card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(188, 36, 196, 0.25);
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: white;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.card .content {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: rgba(188, 36, 196, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(188, 36, 196, 0.3);
}

.arrow:hover {
  background: rgba(188, 36, 196, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.arrow-left {
  left: 15px;
}

.arrow-right {
  right: 15px;
}

.arrow svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.timeline {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
  position: relative;
  align-items: center;
}

.timeline .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(188, 36, 196, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.timeline .dot.active {
  background: rgba(236, 10, 255, 0.8);
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(236, 10, 255, 0.5);
}

.timeline .dot:hover {
  background: rgba(236, 10, 255, 0.6);
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 60px 0;
  background: linear-gradient(rgba(11, 11, 20, 0.8), rgba(11, 11, 20, 0.95));
  position: relative;
  width: 100%;
}

.cta-button {
  background: linear-gradient(90deg, #ec0aff, #7b19e6);
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 1.2rem;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 20px rgba(236, 10, 255, 0.3);
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(236, 10, 255, 0.5);
}

/* Footer */
.footer {
  background: #0b0b14;
  padding: 40px 20px;
  color: #aaa;
  font-size: 1rem;
  width: 100%;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
.text-content {
  flex: 1;
}

.image-content {
  flex: 1;
  position: relative;
}

.image-content img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(236, 10, 255, 0.2);
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  text-align: center;
  color: #ffffff;
  position: relative;
  display: inline-block;
}

h1 u {
  text-decoration: none;
  position: relative;
}

h1 u::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 3px;
  bottom: -10px;
  left: 20%;
  background: linear-gradient(90deg, transparent, #ec0aff, transparent);
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #ec0aff;
}

.tagline {
  font-size: 1.4rem;
  margin-bottom: 25px;
  color: #aaaaaa;
}

p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #dddddd;
}

/* Vision Section */
.section {
  padding: 70px 0;
  text-align: center;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  left: -300px;
  top: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(236, 10, 255, 0.1) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  border-radius: 50%;
  z-index: -1;
}

.section::after {
  content: "";
  position: absolute;
  right: -300px;
  bottom: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(70, 10, 180, 0.1) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  border-radius: 50%;
  z-index: -1;
}

.vision-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.vision-card {
  background: rgba(30, 30, 46, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(236, 10, 255, 0.2);
  border-radius: 15px;
  padding: 30px;
  color: white;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 300px;
  flex: 1 1 300px;
  transition: all 0.3s ease;
}

.vision-card:hover {
  transform: translateY(-10px);
  border-color: rgba(236, 10, 255, 0.5);
  box-shadow: 0 10px 30px rgba(236, 10, 255, 0.2);
}

.vision-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.vision-card p {
  font-size: 1rem;
  color: #cbd5e0;
  margin: 10px 0;
}

/* Initiative Section */
.initiative-section {
  text-align: center;
  padding: 50px 0;
}

.initiative-section h2 {
  margin-bottom: 40px;
}

.image-container {
  width: 240px;
  height: 240px;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 auto 15px;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
  position: relative;
  z-index: 10; /* Add this to ensure icons are above other elements */
}

.social-icons a {
  color: #fcfafa;
  font-size: 1.5rem;
  transition: color 0.3s ease;
  display: inline-block; /* Add this */
  padding: 5px; /* Add this to increase clickable area */
  position: relative; /* Add this */
  z-index: 11; /* Add this to ensure links are clickable */
  pointer-events: auto; /* Ensure pointer events are enabled */
}

.social-icons a:hover {
  color: #b659ff;
}

/* Our Story Section */
.our-story-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.carousel-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  padding: 30px 0;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease;
  padding: 20px 0;
}

.card {
  flex: 0 0 auto;
  width: 320px;
  height: 220px;
  margin: 0 15px;
  padding: 30px;
  border-radius: 16px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(188, 36, 196, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Alternate card colors with gradient */
.card:nth-child(odd) {
  background: linear-gradient(145deg, rgba(93, 45, 140, 0.8), rgba(138, 43, 226, 0.8));
}

.card:nth-child(even) {
  background: linear-gradient(145deg, rgba(195, 43, 202, 0.8), rgba(236, 10, 255, 0.8));
}

.card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(188, 36, 196, 0.25);
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: white;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.card .content {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: rgba(188, 36, 196, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(188, 36, 196, 0.3);
}

.arrow:hover {
  background: rgba(188, 36, 196, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.arrow-left {
  left: 15px;
}

.arrow-right {
  right: 15px;
}

.arrow svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.timeline {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
  position: relative;
  align-items: center;
}

.timeline .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(188, 36, 196, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.timeline .dot.active {
  background: rgba(236, 10, 255, 0.8);
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(236, 10, 255, 0.5);
}

.timeline .dot:hover {
  background: rgba(236, 10, 255, 0.6);
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(rgba(11, 11, 20, 0.8), rgba(11, 11, 20, 0.95)),
    url("../crypto-pattern.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(236, 10, 255, 0.05) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  animation: rotate 60s linear infinite;
  z-index: -1;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.cta-section h5 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #ffffff;
}

.cta-button {
  background: linear-gradient(90deg, #ec0aff, #7b19e6);
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 1.2rem;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 20px rgba(236, 10, 255, 0.3);
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(236, 10, 255, 0.5);
}

/* Footer */
.footer {
  background: #0b0b14;
  padding: 60px 20px;
  color: #aaa;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ec0aff, transparent);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.5rem;
  position: relative;
}

.footer h3::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  bottom: -10px;
  left: 0;
  background: #ec0aff;
}

.footer a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ec0aff;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  font-size: 1.2rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

hr {
  border: none;
  border-top: 1px solid #333;
  margin: 10px 0;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .vision-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .row {
    grid-template-columns: 1fr;
  }

  .about-content {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .vision-container {
    grid-template-columns: 1fr;
  }

  .initiative-section .vision-container {
    grid-template-columns: 1fr;
  }

  .card {
    width: 240px;
  }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }

  .row {
    gap: 60px;
  }

  nav ul li {
    margin-left: 15px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .vision-card {
    width: 100%;
    max-width: 320px;
  }

  .story-card {
    min-width: 250px;
  }

  header .container {
    flex-direction: column;
    padding: 10px;
  }

  nav ul {
    margin-top: 15px;
    justify-content: center;
  }

  nav ul li {
    margin: 0 10px;
  }
}

/* Glow effects and animations */
.glow {
  position: relative;
}

.glow::after {
  content: "";
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 100px;
  background: radial-gradient(
    ellipse at center,
    rgba(236, 10, 255, 0.15) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  z-index: -1;
  animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
  0% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

/* Special effects for vision cards */
.vision-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 50%
  );
  z-index: 0;
}

/* Timeline dots and connectors */
.timeline-dot {
  width: 12px;
  height: 12px;
  background: #ec0aff;
  border: 2px solid white;
  border-radius: 50%;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.timeline-connector {
  position: absolute;
  height: 2px;
  background: white;
  width: calc(100% - 60px);
  bottom: 30px;
  left: 30px;
  z-index: 0;
}
.footer {
  background: #0b0b14;
  padding: 60px 20px;
  color: #aaa;
  font-size: 1.1rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.footer a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ec0aff;
  text-decoration: underline;
  font-size: 1.1rem;
}

.social-icons {
  display: flex;
  gap: 15px;
  font-size: 2rem;
}

.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  font-size: 1.2rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

hr {
  border: none;
  border-top: 1px solid #333;
  margin: 10px 0;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .vision-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .row {
    grid-template-columns: 1fr;
  }

  .about-content {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .vision-container {
    grid-template-columns: 1fr;
  }

  .initiative-section .vision-container {
    grid-template-columns: 1fr;
  }

  .card {
    width: 240px;
  }
}
