/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@font-face {
  font-family: 'AvenirRegular';
  src: url('/fonts/Avenir\ Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
}

.p{
    color: #666;
 font-family: 'AvenirRegular';
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
}

.hero-section{
      display:block;
  }
  
  .mobile{
      display:none;
  }

.wrapper {
  max-width: 800px;
  margin: 40px auto;

}

.header {
  background: linear-gradient(to right, #d2e9ff, #ecfbe9);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 10px 40px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
  display: flex;
  align-items: center;
}



.logo-text {
  font-size: 24px;
  font-weight: bold;
  color: #1d2d59;
}

.logo-subtext {
  font-size: 12px;
  color: #1d2d59;
}



.navbar {

  padding: 10px 20px;
  position: relative;
}

.menu-toggle {
  font-size: 26px;
  cursor: pointer;
  display: none;
  color: #000;
}

.nav {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav li {
  position: relative;
}

.nav a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  padding: 10px;
  display: inline-block;
}

.mega-menu .menu-item a:hover {
  color: #e7b400;
}

.nav li:hover>a {
  color: goldenrod;
}

/* Mega Menu Hover Style */

.mega-menu:hover>a {
  color: goldenrod;
}




.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  display: grid;
  grid-template-columns: repeat(2, 250px);
  gap: 20px;
  padding: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 100;
}

.dropdown:hover .mega-menu {
  display: grid;
}

.menu-item {
  font-size: 14;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  transition: background 0.2s;
}

.menu-item:hover {
  background-color: #121b5c;
}

.menu-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 20px;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 999;
  }

  .nav.active {
    display: flex;
  }

  .mega-menu {
    position: static;
    grid-template-columns: 1fr;
    box-shadow: none;
    padding: 10px 0;
    display: none;
  }

  .dropdown:hover .mega-menu {
    display: none;
  }

  .dropdown>a {
    cursor: pointer;
  }
}


/*video- css*/
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: white;
  background: linear-gradient(90deg, #121B5C 0.97%, rgba(255, 207, 60, 0.00) 100%);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;



}

.overlay {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}




.logo-text {
  font-size: 24px;
  font-weight: bold;
}

.logo-subtext {
  font-size: 12px;
}

.hero-text {
  margin-top: 75px;
  line-height: 1.6;
  max-width: 600px;
}

.hero-text h1 {
margin:auto;
  color: #FFF;
    font-family: "Inter", sans-serif;
  font-size: 45px;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
}

.hero-text ul {
  color: #FFF;
  font-family: 'AvenirRegular', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 27px;
  /* 168.75% */
}

.hero-text ul li {
  margin-bottom: 8px;
  font-size: 16px;
}

.cta-yellow {
  display: inline-block;
  background-color: #fce200;
  /* Yellow */
  color: #000;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-yellow:hover {
  background-color: #121b5c;

  color: #fff;
}

.cta-button {
  border: 1px solid gray;
  display: inline-block;
  padding: 12px 24px;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #ffc107;
}


.gradient-text {
  margin: auto;
  font-size: 40px;
  font-weight: 600;
  background: linear-gradient(90deg, #FFCF3C 31.43%, #121B5C 67.27%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'AvenirRegular', sans-serif;
}

.what-we-do {
  background: radial-gradient(139.12% 80.54% at 82.81% 19.51%, #E7FBFF 28%, rgba(250, 255, 235, 0.70) 70.5%, #FFF 100%);
  padding: 50px 20px;
}

.image-container {
  gap: 30px;
  padding: 30px 0px;
  display: flex;
  margin: auto;
  align-items: center;
  flex-wrap: wrap;
}



.container {
  max-width: 1200px;
  margin: auto;
}

.image-side img {
  width: 100%;
  max-width: 600px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.text-side {
  flex: 1;
  min-width: 300px;
}

.about {
  line-height: 1.5;

}

.philosophy-list {
  padding-left: 20px;
  margin-bottom: 20px;
}

.philosophy-list li {
  margin-bottom: 15px;
  list-style: none;
  position: relative;
  padding-left: 30px;
  font-size: 17px;
  line-height: 1.5;
  color: #333;
}

.philosophy-list li img {
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
}

.label {
  color: #121B5C;
   font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 3.6px;
  text-transform: uppercase;
}

.text-side h2 {
  margin: 0 auto;
  color: #363636;
   font-family: "Inter", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: 53px;
  /* 132.5% */
}

/*.text-side .highlight {*/
/*  font-weight: 600;*/
/*}*/

.quote-box {
    padding:10px;
 border-radius: 15px;
background: linear-gradient(270deg, #755B0A 0%, #3E4890 54%, #121B5C 100%);
text-align:left;
}

.quote-icon {
  width: 50px;
  height: auto;
  margin-bottom: 20px;
}

.quote-text {
        margin: auto;
  color: #FFF;
  font-family: "Inter", sans-serif;
font-size: 30px;
font-style: normal;
font-weight: 300;
line-height: normal;
}

.quote-author {
 color: #FFF;
text-align: right;
  font-family: "Inter", sans-serif;
font-size: 21px;
font-style: normal;
font-weight: 400;
line-height: normal;
}



.hiring-img {
  padding: 50px 0px;
}


.features {
  margin: revert;
  list-style: none;
  padding: 0;
}

.features li {
  font-size: 18px;
    font-weight: 500;
  line-height: 26px;
  margin-bottom: 12px;
  color: #000;
  list-style: none;
  position: relative;
 padding-left: 30px;
 font-family: 'AvenirRegular', sans-serif;
}

.features li img {
  position: absolute;
  left: 0;
    top: 0px;
    width: 20px;
    height: 20px;
}


.features img {
  width: 18px;
  margin-top: 3px;
}

.title {
  padding: 10px 29px;
}

/*carousal css/*/

.section-title {
     color: #666;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 3.6px;
    font-family: "Inter", sans-serif;
}

.main-heading {
    font-family: "Inter", sans-serif;
    font-size: 40px;
    font-weight: 300;
  margin: 10px 0 40px;
}

.feature-boxes {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;

}

.feature {

  flex: 1;

}

.feature-icon {
  font-size: 48px;
  color: #f1c40f;
  /* Yellow color */
  margin-bottom: 10px;
}

.feature-title {
  font-weight: 700;
  color: #0b1460;
  /* Dark blue */
  margin-bottom: 10px;
  font-size: 20px;
}

.feature-desc {
    font-family: 'AvenirRegular', sans-serif;
  text-align: left;
  font-size: 18px;
  line-height: 23px;font-weight:500;
}

.divider {
  border: 1 px;
}

.box {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 10px 0px;
}

.feature-img img {
  width: 50.973px;
  height: 50px;
}

.feature-title {
 font-size: 21px;
    color: #121b5c;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    margin: 0px;

}

.hiring-process {
  background: radial-gradient(139.12% 80.54% at 82.81% 19.51%, #E7FBFF 28%, rgba(250, 255, 235, 0.70) 70.5%, #FFF 100%);
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.25));
  border-radius: 20px;
  padding: 40px;
  margin: 40 auto;
  text-align: center;
}

/* ======= BASE STYLES (Desktop First) ======= */
.home-video {
  padding: 60px 0;
}



.home-video .video-text h1 {
 color: #000;
text-align: center;
  font-family: "Inter", sans-serif;
font-size: 40px;
font-style: normal;
font-weight: 300;

}

.home-video .video-text p {
    margin: auto;
  color: #000;
text-align: center;
  font-family: 'AvenirRegular';
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
}

.video-wrapper {
  max-width: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 30px 0;
}

.video-wrapper video {
  width: 800px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}


@media (max-width: 768px) {
  .home-video {
    padding: 40px 20px;
  }

  .home-video .video-text h1 {
    font-size: 24px;
  }

  .home-video .video-text p {
    font-size: 16px;
  }

  .video-wrapper {
    padding: 20px 0;
  }

  .video-wrapper video {
    width: 100%;
    border-radius: 12px;
  }
}

.hiring-process h4 {
    font-family: "Inter", sans-serif;
color: #666;
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: normal;
letter-spacing: 3.6px;
text-transform: uppercase;
}

.hiring-process h2 {
   font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 40px;
  line-height: 53px;
}

.hiring-process p {
color: #666;
   font-family: "Inter", sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
}

.img-text p{
    color: #000;
  font-family: 'AvenirRegular';
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 23px; /* 127.778% */
}


.hire-slider card-title{
    color: #666;
font-family: Inter;
font-size: 21px;
font-style: normal;
font-weight: 400;
line-height: normal;
    
}


.process-page steps{
    
    
}


.steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /*padding-top: 50px;*/
}

.step-border {
  flex: 1;
  text-align: left;
  padding: 0 10px;
  position: relative;
}

.step img {
  height: 40px;
  margin-bottom: 20px;
}

.step .dot {
  width: 12px;
  height: 12px;
  background-color: #ffcc00;
  border-radius: 50%;

}



.hiring-text {
  text-align: left;
}

.smart-hiring-process {
  margin: 60px auto;
  padding: 0 20px;
  text-align: left;
}

.smart-hiring-process h4 {
  font-size: 18px;
  color: #121b5c;
  letter-spacing: 3.6px;
  text-transform: uppercase;
  margin-bottom: 0px;
  font-weight: 600;
}

.smart-hiring-process h2 {
  font-size: 40px;
  font-weight: 300;
  margin: 10px 0px;
  color: #363636;
}

.smart-hiring-process p {
  font-size: 16px;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 50px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  position: relative;
}

.step {
  position: relative;
  border-top: 1px dashed #f4b400;
  text-align: left;
}

.step .dot {
  width: 12px;
  height: 12px;
  background-color: #f4b400;
  border-radius: 50%;
  position: absolute;
  top: -6px;
  left: 0;
}

.step h5 {
  color: #E7B400;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  /* 166.667% */
  letter-spacing: 4.8px;
}

.step p {
   font-family: "Inter", sans-serif;
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
  /* 127.778% */
}


.reviews-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.reviews-text h1 {
  font-size: 36px;
  margin: 0;
  color: #222;
}




.reviews-text h2 {
  flex-basis: 100%;
  margin-top: 20px;
  font-size: 18px;
  font-weight: normal;
  color: #444;
}

.slider-box {
  margin-top: 30px;
}

.reviews-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}



.reviews-text {
  text-align: center;
  margin-bottom: 0px;
}

.reviews-text h1 {
  color: #121B5C;
   font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 3.6px;
  text-transform: uppercase;
}

.reviews-text h2 {
  font-size: 20px;
  font-weight: 400;
  color: #666;
  max-width: 700px;
  margin: 20px auto 0;
}





.slider-box {
  border-radius: 15px;
  background: linear-gradient(0deg, #121B5C 1.7%, #3E4890 46.92%, #FFCF3C 100%), linear-gradient(180deg, #D9D9D9 0%, #737373 100%);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.owl-carousel .item {
    
 height: 490px;
border-radius: 20px;
background: #FFF;
box-shadow: 4px 4px 0px 0px rgba(255, 255, 255, 0.40);
  padding: 20px;
}

.owl-carousel .item img {
  width: 176px !important;
  margin-bottom: 15px;
}

.owl-carousel .item h3 {
  color: #666;
  font-family: "Inter", sans-serif;
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.owl-carousel .item h3 span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #666;
}

.owl-carousel .item p {
  color: #000;
  font-family: 'AvenirRegular', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.slider-box h2 {
  color: #FFF;
   font-family: "Inter", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: 53px;
  /* 132.5% */
}

.owl-carousel.owl-drag .owl-item {
  width: 386.667px;
  margin-bottom: 25px;
}

.cta-reviews {
  background: #ffca2a;
  padding: 10px;
      text-decoration: none;
    color: #121b5c;
  text-align: right;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 3.2px;
  text-transform: uppercase;


}

.job-Openings-box {
  border-radius: 15px;
  text-align: center;
  background: #FFF;
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.25));
  margin: 40px 0px;
  padding: 30px 0px;
}

.job-Openings-box h1 {
  color: #000;
  text-align: center;
   font-family: "Inter", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: 53px;
  /* 132.5% */
}

.job-Openings-box p {
  color: #000;
  text-align: center;
  font-family: 'AvenirRegular', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.owl-carousel .blog-theme .item img {
  width: 100%;
}

.article-excerpt-p{
 color: #666;
font-family: "Inter", sans-serif;
font-size: 21px;
font-style: normal;
font-weight: 400;
line-height: normal;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.article-card {
 border-radius: 15px;
background: #FFF;
box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;

}

.about-slider .card-content {
 height: 326px;

}



.card-header {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
}

.engagement-count {
  background: #ef4444;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;

}

.article-title {
  color: #666;
   font-family: "Inter", sans-serif;
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}



.read-more-btn {
  text-decoration: none;
  color: #666;
   font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 3.2px;
  text-transform: uppercase;
}

/*.read-more-btn:hover {*/
/*    color: #4f46e5;*/
/*transform: translateX(4px);*/
/*}*/

.read-more-btn svg {
  transition: transform 0.2s ease;
}


.slider-revievs {
  /*background-image: url("../images/review.background-img.png");*/
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;

}

.jobseekers-reviews-banner{
     background-image: url("../images/jobseekers-reviews-banner.jpg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}


.card-image  {
   padding:18px;
   border-radius:15px;
}



.engagement-overlay {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.5rem;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.engagement-number {
  font-weight: 600;
  font-size: 1.25rem;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #64748b;
}

.nav-arrow:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #334155;
  transform: translateY(-50%) scale(1.1);
}

.nav-arrow-right {
  right: -24px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 10px;
  }

  .articles-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .article-title {
    font-size: 1.125rem;
  }

  .nav-arrow {
    display: none;
  }
}


.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}


/* Loading animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.card-content {
  display: flex;
  flex-direction: column;
  align-items: left;
}

.card-image img {
  max-width: 100%;
  height: auto;
 border-radius:15px;
}

.article-excerpt {
    
 color: #000;

font-family: 'AvenirRegular';
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
}


.video-text {
  border-top: 1px solid grey;


}

.divider {
  margin: 1rem 0;

}


.map-addr {
  display: flex;
  justify-content: space-around;
  padding: 22px 0px;
}

#app {
  background: radial-gradient(359.29% 118.05% at 82.81% 19.51%, #E7FBFF 28%, #FAFFEB 70.5%, #FFF 100%);
}


.stat-card {
 border-radius: 15px;
    /* line-height: 28px; */
    /* padding: 23px 1px 0px 33px; */
    /* width: 240px; */
    /* height: 79px; */
    background-color: #F7F7F7;
    filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.25));
    padding: 15px;
}


}

.stats-panel {
  margin: auto;
}

.map-header {
  text-align: center;
  padding: 10px 0px;
}

.map-header h1 {
  color: #000;
  text-align: center;
   font-family: "Inter", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: 53px;
  /* 132.5% */
}

.map-header p {

  color: #000;
  text-align: center;
  font-family: 'Avenari-regular', Helvetica, Arial, Lucida, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.7;
}


.stat-number {
color: #000;
font-family: "Inter", sans-serif;
font-size: 30px;
font-style: normal;
font-weight: 300;
line-height: 53px; /* 176.667% */
}

/*////about page css/////*/

.advantage-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 60px 0;
  gap: 40px;
  flex-wrap: wrap;
}

.advantage-row.reverse {
  flex-direction: row-reverse;
  ;
}

.advantage-img {
  flex: 1;
  max-width: 500px;
}

.advantage-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.advantage-text {
  flex: 1;
  max-width: 600px;
}

.advantage-text .label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 10px;
}

.advantage-text h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: #222;
}

.advantage-text .bold-text {
  font-weight: 600;
  margin-bottom: 10px;
}

.advantage-text .highlight-title {
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #2c3e50;
}

.features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.org-dev img {
  padding: 40px 0px;
  height: auto;
  width: auto;
  height: auto;
  display: block;
}


.step .p1{
    color: #000;
 font-family: 'AvenirRegular';
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
}


.hr-counter{
    margin:50px 0px;
}


/* Responsive */
@media (max-width: 768px) {
  .advantage-row {
    flex-direction: column;
    text-align: center;
  }

  .advantage-row.reverse {
    flex-direction: column;
  }

  .advantage-img,
  .advantage-text {
    max-width: 100%;
  }

  .features {
    text-align: left;
    max-width: 90%;
    margin: 0 auto 20px;
  }
}



.image-side-about,
.text-side.about {
  flex: 1;
  max-width: 100%;
}



.reverse-desktop {
  flex-direction: row-reverse;
}

/* Mobile: stack content, text first */
@media (max-width: 768px) {

  .image-container,
  .reverse-desktop {
    flex-direction: column;
  }

  .image-side-about,
  .text-side.about {
    max-width: 100%;
  }

  .image-side-about {
    order: 2;
    /* image after text */
  }

  .text-side.about {
    order: 1;
  }
}




.about-bg {

  background-image: url("../images/About-About-ProSapiens.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

}



.proSapiens-advantage h1 {
  color: #121B5C;
   font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 3.6px;
  text-transform: uppercase;
}

.advantage-section {
  display: flex;
  align-items: center;

}

.advantage-section:nth-child(even) {
  flex-direction: row-reverse;
}

.advantage-image {
  flex: 1;
  max-width: 100%;
}

.advantage-image img {
  padding: 40px 0px;
  width: 100%;
  height: auto;
  display: block;
}

.advantage-content {
  flex: 1;
  padding: 0 30px;
}

.advantage-content h2 {
  color: #363636;
   font-family: "Inter", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: 53px;
  /* 132.5% */
}

.advantage-content p {

  color: #000;
   font-family: 'AvenirRegular';
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.6;
}

.img-box img {
  width: auto;
}

.what-we-do{
     color: #000;
  font-family: 'AvenirRegular';
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
}

 .proSapiens p{
    color: #000;
  font-family: 'AvenirRegular';
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
}

.proSapiens {
  background-image: url("../images/about-gredient-bg.png");
  background-repeat: no-repeat;
  padding: 0;
  color: #333;
  background-position: bottom;
  background-position: center;
  background-size: cover;
padding: 133px 0;
}

.job-box {
  background: radial-gradient(139.12% 80.54% at 82.81% 19.51%, #E7FBFF 28%, rgba(250, 255, 235, 0.70) 70.5%, #FFF 100%) !important;
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.25));
  border-radius: 15px;
  text-align: center;

  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.25));
  margin: 40px 0px;
  padding: 30px 0px;
}

.job-box h1 {
  color: #000;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: 53px;
  /* 132.5% */
}

.job-box p {
  color: #000;
  text-align: center;
  font-family: 'AvenirRegular', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}



.footer {
  background: white;
  border-radius: 12px;
  margin: 40px;
  padding: 40px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
}

.footer-col h4 {
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #1B1819;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.logo-col img.logo {
  max-width: 170px;
}

.contact-col .call-button {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid #000;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-col p {
  font-size: 14px;
  margin: 4px 0;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
}




/*learning-development*/

.advantage-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 60px 0;
  gap: 40px;
  flex-wrap: wrap;
}



.advantage-img {
  flex: 1;
  max-width: 500px;
}

.advantage-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.advantage-text {
  flex: 1;
  max-width: 600px;
}

.advantage-text .label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 10px;
}

.advantage-text h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: #222;
}

.advantage-text .bold-text {
  font-weight: 600;
  margin-bottom: 10px;
}

.advantage-text .highlight-title {
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #2c3e50;
}

.features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
  margin-left: 20px;
}





/* Responsive */
@media (max-width: 768px) {
  .advantage-row {
    flex-direction: column;
    text-align: center;
  }

  .advantage-row.reverse {
    flex-direction: column;
  }

  .advantage-img,
  .advantage-text {
    max-width: 100%;
  }

  .features {
    text-align: left;
    max-width: 90%;
    margin: 0 auto
  }
}





/*end*/



.social-icons img {
  width: 24px;
  height: 24px;
}

.footer-links a {
  margin: 0 5px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

.footer-sec {
  background-image: url("../images/footer-bg.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
}

.footer {
  background-color: white;
  border-radius: 12px;
  padding: 40px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin: auto;
}