* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}
section {
  scroll-margin-top: 110px;
}
body {
  background: #f7f9fc;
  color: #1f2937;

}

/*---------------------------------------- NAVBAR ----------------------------------*/
header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
}

.navbar {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 200px;
  height:100px;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}

nav ul li a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
  font-size: 15px;
}

.btn-primary {
  background: #f97316;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
}
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}
/* FORCE MOBILE NAV TO WORK */
@media (max-width: 768px) {

  header {
    position: relative;
    z-index: 1000;
  }

  .navbar {
    position: relative;
    z-index: 1000;
  }

  .menu-toggle {
    display: block;
    font-size: 30px;
    cursor: pointer;
    z-index: 1001;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
  }

  nav ul {
    display: none;
    flex-direction: column;
    background: #ffffff;
    padding: 20px;
    gap: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }

  nav ul.show {
    display: flex;
  }
}

/*--------------------------------- FOOTER ----------------------------------------*/
.site-footer {
  background: #0f172a;
  color: #e5e7eb;
  padding: 60px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

.footer-brand h3 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5f5;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 16px;
  margin-bottom: 14px;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #cbd5f5;
  text-decoration: none;
  font-size: 14px;
}

.footer-links ul li a:hover {
  color: #ffffff;
}

.social-links {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}

.social-links img {
  width: 28px;
  height: 28px;
  filter: brightness(1) invert(3);
}

.footer-email {
  font-size: 14px;
  color: #cbd5f5;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #94a3b8;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}




/*----------------------------------- HERO --------------------------------------*/
.hero {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 14px;
}

.hero p {
  font-size: 16px;
  color: #475569;
  margin-bottom: 26px;
}

.hero-buttons a {
  display: inline-block;
  margin-right: 14px;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.hero-buttons .orange {
  background: #f97316;
  color: #fff;
}

.hero-buttons .blue {
  background: #2563eb;
  color: #fff;
}

.hero-image img {
  width: 100%;
  max-width: 460px;
}

/* QUICK LINKS */
.quick-links {
  max-width: 1200px;
  margin: auto;
  padding: 30px 20px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.quick-link {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
}

.quick-link:hover {
  transform: translateY(-3px);
}

.quick-link img {
  width: 38px;
  height: 38px;
}

.quick-link span {
  font-size: 15px;
  font-weight: 500;
  color: #1f2937;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .quick-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  nav ul {
    display: none;
  }

  .quick-links {
    grid-template-columns: 1fr;
  }
}

/* CAREER GUIDANCE SECTION */
.career-section {
  background: #ffffff;
  padding: 70px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 8px;
}

.section-header p {
  font-size: 15px;
  color: #64748b;
}
/*-------------------careeer giudence---------------------*/
/* CAREER GUIDANCE SECTION */
.career-section {
  background: #ffffff;
  padding: 70px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 8px;
}

.section-header p {
  font-size: 15px;
  color: #64748b;
}

.career-cards {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.career-card {
  background: #eef6ff;
  border-radius: 14px;
  padding: 30px 24px 36px;
  text-align: center;

  /* KEY PART */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.career-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 22px;
}

.career-card img {
  width: 180px;
  height: auto;
  margin-bottom: 24px;
}

.card-btn {
  margin-top: auto;
  padding: 10px 26px;
  background: #2563eb;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .career-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .career-cards {
    grid-template-columns: 1fr;
  }
}
/*-----------training prg--------------*/
/* TRAINING PROGRAMS SECTION */
.training-section {
  background: #f8fbff;
  padding: 70px 20px;
}

.training-cards {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.training-card {
  background: #eef6ff;
  border-radius: 16px;
  padding: 30px 26px 36px;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.training-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 6px;
}

.training-card p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 22px;
}

.training-card img {
  width: 200px;
  height: auto;
  margin-bottom: 26px;
}

.training-card .card-btn {
  margin-top: auto;
  padding: 11px 28px;
  background: linear-gradient(180deg, #3b82f6, #2563eb);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .training-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .training-cards {
    grid-template-columns: 1fr;
  }
}

/* SERVICES SECTION */
.services-section {
  background: #ffffff;
  padding: 70px 20px 80px;
}

.services-cards {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  border-radius: 16px;
  padding: 30px 26px 36px;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card.light {
  background: #f4f9f6;
}

.service-card.neutral {
  background: #eef6ff;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 6px;
}

.service-card p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 22px;
}

.service-card img {
  width: 200px;
  height: auto;
  margin-bottom: 26px;
}

.service-btn {
  margin-top: auto;
  padding: 11px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

.service-btn.orange {
  background: #f97316;
}

.service-btn.blue {
  background: #2563eb;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .services-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .services-cards {
    grid-template-columns: 1fr;
  }
}

/* CONTACT CTA SECTION */
.contact-cta {
  background: #f8fbff;
  text-align: center;
  padding: 70px 20px 60px;
}

.contact-cta h2 {
  font-size: 32px;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.contact-cta p {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 28px;
}

.contact-btn {
  display: inline-block;
  padding: 12px 34px;
  background: #f97316;
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
}

/* TRUST / FEATURES SECTION */
.trust-section {
  background: #ffffff;
  padding: 40px 20px 60px;
}

.trust-items {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid #e5e7eb;
  padding-top: 30px;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
}

.trust-item img {
  width: 32px;
  height: 32px;
}

.trust-item span {
  font-size: 15px;
  font-weight: 500;
  color: #1e3a8a;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .trust-items {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* PERSONALIZED GUIDANCE SECTION */
.guidance-section {
  background: #f8fbff;
  padding: 80px 20px;
  
  
}

.guidance-container {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  
}

.guidance-form h2 {
  font-size: 30px;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 8px;
}

.guidance-form p {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 26px;
}

.guidance-form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guidance-form input,
.guidance-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  outline: none;
}

.guidance-form textarea {
  min-height: 120px;
  resize: none;
}

.guidance-form input:focus,
.guidance-form textarea:focus {
  border-color: #2563eb;
}

.guidance-form button {
  
  margin-left: 20%;
  margin-bottom: 10px;
  width: fit-content;
  padding: 12px 30px;
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.guidance-image img {
  width: 100%;
  width: 500px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .guidance-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .guidance-form button {
    margin: 0 auto;
  }

  .guidance-image {
    margin-top: 30px;
  }
}

