/* style.css - Black & White Futuristic Responsive with Reduced Glow */

/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #121212;
  color: #e0e0e0;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Color Variables */
:root {
  --dark: #181818;
  --darker: #121212;
  --light: #ffffff;
  --primary: #ffffff;
  --secondary: #d0d0d0;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: saturate(180%) blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #444;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Segoe UI Black', 'Segoe UI', sans-serif;
  letter-spacing: 2px;
  user-select: none;
  text-shadow: none; /* Reduced glow */
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.3s ease;
  font-family: 'Segoe UI', sans-serif;
}

.nav-links a:hover,
.nav-links a:focus {
  color: #fff;
  text-shadow: none; /* Reduced glow */
}

.btn {
  background: #fff;
  color: #121212;
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 0 10px #fffaaabb;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  display: inline-block;
  text-decoration: none;
  user-select: none;
}

.btn:hover,
.btn:focus {
  background: #e0e0e0;
  box-shadow: 0 0 20px #ffffffdd;
  outline: none;
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  box-shadow: 0 0 8px #ffffffaa;
}

.btn-outline:hover,
.btn-outline:focus {
  background: #fff;
  color: #121212;
  box-shadow: 0 0 20px #ffffffdd;
}

/* Download Button Specific Styling */
.download-btn {
  background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
  color: #121212;
  padding: 0.8rem 2rem;
  border-radius: 35px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 0 15px #fffaaacc;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.download-btn:hover,
.download-btn:focus {
  background: linear-gradient(135deg, #f0f0f0 0%, #d0d0d0 100%);
  box-shadow: 0 0 25px #ffffffee;
  transform: translateY(-2px);
  outline: none;
}

.download-btn:active {
  transform: translateY(0);
  box-shadow: 0 0 15px #fffaaacc;
}

/* Hero Section */
.hero {
  background:
    linear-gradient(135deg, rgba(18, 18, 18, 0.95) 0%, rgba(34, 34, 34, 0.95) 100%),
    url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1500&q=80')
    center/cover no-repeat;
  color: #fff;
  padding: 6rem 2rem 8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 600px;
  font-family: 'Segoe UI Black', 'Segoe UI', sans-serif;
  user-select: none;
}

.hero-content h1 {
  font-size: 3.2rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 0 4px #ffffff88; /* Reduced glow */
}

.hero-content p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
  color: #d1d1d1cc;
  text-shadow: none; /* Removed glow */
}

.hero-content .btn {
  margin: 0 0.8rem;
  font-size: 1.1rem;
}

/* Features Section */
.features {
  background: #181818;
  padding: 3rem 1.5rem;
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}

.feature {
 
  border-radius: 12px;
  
  max-width: 320px;
  padding: 2rem 1.5rem;
  text-align: center;
  color: #eee;
  font-family: 'Segoe UI', sans-serif;
  transition: transform 0.3s ease;
  cursor: default;
}

.feature:hover {
  transform: translateY(-10px);
  
}

.feature h2 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 5.05rem;
  text-shadow: none; /* Removed glow */
}

.feature p {
  font-size: 1.05rem;
  color: #ccc;
}

/* Job Listings */
.job-listings {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 3rem 1.5rem;
  background: #121212;
  max-width: 900px;
  margin: 0 auto 4rem;
  font-family: 'Segoe UI', sans-serif;
}

.job-listings h2 {
  font-family: 'Segoe UI Black', 'Segoe UI', sans-serif;
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 2rem;
  text-align: center;
  text-shadow: none; /* Removed glow */
  user-select: none;
  width: 100%;
}

.job-card {
  flex: 1 1 calc(33% - 1rem);
  min-width: 260px;
  background: #1e1e1e;
  border-radius: 10px;
  padding: 1.5rem 2rem;
  box-shadow: 0 0 15px #ffffff22;
  transition: box-shadow 0.3s ease;
}

.job-card:hover {
  box-shadow: 0 0 20px #ffffff55;
}

.job-card h3 {
  color: #fff;
  font-family: 'Segoe UI Black', 'Segoe UI', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  user-select: none;
  text-shadow: none; /* Removed glow */
}

.job-card p {
  color: #ddd;
  margin-bottom: 1rem;
  font-weight: 500;
  user-select: none;
}

.btn-small {
  background: #fff;
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
  border-radius: 25px;
  font-weight: 700;
  box-shadow: 0 0 10px #ffffffbb;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
  color: #121212;
  display: inline-block;
  text-decoration: none;
  user-select: none;
}

.btn-small:hover,
.btn-small:focus {
  background: #e0e0e0;
  box-shadow: 0 0 18px #ffffffdd;
  outline: none;
}

/* Footer */
footer {
  text-align: center;
  background: #181818;
  color: #888;
  padding: 1.5rem;
  font-size: 0.95rem;
  border-top: 1px solid #222;
  user-select: none;
}

/* Footer Styles */
.footer-section {
  background: linear-gradient(135deg, var(--darker), var(--dark));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding: 40px 0 20px;
  animation: fadeInUp 0.6s ease-out;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-brand {
  flex: 1;
  min-width: 200px;
}

.hot-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #121212;
  font-size: 24px;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 8px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  flex: 2;
}

.footer-column {
  min-width: 150px;
}

.footer-title {
  color: var(--light);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-link:hover {
  color: var(--primary);
  transform: translateX(5px);
}

/* Privacy Policy page */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1rem;
}
.policy {
  padding: 3rem 1rem 4rem;
}
.policy h1 {
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.policy-updated {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}
.policy h2 {
  font-size: clamp(1.2rem, 3.2vw, 1.5rem);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.policy h3 {
  font-size: 1.05rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.policy p {
  margin: 0.25rem 0 0.75rem;
  max-width: 80ch;
}
.policy ul {
  padding-left: 1.2rem;
  margin: 0.25rem 0 0.75rem;
}
.policy li { margin: 0.4rem 0; }

/* Responsive */

/* Smaller devices */
@media (max-width: 900px) {
  .features {
    flex-direction: column;
    align-items: center;
  }

  .feature {
    max-width: 90vw;
  }

  .job-listings {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .job-card {
    flex: none;
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .navbar {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .job-card {
    padding: 1rem 1.2rem;
  }

  .policy { padding: 2rem 1rem 3rem; }
  .policy p, .policy li { font-size: 0.98rem; }
}

/* Investor Section */
.investors {
  background: #181818;
  padding: 3rem 1.5rem;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.investors h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 2rem;
  text-shadow: none;
}

.investor-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.investor-logos img {
  background: #1e1e1e;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 15px #ffffff22;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 150px;
}

.investor-logos img:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px #ffffff55;
}

/* Responsive for Investors */
@media (max-width: 600px) {
  .investor-logos {
    gap: 1rem;
  }
  
  .investor-logos img {
    max-width: 120px;
  }
}

/* Subtle animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
