/* GLOBAL STYLES */
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #ff80bf;
  --primary-dark: #cc4999;
  --primary-light: #ffb3d9;
  --accent-color: #00f6ff;
  --accent-dark: #00c3cc;
  --dark-bg: #060123;
  --medium-bg: #120446;
  --light-bg: #1a066c;
  --text-light: #ffffff;
  --text-dim: #b0b0cc;
  --text-dark: #080736;
  --grid-shadow: 0 4px 30px rgba(255, 128, 191, 0.15);
  --neon-glow: 0 0 10px rgba(255, 128, 191, 0.6), 0 0 20px rgba(255, 128, 191, 0.4), 0 0 30px rgba(255, 128, 191, 0.2);
  --accent-glow: 0 0 10px rgba(0, 246, 255, 0.6), 0 0 20px rgba(0, 246, 255, 0.4), 0 0 30px rgba(0, 246, 255, 0.2);
}

body {
  font-family: 'Rajdhani', sans-serif;
  color: var(--text-light);
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--medium-bg) 50%, var(--dark-bg) 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
  color: var(--text-light);
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-header span {
  color: var(--primary-color);
  text-shadow: 0 0 5px rgba(255, 128, 191, 0.8);
}

.separator {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  margin: 0 auto;
  border-radius: 2px;
  box-shadow: var(--neon-glow);
}

.btn {
  background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
  color: var(--text-light);
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:hover {
  transform: translateY(-3px);
}

.glow-btn {
  box-shadow: var(--neon-glow);
}

.glow-btn:hover {
  box-shadow: var(--accent-glow);
}

section {
  padding: 100px 0;
  position: relative;
}

section:nth-child(odd) {
  background-color: rgba(18, 4, 70, 0.7);
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(6, 1, 35, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 128, 191, 0.3);
  box-shadow: 0 2px 20px rgba(255, 128, 191, 0.2);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo h1 {
  font-size: 1.8rem;
  margin: 0;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: var(--neon-glow);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  position: relative;
  font-weight: 500;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--medium-bg) 70%);
  padding-top: 80px;
}

.hero-content {
  flex: 1;
  padding-right: 30px;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: var(--neon-glow);
}

.hero-content h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--text-dim);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-dim);
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  border-radius: 10px;
  box-shadow: var(--grid-shadow);
  animation: pulse 3s infinite alternate;
  border: 2px solid var(--primary-color);
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent-color);
  border-radius: 10px;
  z-index: -1;
}

/* ABOUT SECTION */
.about-content {
  display: flex;
  gap: 50px;
  align-items: center;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  border-radius: 10px;
  box-shadow: var(--grid-shadow);
  border: 2px solid var(--primary-color);
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 0 0 5px rgba(255, 128, 191, 0.8);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature {
  background: linear-gradient(135deg, rgba(255, 128, 191, 0.1), rgba(0, 246, 255, 0.1));
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--grid-shadow);
  border: 1px solid rgba(255, 128, 191, 0.3);
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--neon-glow);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--primary-color);
}

.feature-icon svg path {
  stroke: var(--primary-color);
}

.feature h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

/* GALLERY SECTION */
.gallery {
  overflow: hidden;
  padding: 100px 0;
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--neon-glow);
  border: 2px solid var(--primary-color);
  height: 500px;
}

.slider-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 1;
}

.slider-slide.active {
  opacity: 1;
  z-index: 2;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(6, 1, 35, 0.9), transparent);
  color: var(--text-light);
  font-size: 1.2rem;
  text-align: center;
  z-index: 3;
}

.slider-controls {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.prev-slide, .next-slide {
  background: rgba(255, 128, 191, 0.3);
  color: var(--text-light);
  border: 2px solid rgba(255, 128, 191, 0.6);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  margin: 0 20px;
  box-shadow: var(--neon-glow);
}

.prev-slide:hover, .next-slide:hover {
  background: rgba(255, 128, 191, 0.6);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--primary-color);
}

.dot.active {
  background: var(--primary-color);
  box-shadow: 0 0 8px var(--primary-color);
  transform: scale(1.2);
}

/* HOW IT WORKS SECTION */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.step {
  display: flex;
  align-items: center;
  gap: 30px;
  background: linear-gradient(135deg, rgba(255, 128, 191, 0.1), rgba(0, 246, 255, 0.1));
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--grid-shadow);
  border: 1px solid rgba(255, 128, 191, 0.3);
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--neon-glow);
}

.step-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(255, 128, 191, 0.8);
  font-family: 'Orbitron', sans-serif;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.step-icon {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--primary-color);
}

.step-icon svg path {
  stroke: var(--primary-color);
}

/* TEAM SECTION */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.team-member {
  background: linear-gradient(135deg, rgba(255, 128, 191, 0.1), rgba(0, 246, 255, 0.1));
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--grid-shadow);
  border: 1px solid rgba(255, 128, 191, 0.3);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: var(--neon-glow);
}

.member-photo {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-color);
  box-shadow: var(--neon-glow);
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.member-role {
  color: var(--accent-color);
  margin-bottom: 15px;
  font-weight: 600;
}

/* ROADMAP SECTION */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
  box-shadow: var(--neon-glow);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-marker {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: var(--medium-bg);
  border: 4px solid var(--primary-color);
  border-radius: 50%;
  top: 20px;
  box-shadow: var(--neon-glow);
}

.timeline-item:nth-child(odd) .timeline-marker {
  right: -15px;
}

.timeline-item:nth-child(even) .timeline-marker {
  left: -15px;
}

.timeline-marker.completed {
  background-color: var(--primary-color);
}

.timeline-marker.active {
  background-color: var(--accent-color);
  animation: pulse 1.5s infinite;
}

.marker-date {
  position: absolute;
  top: -30px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  color: var(--text-light);
}

.timeline-content {
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 128, 191, 0.1), rgba(0, 246, 255, 0.1));
  border-radius: 10px;
  box-shadow: var(--grid-shadow);
  border: 1px solid rgba(255, 128, 191, 0.3);
}

.timeline-content h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

/* FAQ SECTION */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(255, 128, 191, 0.1), rgba(0, 246, 255, 0.1));
  border-radius: 10px;
  box-shadow: var(--grid-shadow);
  border: 1px solid rgba(255, 128, 191, 0.3);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question h3 {
  font-size: 1.2rem;
  color: var(--text-light);
  margin: 0;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq-item:hover {
  box-shadow: var(--neon-glow);
}

/* CONTACT SECTION */
.contact-container {
  display: flex;
  gap: 50px;
}

.contact-info {
  flex: 1;
}

.contact-form {
  flex: 1;
  background: linear-gradient(135deg, rgba(255, 128, 191, 0.1), rgba(0, 246, 255, 0.1));
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--grid-shadow);
  border: 1px solid rgba(255, 128, 191, 0.3);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: var(--text-light);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid rgba(255, 128, 191, 0.3);
  border-radius: 5px;
  background-color: rgba(6, 1, 35, 0.6);
  color: var(--text-light);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: var(--neon-glow);
  outline: none;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  background: linear-gradient(135deg, rgba(255, 128, 191, 0.1), rgba(0, 246, 255, 0.1));
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--grid-shadow);
  border: 1px solid rgba(255, 128, 191, 0.3);
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--neon-glow);
}

.info-icon {
  width: 50px;
  margin-right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--primary-color);
}

.info-icon svg path {
  stroke: var(--primary-color);
}

.info-content h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.map-container {
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--primary-color);
  box-shadow: var(--grid-shadow);
}

/* FOOTER */
footer {
  background-color: var(--dark-bg);
  padding: 70px 0 20px;
  position: relative;
  border-top: 1px solid rgba(255, 128, 191, 0.3);
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: var(--neon-glow);
}

.footer-links h3,
.footer-legal h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.footer-links ul,
.footer-legal ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-legal a {
  color: var(--text-dim);
  position: relative;
  padding-left: 15px;
}

.footer-links a::before,
.footer-legal a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 128, 191, 0.3);
}

/* KEYFRAMES */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 128, 191, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 128, 191, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 128, 191, 0);
  }
}

/* RESPONSIVE STYLES */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }

  .contact-container {
    flex-direction: column;
  }

  .about-content {
    flex-direction: column;
  }

  .about-image {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 100px;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background-color: var(--dark-bg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }

  .nav-links.active {
    max-height: 500px;
    border-bottom: 1px solid rgba(255, 128, 191, 0.3);
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 15px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 60px;
    padding-right: 20px;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    left: 0;
    text-align: left;
  }

  .timeline-item:nth-child(odd) .timeline-marker,
  .timeline-item:nth-child(even) .timeline-marker {
    left: 5px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content h2 {
    font-size: 1.4rem;
  }

  section {
    padding: 70px 0;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
  }

  .step {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .step-number {
    font-size: 2.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.paragraph {
  margin: 0 auto;
}