:root {
  --bg-dark: #0a0a0a;
  --neon-blue: #eb008b;
  --electric-purple: #b300ff;
  --acid-green: #00ff57;
  --text-light: #f0f0f0;
  --text-dim: #aaaaaa;
  --card-bg: #1a1a1a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Rajdhani", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.container {
  width: 90%;
  max-width: 1200px !important;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--neon-blue);
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0f172a;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(#eb008b, #eb008b) !important;
  border-radius: 10px;
}

.btn:hover {
  color: var(--bg-light);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 240, 255, 0.4);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--neon-blue),
    transparent
  );
  transition: 0.5s;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-align: center;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-blue), var(--electric-purple));
  border-radius: 3px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text {
  padding: 20px;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--neon-blue);
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-dim);
}

.about-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.about-image:hover {
  transform: scale(1.02);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.about-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 240, 255, 0.1),
    rgba(179, 0, 255, 0.1)
  );
  z-index: 1;
}

/* Values Section */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.value-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 240, 255, 0.2);
  border-color: var(--neon-blue);
}

.value-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(0, 240, 255, 0.1) 0%,
    transparent 70%
  );
  transform: rotate(45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.value-card:hover::before {
  opacity: 1;
  animation: shine 1.5s infinite;
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--neon-blue);
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-light);
}

.value-card p {
  color: var(--text-dim);
  line-height: 1.6;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.team-card {
  background: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(179, 0, 255, 0.2);
  border-color: var(--electric-purple);
}

.team-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-info {
  padding: 20px;
}

.team-info h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: var(--text-light);
}

.team-info p.role {
  color: var(--neon-blue);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.team-info p.quote {
  color: var(--text-dim);
  font-style: italic;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.team-social a {
  color: var(--text-dim);
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.team-social a:hover {
  color: var(--neon-blue);
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("https://images.unsplash.com/photo-1511512578047-dfb367046420?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2071&q=80")
      no-repeat center center/cover;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    transparent 0%,
    rgba(0, 240, 255, 0.1) 100%
  );
  animation: pulse 4s infinite;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--text-light);
  text-shadow: 0 0 10px var(--neon-blue);
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-dim);
}

/* About us page starts here */

/* Footer */
footer {
  background-color: var(--bg-dark);
  padding: 50px 0 20px;
  text-align: center;
  position: relative;
}

.footer-logo {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--neon-blue);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--neon-blue);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-social a {
  color: var(--text-dim);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--neon-blue);
}

.copyright {
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}

@keyframes shine {
  0% {
    transform: rotate(45deg) translate(-30%, -30%);
  }

  100% {
    transform: rotate(45deg) translate(30%, 30%);
  }
}

/* Glitch Effect */
.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.glitch::before {
  color: var(--electric-purple);
  z-index: -1;
  animation: glitch-effect 3s infinite;
}

.glitch::after {
  color: var(--acid-green);
  z-index: -2;
  animation: glitch-effect 2s infinite reverse;
}

/* Contact Page Styles */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

.contact-form {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 40px;
  border: 1px solid rgba(123, 45, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-group {
  position: relative;
  margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 10px 5px;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(123, 45, 255, 0.3);
  color: #f8fafc;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group label {
  position: absolute;
  top: 15px;
  left: 10px;
  color: #7b2dff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  pointer-events: none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
  top: -10px;
  left: 0;
  font-size: 0.8rem;
  color: #00a1ff;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: #00a1ff;
}

.focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #00a1ff;
  transition: width 0.3s ease;
}

.form-group input:focus ~ .focus-border,
.form-group textarea:focus ~ .focus-border {
  width: 100%;
}

.contact-info {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 40px;
  border: 1px solid rgba(123, 45, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #00a1ff;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.info-item i {
  font-size: 1.2rem;
  color: #7b2dff;
  margin-right: 15px;
  width: 30px;
  text-align: center;
}

.info-item p {
  color: #f8fafc;
  font-size: 1rem;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00a1ff, #7b2dff);
  color: #f8fafc;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 161, 255, 0.4);
}

.btn-home {
  background: linear-gradient(135deg, #00a1ff, #7b2dff);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-home::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    transparent,
    transparent,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent,
    transparent,
    transparent
  );
  transform: rotate(30deg);
  animation: shine 3s infinite;
}

@keyframes glitch-effect {
  0% {
    transform: translate(0);
  }

  20% {
    transform: translate(-3px, 3px);
  }

  40% {
    transform: translate(-3px, -3px);
  }

  60% {
    transform: translate(3px, 3px);
  }

  80% {
    transform: translate(3px, -3px);
  }

  100% {
    transform: translate(0);
  }
}
/* about us ends here */
