@import url("https://fonts.googleapis.com/css2?family=Abel&family=Onest:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Abel&family=Onest:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oxygen:wght@300;400;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

body {
  margin: 0px;
  padding: 0px;
  font-family: "oxygen";
}

:root {
  --primary-color: #06003a;
  --secondary-color: #d93337;
  --gradient-color: linear-gradient(90deg, #d93337 0%, #a3383a 100%);
  --white: #ffffff;
  --black: #000000;
}

.slick-next.slick-arrow {
  display: none !important;
}

/* ============ TOP BAR ============ */
#femoza-topbar {
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 14px;
  padding: 10px 0;
}

#femoza-topbar .femoza-contact a {
  color: var(--white);
  text-decoration: none;
  margin-right: 18px;
  transition: color 0.3s;
}

#femoza-topbar .femoza-social a {
  margin-left: 12px;
  color: var(--white);
  transition: color 0.3s, transform 0.3s;
}

/* ============ HEADER ============ */
#femoza-header {
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

#femoza-header .navbar {
  padding: 0.8rem 0;
}

#femoza-header .navbar-brand img {
  height: 65px;
}

#femoza-header .navbar-toggler {
  border: none;
  color: var(--black);
  font-size: 1.4rem;
}

#femoza-header .navbar-collapse {
  justify-content: center;
}

#femoza-header .navbar-nav {
  gap: 1.5rem;
}

#femoza-header .navbar-nav .nav-link {
  color: var(--black);
  font-weight: 700;
  transition: color 0.3s;
}

#femoza-header .navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

/* ============ BUTTON ============ */
#femoza-header .btn-touch {
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  border-radius: 30px;
  padding: 8px 22px;
  transition: background 0.3s, color 0.3s;
}

#femoza-header .close-btn {
  display: none;
}

/* ============ RESPONSIVE ============ */

/* Mobile menu slide-in from right */
/* ---------- MOBILE NAV STYLES ---------- */
@media (max-width: 991px) {
  #femoza-header .navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background-color: var(--white);
    padding: 4rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transition: right 0.4s ease-in-out;
    z-index: 9999;
  }

  #femoza-header .navbar-collapse.show {
    right: 0;
  }

  /* Cross Button */
  #femoza-header .close-btn {
    display: block;
    position: absolute;
    top: 1.5rem;
    right: 2.5rem;
    background: none;
    border: none;
    color: var(--black);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s;
  }

  /* Nav Links in Mobile */
  #femoza-header .navbar-nav {
    gap: 1.8rem;
    flex-direction: column;
    margin-top: 2rem;
  }

  /* Optional overlay effect for background */
  body.menu-open::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    transition: opacity 0.3s;
  }
}

.banner {
  position: relative;
}

.banner .img-wrap img {
  width: 100%;
  height: 75vh;
  object-fit: cover;
  object-position: top;
}

#home-about-section {
  padding: 60px 0;
  background: #f8f8f8;
}

#home-about-section .about-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

#home-about-section .about-content {
  flex: 1;
}

#home-about-section .about-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

#home-about-section .director-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
}

#home-about-section .director-img img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 50%;
}

#home-about-section .director-info h4 {
  font-size: 20px;
  margin: 0;
  font-weight: 700;
}

#home-about-section .director-info span {
  color: #666;
  font-size: 14px;
}

/* ⭐ Right Side Image Styles */
#home-about-section .about-image {
  flex: 1;
}

#home-about-section .about-image img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 10px;
}

/* Responsive Layout */
@media (max-width: 768px) {
  #home-about-section .about-wrap {
    flex-direction: column;
    text-align: center;
  }

  #home-about-section .director-box {
    justify-content: center;
  }

  #home-about-section .about-image img {
    max-height: 260px;
  }
}

.industries {
  background-image: url("images/Banner2.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 80px 0;
}

.industries::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.industries .container {
  position: relative;
  z-index: 2;
}

.industries .top h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 50px;
  position: relative;
}

.industries .industry-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.industries .industry {
  padding: 25px 20px;
  background: #21252926;
  border-radius: 14px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: 0.3s ease;
  backdrop-filter: blur(6px);
}

.industries .industry:hover {
  transform: translateY(-6px);
  border-color: var(--secondary-color);
  background: rgba(255, 255, 255, 0.15);
}

.industries .industry-img img {
  width: 70px;
  margin-bottom: 15px;
}

.industries .industry h3 {
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
}
@media (max-width: 767px) {
  .industries {
    padding: 50px 0;
  }

  .industries .top h2 {
    font-size: 28px;
  }
}

.counter-up {
  padding: 60px 0;
  background: linear-gradient(120deg, #d93337, #a3383a);
  position: relative;
  overflow: hidden;
}

.counter-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  text-align: center;
}

.counter-box {
  padding: 30px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  transition: 0.3s ease;
}

.counter-box:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.18);
}

.count {
  font-size: 55px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.label {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

section.services {
  padding: 80px 0;
  background: #f7f7f7;
}

.services .top {
  text-align: center;
  margin-bottom: 50px;
}

.services .top h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary-color);
}

.services .top p {
  font-size: 18px;
  color: #555;
}

.services-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}

.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 1rem;
  overflow: hidden;
  position: relative;
  transition: 0.4s ease;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.12);
  border-bottom: 4px solid var(--secondary-color);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.18);
}

.service-img {
  border-radius: 0.5rem;
  border: 2px solid #d3d1d1;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 10px;
}

.service-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--primary-color);
}

.service-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

@media (max-width: 576px) {
  .services .top h2 {
    font-size: 32px;
  }
  .service-content h3 {
    font-size: 20px;
  }
  .service-img img {
    height: 200px;
  }
}

.our-clients {
  padding: 50px 0px;
  background-color: var(--primary-color);
}
.clients-logo {
    margin-right: 15px;
}
.slick-slide img{
  width: 100%;
  height: 100%;
}
footer.footer {
  background: var(--primary-color);
  padding: 20px 0px;
}

.footer .footer-inner .section h2,
.footer .footer-inner .section p {
  color: #fff;
}

.footer .footer-inner {
  display: flex;
  justify-content: space-between;
}

.footer-inner .section {
  flex: 0 0 30%;
}

.footer-inner .section svg {
  width: 19px;
  fill: #fff;
}

.footer-inner .section ul {
  padding: 0px;
  list-style: none;
}

.footer-inner .section ul li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--white);
}

.footer-inner .section ul li a {
  color: #fff;
  text-decoration: none;
}
.social-media > a {
  margin-right: 10px;
}
.logo {
  width: 200px;
}
.footer .logo img {
  width: 100%;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.footer-contact i {
  font-size: 18px;
  color: var(--white);
}

.social-media a {
  display: inline-block;
  margin-right: 12px;
  font-size: 20px;
  color: var(--white);
  transition: 0.3s;
}

/* Contact us */

.common-banner {
  padding: 30px 0 0;
  background-color: var(--primary-color);
}
.common-banner svg {
  transform: rotate(180deg);
  fill: #fff;
  margin-bottom: -5px;
}
.common-banner .banner-top h1 {
  text-align: center;
  color: #fff;
}

.team-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
  margin: 50px auto;
  max-width: 1200px;
}

.team-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  padding: 30px 20px;
  width: 300px;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid #001b6b;
  object-fit: cover;
  margin-bottom: 15px;
}

.team-card h4 {
  color: #001b6b;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.team-card p {
  color: #666;
  font-size: 15px;
  margin: 0;
}

.team-desc .elementor-button {
  background-color: var(--primary-color);
  font-family: "Oxygen", Sans-serif;
  font-size: 15px;
  font-weight: 500;
  border-radius: 100px 100px 100px 100px;
  padding: 15px 30px 15px 30px;
  text-decoration: none;
  color: #fff;
  display: inline-block;
  margin-top: 20px;
}
.team-desc .elementor-button svg {
  width: 15px;
  height: 15px;
  fill: #fff;
}
.team-desc .team-member {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 60px;
}

.team-desc .team-img {
  flex: 0 0 30%;
}

.team-desc .team-img img {
  width: 100%;
}
.team-desc .description h2 {
  color: var(--primary-color);
  font-size: 30px;
  margin: 0px;
}
.team-desc .description p {
  color: var(--primary-color);
}
.team-desc .team-member:nth-child(2n) {
  flex-direction: row-reverse;
}

/* Gallery Wrapper */
section.img-gallery-magnific {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center; /* keeps layout aligned */
}
section.certificate-section {
    padding: 60px 0;
}
/* Desktop */
.certificate-section .magnific-img {
  flex: 0 0 30%; /* 3 images per row approx */
}

/* Image Style */
.certificate-section .magnific-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

/* Hover Zoom Effect */
.certificate-section .magnific-img:hover img {
  transform: scale(1.05);
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #ccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
.mfp-preloader a {
  color: #ccc;
}
.mfp-preloader a:hover {
  color: #fff;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #fff;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}
.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #fff;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}
.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}
.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}
.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}
.mfp-arrow-left:after {
  border-right: 17px solid #fff;
  margin-left: 31px;
}
.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
  right: 0;
}
.mfp-arrow-right:after {
  border-left: 17px solid #fff;
  margin-left: 39px;
}
.mfp-arrow-right:before {
  border-left: 27px solid #3f3f3f;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}
.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape),
  screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

/* Tablets (3 per row) */
@media (max-width: 768px) {
  .certificate-section .magnific-img {
    flex: 0 0 100%;
  }
}

.about-section .accordian-wrap {
  flex: 0 0 40%;
}
.acc-list-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.acc-list-wrap ul li {
  margin-bottom: 10px;
}
.about-section .acc-list-wrap ul {
  margin: 0px;
}
.about-section .accordian {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.about-section .accordian h3 {
  background-color: #001b6b;
  color: #fff;
  padding: 15px 20px;
  margin: 0;
  cursor: pointer;
  font-size: 18px;
  position: relative;
}

.about-section .accordian h3::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.about-section .accordian.active h3::after {
  transform: rotate(45deg);
}

.about-section .accordian p {
  display: none;
  padding: 15px 20px;
  background: #fafafa;
  color: #333;
  margin: 0;
  line-height: 1.6;
}

.about-section .accordian.active p {
  display: block;
}
.service-section .service {
  color: gray;
}
.employer-section .basic-policy-wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 40px;
}
.employer-section .basic-policy-wrap .basic-policy {
  padding: 20px;
  border: 1px gray dashed;
  color: gray;
}
.employer-section .employer ul li {
  margin-bottom: 10px;
  color: gray;
}
.employer-section .employer {
  color: gray;
}
.employer-section .service-step-wrap h2 {
  text-align: center;
  color: var(--primary-color);
  font-size: 40px;
}
.employer-section .services-step {
  margin-top: 80px;
}
.employer-section .step {
  display: flex;
  gap: 30px;
  position: relative;
  /* margin-bottom: 60px; */
}
.employer-section .step > svg {
  width: 60px;
  height: 60px;
  padding: 20px;
  background: var(--primary-color);
  fill: #fff;
  border-radius: 50%;
}
.employer-section .step:before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  background-color: #000;
  top: 0px;
  left: 28px;
}
.employer-section .step:last-child:before {
  content: unset;
}
@media (max-width: 767px) {
  .industries .industry {
    flex: 0 0 45%;
  }
  div#counter {
    flex-wrap: wrap;
    justify-content: center;
  }
  #counter .item {
    border-right: 0px;
    flex: 0 0 80%;
  }
  .services .service-card {
    flex: 0 0 48%;
  }
  .footer .footer-inner {
    flex-wrap: wrap;
  }
  .footer .footer-inner .section {
    flex: 0 0 45%;
  }
}
@media (max-width: 476px) {
  .industries .industry {
    flex: 1 0 80%;
  }
  .footer .footer-inner .section {
    flex: 1 0 54%;
  }
  .services .service-card {
    flex: 1 0 80%;
  }
}

/* ✅ Hamburger Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  width: 30px;
  cursor: pointer;
}
.menu-toggle span {
  height: 3px;
  background: #333;
  margin: 5px 0;
  width: 100%;
  transition: 0.3s;
}
/* Animate Hamburger */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 10px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -13px);
}

/* --- Contact Section --- */
#zag-contact.contact-section {
  padding: 60px 0;
  background: #f5f5f5;
  font-family: Arial, sans-serif;
}

#zag-contact .section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

#zag-contact .contact-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* --- Form --- */
#zag-contact .contact-form {
  flex: 1;
  min-width: 320px;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

#zag-contact .contact-form h3 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}

#zag-contact .contact-form .input-group {
  margin-bottom: 15px;
}

#zag-contact .contact-form label {
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

#zag-contact .contact-form input,
#zag-contact .contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  outline: none;
}

#zag-contact .contact-form textarea {
  height: 120px;
  resize: none;
}

#zag-contact .btn-submit {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
  transition: 0.3s;
}

#zag-contact .btn-submit:hover {
  background: #0056b3;
}

/* --- Contact Info --- */
#zag-contact .contact-info {
  flex: 1;
  min-width: 320px;
}

#zag-contact .contact-info h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
}

#zag-contact .contact-info p {
  margin-bottom: 10px;
  line-height: 1.6;
  font-weight: 600;
  font-size: 15px;
}
#zag-contact .contact-info p a {
  text-decoration: none;
}

/* --- Map --- */
#zag-contact .map iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 10px;
  margin-top: 15px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  #zag-contact .contact-wrapper {
    flex-direction: column;
  }

  #zag-contact .contact-form,
  #zag-contact .contact-info {
    width: 100%;
  }

  .acc-list-wrap {
    flex-wrap: wrap;
  }

  .about-section .accordian-wrap {
    flex: 0 0 100%;
  }

  .employer-section .basic-policy-wrap {
    flex-wrap: wrap;
  }
}
