:root {
  --bg: #060816;
  --surface: rgba(10, 16, 32, 0.92);
  --surface-2: #101a33;
  --text: #f6f8ff;
  --muted: #aab7d0;
  --accent: #ff7a1a;
  --accent-2: #ff4d00;
  --accent-3: #ffb347;
  --border: rgba(255, 255, 255, 0.12);

  --img-founder: url('images/IMAGE/shivam.jpg.jpeg');
  --img-cofounder: url('images/mohit.jpeg');
  --img-tech: url('images/image.jpg');
  --img-mentor: url('images/IMAGE/shivamshukla.jpg');
  --img-ops: url('images/IMAGE/raj.jpg');

  --photo-1: url('armycamp.jpg');
  --photo-2: url('army2.jpg');
  --photo-3: url('nitishkr.jpg');
  --photo-4: url('roborace-aurangabad.jpg');
  --photo-5: url('aurangabad2.jpeg');
  --photo-6: url('aurangabad-3.jpeg');
  --photo-7: url('mce-1.jpeg');
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 122, 26, 0.18), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(255, 77, 0, 0.2), transparent 32%),
    linear-gradient(135deg, #060816 0%, #0d1326 45%, #070b18 100%);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  animation: pageFadeIn 0.8s ease both;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

img, video, svg, a, button {
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

img, video {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 122, 26, 0.18), transparent 24%),
    radial-gradient(circle at 80% 10%, rgba(255, 77, 0, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(255, 122, 26, 0.12), rgba(6, 8, 22, 0.88));
  padding-bottom: 2rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08), transparent 16%),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,0.05), transparent 18%),
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: auto, auto, 44px 44px, 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 92%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 220px;
  background: linear-gradient(180deg, transparent, rgba(6, 8, 22, 0.95));
  pointer-events: none;
}

.hero-socials {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  z-index: 1000;
}

.hero-socials a {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  overflow: visible;
}

.hero-socials a::after {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 10px);
  padding: 0.38rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, #ff7a1a, #ff4d00, #7b61ff);
  box-shadow: 0 10px 24px rgba(255, 77, 0, 0.25);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  white-space: nowrap;
}

.hero-socials a:hover,
.hero-socials a:focus-visible {
  transform: translateY(-6px) scale(1.08);
  background: linear-gradient(135deg, #ff7a1a, #ff4d00, #7b61ff);
  box-shadow: 0 16px 28px rgba(255, 77, 0, 0.28);
  animation: socialPop 0.35s ease;
}

.hero-socials a:hover::after,
.hero-socials a:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

.hero-socials svg {
  width: 22px;
  height: 22px;
}

.social-icon-instagram {
  display: block;
}

.social-icon-linkedin {
  display: block;
}

@keyframes socialPop {
  0% { transform: translateY(-6px) scale(1); }
  50% { transform: translateY(-8px) scale(1.12); }
  100% { transform: translateY(-6px) scale(1.08); }
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  position: relative;
  z-index: 2;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255, 122, 26, 0.2);
}

.nav-links {
  display: flex;
  gap: 1.4rem;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, transform 0.2s ease, text-shadow 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent);
  transform: translateY(-1px);
  text-shadow: 0 0 16px rgba(255, 122, 26, 0.35);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2rem;
  padding: 3rem 0 5rem;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero h1,
.section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero h1 {
  max-width: 700px;
  text-shadow: 0 0 30px rgba(255, 122, 26, 0.14);
}

.hero-copy,
.section p,
.contact-details p {
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-block;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 14px 32px rgba(255, 77, 0, 0.28);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
}

.btn.primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn.primary:hover::before {
  transform: translateX(100%);
}

.btn.secondary {
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

.btn:hover {
  transform: translateY(-3px) scale(1.01);
  filter: brightness(1.09);
  box-shadow: 0 14px 32px rgba(255, 77, 0, 0.18);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.hero-badges span {
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
}

.video-card {
  width: 100%;
}

.video-container {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background-color: #000;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section {
  padding: 4.8rem 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 122, 26, 0.06), transparent 25%, transparent 75%, rgba(255, 77, 0, 0.06));
  pointer-events: none;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.info-card, .contact-box {
  background: linear-gradient(145deg, rgba(16, 24, 42, 0.96), rgba(8, 14, 28, 0.96));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.6rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before, .contact-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.1), transparent 45%, rgba(255, 77, 0, 0.1));
  pointer-events: none;
}

.info-card:hover, .contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(45, 108, 246, 0.16);
}

.info-card h3 {
  margin-bottom: 0.5rem;
  color: white;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(16, 24, 42, 0.96), rgba(8, 14, 28, 0.96));
  border: 1px solid var(--border);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  background: rgba(255, 122, 26, 0.08);
  font-weight: 600;
}

.feature-icon {
  color: var(--accent);
}

.full-width-gallery {
  width: 100%;
  overflow: hidden;
  margin: 1.5rem 0 3rem;
}

.photo-strip {
  display: flex;
  gap: 1rem;
  animation: slideImages 25s linear infinite;
  width: max-content;
}

.photo-strip:hover {
  animation-play-state: paused;
}

.photo-slide {
  width: 220px;
  height: 300px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.photo-1 { background-image: var(--photo-1); }
.photo-2 { background-image: var(--photo-2); }
.photo-3 { background-image: var(--photo-3); }
.photo-4 { background-image: var(--photo-4); }
.photo-5 { background-image: var(--photo-5); }
.photo-6 { background-image: var(--photo-6); }
.photo-7 { background-image: var(--photo-7); }

.team-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.team-card {
  padding: 1.2rem;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(16, 24, 42, 0.96), rgba(8, 14, 28, 0.96));
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 26, 0.4);
}

.team-avatar {
  width: 90px;
  height: 90px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 3px solid #ff5a00;
  background-color: #f7f1e8;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,0.18);
}

.founder-avatar { background-image: var(--img-founder); }
.cofounder-avatar { background-image: var(--img-cofounder); }
.tech-avatar { background-image: var(--img-tech); }
.mentor-avatar { background-image: var(--img-mentor); }
.ops-avatar { background-image: var(--img-ops); }

.team-card h3 {
  font-size: 0.9rem;
  color: var(--accent);
  text-transform: uppercase;
}

.team-card h2 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: white;
}

.team-card p {
  font-size: 0.88rem;
  color: var(--muted);
}

.contact-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.contact-details a {
  color: var(--accent);
  text-decoration: none;
}

.footer {
  padding: 2rem 0 2.5rem;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

@keyframes slideImages {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1200px) {
  .hero-content {
    padding: 2.2rem 0 4rem;
  }
}

@media (max-width: 992px) {
  .hero-content,
  .split-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-socials {
    right: 0.75rem;
  }
}

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1rem;
  }

  .hero-socials {
    position: absolute;
    top: auto;
    bottom: 1rem;
    transform: none;
    right: 0.75rem;
    gap: 0.7rem;
  }

  .hero-socials a::after {
    display: none;
  }

  .hero-socials a {
    width: 44px;
    height: 44px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .contact-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .photo-slide {
    width: 170px;
    height: 240px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1rem, 1120px);
  }

  .hero {
    padding-bottom: 3.5rem;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  .hero-socials {
    right: 0.5rem;
    bottom: 0.75rem;
    gap: 0.6rem;
  }

  .hero-socials a {
    width: 40px;
    height: 40px;
  }

  .section {
    padding: 3.5rem 0;
  }

  .photo-slide {
    width: 150px;
    height: 210px;
  }
}