/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #050814;
  color: #fff;
  overflow-x: hidden;
  cursor: none;
}

/* ================= CUSTOM CURSOR ================= */
.cursor-dot {
  width: 10px;
  height: 10px;
  background-color: #F59E0B;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.05s ease, background-color 0.3s, scale 0.3s;
}
.cursor-dot-outline {
  width: 40px;
  height: 40px;
  border: 2px solid #F59E0B;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  transition: transform 0.15s ease, width 0.3s, height 0.3s, opacity 0.3s;
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(5, 8, 20, 0.85);
  backdrop-filter: blur(12px);
}
.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img { height: 48px; }
.nav-links {
  display: flex;
  gap: 35px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -6px;
  background: linear-gradient(90deg, #1f2a60, #c62828);
  transition: 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.btn-cta {
  background: linear-gradient(135deg, #1f2a60, #c62828);
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(198,40,40,0.4);
}
.desktop-cta { display: inline-block; }
.mobile-cta { display: none; }

/* Mobile Navbar */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin: 4px 0;
}

/* ================= HERO ================= */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-video { position: absolute; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(31,42,96,0.7), rgba(5,8,20,0.96));
  animation: spaceMove 12s ease-in-out infinite alternate;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 50px 40px;
  background: rgba(10, 15, 30, 0.55);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(31,42,96,0.4);
}
.hero-title { font-size: 3rem; line-height: 1.2; animation: textGlow 1.5s ease forwards; }
.hero-title span { color: #c62828; }
@keyframes textGlow { from { opacity:0; transform:translateY(40px); text-shadow:none;} to { opacity:1; transform:translateY(0); text-shadow:0 0 25px rgba(198,40,40,0.6);} }
.hero-subtitle { margin-top:15px; font-size:1.3rem; opacity:0; animation: fadeIn 1.5s ease forwards; animation-delay:1s; }
@keyframes fadeIn { to { opacity:0.85; } }
.hero-buttons { margin-top:30px; display:flex; justify-content:center; gap:20px; }
.plastic-btn { padding:14px 28px; border-radius:30px; background:linear-gradient(135deg, #ffffff, #e5e9ff); color:#1f2a60; font-weight:600; text-decoration:none; box-shadow:0 10px 30px rgba(0,0,0,0.3); transition: transform 0.3s, box-shadow 0.3s; }
.plastic-btn:hover { transform: translateY(-4px); box-shadow:0 15px 40px rgba(0,0,0,0.5); }
.plastic-btn.outline { background:transparent; border:2px solid #fff; color:#fff; }

/* ================= ABOUT ================= */
.about-section {
  position: relative;
  padding: 120px 50px 80px 50px;
  text-align: center;
  overflow: hidden;
}
.about-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, #1e1e1e, #0b1a2f, #1e1e1e);
  background-size: 600% 600%;
  animation: gradientAnim 15s ease infinite;
  z-index:0;
  opacity:0.6;
}
@keyframes gradientAnim {
  0% { background-position:0% 50%; }
  50% { background-position:100% 50%; }
  100% { background-position:0% 50%; }
}
.about-content { position: relative; z-index: 2; }

.about-punchline { font-size:2.5rem; font-weight:700; margin-bottom:30px; opacity:0; transform:translateY(30px); transition: all 0.8s ease; }
.about-description { font-size:1.1rem; line-height:1.8; max-width:800px; margin:0 auto 60px auto; opacity:0; transform:translateY(30px); transition: all 0.8s ease; }

/* CEO SECTION */
.ceo-section { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:50px; margin-bottom:60px; }
.ceo-image img { width:250px; border-radius:15px; opacity:0; transform:translateX(-50px); transition: all 0.8s ease; }
.ceo-details { max-width:500px; text-align:left; opacity:0; transform:translateX(50px); transition: all 0.8s ease; }
.ceo-details h3 { font-size:1.8rem; margin-bottom:10px; }
.ceo-details h4 { font-size:1.1rem; margin-bottom:15px; color:#1e90ff; }
.ceo-details p { font-size:1rem; line-height:1.6; }

/* Mission & Vision Cards */
.mission-vision-cards { display:flex; flex-wrap:wrap; justify-content:center; gap:30px; }
.card {
  background: linear-gradient(135deg, #1e1e1e, #0b1a2f);
  padding:30px 20px;
  border-radius:15px;
  max-width:300px;
  text-align:center;
  opacity:0;
  transition: all 0.8s ease;
}
.mission-card { transform: translateX(-100px); }
.vision-card { transform: translateX(100px); }
.card h3 { font-size:1.4rem; margin-bottom:15px; color:#1e90ff; }
.card p { font-size:1rem; line-height:1.6; color:#ccc; }

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .nav-links { display:none; flex-direction:column; background: rgba(5,8,20,0.95); position:absolute; top:70px; right:0; width:200px; padding:20px; gap:15px; border-radius:8px; }
  .nav-links.active { display:flex; }
  .menu-toggle { display:flex; }
  .desktop-cta { display:none; }
  .mobile-cta { display:inline-block; }
  .hero-title { font-size:2.2rem; }
  .ceo-section { flex-direction:column; text-align:center; }
  .ceo-details { text-align:center; }
  .mission-vision-cards { flex-direction:column; align-items:center; }
}
.services-section {
  padding: 120px 6%;
  background: radial-gradient(circle at top, #0b1220, #020617);
}

.services-container { max-width: 1300px; margin: auto; }
.services-header { text-align: center; margin-bottom: 80px; }
.services-header h2 { font-size: 44px; color: #fff; }
.services-header p { color: #cbd5f5; max-width: 650px; margin: 10px auto 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.service-card { perspective: 1500px; position: relative; }
.service-card-inner {
  position: relative;
  height: 440px;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  border-radius: 22px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  cursor: pointer;
  will-change: transform;
}

.service-card-front,
.service-card-back {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 28px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card-back { transform: rotateY(180deg); }

.service-card-content { display: flex; flex-direction: column; justify-content: space-between; height: 100%; }
.service-card-front h3, .service-card-back h3 { color: #fff; text-align: center; margin: 18px 0; }
.service-card-back p { color: #cbd5f5; text-align: center; margin-bottom: 20px; }

.service-image { height: 200px; border-radius: 16px; overflow: hidden; margin-bottom: 12px; }
.service-image img { width: 100%; height: 100%; object-fit: cover; }

.service-btn {
  align-self: center;
  padding: 10px 28px;
  border-radius: 30px;
  background: linear-gradient(90deg,#38bdf8,#6366f1);
  color: #020617;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s ease;
}
.service-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(56,189,248,0.6); }

/* Glow effect */
.service-card .glow {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 22px;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(56,189,248,0.25), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}

/* Scroll Reveal */
.reveal { opacity: 0; transform: translateY(70px); }
.team-section {
  position: relative;
  padding: 120px 20px;
  background: #0b0c1a;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  color: #fff;
}

#galaxy {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.section-subtitle {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 70px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.team-card {
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  max-width: 280px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  transition: transform 0.5s, box-shadow 0.5s;
  backdrop-filter: blur(10px);
  position: relative;
}

.team-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

/* IMAGE FIXED TO CARD SIZE */
.team-img-wrapper {
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image covers entire card */
  transition: transform 0.5s;
}

.team-card:hover .team-img-wrapper img {
  transform: scale(1.05);
}

.team-info {
  padding: 20px;
  text-align: center;
}

.team-info h3 {
  font-size: 22px;
  margin: 10px 0 5px 0;
}

.team-info p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #ddd;
}

.team-links a {
  margin: 0 8px;
  font-size: 18px;
  color: #00aaff;
  transition: transform 0.3s;
}

.team-links a:hover {
  transform: scale(1.3);
}

.shapes-container {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index:1;
}

.shape { position: absolute; border-radius: 50%; opacity: 0.15; animation: float 10s linear infinite; }
.shape1 { width: 100px; height: 100px; background: #ff6b6b; top: 10%; left: 5%; animation-duration: 12s; }
.shape2 { width: 80px; height: 80px; background: #6bc1ff; top: 40%; left: 85%; animation-duration: 15s; }
.shape3 { width: 120px; height: 120px; background: #6bffb0; top: 70%; left: 20%; animation-duration: 18s; }
.shape4 { width: 60px; height: 60px; background: #fdd76b; top: 80%; left: 75%; animation-duration: 20s; }

@keyframes float {
  0%{ transform:translateY(0) translateX(0) rotate(0deg);}
  50%{ transform:translateY(-30px) translateX(20px) rotate(180deg);}
  100%{ transform:translateY(0) translateX(0) rotate(360deg);}
}

@media (max-width: 1024px) { .team-grid { gap: 35px; } }
@media (max-width: 768px) { .team-grid { flex-direction: column; gap: 50px; align-items: center; } }
.reviews-section {
  padding: 120px 6%;
  background: #0e0f1a;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.reviews-container {
  max-width: 1400px;
  margin: auto;
  text-align: center;
}

.reviews-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.reviews-subtitle {
  color: #bdbdbd;
  font-size: 18px;
  margin-bottom: 70px;
}

/* Slider Wrapper */
.reviews-slider {
  overflow: hidden;
  position: relative;
}

/* Moving Track */
.reviews-track {
  display: flex;
  gap: 30px;
  width: max-content;
  will-change: transform;
}

/* Review Card */
.review-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 30px;
  min-width: 340px;
  max-width: 360px;
  text-align: left;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.review-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 0 35px rgba(0, 170, 255, 0.6);
}

.review-text {
  font-size: 16px;
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.review-name {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.review-stars {
  color: #ffd700;
  font-size: 18px;
  letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .review-card {
    min-width: 280px;
  }
}
.portfolio-section {
  padding: 80px 20px;
  background: #0b0f1a;
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: #b0b3c6;
  margin-bottom: 60px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.portfolio-card {
  background: linear-gradient(145deg, #11162a, #0c1020);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.project-tag {
  display: inline-block;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(0, 255, 255, 0.1);
  color: #00f7ff;
  margin-bottom: 15px;
}

.portfolio-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.portfolio-card p {
  font-size: 0.95rem;
  color: #cfd2ff;
  margin-bottom: 20px;
}

.portfolio-card ul {
  list-style: none;
  margin-bottom: 20px;
}

.portfolio-card ul li {
  font-size: 0.9rem;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.portfolio-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00f7ff;
}

.project-result {
  font-size: 0.9rem;
  margin-bottom: 25px;
  color: #a6ffd8;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  background: transparent;
  border: 1px solid #00f7ff;
  color: #00f7ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #00f7ff;
  color: #000;
}

.btn-primary {
  background: #00f7ff;
  color: #000;
}

.highlight-card {
  border: 2px dashed rgba(0, 247, 255, 0.4);
}
.process-impact {
  padding: 100px 20px;
  background: linear-gradient(180deg, #020617, #0f172a);
  color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 80px;
  color: #c7d2fe;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-bottom: 90px;
}

.process-card {
  background: #020617;
  border-radius: 22px;
  padding: 35px 25px;
  text-align: center;
  position: relative;
  transition: 0.4s ease;
}

.process-card span {
  font-size: 2.2rem;
  font-weight: bold;
  color: #00f7ff;
}

.process-card h3 {
  margin: 15px 0 10px;
}

.process-card p {
  font-size: 0.95rem;
  color: #cbd5f5;
}

.process-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 247, 255, 0.25);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.impact-box {
  background: radial-gradient(circle at top, #0f172a, #020617);
  padding: 40px 20px;
  border-radius: 22px;
}

.impact-box h3 {
  font-size: 2.6rem;
  color: #00f7ff;
  margin-bottom: 8px;
}

.impact-box p {
  color: #cbd5f5;
  font-size: 0.95rem;
}
/* CTA SECTION */
.cta-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #00f7ff, #0c1020);
  text-align: center;
  color: #000;
}

.cta-title {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.cta-subtitle {
  font-size: 1rem;
  margin-bottom: 30px;
}

.cta-btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  background: #000;
  color: #00f7ff;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #00f7ff;
  color: #000;
}

/* CONTACT SECTION */
.contact-section {
  padding: 90px 20px;
  background: #0b0f1a;
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.contact-info .info-box {
  margin-bottom: 20px;
}

.contact-info .info-box h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.contact-info .info-box p {
  font-size: 0.95rem;
  color: #b0b3c6;
}

.contact-info .social a {
  margin-right: 12px;
  color: #00f7ff;
  text-decoration: none;
  transition: 0.3s;
}

.contact-info .social a:hover {
  color: #00fff7;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: none;
  background: #11162a;
  color: #fff;
}

.contact-form .form-btn {
  padding: 12px 30px;
  border-radius: 50px;
  background: #00f7ff;
  border: none;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.contact-form .form-btn:hover {
  background: #00d4cc;
}

/* FOOTER */
.footer {
  background: #020617;
  color: #b0b3c6;
  padding: 60px 20px 30px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 20px;
}

.footer h3 {
  color: #fff;
  margin-bottom: 12px;
}

.footer a {
  color: #00f7ff;
  text-decoration: none;
  transition: 0.3s;
}

.footer a:hover {
  color: #00fff7;
}

.footer-logo h2 {
  color: #00f7ff;
  margin-bottom: 8px;
}

.footer-logo p {
  color: #cfd2ff;
  font-size: 0.9rem;
}

.footer .social-icons a {
  margin-right: 15px;
}

.footer p {
  font-size: 0.85rem;
  text-align: center;
}
