/* General Styles */
body {
  font-family: 'Plus Jakarta Sans', 'IBM Plex Sans', Arial, sans-serif;
  background: #f8f9fa;
  color: #222;
  margin: 0;
  padding: 0;
}

a {
  color: #1e3a8a;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #e63946;
}

/* Navbar */
.navbar {
  background: #0a1e3a;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.navbar-brand img {
  max-height: 75px;
}
.nav-link {
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #fff !important;
  transition: color 0.2s;
}
.nav-link.active, .nav-link:hover {
  color: #e63946 !important;
}

/* Hero Section */
.hero {
  min-height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 42, 73, 0.55);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}
.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #f1faee;
}
.hero .btn {
  font-size: 1.1rem;
  padding: 0.7rem 2rem;
}
.hero-social a {
  color: #fff;
  font-size: 1.3rem;
  margin-right: 1rem;
  transition: color 0.2s;
}
.hero-social a:hover {
  color: #e63946;
}

/* Section Titles */
.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1e3a8a;
}
.section-subtitle {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* About Section */
.about-img {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.about-img img {
  width: 100%;
  transition: transform 0.4s;
}
.about-img:hover img {
  transform: scale(1.07);
}
.experience-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: #e63946;
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.counter {
  font-size: 2rem;
  font-weight: 700;
  color: #e63946;
}
.counter-text {
  font-size: 1rem;
  color: #222;
}

/* Services Section */
.section.bg-light {
  background: #f1f5f9;
}
.service-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(30,42,73,0.07);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 6px 24px rgba(230,57,70,0.12);
}
.service-icon {
  font-size: 2.5rem;
  color: #e63946;
  margin-bottom: 1rem;
}
.service-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: #1e3a8a;
}

/* Portfolio Section */
.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(30,42,73,0.07);
  transition: transform 0.2s;
}
.portfolio-card:hover {
  transform: scale(1.03);
}
.portfolio-img {
  width: 100%;
  display: block;
  transition: opacity 0.3s;
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,42,73,0.7);
  color: #fff;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.3s;
}
.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}
.portfolio-title {
  font-size: 1.2rem;
  font-weight: 600;
}
.portfolio-category {
  font-size: 1rem;
  margin-bottom: 0.7rem;
}
.portfolio-link {
  color: #fff;
  font-size: 1.5rem;
  background: #e63946;
  border-radius: 50%;
  padding: 0.5rem 0.7rem;
  margin-top: 0.7rem;
  transition: background 0.2s;
}
.portfolio-link:hover {
  background: #1e3a8a;
}

/* Portfolio Filters */
.portfolio-filter-btn {
  background: #fff;
  border: 1px solid #e63946;
  color: #e63946;
  border-radius: 30px;
  padding: 0.4rem 1.2rem;
  margin: 0 0.3rem 1rem 0.3rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.portfolio-filter-btn.active,
.portfolio-filter-btn:hover {
  background: #e63946;
  color: #fff;
}

/* Testimonials */
.testimonial-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(30,42,73,0.07);
  padding: 2rem 1.5rem;
  text-align: left;
  height: 100%;
}
.testimonial-text {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 1.2rem;
}
.testimonial-author-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #e63946;
  margin-bottom: 0.2rem;
}
.testimonial-author-info p {
  color: #1e3a8a;
  font-size: 0.95rem;
}

/* Pricing */
.pricing-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(30,42,73,0.07);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card.featured {
  border: 2px solid #e63946;
  transform: scale(1.04);
}
.pricing-header {
  margin-bottom: 1.2rem;
}
.pricing-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e3a8a;
}
.pricing-price {
  font-size: 2rem;
  color: #e63946;
  font-weight: 700;
}
.pricing-duration {
  color: #555;
  font-size: 1rem;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.5rem 0;
}
.pricing-features li {
  margin-bottom: 0.7rem;
  color: #222;
  font-size: 1rem;
}
.pricing-features i {
  color: #1e3a8a;
  margin-right: 0.5rem;
}

/* Contact Section */
.contact-info {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(30,42,73,0.07);
  padding: 2rem 1.5rem;
  margin-bottom: 2rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}
.contact-info-icon {
  font-size: 1.5rem;
  color: #e63946;
  margin-right: 1rem;
  margin-top: 0.2rem;
}
.contact-info-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 0.2rem;
}
.contact-info-content p {
  margin-bottom: 0.2rem;
  color: #222;
  font-size: 1rem;
}
.contact-form .form-control,
.footer-newsletter-form .form-control {
  border-radius: 30px;
  border: 1px solid #e0e0e0;
  padding: 0.7rem 1.2rem;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.contact-form .btn,
.footer-newsletter-form .btn {
  border-radius: 30px;
  padding: 0.6rem 2rem;
  font-weight: 600;
  background: #e63946;
  border: none;
  color: #fff;
  transition: background 0.2s;
}
.contact-form .btn:hover,
.footer-newsletter-form .btn:hover {
  background: #1e3a8a;
}

/* Footer */
.footer {
  background: #222;
  color: #fff;
  padding: 3rem 0 1rem 0;
}
.footer-logo img {
  max-height: 50px;
  margin-bottom: 1rem;
}
.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #e63946;
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: #fff;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #e63946;
}
.footer-social a {
  color: #fff;
  font-size: 1.2rem;
  margin-right: 0.7rem;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: #e63946;
}
.footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.95rem;
  color: #bbb;
}
.footer-bottom-links i {
  color: #e63946;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .about-img,
  .service-card,
  .portfolio-card,
  .testimonial-card,
  .pricing-card,
  .contact-info {
    margin-bottom: 2rem;
  }
  .footer-newsletter-form {
    flex-direction: column;
    gap: 0.7rem;
  }
}
@media (max-width: 767px) {
  .hero {
    min-height: 60vh;
    padding: 3rem 0;
  }
  .section-title h2 {
    font-size: 1.7rem;
  }
  .about-img img {
    min-height: 220px;
    object-fit: cover;
  }
}
/* Timeline/Stepper Section for Candidate Journey */
.candidate-journey-section {
  background: #0d2536;
  color: #fff;
  padding: 4rem 0 2rem 0;
}
.candidate-journey-section h2,
.candidate-journey-section p {
  color: #fff;
}
.candidate-journey-section .timeline-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 1rem;
}
.candidate-journey-section .timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: #fff;
  transform: translateX(-50%);
  z-index: 0;
}
.candidate-journey-section .timeline-step {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
.candidate-journey-section .timeline-step.even {
  flex-direction: row-reverse;
}
.candidate-journey-section .timeline-content {
  background: #072636;
  border: 1px solid #fff;
  border-radius: 8px;
  padding: 2rem 2rem 1.5rem 2rem;
  width: 48%;
  min-width: 300px;
  box-shadow: 0 2px 16px rgba(30,42,73,0.07);
  position: relative;
}
.candidate-journey-section .timeline-dot {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  border: 4px solid #e63946;
}
.candidate-journey-section .timeline-step.even .timeline-dot {
  left: 50%;
}
.candidate-journey-section .timeline-step:not(:last-child) {
  margin-bottom: 4rem;
}
.candidate-journey-section .timeline-content h3 {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.candidate-journey-section .timeline-content p {
  color: #e0e0e0;
  font-size: 1.1rem;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .candidate-journey-section .timeline-step,
  .candidate-journey-section .timeline-step.even {
    flex-direction: column;
  }
  .candidate-journey-section .timeline-content {
    width: 100%;
    margin-bottom: 2.5rem;
  }
  .candidate-journey-section .timeline-dot {
    position: static;
    margin: 1rem auto;
    transform: none;
  }
  .candidate-journey-section .timeline-line {
    left: 20px;
    width: 4px;
    transform: none;
  }
}
/* Hero Section Styles */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #0a1e3a;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: 40px;
}
.hero-bg-anim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero-bg-anim svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-content-container {
  position: relative;
  z-index: 2;
}
.hero-section h1,
.hero-section p {
  color: #fff;
}
.hero-section .btn {
  font-size: 1.15rem;
  padding: 0.7rem 2.2rem;
}
.hero-illustration {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(30,42,73,0.13));
}
@media (max-width: 991px) {
  .hero-section {
    min-height: 70vh;
    padding-top: 80px;
    padding-bottom: 30px;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
}
.hero-network-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
#network-canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-bg-anim {
  z-index: 1;
}
.hero-content-container {
  z-index: 2;
  position: relative;
}
/* Hero background SVG must allow pointer events for mousemove */
.hero-bg-anim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: auto;   /* <-- yeh line zaroori hai! */
}
.hero-bg-anim svg {
  width: 100%;
  height: 100%;
  display: block;
}
/* Timeline Section */
.timeline-section {
  background: #0a2233;
}
.timeline {
  position: relative;
  margin: 0 auto;
  padding: 40px 0 20px 0;
  max-width: 1100px;
}
.timeline:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #fff3;
  transform: translateX(-50%);
  z-index: 1;
}
.timeline-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  position: relative;
  margin-bottom: 60px;
  min-height: 180px;
}
.timeline-row.left {
  flex-direction: row;
}
.timeline-row.right {
  flex-direction: row-reverse;
}
.timeline-content {
  background: #0e2a3d;
  color: #fff;
  border: 1px solid #fff2;
  padding: 32px 28px 24px 28px;
  border-radius: 8px;
  width: 46%;
  min-width: 280px;
  max-width: 520px;
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 16px 0 #0002;
}
.timeline-row.left .timeline-content {
  margin-right: 40px;
}
.timeline-row.right .timeline-content {
  margin-left: 40px;
}
.timeline-row:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  background: #0a2233;
  border: 4px solid #3b82f6;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  box-shadow: 0 0 0 4px #fff3;
}
.timeline-content h3 {
  font-size: 2rem;
  margin-bottom: 12px;
  font-weight: 600;
}
.timeline-content p {
  font-size: 1.13rem;
  margin-bottom: 0;
  color: #e0e8f0;
}
@media (max-width: 991px) {
  .timeline:before {
    left: 24px;
    transform: none;
  }
  .timeline-row,
  .timeline-row.left,
  .timeline-row.right {
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
  }
  .timeline-row.left .timeline-content,
  .timeline-row.right .timeline-content {
    margin: 0 0 0 48px;
    width: 90%;
    max-width: 100%;
  }
  .timeline-row:after {
    left: 24px;
    transform: translateY(-50%);
  }
}
@media (max-width: 600px) {
  .timeline-content {
    padding: 18px 10px 14px 14px;
    font-size: 1rem;
  }
  .timeline-content h3 {
    font-size: 1.2rem;
  }
}
.hero-section {
  position: relative;
  overflow: hidden;
}
#waves-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero-content-container {
  position: relative;
  z-index: 2;
}
.timeline-section,
.timeline-section * {
  font-family: 'Inter', 'IBM Plex Sans', Arial, sans-serif;
}

.timeline-content h3 {
  font-weight: 700;
  letter-spacing: -0.5px;
  font-family: 'Inter', 'IBM Plex Sans', Arial, sans-serif;
}
