/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0e2233; /* Matches dark navy background */
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background-color: #0e2233;
  color: white;
}

.logo {
  font-weight: 600;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ddd;
}
/* Reset & base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0e2233;
  color: white;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background-color: #0e2233;
}

.logo {
  font-weight: 600;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ddd;
}

/* Hero Section */
.hero {
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  background-color: #0e2233;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.hero-heading {
  font-size: 60px;
  text-align: center;
}


.hero-text {
  flex: 1;
  min-width: 600px;
}

.hero-text h1 {
  font-size: 70px;
  font-weight: 700;
  color: white;
}

.hero-text h1 span {
  color: #00c0f3;
}

.hero-text h2 {
  font-size: 60px;
  margin-top: 0.5rem;
  color: #00c0f3;
  font-weight: 700;
}

.hero-text p {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
}

.hero-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn.primary {
  background-color: #00c0f3;
  color: #000;
}

.btn.primary:hover {
  background-color: #00a6d1;
}

.btn.secondary {
  border: 2px solid white;
  color: white;
}

.btn.secondary:hover {
  background-color: white;
  color: #0e2233;
}

.trust-text {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #aaa;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 800px;
}


.why-alivehire {
  background-color: #0e0e11;
  padding: 3rem 2rem;
  border-radius: 20px;
  margin: 4rem auto;
  max-width: 1200px;
  color: white;
  text-align: center;
  position: relative;
}

.why-heading {
  color: #00c0f3;
  font-size: 1.8rem;
  margin-bottom: 3rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}


.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f1f1f1;
}

.why-item img {
  width: 120px;
  height: auto;
  margin-bottom: 1.2rem;
}




.get-hired-section {
  background-color: #0e1621;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.get-hired-heading {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  font-weight: 700;
}

.hired-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.hired-card {
  background-color: #0e0e11;
  border: 2px solid #00c0f3;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  max-width: 300px;
  width: 100%;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
}

.hired-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.hired-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.hire-btn {
  background-color: #00c0f3;
  border: none;
  color: #000;
  padding: 0.6rem 1rem;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 1rem;
}

.hired-card img {
  width: 100%;
  height: auto;
  margin-top: auto;
  
}



.how-it-works-section {
  background-color: #010203ff;
  padding: 4rem 2rem;
  color: white;
  text-align: center;
  height: 700px;
  margin: 30px;
  border-radius: 10px;
}

.how-heading {
  font-size: 2rem;
  font-weight: bold;
  color: #00c0f3;
  margin-bottom: 2rem;
}

.how-container {
  background: linear-gradient(to bottom right, #0d4d91, #053a6e);
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 6rem 4rem; /* ⬅️ Increased vertical padding (top & bottom) */
  max-width: 1000px;
  margin: auto;
}


.how-left {
  flex: 1 1 45%;
  text-align: left;
}

.nav-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.nav-btn {
  width: 40px;
  height: 40px;
  border: 2px solid #00c0f3;
  background: transparent;
  color: white;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
}

.nav-btn.active {
  background-color: #ffc107;
  border-color: #ffc107;
  color: black;
}

.how-step h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
}

.dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.dot {
  width: 10px;
  height: 10px;
  background: #2b3d4f;
  border-radius: 50%;
}

.dot.active {
  background: #00c0f3;
}

.how-right {
  flex: 1 1 45%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper {
  position: relative;
  display: inline-block;
}

.image-wrapper img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
  z-index: 2;
  position: relative;
}

.border-accent {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 4px solid #00c0f3;
  bottom: -15px;
  right: -15px;
  border-radius: 0 0 0 50%;
  z-index: 1;
}




.testimonials-section {
  background-color: #0e1621;
  padding: 3rem 5rem;
  color: white;
  text-align: center;
}

.testimonials-header {
  margin-bottom: 2rem;
}

.highlighted-heading {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #00c0f3;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
}

.community-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.community-btn {
  padding: 0.5rem 1rem;
  border: none;
  color: white;
  background-color: #1a73e8;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.community-btn.twitter {
  background-color: #00bfff;
}

.community-btn.linkedin {
  background-color: #0077b5;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}


.testimonial-card {
  background-color: white;
  color: black;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: left;
}

.profile {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.profile img, .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.avatar.black {
  background: black;
}

.stars {
  color: #f7c948;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.testimonial-card p {
  font-size: 0.95rem;
}

.testimonial-dots {
  margin-top: 2rem;
}

.testimonial-dots .dot {
  width: 10px;
  height: 10px;
  background: #2b3d4f;
  display: inline-block;
  margin: 0 5px;
  border-radius: 50%;
}

.testimonial-dots .dot.active {
  background: #00c0f3;
}



.dream-job-section {
 
  color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 4rem 2rem;
  align-items: center;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.dream-job-content {
  background: linear-gradient(135deg, #0e1621, #0a334e);
  position: relative;
  flex: 1;
  padding: 1rem 2rem;          /* Added vertical (top/bottom) and horizontal padding */
  margin: 0 1rem;              /* Adds space on left/right side of screen */
  width: calc(100% - 2rem);    /* Makes it full width minus margin */
  max-width: 1500px;           /* Optional: prevents it from being too wide on large screens */
  z-index: 2;
  box-sizing: border-box;      /* Ensures padding doesn’t exceed width */
}



.tagline {
  font-size: 3rem;
  font-weight: 700;
  width:600px;
  margin-bottom: 1rem;
  padding: 2rem 0rem; 
}

.subtext {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #cbd5e1;
}

.cta-button {
  background-color: white;
  color: #000;
  font-weight: bold;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border-radius: 999px;
  border: 3px solid #facc15;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #facc15;
  color: #000;
}

.dream-job-visual {
  position: relative; /* Needed for absolute positioning inside */
  height: 600px;
}

.dream-job-visual img {
  position: absolute;
  right: 300px;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  max-width: 600px;
  width: auto;
  z-index: 2;
}


.person-with-laptop {
  position: fixed;
  right: 0;
  bottom: 0;
  height: auto;
  max-height: 100vh;
  width: auto;
  z-index: 2;
}





.faq-section {
  background-color: #040609ff;
  padding: 4rem 2rem;
  color: white;
  font-family: 'Segoe UI', sans-serif;
}

.faq-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  border: 2px solid #00b4d8;
  border-radius: 1rem;
  padding: 6rem;
}

.faq-questions {
  flex: 1;
  min-width: 350px;
}

.faq-questions h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.faq-questions ul {
  list-style: none;
  padding: 0;
}

.faq-questions li {
  margin-bottom: 0.5rem;
}

.faq-questions button {
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  background: #111827;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}

.faq-questions li.active button {
  background: #00b4d8;
  color: black;
  font-weight: 600;
}

.faq-questions li.active .star {
  position: absolute;
  right: 15px;
  color: #facc15;
}

.faq-answer {
  flex: 2;
  min-width: 300px;
  
  height: 300px;
}

.faq-answer h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.answer-box {
  background: #00b4d8;
  color: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  position: relative;
  height: 100%;
}

.answer-box .star {
  color: white;
  font-size: 1.2rem;
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.answer-box p {
  margin-top: 2rem;
  line-height: 1.6;
  font-size: 23px   ; 
}



.newsletter-section {
   background-color: #0e1621;
  padding: 2rem;
  display: flex;
  justify-content: center;
}

.newsletter-box {
  background: #ffd43b; /* yellow box */
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  max-width: 700px;
  position: relative;
  font-family: 'Segoe UI', sans-serif;
  color: #1a1a1a;
}

.newsletter-box h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.newsletter-box .highlight {
  color: #1a1a1a;
}

.newsletter-box p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 20px;
  width: 600px;
  font-size: 0.95rem;
  outline: none;
  background: white;
}

.newsletter-form button {
  padding: 0.6rem 1rem;
  background-color: #0e0e3d;
  color: white;
  font-size: 0.9rem;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #1f1f6b;
}

.newsletter-box .disclaimer {
  font-size: 0.8rem;
  color: #333333;
}




.hiring-section {
   background-color: #0e1621;
  color: white;
  padding: 3rem 1rem;
  font-family: 'Inter', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.heading {
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
  margin-bottom: 0.5rem;
}

.underline {
  height: 2px;
  background-color: #e5c87e;
  width: 100%;
  max-width: 200px;
  margin-bottom: 2rem;
}

.hiring-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.column h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.column ul {
  list-style: disc;
  padding-left: 1.25rem;
  color: #e5e7eb;
  font-size: 0.95rem;
  line-height: 1.6;
}




.footer {
   background-color: #0e1621;
  color: #fff;
  padding: 2rem 1rem;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  height: 150px;
}

.footer-center p {
  margin: 0.2rem 0;
  font-size: 0.875rem;
  color: #d1d5db;
}

.footer-center a {
  color: #d1d5db;
  text-decoration: none;
  margin: 0 0.3rem;
}

.footer-center a:hover {
  text-decoration: underline;
}

.footer-right {
  display: flex;
  gap: 1rem;
}

.social-icon {
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #e5c87e;
}
