@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poly:ital@0;1&display=swap');


html {
  scroll-behavior: smooth;
}

body {
  background-color: #0d0d0d;
  font-family: 'Poppins', sans-serif;
  color: #f2f2f2;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.navbar {
  background-color: rgba(0, 0, 0, 0);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  z-index: 10;
  backdrop-filter: blur(10px);
  text-align: center;
}

.navbar-brand {
  font-family: "Pixelify Sans", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #00c2ff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.navbar-brand:hover {
  color: #fff;
}

.header-content {
  position: relative;
  padding: 100px 15px;
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('https://www.transparenttextures.com/patterns/asfalt-dark.png');
  height: 50vh;
  color: #f2f2f2;
}

.purple-bg-grad {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #7e22ce91 8%, #625aafae 31%, #7badbbbc 76%, #54d2d0ca 89%);
  filter: blur(100px);
  opacity: 0.5;
  z-index: -1;
}

.header-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-top: 50px;
  animation: fadeInDown 1s;
}

.header-content p {
  font-size: 1.2rem;
  margin: 10px 0 20px;
  animation: fadeInUp 1.5s;
}

.gradient-text {
  background: linear-gradient(90deg, rgba(135, 206, 250, 1) 18%, rgba(255, 182, 193, 1) 71%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-slide 4s ease infinite;
}

@keyframes gradient-slide {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.btn-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.btn-custom {
  padding: 10px 25px;
  font-size: 1.1rem;
  border-radius: 50px;
  border: none;
  transition: background-color 0.3s, transform 0.3s;
}

.btn-primary-custom {
  background-color: #00c2ff;
  color: #fff;
}

.btn-primary-custom:hover {
  background-color: #009ad6;
  transform: scale(1.05);
}

.btn-secondary-custom {
  background-color: transparent;
  color: #00c2ff;
  border: 2px solid #00c2ff;
}

.btn-secondary-custom:hover {
  background-color: #00c2ff;
  color: #fff;
  transform: scale(1.05);
}

.features {
  padding: 80px 15px;
  background-color: #0e0e0e;
}

.features .feature {
  margin-bottom: 30px;
  background-color: transparent;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid gray;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.features .feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.1) 25%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.1) 75%);
  
}


.features h3 {
  color: #00c2ff;
  font-weight: 600;
  margin-bottom: 20px;
}

.features .feature i {
  background: linear-gradient(90deg, rgba(0, 194, 255, 1) 15%, rgba(255, 105, 180, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 4rem;
  margin-bottom: 15px;
}
.cta-section {
  background: linear-gradient(120deg, #000000, #1c1c1c);
  padding: 50px;
  text-align: center;
  color: #f0f0f0; /* Light text color for better contrast */
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #ffffff; /* White for the headings */
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #d3d3d3; /* Slightly lighter text for the paragraph */
}

.cta-section .btn {
  background-color: #f0f0f0; /* Light button background */
  color: #000000; /* Dark text for the button */
  border: none;
  padding: 12px 30px;
  font-size: 1.2rem;
  border-radius: 50px;
  transition: background-color 0.3s, color 0.3s;
}

.cta-section .btn:hover {
  background-color: #ffffff; /* White on hover */
  color: #1c1c1c; /* Darker color on hover */
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 768px) {
  .header-content h1 {
    font-size: 2rem;
  }

  .header-content p {
    font-size: 1rem;
  }

  .features .feature {
    padding: 30px;
  }
}
.about-section {
  padding: 100px 20px;
  background: black;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
}

.section-title h2 {
  font-size: 3rem;
  color: #66fcf1;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title p {
  font-size: 1.5rem;
  color: #c5c6c7;
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.platform-name {
  color: white;
  font-weight: bold;
  font-size: 1.rem;
}

.about-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.about-details {
  max-width: 900px;
  padding: 0;
  text-align: left;
  line-height: 1.8;
  color: #c5c6c7;
}

.about-details h3 {
  color: #66fcf1;
  font-size: 2.2rem;
  margin-bottom: 25px;
}

.about-details p {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: #c5c6c7;
}

.highlight {
  color: #00c2ff;
  font-weight: bold;
}

.about-details ul {
  list-style-type: disc;
  padding-left: 40px;
  margin-bottom: 30px;
}

.about-details ul li {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #dcdcdd;
}

.about-details ul li::marker {
  color: #66fcf1;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2.4rem;
  }

  .about-details h3 {
    font-size: 1.8rem;
  }

  .about-details p,
  .about-details ul li {
    font-size: 1.1rem;
  }
}

/* Base styles for the resources section */
.resources-section {
  padding: 80px 20px;
  background-color: #0b0c10;
  color: #ffffff;
}

.section-title h2 {
  font-size: 3rem;
  color: #66fcf1;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title p {
  font-size: 1.5rem;
  color: #c5c6c7;
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid layout for resources */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

/* Shiny card effect and base card styles */
.resource-card {
  background: #1f2833;
  border: 1px solid #45a29e;
  border-radius: 8px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}

/* Shimmer animation */
.resource-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: 0.5s;
  animation: shine 2s infinite;
}

/* Animation for the shining effect */
@keyframes shine {
  0% {
    left: -150%;
  }
  100% {
    left: 150%;
  }
}

.resource-card:hover {
  border-color: #66fcf1;
  transform: translateY(-2px);
}

/* Resource card text styling */
.resource-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #66fcf1;
}

.resource-card p {
  color: #c5c6c7;
  font-size: 14px;
  margin-bottom: 16px;
}

/* Link styling for resources */
.resource-link {
  color: #45a29e;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.resource-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2.4rem;
  }

  .resource-card h3 {
    font-size: 18px;
  }

  .resource-card p,
  .resource-link {
    font-size: 13px;
  }
}

.footer-link{
    width: -moz-fit-content;
    width: fit-content;
    color: #cfcfcf;
    transition: color 0.3s;
}

.footer-link:hover{
    color: #ffffff;
}

footer{
  color: white;
}

/* Style for the collapsible content such as faq commonly known as: accordion */

.faq-accordion {
    background-color: inherit;
    color: white;
    cursor: pointer;
    padding: 15px 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: height 0.4s;
}

.faq .content {
    padding: 0px 18px;
    color: white;
    height: max-content;
    overflow: hidden;
    background-color: transparent;
    text-align: justify;
    max-height: 0px;
    transition: max-height 0.4s, padding 0.4s;
}
.status-section {
    padding: 50px 20px;
    background-color: #0e0e0e;
    color: #fff;
    text-align: center;
}

.status-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border: 1px solid gray;
    border-radius: 10px;
    background-color: transparent;
    padding: 20px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.6);
}

.status-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background-color: transparent;
    border-radius: 5px;
    width: fit-content;
    font-size: 16px;
}

.status-dot {
    width: 12px;
    height: 12px;
    background-color: #00c2ff;
    border-radius: 50%;
    margin-right: 8px;
}

.time-container {
    font-size: 18px;
    font-weight: 500;
    color: white;
}