@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Stack+Sans+Headline:wght@200..700&display=swap");

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  box-sizing: border-box;
}

body {
  font-family: "Playfair Display", serif;
  padding-top: 80px;
}

.sec-space {
  padding: 2rem 0;
}

.extra-space {
  padding-top: 8rem;
}

.obj-width {
  max-width: 1200px;
  margin: auto;
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  visibility: hidden;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.section-title {
  text-align: center;
  padding: 60px 0 20px;
  font-size: 36px;
  font-weight: bold;
  color: black;
}

.section-title::after {
  content: "";
  width: 100px;
  height: 5px;
  display: block;
  margin: 10px auto 0;
  border-radius: 30px;
  background: #7fc244;
}

.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #9cd95a;
  color: #000;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  display: none;
  z-index: 999;
  transition: 0.3s;
}

.scroll-top-btn:hover {
  background: #7fc244;
  transform: scale(1.03);
}

.scroll-top-btn.show {
  display: block;
}

/* Form Section Styling */
.obj-width-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.obj-width p {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 30px;
  color: #222;
  font-weight: 600;
}

.form-page-container {
  max-width: 1200px;
  margin: auto;
  background: #f8f8f8;
  padding: 30px;
  border-radius: 14px;
}

iframe {
  width: 100%;
  border: none;
  border-radius: 10px;
}

/* Navbar Styling */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 1);
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
  z-index: 1000;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.logo {
  width: 250px;
  height: auto;
  flex-shrink: 0;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.navbar .nav-menu .nav-link {
  padding: 8px 14px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 24px;
  color: #000;
  transition: background 0.3s ease;
}

.navbar .nav-menu .nav-link:hover {
  background: #9cd95a;
}

#menu-open-button,
#menu-close-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

/* Hero Section Styling */
.hero {
  position: relative;
  width: 90%;
  height: 500px;
  margin: 40px auto 5px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px) brightness(0.3);
  z-index: 0;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  max-width: none;
  max-height: none;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
  padding: 40px;
  color: white;
  width: 90%;
}

.hero-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}

.hero-content p {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}

.hero-btn {
  padding: 12px 35px;
  border: none;
  background: #9cd95a;
  text-decoration: none;
  color: black;
  border-radius: 40px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #7fc244;
  transform: scale(1.03);
}

/* Buttons Section */
.two-col-form {
  width: 90%;
  margin: 60px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.two-col-form .col {
  background: #f8f8f8;
  padding: 40px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.two-col-form .col h2 {
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: bold;
  color: black;
}

.two-col-form .col p {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 30px;
  color: black;
}

.two-col-form a {
  text-decoration: none;
}

.form-btn {
  padding: 14px 40px;
  border: none;
  background: #9cd95a;
  color: black;
  border-radius: 40px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
}

.form-btn:hover {
  background: #7fc244;
  transform: scale(1.05);
}

/* About Section Styling */
.about {
  width: 90%;
  gap: 40px;
  margin: 40px auto;
}

.about h2 {
  font-size: 40px;
  font-weight: bold;
}

.about h3 {
  font-size: 30px;
  font-weight: bold;
}

.about p {
  font-size: 20px;
}

/* Features Section styling */
.feature h3 {
  text-align: center;
}

.feature p {
  text-align: center;
  font-size: 20px;
}

/* Job Openings Section Styling */
.search-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.search {
  position: relative;
  width: 420px;
}

.search input {
  width: 100%;
  padding: 14px 60px 14px 20px;
  border-radius: 40px;
  border: 2px solid #ccc;
  font-size: 16px;
}

.search input:focus {
  outline: none;
  border-color: #9cd95a;
}

.search button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: #9cd95a;
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: 600;
}

.search button:hover {
  background: #7fc244;
}

.clear-btn {
  padding: 12px 28px;
  border-radius: 40px;
  border: none;
  background: #9cd95a;
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
  height: 48px;
}

.clear-btn:hover {
  background: #7fc244;
}

.search-highlight {
  border: 2px solid #9cd95a;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.no-results {
  margin-top: 20px;
  font-size: 18px;
  color: #555;
  display: none;
  display: none;
  align-items: center;
  justify-content: center;
}

.openings-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  min-height: 400px;
}

.opening-card {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.opening-card h3 {
  font-size: 24px;
  margin-bottom: 6px;
  font-weight: 700;
}

.opening-card .experience {
  margin-bottom: 14px;
}

.opening-card .summary {
  font-size: 16px;
  margin-bottom: 14px;
}

.opening-card h4 {
  font-size: 20px;
  margin: 18px 0 8px;
}

.opening-card ul {
  padding-left: 18px;
}

.opening-card li {
  margin-bottom: 6px;
  font-size: 15px;
}

.apply-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 32px;
  background: #9cd95a;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.apply-btn:hover {
  background: #7fc244;
  transform: scale(1.05);
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}

.pagination button {
  padding: 10px 18px;
  border-radius: 25px;
  border: 2px solid #9cd95a;
  background: #fff;
  color: #333;
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
}

.pagination button:hover {
  background: #9cd95a;
  color: #000;
}

.pagination button.active {
  background: #9cd95a;
  color: #000;
}

.pagination button:disabled {
  opacity: 0.5;
}

.pagination .dots {
  font-size: 18px;
  padding: 8px 12px;
  color: #333;
}

/* Training Section Styling */
.training-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  min-height: 400px;
}

.training-card {
  background: #f8f8f8;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.training-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.training-card .experience {
  font-size: 15px;
  font-weight: 500;
  color: #555;
  margin-bottom: 14px;
}

.training-card .summary {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 18px;
  color: #222;
}

.training-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 18px 0 8px;
}

.training-card ul {
  padding-left: 18px;
  margin-bottom: 10px;
}

.training-card ul li {
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 6px;
  color: #333;
}

/* Blog Section Styling */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.blog-card {
  background: #f8f8f8;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.blog-image-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blog-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  transition:
    background 0.4s ease,
    padding 0.4s ease;
}

.blog-image-overlay p {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  transition: transform 0.4s ease;
}

.blog-card-content {
  padding: 10px;
}

.blog-card-content h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 15px;
}

.blog-card-content p {
  font-size: 15px;
  margin-bottom: 14px;
}

.blog-read-link {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
}

.blog-read-link:hover {
  text-decoration: underline;
}

.blog-image-box:hover img {
  transform: scale(1.08);
}

.blog-image-box:hover .blog-image-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding-bottom: 26px;
}

.blog-image-box:hover .blog-image-overlay p {
  transform: translateY(-6px);
}

/* Blog Page Content Section Styling */
.blog-alt-page {
  padding: 30px 0;
}

.blog-header {
  max-width: 900px;
  margin: 0 auto 70px;
  text-align: center;
}

.blog-intro {
  font-size: 18px;
}

.blog-alt-row {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 70px;
}

.blog-alt-row.reverse {
  flex-direction: row-reverse;
}

.blog-alt-image {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.blog-alt-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.blog-alt-content {
  flex: 1;
}

.blog-alt-content h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 16px;
}

.blog-alt-content p {
  font-size: 18px;
  font-weight: 300;
}

/* Partners Section Styling */
.partners-section {
  background: #fff;
  padding: 80px 0;
}

.partners-logos {
  padding: 40px 0;
}

.logo-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.logo-item {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  transition: 0.3s ease;
}

.logo-item img {
  max-width: 160px;
  max-height: 80px;
  object-fit: contain;
}

.logo-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.benefits-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 50px 0;
}

.benefit-card,
.process-step {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.benefit-card i {
  font-size: 40px;
  color: #9cd95a;
  margin-bottom: 14px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.process-step span {
  display: inline-block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #9cd95a;
  color: #000;
  font-weight: 600;
  line-height: 42px;
  margin-bottom: 12px;
}

.faq-accordion {
  max-width: 1000px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #fff;
  border-bottom: 2px solid #000;
  cursor: pointer;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 26px;
  font-size: 1.4rem;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
}

.faq-answer p {
  font-size: 1.2rem;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 22px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.partners-cta-box {
  background: #f8f8f8;
  border-radius: 20px;
  padding: 60px 30px;
  text-align: center;
  margin-top: 80px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.partners-cta-box h2 {
  font-size: 36px;
  margin-bottom: 14px;
}

.partners-cta-box p {
  font-size: 18px;
  margin-bottom: 22px;
}

.apply-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 32px;
  background: #9cd95a;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.apply-btn:hover {
  background: #7fc244;
  transform: scale(1.05);
}

/* Contact Section Styling */
.contact-section {
  padding: 60px 0 100px;
  background: #fff;
}

.contact-section .section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #000;
}

.contact-section .section-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 20px;
}

.contact-left,
.contact-right {
  flex: 1;
}

.contact-sub-heading-left {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 24px;
}

.highlight-text {
  color: #7fc244;
}

.contact-sub-heading-right {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 24px;
}

.contact-sub-text {
  font-size: 18px;
  font-weight: bold;
  line-height: 26px;
  margin-bottom: 24px;
  color: #222;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}

.contact-icon {
  font-size: 45px;
  color: black;
  margin-top: 4px;
}

.contact-text {
  display: flex;
  flex-direction: column;
  margin-left: 5px;
}

.contact-label {
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.contact-info p {
  margin: 0;
  font-size: 18px;
  color: #000;
}

.form-input {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  margin-bottom: 16px;
  border-radius: 8px;
  border: 2px solid #000;
  font-size: 15px;
}

.form-input:focus {
  outline: none;
  border-color: #9cd95a;
}

.contact-form textarea.form-input {
  height: 120px;
  padding: 14px;
  resize: vertical;
}

.submit-button {
  padding: 12px 36px;
  border: none;
  border-radius: 40px;
  background: #9cd95a;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-button:hover {
  background: #7fc244;
  transform: scale(1.05);
}

/* Popup Box Styling */
.popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
}

.popup-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  width: 90%;
  max-width: 320px;
}

.popup-box button {
  margin-top: 15px;
  padding: 10px 24px;
  background: #9cd95a;
  border: none;
  border-radius: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.popup-box button:hover {
  background: #7fc244;
  transform: scale(1.05);
}

/* Policy Page Styling */
.policy-page {
  padding: 40px 20px;
}

.policy-container {
  max-width: 900px;
  margin: auto;
}

.policy-container h1 {
  font-weight: 500;
  margin-bottom: 10px;
}

.policy-date {
  font-size: 14px;
  margin-bottom: 30px;
}

.policy-container h2 {
  font-size: 22px;
  margin: 30px 0 10px;
}

.policy-container p,
.policy-container li {
  font-size: 16px;
  line-height: 1.6;
}

.policy-container ul {
  padding-left: 20px;
}

/* Footer Section Styling */
.footer {
  background: #1e1e1e;
  padding: 18px 0;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 30px;
}

.footer-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-social a {
  color: #fff;
  font-size: 25px;
  transition: 0.2s ease;
}

.footer-social a:hover {
  color: #9cd95a;
}

.footer-copy {
  text-align: center;
  color: #ccc;
  font-size: 15px;
}

.footer-copy a {
  color: inherit;
  text-decoration: none;
}

.footer-copy a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: 0.2s ease;
}

.footer-links a:hover {
  color: #9cd95a;
}

.footer-links .dot {
  color: #fff;
  font-size: 10px;
}

hr.section-line {
  border: none;
  border-top: 2px solid black;
  margin: 0 auto 20px auto;
  width: 90%;
}

body.show-mobile-menu {
  overflow: hidden;
}

/* Responsive media query code for max width 1800px */
@media screen and (min-width: 1800px) {
  .obj-width {
    width: 1800px;
    margin: 0 auto;
  }

  .obj-width-content {
    width: 1400px;
    margin: 0 auto;
  }

  .blog-header,
  .blog-alt-row,
  .logo-grid,
  .benefits-grid,
  .process-grid,
  .partners-cta-box,
  .section-content,
  .faq-accordion {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-title {
    font-size: 48px;
  }

  .navbar {
    margin: 0 auto;
  }

  .logo {
    width: 350px;
  }

  .nav-menu {
    gap: 48px;
  }

  .hero {
    width: 90%;
    height: 800px;
  }

  .hero-content {
    max-width: 1200px;
    gap: 28px;
  }

  .hero-content h2 {
    font-size: 56px;
    line-height: 70px;
  }

  .hero-content p {
    font-size: 22px;
    line-height: 36px;
  }

  .hero-btn {
    padding: 18px 42px;
    font-size: 18px;
  }

  .two-col-form {
    max-width: 1600px;
    margin: 100px auto;
    gap: 100px;
  }

  .two-col-form .col {
    padding: 70px;
    border-radius: 24px;
  }

  .two-col-form .col h2 {
    font-size: 44px;
    line-height: 56px;
  }

  .two-col-form .col p {
    font-size: 22px;
    line-height: 36px;
    margin-top: 16px;
  }

  .form-btn {
    margin-top: 28px;
    padding: 18px 44px;
    font-size: 18px;
  }

  .about {
    max-width: 1600px;
    margin: 120px auto;
    text-align: left;
  }

  .about h2 {
    font-size: 52px;
    line-height: 64px;
  }

  .about h3 {
    font-size: 36px;
    line-height: 48px;
    margin-top: 12px;
  }

  .about p {
    font-size: 22px;
    line-height: 36px;
    margin-top: 20px;
  }

  .feature h3 {
    font-size: 30px;
  }

  .feature p {
    font-size: 20px;
    line-height: 34px;
    margin-top: 16px;
  }

  .feature img {
    width: 96px;
    height: 96px;
  }

  .opening-card h3 {
    font-size: 28px;
  }

  .opening-card p,
  .opening-card li {
    font-size: 18px;
    line-height: 30px;
  }

  .opening-card h4 {
    font-size: 22px;
    margin-top: 24px;
  }

  .training-list {
    max-width: 1600px;
    gap: 80px;
  }

  .training-card {
    padding: 44px;
  }

  .training-card h3 {
    font-size: 32px;
  }

  .training-card p,
  .training-card li {
    font-size: 20px;
    line-height: 32px;
  }

  .logo-grid {
    max-width: 1600px;
    gap: 80px;
  }

  .logo-item img {
    max-width: 260px;
  }

  .benefits-grid {
    max-width: 1600px;
  }

  .benefit-card h4 {
    font-size: 28px;
  }

  .benefit-card p {
    font-size: 20px;
    line-height: 32px;
  }

  .faq-accordion {
    max-width: 1600px;
  }

  .faq-question {
    font-size: 22px;
    padding: 30px 44px;
  }

  .faq-answer p {
    font-size: 20px;
    line-height: 32px;
    padding: 0 44px 30px;
  }

  .partners-cta-box {
    max-width: 1600px;
    padding: 100px;
    gap: 40px;
  }

  .partners-cta-box h2 {
    font-size: 44px;
  }

  .partners-cta-box p {
    font-size: 22px;
    line-height: 36px;
  }
}

/* Responsive media query code for max width 1400px */
@media screen and (min-width: 1400px) {
  .obj-width {
    width: 1400px;
    margin: 0 auto;
  }

  .obj-width-content {
    width: 1200px;
    margin: 0 auto;
  }

  .blog-header,
  .blog-alt-row,
  .logo-grid,
  .benefits-grid,
  .process-grid,
  .partners-cta-box,
  .section-content,
  .faq-accordion {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .logo {
    width: 300px;
  }

  .section-title {
    font-size: 42px;
  }

  .hero {
    width: 90%;
    height: 700px;
  }

  .hero-content {
    max-width: 1000px;
    gap: 22px;
  }

  .hero-content h2 {
    font-size: 48px;
    line-height: 62px;
  }

  .hero-content p {
    font-size: 20px;
    line-height: 32px;
  }

  .hero-btn {
    padding: 16px 36px;
    font-size: 17px;
  }

  .two-col-form {
    max-width: 1400px;
    margin: 80px auto;
    gap: 70px;
  }

  .two-col-form .col {
    padding: 60px;
    border-radius: 20px;
  }

  .two-col-form .col h2 {
    font-size: 38px;
    line-height: 50px;
  }

  .two-col-form .col p {
    font-size: 20px;
    line-height: 32px;
    margin-top: 14px;
  }

  .form-btn {
    margin-top: 24px;
    padding: 16px 40px;
    font-size: 17px;
  }

  .about {
    max-width: 1400px;
    margin: 80px auto;
    text-align: left;
  }

  .about h2 {
    font-size: 46px;
    line-height: 58px;
  }

  .about h3 {
    font-size: 32px;
    line-height: 44px;
    margin-top: 10px;
  }

  .about p {
    font-size: 20px;
    line-height: 32px;
    margin-top: 18px;
  }

  .feature h3 {
    font-size: 26px;
  }

  .feature p {
    font-size: 18px;
    line-height: 30px;
    margin-top: 14px;
  }

  .feature img {
    width: 88px;
    height: 88px;
  }

  .opening-card h3 {
    font-size: 24px;
  }

  .opening-card p,
  .opening-card li {
    font-size: 16px;
    line-height: 28px;
  }

  .opening-card h4 {
    font-size: 20px;
    margin-top: 20px;
  }

  .training-list {
    max-width: 1400px;
    gap: 60px;
  }

  .training-card {
    padding: 36px;
  }

  .training-card h3 {
    font-size: 28px;
  }

  .training-card h4 {
    font-size: 20px;
  }

  .training-card p,
  .training-card li {
    font-size: 18px;
    line-height: 30px;
  }

  .logo-grid {
    max-width: 1400px;
    gap: 60px;
  }

  .logo-item img {
    max-width: 220px;
  }

  .benefits-grid {
    max-width: 1400px;
  }

  .benefit-card h4 {
    font-size: 26px;
  }

  .benefit-card p {
    font-size: 18px;
    line-height: 30px;
  }

  .faq-accordion {
    max-width: 1400px;
  }

  .faq-question {
    font-size: 20px;
    padding: 26px 36px;
  }

  .faq-answer p {
    font-size: 18px;
    line-height: 30px;
    padding: 0 36px 26px;
  }

  .partners-cta-box {
    max-width: 1400px;
    padding: 80px;
    gap: 32px;
  }

  .partners-cta-box h2 {
    font-size: 40px;
  }

  .partners-cta-box p {
    font-size: 20px;
    line-height: 32px;
  }
}

/* Responsive media query code for max width 1024px */
@media screen and (max-width: 1024px) {
  .navbar {
    flex-wrap: nowrap;
  }

  .logo {
    max-width: 200px;
    width: 100%;
  }

  body.show-mobile-menu header::before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.25);
  }

  #menu-open-button {
    display: block;
    font-size: 26px;
    color: black;
    flex-shrink: 0;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 90px 30px;
    gap: 24px;
    transition: left 0.3s ease;
    z-index: 2000;
  }

  body.show-mobile-menu .nav-menu {
    left: 0;
  }

  #menu-close-button {
    display: block;
    position: absolute;
    top: 22px;
    right: 22px;
    font-size: 30px;
    color: black;
  }

  .nav-menu {
    width: 60%;
  }

  .navbar .nav-menu {
    justify-content: center;
    text-align: center;
  }

  .navbar .nav-menu .nav-item {
    width: auto;
  }

  .navbar .nav-menu .nav-link {
    display: block;
    text-align: center;
  }

  .navbar .nav-menu .nav-link:hover {
    width: auto;
  }

  .two-col-form {
    grid-template-columns: 1fr;
  }

  .sec-space {
    padding: 2.5rem 0;
  }

  .obj-width {
    padding: 0 16px;
  }

  .section-title {
    font-size: 28px;
    padding: 40px 0 15px;
  }

  .obj-width-content p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
  }

  .section-content {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .search-wrapper {
    flex-direction: row;
    gap: 16px;
  }

  .search {
    width: 70%;
  }

  .search button {
    padding: 12px 15px;
  }

  .clear-btn {
    height: 48px;
    font-size: 15px;
  }

  .openings-list {
    grid-template-columns: 1fr;
  }

  .training-list {
    grid-template-columns: 1fr;
  }

  .blog-image-box {
    aspect-ratio: 16 / 9;
  }

  .blog-alt-row {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
  }

  .blog-alt-row.reverse {
    flex-direction: column;
  }

  .blog-alt-image img {
    width: 700px;
    height: auto;
    border-radius: 14px;
  }

  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .logo-item img {
    width: 180px;
    height: 90px;
  }

  .benefits-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-info {
    gap: 16px;
    margin-bottom: 28px;
  }

  .contact-icon {
    font-size: 36px;
  }

  .contact-label {
    font-size: 18px;
  }

  .contact-info p {
    font-size: 16px;
  }

  .footer-container {
    max-width: 100%;
    padding: 0 16px;
    margin: 0;
  }

  .footer {
    width: 100%;
  }

  .footer-row {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .footer-social,
  .footer-links {
    justify-content: center;
  }

  body {
    overflow-x: hidden;
  }
}

/* Responsive media query code for max width 768px */
@media screen and (max-width: 768px) {
  .obj-width {
    padding: 0 15px;
  }

  .nav-menu {
    width: 70%;
  }

  .search-wrapper {
    gap: 14px;
  }

  .search {
    width: 100%;
  }

  .search input {
    width: 100%;
    font-size: 15px;
    padding: 12px 54px 12px 18px;
  }

  .search button {
    padding: 8px 13px;
  }

  .clear-btn {
    height: 46px;
    font-size: 15px;
  }

  .pagination {
    gap: 6px;
    margin-top: 25px;
    flex-wrap: wrap;
  }

  .pagination button {
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 20px;
  }

  .pagination .dots {
    font-size: 14px;
    padding: 6px 8px;
  }

  .blog-image-box {
    aspect-ratio: 16 / 10;
  }

  .blog-image-overlay {
    padding: 14px;
  }

  .blog-image-overlay p {
    font-size: 15px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-alt-image img {
    width: 340px;
    height: auto;
  }

  .logo-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .logo-item {
    padding: 20px;
  }

  .logo-item img {
    width: 160px;
    height: 80px;
  }

  .benefits-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    gap: 14px;
    margin-bottom: 32px;
  }

  .contact-icon {
    font-size: 32px;
  }

  .contact-label {
    font-size: 17px;
  }

  .contact-info p {
    font-size: 15px;
  }

  .footer-row {
    grid-template-columns: 1fr;
    row-gap: 18px;
    text-align: center;
  }

  .footer-social,
  .footer-links {
    justify-content: center;
  }

  .footer-copy {
    text-align: center;
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .logo {
    max-width: 170px;
  }

  .search-wrapper {
    flex-direction: column;
  }

  .search {
    width: 100%;
  }

  .search input {
    font-size: 14px;
    padding: 12px 50px 12px 16px;
  }

  .clear-btn {
    height: 44px;
    font-size: 14px;
  }
}

@media (hover: none) {
  .blog-image-box img {
    transform: none;
  }
}
