*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.logo-icon {
  color: var(--text-cyan);
  font-size: 1.7rem;
  font-weight: bold;
  border: 2px solid var(--text-pink);
  border-radius: 5px;
  padding: 2px 7px;
  font-family: monospace;
  /* margin-left: 2rem; */
}

.text-pink {
  color: #36a2d5;
}

.bg-pink {
  background-color: #36a2d5;
}

.hero-section .container {
  max-width: 800px;
}

/* second section  */

.one-wrapper {
  padding: 10px 100px 150px 100px;
  /* gap: 20px; */
  background-color: #ffffff;
  position: relative;
}

.box {
  position: relative;
}

.box .imgone {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 0 0 0;
}

.box img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.text-box {
  position: absolute;
  bottom: -50px;
  right: -50px;
  padding: 20px;
  color: white;
  width: 200px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}



.text-box-two {
  position: absolute;
  bottom: -50px;
  left: -30px;
  padding: 20px;
  color: white;
  width: 200px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.blue-box {
  background-color: #36a2d5;
}

/* 
.box .second_content::after {
  content: "";
  position: absolute;
  display: block;
  width: 1180px;
  height: 150px;
  background-color: transparent;
  border-radius: 0 0 0 40px;
  border: 3px solid #00bde3;
  border-top: none;
  border-right: none;
  left: 60px;
  bottom: -150px;


} */



.teal-box {
  background-color: #003f3c;
}

.text-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.text-box-two h3 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.4;
}


.text-box button {
  background-color: white;
  color: black;
  padding: 8px 16px;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.text-box-two button {
  background-color: white;
  color: black;
  padding: 8px 16px;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}


.text-box button:hover {
  background-color: #ddd;
}

.text-box-two button:hover {
  background-color: #ddd;
}


/* third section */


.section-r {
  padding: 40px 0px ;
  /* background-color: #e8e5e5; */
  margin: 4.5rem 0;
}

.content-wrapper-r {
  display: flex;
  align-items: center;
  justify-content: center;
  /* max-width: 1200px; */
  margin: auto;
  /* gap: 40px; */

}

.image-container-r {
  flex: 1;
  border-radius: 180px 0 0 180px;
  /* overflow: hidden;  */
  overflow: hidden;

}

.image-container-r img {
  width: 100%;
  height: auto;
}

.text-content-r {
  flex: 1;
  padding-right: 10px;
}

.heading-r {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 30px;
}

.line1-r {
  background-color: #00464b;
  color: white;
  font-size: 40px;
  font-weight: 600;
  padding: 16px 25px;
  display: inline-block;
  /* margin-left: -100px; */
  margin-left: -50px;
  position: relative;
  font-family: var(--font-primary);
}

.hero_content {
  position: relative;
  font-family: var(--font-primary);
  /* overflow: hidden ; */
}

.hero-section .first_line {
  width: fit-content;
  line-height: 1.2;
}

.hero-section .first_line::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  width: 1500px;
  height: 2px;
  background-color: #0c5760;
  /* z-index: -1; */
  z-index: 1;
}

.hero_container p {
  width: 60%;
  font-size: 1.1rem;
  margin-left: 120px;
  font-family: var(--font-secondary);
}

.line2-r {
  background-color: var(--bg-pink);
  color: white;
  font-size: 40px;
  font-weight: 600;
  padding: 10px 25px;
  display: inline-block;
  margin-top: -1px;
  /* margin-left: -20px; */
  font-family: var(--font-primary);
}


.line3-r {
  background-color: var(--bg-pink);
  color: white;
  font-size: 40px;
  font-weight: 600;
  padding: 10px 25px;
  display: inline-block;
  margin-top: -1px;
  margin-left: 100px;
  position: relative;
  font-family: var(--font-primary);
}

.hero_content .second_line::after {
  content: "";
  position: absolute;
  /* display: none; */
  width: 800px;
  height: 200px;
  /* background: url('./assests/img/main-banner-right-line.png') center center no-repeat;
  background-size: 100% 100%;  */
  border-radius: 0 0 0 50px;
  background-color: transparent;
  border: 2px solid var(--bg-pink);
  border-top: none;
  border-right: none;
  bottom: -132px;
  right: -798px;
  /* z-index: -1; */
  z-index: 1;
}

.para-r {
  font-size: 17px;
  color: #070707;
  margin-left: 40px;
  margin-bottom: 20px;
  line-height: 1.5;
  text-align: center;
}

.hero_container-o {
  text-align: center;
}

.btn-r {
  text-decoration: none;
  padding: 10px 20px;
  border: 2px solid #36a2d5;
  background-color: transparent;
  color: #36a2d5;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  display: inline-block;
  margin: 20px auto 0;
  transition: all 0.3s ease;
}

.hero_container-o .btn-r:hover {
  background-color: #36a2d5;
  color: #fff;
}


@media (max-width: 1024px) {
  .hero_content .second_line::after {
    display: none;
    height: 200px;
    bottom: -132px;
    right: -230px;
    width: 230px;
  }
}

@media (max-width: 1023px) {
  .hero_content .second_line::after {
    display: none;
  }
}


/* fourth */

.features-section-f {
  display: flex;
  justify-content: center;
  gap: 20px;
  /* max-width: 1200px; */
  margin: 70px auto;
  padding: 0 ;

}

.feature-box-f {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  border-right: 1px solid #003f3c;
  padding-right: 30px;
  width: 100%;
}

.feature-box-f:last-child {
  border-right: none;
}

.feature-heading-f {
  font-size: 20px;
  font-weight: 700;
  color: #003f3c;
  margin-bottom: 20px;
}

.feature-text-f {
  color: #003f3c;
  line-height: 1.6;
  margin-bottom: 25px;
}

.feature-button-f {
  display: inline-block;
  padding: 10px 25px;
  border: 2px solid #36a2d5;
  color: #36a2d5;

  border-radius: 25px;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.feature-button-f:hover {
  background-color: #36a2d5;
  color: white;
}

.industry-title-l {
  position: relative;
  display: inline-block;
  z-index: 4;
}

/* fifth section  */


.industry-container-l {
  /* max-width: 1400px; */
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center; 
  position: relative;  
}
.industry-container-l.icl::before{
  content: "";
  position: absolute;
  top:60px;
  left: -20px;
  width: 50%;
  height: 730px;
  background-color: transparent;
  border: 3px solid #23c6e0;
  border-style: solid none solid solid; 
  border-radius: 50px 0 0 50px ; 
  z-index: 1;
  pointer-events: none;
  /* display: none; */
}
.industry-container-l.icl::after{
  content: "";
  position: absolute;
  top: -230px;
  right: -20px;
  width: 50%;
  height: 300px;
  background-color: transparent;
  border: 3px solid #23c6e0;
  border-style: none solid solid none; 
  border-radius: 0 0 50px 0 ; 
  z-index: 1;
  /* display: none; */
}

.industry-header-l {
  margin-bottom: 10px;
}
.industry-header-l h2{
  position: relative;
  z-index: 2;
  font-size: 40px;
}

.industry-title-l {
  display: inline-block;
  /* background-color: #003f3c; */
  color: white;
  padding: 8px 25px;
  font-weight: 600;
  border-radius: 4px;
}

.industry-video-l {
  margin: 30px auto;
  max-width: 100%;
}

.industry-description-l {
  max-width: 700px;
  margin: 30px auto;
  /* font-size: 1rem; */
  font-size: 17px;
  color: #003f3c;
  line-height: 1.6;
}

.industry-header-l {
  position: relative;
}

.industry-header-l 
.industry_content_l::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 5px;
  background-color: #003f3c;
  width: 100%;
  height: 100%;
  display: block;
  z-index: -1;
}



.industry-header-l .industry_content_l::before {
  content: "";
  position:absolute;
  display: none;
  height: 725px;
  max-width: 800px;  
  width: 140%;
  background-color: transparent;
  border-radius: 50px 0 0 50px;
  border: 3px solid  #23c6e0;
  left: -110%;
  border-right: none;
  /* border-bottom: none; */
  pointer-events: none;
  top: 20px;
  z-index: -1 ;
}
.text-dark-blue{
  position: relative;
  z-index: 3;
  pointer-events: none;  
}
.text-dark-blue::before{
  content: "";
  position:absolute;
  /* display: none; */
  height: 100%;    
  width: 100%;
  top: 0;
  left: 0;
  background-color: #003f3c;
  border-radius: 5px;  
  z-index: -1 ;
}

.text-dark-blue::after{
  content: "";
  position:absolute;
  display: none;
  height: 918px;
  max-width: 360px;  
  width: 120%;
  background-color: transparent;
  border-radius: 0 50px 50px 0px;
  border: 3px solid  #23c6e0;
  right: -55%;
  border-left: none;
  /* border-bottom: none; */
  top: 25px;
  z-index: -2 ;
}
.container.tdb-lines{
  position: relative;
}
.container.tdb-lines::before{
  content: "";
  position:absolute; 
  height: 915px;
  max-width: 100%;  
  width: 600px;
  background-color: transparent;
  border-radius: 0 50px 50px 0px;
  border: 3px solid  #23c6e0;
  right: -20px;
  border-left: none;
  /* border-bottom: none; */
  top: 25px;
  z-index: 1 ;
 
}


.industry-icons-section-l {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.industry-icons-l {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
}

.industry-icon-item-l {
  width: 200px;
  text-align: center;
  padding: 30px 15px;
  border-radius: 15px;
  transition: all 0.3s ease;
  background: #fff;
}

.industry-icon-item-l img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.industry-icon-item-l p {
  font-size: 16px;
  font-weight: 600;
  color: #003f3c;
  line-height: 1.4;
  transition: color 0.3s ease;
}

/* Hover effect */
.industry-icon-item-l:hover {
  background: #fff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.07);

}

.industry-icon-item-l:hover p {
  color: #36a2d5;
}

.industry-icon-item-l:hover img {
  filter: brightness(0) saturate(100%) invert(57%) sepia(44%) saturate(608%) hue-rotate(172deg) brightness(91%) contrast(92%);
}

/* Active item styling */
.industry-icon-item-l.active-l {
  background: #fff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.07);
}

.industry-icon-item-l.active-l p {
  color: #36a2d5;
  text-decoration: underline;
}

.industry-icon-item-l.active-l img {
  filter: brightness(0) saturate(100%) invert(26%) sepia(100%) saturate(742%) hue-rotate(210deg) brightness(95%) contrast(97%);
}


/* cards section */

.section-m .card-content::after {
  content: "";
  position: absolute;
  display: none;
  width: 550px;
  height: 230px;
  background-color: transparent;
  border-radius: 0 50px 0 0;
  border: 3px solid #00bde3;
  border-left: none;
  border-bottom: none;
  left: 210px;
  top: 60px;


}


.section-m {
  text-align: center;
  padding: 10px 10px 40px;
  background-color: #003f42;
  position: relative;
  margin-top: 300px;
}

.heading-m {
  display: inline-block;
  background-color: #00bde3;
  color: white;
  font-size: 40px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-family: var(--font-primary);
  position: relative;
  top: -300px;
  z-index: 2;


}

.subheading-m {
  color: rgb(5, 5, 5);
  margin-bottom: 60px;
  position: relative;
  top: -280px;
  z-index: 2;
}

.cards-m {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  top: -260px;
}

.card-m {
  background-color: white;
  width: 260px;
  border-radius: 100px 0 0 0;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card-m:hover {
  transform: translateY(-10px);
}

.card-img-m img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.card-m:hover .card-img-m img {
  filter: grayscale(0%);
}

.card-content-m {
  padding: 25px;
  text-align: left;
}

.card-date-m {
  font-style: italic;
  font-size: 14px;
  margin-bottom: 8px;
}

.card-title-m {
  font-size: 16px;
  font-weight: bold;
  color: #003f42;
  transition: color 0.3s ease;
}

.card-m:hover .card-title-m {
  color: #00bde3;
}

.cta-wrapper-m {
  margin-top: -200px;
}

.cta-btn-m {
  background: transparent;
  color: #fff;
  padding: 10px 25px;
  border: 2px solid #fff;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
}

.cta-btn-m:hover {
  background: #36a2d5;
  border-color: #36a2d5;
  color: #fff;
}


/* trusted */
.trusted-section-w {
  padding: 60px 20px;
  text-align: center;
  /* background-color: white; */
  margin-bottom: 10px;
  padding-bottom: 20px;
}

.trusted-title-w {
  /* font-size: 1.9rem; */
  font-size: 40px;
  font-weight: 600;
  color: #003c3c;
  margin: 2rem 0;
  font-family: var(--font-primary);
}

.trusted-logos-w {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.trusted-logos-w img {
  max-height: 200px;
  max-width: 170px;
  opacity: 0.8;
  border-radius: 15px;
  transition: opacity 0.3s ease;
}

.trusted-logos-w img:hover {
  opacity: 1;
}

/* about us */

.one-wrapper_one .imgone {
  border-radius: 100px 0 0 0;
  object-fit: cover;
  width: 100%;  
}

.wrapper-heading {  
  font-weight: 600;
  font-size: 35px;
  margin: 1rem 0;
  font-family: var(--hero-font);
  position: relative;
  z-index: 1;
}

.wrapper-heading span {
  background-color: var(--border-blue-gray);
  color: var(--text-white);
  padding: 0 10px;
  display: block;
  width: fit-content;
  padding-inline: 20px;
}

.wrapper-heading span:not(:first-child) {
  background-color: var(--bg-pink);
  margin-left: 30px;
}

.candidate_heading span:not(:first-child) {
  margin-left:0px;
}
.one-wrapper_two {
  padding: 30px 50px;
  color: var(--text-white);
  gap: 0;
   background-color: var(--fill-cyan);
}

/* .second-about .one-wrapper_two::after {
  content: "";
  position: absolute;
  display: block;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: var(--fill-cyan);
  z-index: -1;
} */

/* candidate Hero */
.one-wrapper_two .wrapper-heading {
  display: flex;
  flex-direction: column;  
  align-items: flex-start; 
  line-height: 1.4;
}

.one-wrapper_two .wrapper-heading span {
  display: block;
  width: fit-content;
  margin: 0; 
  padding-inline: 20px;
}

.one-wrapper_two .wrapper-heading span:first-child {
  background-color: var(--border-blue-gray);
  color: var(--text-white);
}

.one-wrapper_two .wrapper-heading span:last-child {
  background-color: var(--bg-pink);
  margin-left: 0; 
}

.candi-hero {
  position: relative;
}

.candi-hero img{
  max-height: auto;
  height:510px;
  width: 100%;
  object-fit: cover;
}
.candi-hero .one-wrapper-two {
  padding: 10px 30px;
  color: var(--text-white);
  background-color: var(--fill-cyan);
}

.candi-content 
.wrapper_content p {
  width: 100%;
}

.tm-container {
  padding-block: 6rem;
  padding-inline:0px;
}
.tm-container_pb {
  padding-bottom: 6rem;
}
.tm-container 
.wrapper-heading span {
   margin-left: 0;
}

.tm-container 
.wrapper_content p {
  width: 90%;
}

.tm-left {
  position: relative;
  right: 0px;
  padding: 30px 40px; 
  /* display: flex;
  flex-direction: column;
  justify-content: space-evenly;  */
  background-color: rgba(112, 112, 112, 0.177);  
  /* height: 100%;  */
}

.tm-left p {
  margin-top: 10px; 
  line-height: 1.8; 
}
.tm__l p{
 width: 75%;
 margin-top: 10px; 
 line-height: 1.9;
}

.tm-right {
  position: relative;
}

.tm-right figure {
  margin: 0;
  padding: 0;
}

.tm-right img {
  height: 100%;
  width: 100%;
  border-radius: 0 100px 0 0;
  object-fit: cover;
}
.ab-image img{
  width: 100%;
  height: 535px; 
  object-fit: cover;
}

@media (min-width: 1200px) {
  /*.tm-container img {
     height: 512px; 
  }*/
}
/* 
@media (max-width: 1300px) {
  .tm-container img {
    height: 512px;
  }
} */






.fb-column:hover {
    transform: translateY(-10px);
}


.fb-header {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fb-column {
    transition: transform 0.9s ease;
  margin-block: 3rem;
  text-align: center
}

.fb-column span {
  font-size: 2rem;
  color: var(--border-blue-gray);
}

.fb-column h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-block: 1rem;
}

.sb-content p {
  font-weight: 400;
  color: var(--text-gray);
  width: 80%;
  margin: auto;
}

.tm-left.ab-wrapper::after {
  display: none;
}

.ab-wrapper_row {
  background-color: var(--bg-light-gray);
  position: relative;
  /* z-index: -1; */

}
/* .center-text {
    text-align: center;
    max-width: 600px; 
    margin: 0 auto;   
    padding: 20px;
}

.center-text p {
    margin-bottom: 1rem;
    font-size: 17px;
    line-height: 1.6; 
}

 */

.center-text p {

  max-width: 600px;       
    font-size: 17px;
  line-height: 1.7;
  margin-bottom: 1.3rem;
  width: 95%;

}


/* .c-text {
  text-align: center; 
} */

.c-text p {
  margin: 0 0 1.5rem 0; 
  font-size: 17px;          
  line-height: 1.7;         
  width: 100%;   
  max-width: 800px;     
  /* text-align: justify;       */
  /* text-align-last: center;    */
}

/* .ca-text {
  text-align: center; 
} */
.ca-text p:first-child{
  font-weight: 500;
}

.ca-text p {
  /* margin: 0 auto 1.5rem auto;  */
  font-size: 18px;          
  line-height:2;         
  max-width: 800px;        
  /* text-align: justify;       */
  /* text-align-last: center;    */
}
.wrapper_content p {
  /* font-size: 1rem; */
  font-size: 17px;
  font-weight: 400;
  width: 100%;
  margin-bottom: 1.2rem;
  justify-content: center;
  max-width: 700px;
}

.join-team {
  padding: 40px 0;
  position: relative;
  background: linear-gradient(to right, rgba(0, 57, 60, 0.9),
      rgba(0, 57, 60, 0.9)), url("./assets/images/bg.jpeg");
  background-size: 100% 100%;
  margin-bottom: 0.1rem;
  padding-inline: 0px;
}


.join-team-content {
  text-align: center;
  color: var(--bg-light-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
}

.join-team-content h3 {
  margin-top: 1.5rem;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.join-team-content p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--bg-light-gray);
  margin-bottom: 1rem;
  width: 89%;
}

.join-team-content a {
  text-decoration: none;
  color: var(--bg-pink);
  font-weight: 600;
  margin: 1.5rem 0;
}

.ab-last_container {
  margin-top: 25rem;
}

/* bt-text section */


.bt-service {
  background: linear-gradient(to right,
      rgba(1, 1, 1, 0.8),
      rgba(0, 0, 0, 0.8)),
    url('assets/images/bubble-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;

}

.bt-service h2 {
  font-size: 2.8rem;
  font-weight: 600;
  width: 80%;
  color: var(--bg-light-gray);
}

.bt-service p {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.7;
  width: 75%;
  color: var(--text-gray);
}

.bt-service-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 5rem 0;
}

/* Animation Keyframes */
@keyframes slideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ============service-offers ============ */
.service-offer_container {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0.8)), url("./assets//images/waves.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-offers {
  padding: 3.5rem 1rem;

}

.service-offers h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-block: 2.2rem;
  position: relative;
}

.service-offers h3::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -0.9rem;
  width: 100px;
  height: 4px;
  background-color: var(--border-blue-gray);
  border-radius: 10px;
}

.service-offers p {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.service-offers ul {
  list-style: disc;
  ;
}

.service-offers li {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1rem;
}


/* ========== #job-listings ========== */
.job-listings div.job-card-job {
  position: relative;
}

.job-listings div.job-card-job>div:last-child a {
  text-wrap: nowrap;
  font-size: 14px;
}

/* ==========blog========== */

.blog-main .card-title {
  font-size: 1.25rem;
  line-height: 1.4;
}

.blog-main .card-text {
  font-size: 0.95rem;
}

.blog-search input:focus {
  box-shadow: none;
  border-color: #ced4da;
}

.blog-sidebar img {
  object-fit: cover;
}

/* logo page */


.login-container {
  max-width: 1000px;
  margin: 50px auto;
  background-color: #fff;
  display: flex;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.left-section {
  width: 45%;
  background-image: url('https://images.unsplash.com/photo-1517430816045-df4b7de11d1d?ixlib=rb-4.0.3&auto=format&fit=crop&w=987&q=80');
  background-size: cover;
  background-position: center;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.left-section .signup-box {
  background-color: rgba(0, 63, 67, 0.9);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  width: 100%;
}

.left-section .btn {
  background-color: white;
  color: #003f43;
  border: none;
  font-weight: bold;
}

.right-section {
  width: 55%;
  padding: 50px 40px;
}

.brand-logo {
  font-size: 28px;
  color: #003f43;
  font-weight: bold;
}

.brand-logo span {
  color: #003f43;
}

.form-control {
  border-radius: 25px;
  padding: 10px 20px;
  border: 2px solid #003f43;
}

.btn-login {
  background-color: white;
  color: #003f43;
  border: 2px solid #003f43;
  border-radius: 25px;
  font-weight: bold;
  width: 100%;
}

.btn-login:hover {
  background-color: #003f43;
  color: white;
}

.or-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  color: #aaa;
}

.or-divider::before,
.or-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ddd;
  margin: 0 10px;
}

.btn-linkedin {
  background-color: #0077b5;
  color: white;
  width: 100%;
  border-radius: 25px;
  font-weight: bold;
}

.forgot-password {
  display: block;
  text-align: right;
  font-size: 14px;
  color: #003f43;
  margin-top: 10px;
}

/*=========== hero section employer =========== */
.employer-hero {
  padding: 12rem 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url("./assets/images/Employers-Bg.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.employer-hero h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
}

.employer-hero h1::before {
  content: "";
  display: block;
  width: 4rem;
  height: 5px;
  position: absolute;
  left: 0;
  top: -30%;
  background-color: #00bde3;
  margin-bottom: 1rem;
}

.employer-hero p {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 2rem;
  width: 75%;
}

/* Recruitment and Staffing */
.recruitment-section {
  padding: 4rem 0;
}

.recruitment-content {
  align-items: center;
}

.recruitment-content h2 {
  font-size: 2.7rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
}

.recruitment-content h2::before {
  content: "";
  display: block;
  width: 4rem;
  height: 5px;
  position: absolute;
  left: 0;
  top: -30%;
  background-color: #00bde3;
  margin-bottom: 1rem;
}

.recruitment-content h2 span {
  color: #00bde3;
}

.recruitment-content p {
  font-size: 1.1rem;
  font-weight: 400;
}

.recruitment-box_one {
  align-items: center;
}

.recruitment-box_one h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}

.recruitment-box_one h3::before {
  content: "";
  display: block;
  width: 4rem;
  height: 5px;
  position: absolute;
  left: 0;
  top: -30px;
  background-color: #00bde3;
  margin-bottom: 1rem;
}

.recruitment-box_one p {
  font-size: 1.1rem;
  font-weight: 400;
  width: 80%;
}

.recruitment-box_one img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  transition: all 0.5s ease-in-out;
}

.recruitment-box_one img:hover {
  transform: scale(1.1);
  transition: all 0.5s ease-in-out;
}


/* mobile view (≤1024px) */
@media (max-width: 1024px) {
  .hero_content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .industry-title-l{
    font-size: 2rem;
  }

  .hero-section .first_line {
    /* font-size: 2rem; */
    padding: 10px 20px; 
  }
  .line1-r{
    font-size: 2rem;
  }
  .candi-hero img{
    height:350px;  
  }
  .line-wrapper {
    display: none;
  }
   .line-wrapper .line-top, 
   .line-wrapper .line-right {
    display: none;
  }
  .line-wrapper .line-top::after,
  .line-wrapper .line-right::after {
    display: none;
  }
  .line-wrapper .line-top::before,
  .line-wrapper .line-right::before {
    display: none;
  }
  .industry-header-l .industry_content_l::before{
    display: none;
  }  

  .hero_container {
    padding: 0 2rem;
  }
  .tm-left::after {
    width: 100%;
  }

  .bt-service h2 {
    font-size: 2.5rem;
    width: 80%;
  }

  .bt-service p {
    font-size: 1.2rem;
    width: 75%;
  }

}

/* @media (max-width: 992px) {
  .header__menu {
    display: none;
  }

  .nav-toggle-z {
    display: block;
  }
} */

/* tablet view (≤768px) */
@media (max-width: 768px) {
  .hero_container {
    text-align: center;
    padding: 0 0rem;
  }

  .line1-r,
  .line3-r {   
    padding: 10px 15px;    
    margin-left: 0 !important;
  }

  .line1-r {
    margin-bottom: 0px;
  }

  .line3-r {
    margin-top: 2px;
    font-size: 2rem;
    padding: 4px 15px;

  }
  

  .hero-section .first_line .hero_container p {
    width: 100%;
    margin: 0 auto;
    font-size: 0.5rem;
  }

  .hero_content .second_line::after {
    display: none;
    /* Hide the right-side decorative border */
  }

  .text-pink {
    display: inline-block;
    margin-top: rem;
    font-size: 1rem;
  }

  .section-m .card-content::after {
    display: none;
  }

  .hero-section .first_line::before {
    display: none;
  }
  

  .bt-service h2 {
    font-size: 2rem;
    width: 95%;
  }

  .bt-service p {
    font-size: 1.2rem;
    width: 90%;
    line-height: auto;
  }

  .bt-service-content {
    margin: 3rem 0;
  }

  .job-listings div.job-card-job:first-child h5 {
    font-size: 16px;
  }

  .job-listings div.job-card-job:first-child p {
    font-size: 14px;
  }

  .job-listings div.job-card-job>div:last-child a {
    text-wrap: nowrap;
    font-size: 14px;
  }

  .recruitment-box_one p {
    width: 100%;
  }

}

/* second */
.heading-r {
  display: none;
}

.content-paras {
  margin-block: 3rem;
}

/* mobile & small tablets (≤ 768px) */
@media (max-width: 768px) {
  .one-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 25px 10px;
  }

  .box {
    width: 90%;
    height: auto;
    max-width: 90vw;
  }

  .box img,
  .box .imgone {
    height: 320px;
  }

  .box .imgone {
    border-radius: 0px;
  }

  .text-box,
  .text-box-two {
    width: 140px;
    padding: 10px;
  }
  .wrapper-row-lines{
    gap: 2rem;
    justify-content: center;
  }
  .trusted-section-w.ts-w{
    display: none;
  }

  .box .text-box {
    right: 0px;
    bottom: -1px;
    width: 173px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .box .text-box-two {
    left:-0px;
    bottom: -1px;
    width: 173px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .box .second_content::after {
    display: none;
    /* hide big border on mobile to prevent layout issue */
  }

  .content-wrapper-r {
    flex-direction: column;
    gap: 20px;
  }

  .heading-rl {
    display: none;
    background-color: red;
  }

  .heading-r {
    display: flex;

    margin-top: -90px;
  }

  .line2-r {
    margin-left: 0;
  }


  .content-paras p {
    width: 90%;
    text-align: left;

  }

  .industry-title-l {
    font-size: 2rem;
  }

  .industry-video-l iframe {
    width: 100%;
    height: 50px;

  }

  .section-r {
    margin-top: 6rem;
  }

  .image-container-r {
    height: 350px;
    position: relative;
  }

  .image-container-r img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* fourth mob v */
@media (max-width: 768px) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 20px !important;
  }

  .swiper-f {
    margin-top: 30px;
  }

  .feature-box-f {
    text-align: center;
    padding: 20px 10px;
  }

  .feature-heading-f {
    font-size: 18px;
    font-weight: 600;
    color: #003f3c;
    margin-bottom: 10px;
  }

  .feature-text-f {
    font-size: 14px;
    line-height: 1.5;
    color: #003f3c;
    margin-bottom: 15px;
    width: 75%;
  }

  .feature-button-f {
    display: inline-block;
    padding: 8px 18px;
    border: 2px solid #36a2d5;
    color: #36a2d5;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
  }

  .feature-button-f:hover {
    background-color: #36a2d5;
    color: #fff;
  }

  .swiper-button-prev,
  .swiper-button-next {
    font-size: 20px !important;
    width: 28px;
    height: 28px;
    background: transparent;
    color: #36a2d5;
  }

  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    color: #003f3c;
  }
}

@media (max-width: 768px) {
  .features-section-f {
    display: none;

  }

  .features-slider-sl {
    position: relative;
    max-width: 90%;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
    text-align: center;
    /* Centering the content */
  }

  .slider-wrapper-sl {
    overflow: hidden;
  }

  .slide-track-sl {
    display: flex;
    transition: transform 0.4s ease-in-out;
  }

  .slide-item-sl {
    min-width: 100%;
    box-sizing: border-box;
    padding: 2sss0px;
    background: #fff;
    text-align: center;
    /* Center all text and elements */
  }

  .feature-heading-sl {
    font-size: 20px;
    font-weight: 700;
    color: #003f3c;
    margin-bottom: 15px;
  }

  .feature-text-sl {
    color: #003f3c;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .feature-button-sl {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #36a2d5;
    color: #36a2d5;
    border-radius: 25px;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
  }

  .feature-button-sl:hover {
    background-color: #36a2d5;
    color: #fff;
  }

  .slider-btn-sl {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    /* No background */
    color: #36a2d5;
    border: none;
    /* No border */
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
  }

  .slider-btn-sl:hover {
    color: #003f3c;
  }

  .prev-sl {
    left: 5px;
  }

  .next-sl {
    right: 5px;
  }
}

/* fifth resp */


@media (max-width: 768px) {
  .industry-video-l {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px auto;
    max-width: 100%;
  }

  .industry-video-l iframe {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .industry-icons-l {
    display: none;
    /* Hide desktop icons */
  }

  .industry-header-l .industry_content_l::after,
  .industry-header-l .industry_content_l::before {
    display: none;
  }

  .industry-description-l {
    margin-bottom: 10px !important;
    /* Less space below paragraph */
  }

  .industry-icons-slider-wrap-m {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px !important;
  }

  .industry-icons-slider-m {
    overflow: hidden;
    width: 90%;
  }

  .icons-track-m {
    display: flex;
    transition: transform 0.4s ease-in-out;
    gap: 15px;
  }

  .icon-slide-m {
    flex: 0 0 80%;
    box-sizing: border-box;
    background: #f2eeee;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(210, 206, 206, 0.07);
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .icon-slide-m img {
    width: 40px;
    height: 40px;
    display: block;
    margin: 0 auto 10px;
  }

  .icon-slide-m p {
    font-size: 15px;
    font-weight: 600;
    color: #003f3c;
    line-height: 1.4;
    margin: 0;
  }

  .icon-prev-btn-m,
  .icon-next-btn-m {
    background: none;
    border: none;
    color: #36a2d5;
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
    z-index: 2;
  }

  .icon-prev-btn-m {
    margin-right: 5px;
  }

  .icon-next-btn-m {
    margin-left: 5px;
  }
}


/* footer base styling */
footer {
  background-color: #1A4D4F;
  padding: 3rem 2rem;
  color: #fff;
}
.footer-input {
  display: flex;
  margin-top: 2rem;
}
.footer-input input {  
  padding: 0.5rem 1rem;
  border: 1px solid #fff;
  border-radius:  5px 0 0 5px;
  background-color: transparent;
  color: #fff;  
}
.footer-input button {
  padding: 0.5rem 1rem;
  border: 1px solid #fff;
  border-left: none;
  border-radius: 0 5px 5px 0px;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
}
.footer-input button:hover {
  background-color: #fff;
  color: #1A4D4F;
}

.footer__primary {
  row-gap: 2rem;
}
.footer-about p{
  font-size: 15px;
}

.footer-about img {
  width: auto;
  margin-bottom: 1rem;  
}
.footer-contact p {
  margin-bottom: 0.5rem;
}
.footer-subscriber p{
  font-size: 14px;
}
.footer-about a span{
  color: #62c9f9;
  font-weight: 600;
  font-size: 2.2rem;
  position: relative;
  z-index: 2;
}
.footer-about a{
  position: relative;
}
.footer-about a span:last-child{
  color: #afe6ffaa;
  display: block;
  position: absolute;
  font-size: 3.5rem;
  left: -50px;
  top: -10px;
  opacity: 0.1;
  z-index: 1;
}


/* navigation list */
.footer__primary nav ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* link styles */
.footer__primary nav a {
  text-decoration: none;
  color: #fff;
  padding-bottom: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer__primary nav a:hover {
  text-decoration: underline;
}

/* first item special style */
.footer__primary nav li:first-child a {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: inline-block;
  position: relative;
  color:#62c9f9;
}

.footer__primary nav li:first-child a::before {
  content: "";
  position: absolute;
  left: 0;
  top: -10px;
  width: 100%;
  height: 1px;
  background-color: #fff;
}


#backToTop {
	position: fixed;
	bottom: 40px;
	right: 30px;
	z-index: 999;
	font-size: 20px;
	background-color: var(--bg-dark-cyan-2); /* ya koi bhi brand color */
	color: #fff;
	border: none;
	padding: 7px 15px;
	border-radius: 10%;
	cursor: pointer;
	display: none; /* hidden by default */
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
  }
  
  #backToTop:hover {
	background-color: #337ab7; /* hover color */
  }

  .copyright{
    background-color: var(--fill-cyan);
    color: #fff;
    padding: 10px;
    text-align: var(--bg-light-gray);
  } 
  .copyright p{
    margin: 0;
    font-size: 14px;
  } 
  .social-icons a{
    color: #fff;
    font-size: 20px;
    margin-left: 15px;
    display: inline-block;
    transition: all 0.3s ease;
  }
  .social-icons a:hover{
    color: var(--bg-pink);
  }

@media (max-width: 768px) {
  .footer__primary {
    flex-wrap: wrap;
  }

  .footer__primary .col {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .footer__primary nav li:first-child a {
    font-size: 1.1rem;
  }
}

footer::after {
  content: "";
  display: block;
  height: 0;
  margin: 0;
}

/* trusted resp */
/* mobile slider style — show only on small screens */
@media (max-width: 767px) {
  .swiper-trusted-w {
    width: 100%;
  }
  

  .swiper-trusted-w .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-trusted-w img {
    height: auto;
    max-width: 100%;
    border-radius: 12px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
  }
  
  .swiper-trusted-w img:hover {
    opacity: 1;
  }

  .swiper-button-next,
  .swiper-button-prev {
    color: #36a2d5;
    width: 12px;
    height: 12px;
    top: 45%;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 12px;
  }
  .hero-caption-m p{
    display: none;
  }
  .second-about .row{
    justify-content: center;
  }

 .tm-container{
  padding: 1rem;
 } 
 .center-text p,
 .c-text p{
  width: 100%;
  text-align: start;
 }
}

/* hide mobile slider and heading on desktop */
@media (min-width: 768px) {

  .mobile-slider-container,
  .mobile-slider-container * {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
  }
}

/* hide desktop grid on mobile */
@media (max-width: 767px) {
  .trusted-logos-w {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
  }
}

/* hide desktop heading on mobile */
@media (max-width: 76px) {
  .trusted-section-w .trusted-title-w {
    display: none !important;
  }

  /* add spacing below mobile slider */
  .mobile-slider-container {
    margin-bottom: 30px;
    /* Adjust if needed */
  }
}

/* desktop hide slider and its heading  */
@media (min-width: 768px) {

  /* Hide swiper + arrows + heading (sibling p tag) */
  .swiper-trusted-w,
  .swiper-trusted-w .swiper-wrapper,
  .swiper-trusted-w .swiper-button-next,
  .swiper-trusted-w .swiper-button-prev,
  .swiper-trusted-w+.swiper-button-next,
  .swiper-trusted-w+.swiper-button-prev,
  .swiper-trusted-w~.trusted-title-w,
  .swiper-trusted-w::before,
  .swiper-trusted-w::after,
  .trusted-section-w+.md\\:hidden {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
  }
}


/* ===== mobile slider visibility ===== */
@media (min-width: 768px) {

  /* hide slider completely on desktop/tablet */
  .swiper-f,
  .swiper-f .swiper-wrapper,
  .swiper-f .swiper-slide,
  .swiper-f .swiper-button-next,
  .swiper-f .swiper-button-prev {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
  }
}

/* fifth mob */
@media (max-width: 767px) {
  .swiper-icon-l {
    width: 100%;
  }

  .swiper-icon-l .swiper-slide {
    display: flex;
    justify-content: center;
  }

  .swiper-icon-l .industry-icon-item-l {
    width: 160px;
    text-align: center;
    padding: 20px 10px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    background: #fff;
  }

  .swiper-icon-l .industry-icon-item-l img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }

  .swiper-icon-l .industry-icon-item-l p {
    font-size: 14px;
    font-weight: 600;
    color: #003f3c;
    line-height: 1.4;
  }

  .swiper-button-next,
  .swiper-button-prev {
    color: #36a2d5;
    width: 22px;
    height: 22px;
    top: 45%;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 14px;
  }
}

@media (min-width: 768px) {

  .swiper-icon-l,
  .swiper-icon-l .swiper-wrapper,
  .swiper-icon-l .swiper-slide,
  .swiper-icon-l .swiper-button-next,
  .swiper-icon-l .swiper-button-prev {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
  }
}

/* mobile view (≤576px) */
@media (max-width: 576px) {

  .line1-r,
  .line3-r {
    font-size: 20px;
    padding: 6px 20px;
    /* display: block; */
    /* margin: 10px auto !important; */
  }

  .hero_container p {
    font-size: 0.95rem;
    padding: 0 10px;
    text-align: center;
  }

  .text-pink {
    font-size: 0.95rem;
  }

  .hero-section .first_line {
    width: 95%;
    font-size: 1.8rem;
  }

  .hero_container p {
    margin-left: 0;
    width: 90%;
  }

  .box .text-box {
    left: 0;
    border-radius: 0;
  }

  .box .text-box-two {
    right: 12px;
    border-radius: 0;
  }

  .heading-r {
    margin-top: 0;
  }
  .heading-r span:first-child {
    font-size: 1.8rem;
  }
  .industry-title-l{
    background-color: #00464b;
  }

  .section-r {
    margin-top: 60px !important;
  }

  .feature-text-f {
    width: 80%;
  }

  .card-m {
    width: 90%;
    margin-bottom: 20px;
  }

  .trusted-title-w {
    font-size: 1.6rem;
    font-weight: 600;
  }

  .wrapper_content p {
    width: 100%;
  }

  .bt-service h2 {
    font-size: 1.7rem;
    width: 100%;
  }

  .bt-service p {
    font-size: 1rem;
    width: 95%;
  }  
}

/* third */

@media (max-width: 576px) {
  .content-wrapper-r {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 22px;
    text-align: center;
    position: relative;
  }

  .text-content-r {
    order: 2;
    /* comes after image */
    width: 100%;
    padding: 0;
  }

  .image-container-r {
    order: 1;
    /* show image first */
    width: 85%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .image-container-r img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  .section-r {
    margin: 40px 0;
    padding-top: 40px;
    position: relative;
  }

  .heading-r {
    position: absolute;
    top: -75px;
    /* Push it above image */
    left: 0%;
    right: 0%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
  }

  .line1-r,
  .line2-r {
    font-size: 22px;
    padding: 4px 18px;
    margin: 0;
    display: inline-block;
    line-height: 1.2;
  }

  .line1-r {
    background-color: #00464b;
    color: white;
  }

  .line2-r {
    background-color: #36a2d5;
    color: white;
    margin-top: -2px;
    /* was -10px, too aggressive */
  }


  .para-r {
    font-size: 14px;
    margin: 13px 0;
    padding: 0 0px;
    text-align: center;
  }

  .btn-r {
    font-size: 15px;
    padding: 8px 20px;
    margin: 15px 0;
  }

  /* remove decorative blue lines */
  .line1-r::before,
  .line2-r::before,
  .line1-r::after,
  .line2-r::after,
  .hero_content .second_line::after {
    display: none !important;
    content: none !important;
  }

  .service-offers {
    margin-block: 0.5rem;
    padding: 1rem 0.5rem;
  }

  .service-offers h3 {
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
  }

  .job-listings div.job-card-job {
    flex-direction: column;
    gap: 1rem;
  }

  .job-listings div.job-card-job:first-child h5 {
    text-align: center;
  }

  .job-listings div.job-card-job:first-child p {
    text-align: center;
  }

  .job-listings div.job-card-job>div {
    width: 90%;
  }

  .job-listings div.job-card-job>div:last-child a {
    width: 100%;
  }

  .job-listings div.job-card-job>div:last-child a:hover {
    background-color: #20a868;
  }

}

.contact-form input {
  border: 1px solid transparent;
  background-color: #f4f4f4c9;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px
}

.contact-form textarea {
  border: 1px solid transparent;
  background-color: #f1f1f1;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 1px solid #b9b9b9;
  transition: all 0.3s ease-in-out;
}

.contact-form button {
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: normal;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  background-color: #36a2d5;
}

.contact-form button:hover {
  border-width: 1px;
  background-color: #1e4b73;
}



@media(max-width: 768px) {
  .login-container {
    flex-direction: column;
  }

  .left-section,
  .right-section {
    width: 100%;
  }
}

/* contact page */
.contact-section {
  padding: 60px 0;
}

.contact-form {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.info-box {
  background-color: #fff;
  padding: 40px;
  border-left: 2px solid #f1f1f1;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* form */

.form-wrapper {
  max-width: 600px;
  margin: auto;
  padding: 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-title {
  text-align: center;
  color: var(--text-cyan);
  font-weight: bold;
  margin-bottom: 25px;
}

.form-control {
  border-radius: 30px;
  padding: 12px 20px;
  font-size: 15px;
}

.form-wrapper .form-control {
  border: 1px solid var(--fill-cyan);
}

.form-wrapper .form-control::placeholder {
  color: var(--text-gray);
}

.form-control:focus {
  box-shadow: none;
  border-color: #0056b3;
}

/* Custom dropdown icon */
.custom-select-wrapper {
  position: relative;
}

.custom-select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 3rem;
  color: var(--text-gray);
}

.btn-success {
  background-color: var(--text-blue);
  border-radius: 30px;
  font-weight: 600;
  padding: 10px;
}

.btn-success:focus {
  box-shadow: none;
}

.form-note {
  font-size: 14px;
  color: #000;
}

/* six block */

.text-dark-blue {
  background-color: var(--fill-cyan);
  color: var(--bg-light-gray);
  font-size: 40px;
  font-weight: 600;
  position: relative;
  z-index: 5;
  width: fit-content;
  padding: 5px 20px;
  border-radius: 5px;
  margin: 0 auto;
}

.trust-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  margin-top: 5px;
}

.trust-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: #00383c;
  margin-bottom: 6px;
}

.trust-text {
  font-size: 0.95rem;
  color: #333;
}

/* next section */
/* btn */
/* Secondary Button */
.sales-section-l h1,
.sales-section-l h2 {
  font-size: 2rem;
  font-weight: 700;
}

.secondary-l {
  color: #fff;
}

.sales-section-l {
  min-height: 60vh;
}

.left-side-l,
.right-side-l {
  min-height: 60vh;
  /* Equal height for both sides */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.ch-c {
  position: relative;
}

.ch-c::before {
  content: "";
  position: absolute;
  bottom: 40px;
  left:-5px;
  background-color: transparent;  
  border: 3px solid #23c6e0;
  border-style: none none solid solid; 
  width: 700px;
  height: 90px;
  border-radius: 0px 0px 0px 50px;
  display: none;   
  pointer-events: none;
}

/* Buttons */
.btn-custom-l {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  margin: 15px 0;
  display: inline-block;
}

.left-side-l {
  background: linear-gradient(135deg, #00393c, #00393c);
  border-top-left-radius: 180px;
  /* top-left curve */
}

.right-side-l {
  background: linear-gradient(135deg, #36a2d5, #36a2d5);
  border-bottom-right-radius: 180px;
  /* bottom-right curve */
}
/* Primary Button */
.btn-primary-l {
  background: linear-gradient(135deg, #36a2d5, #36a2d5);
  color: #fff;
  border: 2px solid transparent;
}

.btn-primary-l:hover { 
  border-color: #2ca0d5;
  /* color: #2ca0d5; */
  color: #fff;
}

/* Outline Button */
.btn-outline-l {
  border: 2px solid #003f3c;
  color: #003f3c;
  background: linear-gradient(135deg, #36a2d5, #36a2d5);
  /* background: transparent; */
}

.btn-outline-l:hover {
  background: #003f3c;
  color: #fff;
}

/* Keyframes for sliding */
@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Apply animations */
.left-side-l {
  animation: slideInLeft 2s ease-out forwards;
}

.right-side-l {
  animation: slideInRight 2s ease-out forwards;
}


/* four card */

/* Animation */
@keyframes slideUp {
  0% {
    transform: translateY(0px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.animated-section {
  animation: slideUp 1s ease forwards;
}

/* Heading style */
.main-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.main-heading span {
  display: block;
  width: fit-content;
  padding: 8px 20px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 5px auto;
}

.main-heading .first {
  background-color: #004c45;
}

.main-heading .second {
  background-color: #36a2d5;
}

/* Paragraph */
.section-desc {
  text-align: center;
  color: #000;
  margin-bottom: 2rem;
  font-size: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}


/* Cards */
.career-card {
  padding: 2rem 1rem;
  text-align: center;
  border: none;
  height: 100%;
}
.career-card  p{
  padding: 10px;
}
.career-dark {
  background-color: #476277;
  color: #fff;
}

.career-light {
  background-color: #eee8e8;
  color: #232323;
}

/* Button */
/* Common Button */
.career-btn {
  font-size: 0.9rem;
  padding: 6px 20px;
  border-radius: 25px;
  border: 2px solid;
  background: transparent;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* Dark card button */
.career-dark .career-btn {
  color: #fff;
  border-color: #fff;
}

.career-dark .career-btn:hover {
  background: #fff;
  color: #476277;
}

/* Light card button */
.career-light .career-btn {
  color: #36a2d5;
  border-color: #36a2d5;
}

.career-light .career-btn:hover {
  background: #36a2d5;
  color: #fff;
}



/* test */
.test-section-m {
  background: linear-gradient(to right,
      rgba(24, 23, 23, 0.3),
      rgba(201, 191, 172, 0.3)),
    url('assets/images/bgone-1.webp') no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;

}
.container-xxl{
  max-width: 1500px;
}

.test-box-m {
  background-size: cover;
  background-position: center;
  position: relative;
}

/* .test-left-m {
  background: linear-gradient(
    to right,
    rgba(120, 52, 37, 0.4),
    rgba(12, 41, 67, 0.4) );  
    
}
.test-right-m {
  background: linear-gradient(
    to right,   
    rgba(26, 77, 79, 0.4),
    rgba(0, 58, 61, 0.4) );
} */

.content-m {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 85%;
  color: #fff;
  background: linear-gradient(to right,
      rgba(26, 77, 79, 0.7),
      rgba(0, 58, 61, 0.7));
  width: 100%;
  margin: 1.5px;
  border-radius: 8px;

}

.content-m.second {
  background: linear-gradient(to right,
      rgb(59, 163, 211),
      rgba(73, 197, 238, 0.867));
}

.content-m h2 {
  font-family: var(--hero-font);
  /* font-size: 1.6rem; */
  font-size: 37px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.content-m p {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 17px;
  text-align: center;
  color: var(--bg-light-gray)
}

.btn-outline-light {
  border-radius: 50px;
  font-weight: 400;
  padding: 12px 30px;
}


/* new section */

/* Section Title */
.title-mn {
  font-weight: 700;
  font-size: 40px;
  color: #2c3e50;
}

.title-mn span {
  color: #23c6e0;
}

/* Stars */
.stars-mn span {
  font-size: 20px;
  color: #23c6e0;
  margin: 0 3px;
}

/* Team Cards */
.team-card-mn {
  text-align: center;
}

/* Circle Image with Border */
.circle-img-mn {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 15px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-img-mn img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* Border Colors */
.yellow-mn {
  border: 5px solid #f8c133;
}

.blue-mn {
  border: 5px solid #23c6e0;
}

.green-mn {
  border: 5px solid #34c759;
}

.orange-mn {
  border: 5px solid #ff8c42;
}

/* Name Styling */
.name-mn {
  font-weight: 700;
  margin-bottom: 8px;
}
.line-wrapper{  
  position: relative;
}

.line-wrapper .line-top{
  position: absolute;
  top: 0; 
  max-width: 1400px;
  width: 100%;
  height: 3px;
  background-color: #23c6e0;
  left: 50%;
  transform: translateX(-50%); 
  display: none;
}
.line-wrapper .line-top::before{
  content: '';
  position: absolute;
  top: -97px;
  left: -115px;  
  width: 62px;
  height: 100px;  
  border-radius:0 0 0 50px;
  z-index: 1;  
  background-color: transparent;
  border:3px solid #23c6e0;
  border-top:0;
  border-right:0;
  display: none;
}
.line-wrapper .line-top::after{
  content: '';
  position: absolute;
  top: 0px;
  right: -100px;  
  width: 100px;
  height: 100px;  
  border-radius:0 50px 0 0 ;
  z-index: 1;  
  background-color: transparent;
  border:3px solid #23c6e0;
  border-left: none;
  border-bottom: none;
  display: none;
}
.line-wrapper .line-right{
  position: absolute;
  top: 80px;
  right: -100px;  
  max-width: 1400px;
  width: 3px;
  height:928px;
  background-color: #23c6e0;
  display: none;
}
.line-wrapper .line-right::after{
  content: '';
  position: absolute;
  bottom: -150px;
  right: -0px;  
  width: 650px;
  height: 150px;  
  border-radius:0 0px 50px 0 ;
  z-index: 1;  
  background-color: transparent;
  border:3px solid #23c6e0;
  border-left: none;
  border-top: none;
  z-index: -1; 
}
.line-wrapper_above{
  max-width: 1600px;
}
.line-container{
  max-width: 1600px;
  width: 100%;
  position: relative;
  margin: 0 auto;
  z-index: 1;
}

/* .wrapper-row-lines:after{
  content: '';
  position: absolute;
  bottom:-700px;
  left:50%;
  transform: translateX(-50%);
  max-width: 1550px;
  width: 100%;
  height:80%;
  background-color:transparent;
  border:3px solid #23c6e0;
  border-left: none;  
  border-radius:0px 50px 50px 0;  
  z-index: -1;
} */
.title-mn_last{
  text-align: center; 
}
.title-mn{  
  position: relative;
  background-color:#f7f7f7;
  z-index: 5;
  width: fit-content;
  padding: 0 20px;
  display: inline-block;
  margin: 0 auto;
 
}

.job-details{
  display: none;
  margin-top: 15px;
  padding: 10px 5px;
  font-size: 14px;
  color: #272626;
  text-align: left;
}
.job-details.show{
  display: block;
}
.job-card-job > div + div a, 
.job-card-job > div + div button{
   padding: 10px 30px;
   border:none;
   font-weight: normal;
}
.job-card-job > div + div a:is(:hover, :focus), 
.job-card-job > div + div button:is(:hover, :focus){
   background-color:#2c8fe4;
}

@media  (max-width: 1230px) {
   .line-wrapper{
     visibility: hidden;
      opacity: 0;
   }  
   .industry-header-l .industry_content_l::before{
     visibility: hidden;
      opacity: 0;
   }
   .text-dark-blue::after{
     visibility: hidden;
      opacity: 0;
   }
  
}
@media screen and (min-width:1030px){
  .line-container{
    width: calc(80% - 80px); 
    position: relative;
    margin: 0 auto;
    z-index: 2;
  }  
  .line-wrapper .line-top::before{
    left: -40px;
    z-index: 1;    
  }
  
}
@media screen and (max-width: 1300px){
  .line-wrapper .line-right::after{
    bottom: -100px;
    /* height:calc(100% + 200px); */
  }
  
} 
@media screen and (max-width: 1350px){
  .text-dark-blue::after{
      right: -45%;
      height:865px
    }
}


@media screen and (min-width: 1320px) {
  .line-container{
    width: 70%;
    /* padding: 150px 10px; */
  }  
  .line-wrapper .line-top::before{
    left: -60px;
  }
  .text-dark-blue::after{
      right: -42%; 
      max-width:73%;     
    }
}

@media screen and (min-width: 1600px) {
  .line-container{
    width: 65%;
    /* padding: 150px 10px; */
  }  
  .line-wrapper .line-top::before{
    left: -40px;
  }
}

@media screen and (max-width: 1400px) {
  .content-m h2 {
    font-weight: 600;
    font-size: 32px;
  }
}
.ca-bg{
  background: linear-gradient(to right, #ddd9d9d7, #fff4f4db), url('assets/images/job-opportunity.jpg') no-repeat center center/cover;
 backdrop-filter: blur(10px);
}
.ca-hero{
  position: relative;
  padding: 7rem 0; 
}
.job-home{
  position: relative;
}
.job-home a{
  position: absolute;
  top: -40px;
  left: 0;
  /* width: 100%;
  height: 100%; */
  padding: 10px 20px;
  display: inline-block;
  text-decoration: none;
  font-size: 13px;
  border: 1px solid rgba(43, 43, 43, 0.315);
  border-radius: 50px;
  color:var(--text-blue);
}
.ca-hero-content{
  position: relative;
  text-align: center; 
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
.ca-jobs h1 + span{
  display: inline-block;  
}
.ca-hero-content span:first-child{
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  text-align: center;
  color: #2f2f2f;
  padding: 5px 15px;
  border-radius: 50px;
  border: 1px solid var(--fill-cyan);
}
.ca-hero-content h1{
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  color: var(--fill-cyan);
}
.ca-hero-content p{
  font-weight: 500;
  font-size: 17px;
  line-height: 24px;
  text-align: center;
  color: #2f2f2f;
  margin-bottom: 2rem;
} 

/* careers images */
.career-images{
 position: relative; 
 margin: 0;
 padding: 8rem 0 2rem 0;
}
.ci-row{
  display: flex;
  flex-wrap: nowrap;
  gap: 25px;
  margin: 0;
  padding: 0;   
  height: auto;
}
.ci-images{
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
  width: fit-content;
  flex-shrink: 0;
}
.ci-images img{
  width: 265px;
  height: 265px;
  object-fit: cover;
}
.ci-images:nth-of-type(2){  
  margin-top: -1.5rem;
}
.ci-images:nth-of-type(3){  
  margin-top: -2.5rem;
}
.ci-images:nth-of-type(4){  
  margin-top: -3.5rem;
}
.ci-images:nth-of-type(5){  
  margin-top: -4.5rem;
}
.ci-images:nth-of-type(6){  
  margin-top: -5.5rem;
}
.ci-images:nth-of-type(7){  
  margin-top: -6.5rem;
}

.job-oppo{
  position: relative;
  padding: 1rem 0 6rem 0;
}
.job-oppo h2{
  font-weight: 600;
  font-size: 36px;
  line-height: 45px;
  text-align: center;
  color: var(--fill-cyan);
}
.job-oppo p{
  font-weight: 500;
  font-size: 17px;
  line-height: 24px;
  text-align: center;
  color: #2f2f2f;
}
.job-oppo-list{
   position: relative;
}
.job-list{
  display:flex ;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;  
  padding: 10px 20px;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}
.job-list:hover{
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.job-list >div span{
  font-size: 15px;
  font-weight: 600;
  color: #119805;
}
.job-list >div h4{
  margin-top: 0.2rem;
  font-size: 24px;
  font-weight: 600;
  color: var(--fill-cyan);
  margin-bottom: 0;
}
.job-list >div p{
  font-size: 14px;
  font-weight: 500;
  color: #2f2f2f;
}
.job-list >div + a{
  font-size: 14px;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.job-list:hover >div + a{
  background-color:#1775ff;
  color: #fff;
}
/* team meatup */
.team-meetup{
  position: relative;
  padding: 2rem 0;
}
.tm-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;  
 
}

.tm-content p{
  width: 78%;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
  color: #2f2f2f;
  margin-bottom: 2rem;
}
.tm-images{
  position: relative;
  overflow: hidden;
}

.tm-images .overlay {
    position: absolute;
    top:150px;
    left: 0%;
    width: 100%;
    height: 30%;
    rotate: -50deg;
    background-color: #2d94f3;
    animation: slideInLeft 7s ease-in-out 0s infinite normal forwards;
    mix-blend-mode: color;
}  

@keyframes slideInLeft {
  0% {
   left: -100%;
  }
  100% {
    left: 100%;
  }  
}
.job-listings{
  position: relative;
}
.job-list-bg { 
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  height: 100%;  
  transform: skewY(-5deg);  
  transform-origin: top left;
  z-index: -1;   
   background: linear-gradient(90deg, #5e5e5e10, #a0a0a000);
}
.job-list-bg + div  div{
 z-index: 1;
}

.ab-jobs{
  position: relative;
  padding: 2rem 0;
}
.ab-jobs h2{
  font-weight: 600;
  font-size: 25px;
  line-height: 30px;
  
  color: var(--fill-cyan);
}
.ab-jobs p{
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;  
  color: #2f2f2f;
}
.ab-job-desc h3{
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;  
  color: var(--fill-cyan);
  margin-bottom: 2rem;
}
.ab-job-desc ul{
  padding: 0;
  margin: 0;
  margin-left: 15px;
}
.ab-job-desc li{
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;  
  color: #2f2f2f;
  padding: 8px 0;
}
.apply-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 40px auto;
  background: #fff;
  border-radius: 12px;
  padding: 40px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.apply-card h2 {
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
  color: var(--fill-cyan);
}

.apply-card p {
  text-align: center;
  font-size: 14px;
  line-height: 30px;
  color: #6c757d;
  margin-bottom: 25px;
  width: 75%;
}
.career-form{
  padding: 3rem 0;
  display: grid;
  gap: 1rem;
  
}
.career-form input{
  border-radius: 5px;
  border: 1px solid #e3e3e3;
  padding: 10px 15px;
  outline: none;
  width: 100%;
}
.career-form label{
  font-weight: 400;
  font-size: 14px;  
}
.career-form label span{
  color: rgb(207, 9, 9);
  padding-left: 5px;
}
.career-form input::placeholder,
.career-form select{
  font-size: 14px;
  color: #2f2f2f8f;
}
input[type="file"] {
  font-size: 13px;   
  padding: 6px;      
}

.career-form textarea{
  border-radius: 5px;
  border: 1px solid #e3e3e3;
  padding: 10px 15px;
  outline: none;
  width: 100%;
}

.btn-submit {
  background-color:#0363ca;  
  font-weight: 500;
  width: 100%;
  padding: 10px 15px;
  color: #ffffff;
  
}

.btn-submit:hover {
  color: #ffffff;
  background-color: #0c71dd;
}

/* four box */
/* .four-sec-h .hover-box {
    text-align: center;
    padding: 20px;
    transition: transform 0.5s ease, background-color 0.5s ease;
    cursor: pointer;
    position: relative;
}

.four-sec-h .hover-box h4 {
    margin-top: 15px;
}

.four-sec-h .hover-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease, max-height 0.5s ease;
    margin-top: 10px;
    color: #555;
}

.four-sec-h .hover-box:hover .hover-content {
    opacity: 1;
    max-height: 200px;
} */

.four-sec-h .hover-box {
    text-align: center;
    padding: 20px;    
    cursor: pointer;
    position: relative;
    transition: all 0.5s ease;
}
.four-sec-h .hover-box h4 {
   margin-top: 10px;
   font-size: 1.3rem;
}
.four-sec-h .hover-content {
    opacity: 0;
    max-height: 0;
    /* overflow: hidden; */
    margin-top: 10px;
    color: #555;   
    transition:all 0.5s ease;  
    
  }
.hover-content p{
   margin-inline: auto ;
  width: 70%;
  font-size: 15px;
  color: #555;
}
.hb-container:hover:hover .hover-content {
    opacity: 1;
    max-height: 200px;    
}
.hb-container:hover .hover-box h4{
  color: var(--fill-cyan);
}
.hb-container:hover .hover-box{
  transition: all 0.5s ease;
  transform: scale(1.1);
}
.hb-container:hover .hover-box  i{
    display: none;
    transition: all 0.5s ease;
}



/* Mobile view fix – paragraph always visible on small screens */
@media (max-width: 767px) {
    .four-sec-h .hover-content {
        opacity: 1 !important;
        max-height: 500px !important;
    }
}

@media (max-width: 1024px) {
   .text-dark-blue,
   .sales-section-l h1,
   .trusted-title-w,
   .industry-header-l h2,
   .title-mn,
   .line2-r,
   .line3-r {
    font-size: 2rem;
  }
}

/* teal btn */
.btn-outline-teal {
  border: 1px solid #00393c;
  color: #00393c;
  background-color: transparent;
}

.btn-outline-teal:hover {
  background-color: #00393c;
  color: #fff;
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 93px; 
    right: 25px;
    background-color: #25D366; 
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 9996;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float i {
    font-size: 28px;
}


/* register form */
.register-section {
      max-width: 750px;
      margin: 40px auto;
      background: #fff;
      padding: 35px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .register-section h2 {
      color: teal;
      font-weight: 700;
      margin-bottom: 25px;
      text-align: center;
    }
    .form-label {
      font-weight: 500;
      color: #333;
      text-align: left;
    }
    .login-hint {
      color: #888;          
      opacity: 0.8;        
      font-weight: 400;    
      font-size: 0.95em;     
     }

    .form-control:focus {
      border-color: teal;
      box-shadow: 0 0 5px rgba(0,128,128,0.3);
    }
    .btn-teal {
      background-color: teal;
      color: #fff;
      font-weight: 500;
      padding: 10px 20px;
      border-radius: 8px;
      transition: 0.3s ease;
    }
    .btn-teal:hover {
      background-color: #006d6d;
      color: #fff;
    }

    /* employer page */

.curved-img {
  width: 1000px;  
  height: auto;
  border-top-right-radius: 40%;
  border-bottom-right-radius: 40%;
  display: block;
   margin-left: 0%;  
}


    .hire-section-m {
  background-color: #eaeeea;
}

.filled-role-box-m {
  width: 230px;
  border-radius: 6px;
  transform: translate(12px, 0px);
}

.underline-m {
  width: 70px;
  height: 2px;
  background-color: #d8a555;
}

.hire-section-m h2 {
  font-size: 4rem;
  line-height: 1.3;
}

@media (max-width: 767px) {
  .hire-section-m h2 {
    font-size: 1.8rem;
  }

  .filled-role-box-m {       
    margin-top: 15px;
  }
}

.startups-section-m {
  background-color: #f9f8f3;
  border-radius: 0 0 80px 80px;
}

.startups-section-m h2 {
  font-size: 2.8rem;
  color: #058bc9;
}

.view-more-btn-m {
  background-color: #003f3c;
  border: none;
  transition: 0.3s;
}
.startups-section-m img {
  height: 60px;
  width: 120px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}


.view-more-btn-m:hover {
  background-color: #003f3c;
}

@media (max-width: 767px) {
  .startups-section-m h2 {
    font-size: 1.6rem;
  }
}

/* ------------------ Hire with Confidence Section ------------------ */
.confidence-section-m {
  background-color: #ebe8e8; 
  padding-top: 70px;
  padding-bottom: 70px;
}

.confidence-section-m h3 {
   font-size: 4rem;
  margin-bottom: 8px; 
  line-height: 1;
}

.confidence-section-m p {
  color: #030303;
  line-height: 1.2;
  margin: 0;
  font-size: 0.9rem;
}

.confidence-section-m .row {
  align-items: stretch; 
}
.confidence-section-m .row > div {
   display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}

/* Optional - keep logo size consistent */
.confidence-section-m img {
  /* max-height: 140px; */
  width: auto;
  margin-left: -5px;
}

/* ------------------ Benefits Section ------------------ */
.benefits-section-m {
  background-color: #003f3c;
  padding: 80px 0;
}

/* Headings */
.heading-large {
  font-size: 2.8rem;
  line-height: 1.2;
}

.heading-small {
  font-size: 1.6rem;
  margin-top: -20px;
}

/* Benefit items */
.benefit-item-m {
  text-align: left;
  position: relative;
}

.benefit-heading-m {
  display: flex;
  align-items: center;
  margin-bottom: 0.4rem;
}

.benefit-heading-m i {
  color: #ffc107;
  font-size: 1.6rem;
  margin-right: 10px;
  flex-shrink: 0;
}

.benefit-heading-m h5 {
  color: #ffc107;
  font-size: 1.1rem;
  margin: 0;
}

/* ✅ Paragraph starts exactly below heading text */
.benefit-item-m p {
  color: #d5d5d5;
  line-height: 1.5;
  margin: 0;
  padding-left: 2.1rem; /* same width as icon + its margin-right */
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 767px) {
  .heading-large {
    font-size: 2rem;
  }

  .benefit-heading-m {
    justify-content: center;
    text-align: center;
  }

  .benefit-item-m p {
    text-align: center;
    padding-left: 0; /* remove indent on mobile */
  }
}



.rol-bg {
  background-color: #e3e5e3; 
  padding: 1rem 0;
  width: 100%;
}
 .section-subtitle {
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 0.75rem;
      font-weight: 600;
      color: #4d7a66;
      margin-top: -20px;
      
    }

    .section-heading {
      font-size: 1.9rem;
      font-weight: 500;
      margin-bottom: 0.5rem;
    }

    .section-description {
      color: #5c6f63;
      font-size: 0.95rem;
      max-width: 700px;
      margin: 0 auto 2rem;
    }

    /* WHAT WE DO BEST boxes */
    .service-section-m {
  background-color: #f2f5f4;
}
.info-box-m {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #003f3c;
      color: #fff;
      padding: 20px 60px;
      border-radius: 50px;
      cursor: pointer;
      transition: 0.3s;
      margin-bottom: 10px;
    }

    .info-box-m:hover {
      background: #064c49;
    }

    .info-left-m {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .info-left-m i {
      font-size: 30px;
    }

    .info-left-m h5 {
      margin: 0;
      font-size: 24px;
    }

    .info-left-m p {
      margin: 0;
      font-size: 17px;
      color: #d1e7d3;
    }

    .arrow-icon-m {
      font-size: 24px;
      transition: transform 0.3s;
    }

    .arrow-icon-m.rotate {
      transform: rotate(180deg);
    }

    /* Detail section (same for all 3) */
    .detail-box {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  background: #fff;
  border-radius: 8px;
  margin-top: 8px;
  margin-bottom: 20px;
  padding: 0 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.6s ease;
}

.detail-box.active {
  max-height: 1000px; 
  opacity: 1;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}


    .detail-left {
      flex: 1;
      min-width: 300px;
    }

    .detail-left img {
      width: 100%;
      border-radius: 12px;
    }

    .detail-left p {
      font-size: 18px;
      color: #444;
      margin-top: 15px;
      line-height: 1.6;
    }


/* ---------- RIGHT SECTION ---------- */
.detail-right {
  flex: 1;
  min-width: 320px;
  padding-left: 40px;
  border-left: 1px solid #eee;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* About the Search heading */
.detail-right h4 {
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  color: #0f3d2e;
  font-weight: 700;
  text-align: left;
  padding-left: 15px; 
  margin-top: 10px;
}

/* vertical yellow line on heading */
.detail-right h4::after {
   content: ""; 
   position: absolute; 
   left: -15px; 
   top: 0; 
   width: 2px; 
   height: 2700%; 
   background-color: #f2b01e; 
   border-radius: 3px;
   }

/* points*/
.detail-right ul {
  list-style: none;
  padding: 0;
  /* margin: 25px 0 35px 5px; */
  margin-top: 14px;
  margin-bottom: 10px;
}

.detail-right ul li {
  margin-bottom: 18px;
  font-size: 16px; /* slightly bigger than h4 */
  color: #333;
  display: flex;
  align-items: flex-start;
  line-height: 1.6;
}

.detail-right ul li i {
  color: #0f3d2e;
  margin-right: 10px;
  font-size: 18px;
  margin-top: 3px;
 
}
/* Logo section */
.logos {
  margin-top: 20px;
}

.logos h5 {
  font-size: 18px;
  color: #0f3d2e;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: left;
  padding-left: 15px;
  position: relative;
}

/* green vertical line beside heading */
/* .logos h5::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background-color: #0f3d2e;
  border-radius: 3px;
} */

/* logo grid */
.logo-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 20px; /* row, column spacing */
  justify-items: center;
  align-items: center;
}

.logo-list img {
  width: 100px;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-list img:hover {
  transform: scale(1.05);
  opacity: 1;
}

/* centered learn more button */
.learn-more-btn {
  display: inline-block;
  background: #0f3d2e;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  margin: 35px auto 0;
  font-size: 15px;
  font-weight: 500;
  width: auto;
  text-align: center;
}

.learn-more-btn:hover {
  background: #14573e;
}


/* Learn More button */
.learn-more-btn {
  display: inline-block;
  background: #0f3d2e;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  margin: 35px auto 0;
  font-size: 15px;
  font-weight: 500;
  width: auto;
  text-align: center;
}

.learn-more-btn:hover {
  background: #14573e;
}

/* 🌿 MOBILE RESPONSIVE (below 768px) */
@media (max-width: 768px) {

  /* Section padding thoda compact */
  .container.text-center.py-5 {
    padding: 3rem 1rem !important;
  }

  /* Info box (green bars) */
  .info-box-m {
    /* flex-direction: column; */
    align-items: flex-start;
    text-align: left;
    padding: 15px 25px;
    border-radius: 20px;
  }

  .info-left-m {    
    align-items: center;
    gap: 10px;
  }

  .info-left-m i {
    font-size: 26px;
  }

  .info-left-m h5 {
    font-size: 18px;
  }

  .info-left-m p {
    font-size: 15px;
    line-height: 1.5;
  }

  .arrow-icon-m {
    align-self: flex-end;
    margin-top: 8px;
  }

  /* Detail Box */
  .detail-box.active {
    flex-direction: column;
    padding: 25px 20px;
  }

  .detail-left,
  .detail-right {
    width: 100%;
    min-width: auto;
    padding: 0;
    border-left: none;
  }

  .detail-left img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
  }

  .detail-left p {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Detail right content */
  .detail-right {
    margin-top: 20px;
  }

  .detail-right h4 {
    font-size: 18px;
    text-align: left;
    padding-left: 10px;
  }

  .detail-right h4::after {
    display: none; /* vertical line hide on mobile for cleaner layout */
  }

  .detail-right ul li {
    font-size: 15px;
    margin-bottom: 12px;
  }

  /* Logo grid — 2 columns on mobile */
  .logo-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
  }

  .logo-list img {
    width: 80px;
  }

  /* Learn More button center */
  .learn-more-btn {
    display: block;
    margin: 25px auto 0;
    font-size: 14px;
    padding: 10px 20px;
  }

  /* Reduce spacing between each info section */
  .detail-box {
    margin-top: 15px;
    margin-bottom: 25px;
  }
}

/* .detail-right {
  flex: 1;
  min-width: 320px;
  padding-left: 40px;
  border-left: 1px solid #eee;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.detail-right h4 {
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
  color: #0f3d2e;
  font-weight: 600;
  
}

.detail-right h4::after {
  content: "";
  position: absolute;
  left: -15px;       
  top: 0;
  width: 2px;
  height: 3000%;
  background-color: #f2b01e; 
  border-radius: 3px;
  
}


.detail-right ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  padding-left: 40px;
}

.detail-right ul li {
  margin-bottom: 14px;
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: flex-start;
}

.detail-right ul li i {
  color: #0f3d2e;
  margin-right: 10px;
  font-size: 18px;
  margin-top: 2px;
}

.logos {
  margin-top: 30px;
}

.logos h5 {
  font-size: 16px;
  color: #0f3d2e;
  margin-bottom: 15px;
}

.logo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.logo-list img {
  width: 90px;
  opacity: 0.85;
}

.learn-more-btn {
  display: inline-block;
  background: #0f3d2e;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 30px;
  font-size: 15px;
  font-weight: 500;
}

.learn-more-btn:hover {
  background: #14573e;
} */

/* 
.info-box-m {
  background: #fffdf8; 
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 2rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.info-box-m:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.info-left-m {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: #1f4736;
}

.info-left-m i {
  font-size: 2rem;
  color: #1f4736;
}

.info-left-m h5 {
  font-size: 1.6rem;
  font-weight: 400;
  color: #1f4736;
  margin: 0;
}

.info-left-m p {
  font-size: 1.1rem;
  color: #5f7065;
  margin: 0;
}

.arrow-icon-m {
  color: #1f4736;
  font-size: 1.2rem;
} */

    /* .info-box {
      background: #fff;
      border-radius: 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.1rem 1.8rem;
      margin-bottom: 1rem;
      box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    }

    .info-box i {
      font-size: 2.3rem;
      color: #4d7a66;
      margin-right: 0.70rem;
      
      
    }

    .info-text {
      display: flex;
      align-items: center;
      font-size: 1.5rem;
      font-weight: 400;
      color: #204938;
    }

    .info-desc {
      font-size: 1.2rem;
      color: #5f7065;
    }

    .arrow-icon {
      color: #4d7a66;
      font-size: 1rem;
    } */

    /* Roles Section */
.roles-section-m {
  background-color: #e9f4f2; /* your chosen full-width bg */
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.roles-section-m .container {
  max-width: 1200px; /* keeps content centered and neat */
  margin: 0 auto;
}


    .role-card {
      background: #fff; 
      border-radius: 20px;
      padding: 2rem;
      height: 100%;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .role-card h5 {
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 1rem;
      color: #003f3c;
    }

    .role-card p {
      font-size: 0.9rem;
      color: #5f7065;
      line-height: 1.6;
    }

    .learn-more {
      font-size: 0.8rem;
      text-transform: uppercase;
      color: #121212;
      font-weight: 600;
      text-decoration: none;
      letter-spacing: 0.5px;
    }

    @media (max-width: 768px) {
      .info-box { 
        flex-direction: column;
        text-align: center;
        align-items: flex-start;
        border-radius: 20px;
      }
      .info-text {
        margin-bottom: 0.5rem;
      }
    }
     .testimonial-section {
      margin: 4rem auto;
      max-width: 1200px;
      overflow: hidden;
      border-radius: 0;
      
    }
     .testimonial-section-right {
      margin: 4rem auto;
      max-width: 1200px;
      overflow: hidden;
      border-radius: 0;
    }

    .testimonial-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-top-left-radius: 80px;
      border-bottom-left-radius: 0;
    }
    .testimonial-image-right {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-top-right-radius: 80px;
      /* border-bottom-right-radius: 80px; */
    }

    .testimonial-text {
      background-color: #116a6cf5; /* teal shade */
      padding: 2rem;
      border-top-right-radius: 30px;
      border-bottom-right-radius: 30px;
      position: relative;
    }
       .testimonial-text-right {
      background-color: #116a6cf5; /* teal shade */
      padding: 4rem;
      border-top-left-radius: 30px;
      border-bottom-left-radius: 30px; 
      position: relative;
    }

    .quote-icon {
      color: #f6b142;
      font-size: 2rem;
    }

    .testimonial-quote {
      font-size: 1.05rem;
      line-height: 1.8;
      margin-top: 1rem;
      margin-bottom: 2rem;
      color: #fff;
    }
     .testimonial-quote-right {
      font-size: 1.05rem;
      line-height: 1.8;
      margin-top: 1rem;
      margin-bottom: 2rem;
      color: #fff;
    }

    .testimonial-author {
      color: #f6b142;
      font-weight: 600;
      font-size: 1rem;
    }

    .testimonial-role {
      text-transform: uppercase;
      font-size: 0.75rem;
      color: #fff;
      letter-spacing: 0.5px;
    }

    
    @media (max-width: 991px) {
      .testimonial-section {
        border-radius: 20px;
      }

      .testimonial-text {
        border-radius: 0 0 20px 20px;
        padding: 2rem;
      }

      .testimonial-image {
        border-radius: 20px 20px 0 0;
      }
    } 
    

   /* Section Header */
.section-subtitle {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  color: #4d7a66;
  font-weight: 600;
}

.section-heading {
  font-size: 2rem;
  font-weight: 500;
  color: #003f3c;
}

.section-description {
  color: #5c6f63;
  font-size: 1rem;
  max-width: 1250px;
 margin: 1.5rem auto 2rem; 
  text-align: center;
  
}

/* --- Company Cards --- */
.company-card {
  background: #f9faf9;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  height: auto;
  transition: transform 0.2s ease;
}

.company-card:hover {
  transform: translateY(-4px);
}

.company-logo {
  font-weight: 700;
  font-size: 1rem;
  color: #000;
}

.company-sub {
  text-transform: uppercase;
  font-size: 0.7rem;
  color: #7a857c;
  font-weight: 600;
  margin-top: 2px;
}

.person-image {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 1 / 1;  /* ✅ Keeps perfect proportion */
  filter: grayscale(100%);
}

.card-title {
  font-size: 0.95rem;
  color: #003f3c;
  line-height: 1.5;
  margin-top: 0.5rem;
}

/* --- Testimonial Card --- */
.testimonial-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 0.5rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
}

.testimonial-stars {
  color: #f6b142;
  font-size: 1.5rem;
}

.testimonial-text {
  font-size: 1rem;
  color: #f4f4f4;
  line-height: 1.7;
  margin-top: 0rem;
}

.author-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author {
  font-weight: 600;
  color: #1a3c32;
}

.testimonial-role {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #4d7a66;
}

/* --- Button --- */
.see-more-btn {
  background-color: #004c3f;
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

.see-more-btn:hover {
  background-color: #03624e;
}


    /* Button */
    .see-more-btn {
      background-color: #003f3c;
      color: #fff;
      border: none;
      border-radius: 25px;
      padding: 0.6rem 1.8rem;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .see-more-btn:hover {
      background-color: #356b5a;
    }

    @media (max-width: 991px) {
      .testimonial-card {
        margin-top: 2rem;
      }
    }
    /* TOP GREEN SECTION */
    .different-section {
      background-color: #003f3c;
      color: #fff;
      text-align: center;
      padding: 4rem 2rem 6rem;
      position: relative;
    }

    .different-section h6 {
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #b1c8b5;
      font-size: 0.8rem;
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .different-section h2 {
      font-size: 3rem;
      font-weight: 500;
      margin-bottom: 1rem;
      color: #fff;
    }

    .different-section p {
      font-size: 0.95rem;
      color: #d9e3db;
      margin-bottom: 0;
    }

    /* THREE CARDS SECTION */
    .info-cards {
      margin-top: 1rem;
      margin-bottom: 5rem;
    }

    .info-card {
      background: transparent;
      border: none;
      text-align: center;
    }

    .info-card img {
      width: 100%;
      border-radius: 20px;
      margin-bottom: 1.2rem;
    }

    .info-card h5 {
      font-size: 1.1rem;
      color: #003f3c;
      font-weight: 500;
    }

    .info-card p {
      font-size: 0.9rem;
      color: #52655c;
      max-width: 280px;
      margin: 0 auto;
    }
    /* CALL-TO-ACTION BOX */
    .cta-box {
      background-color: #e7d9b5;
      border-radius: 25px;
      padding: 2.5rem 3rem;
      max-width: 1200px;
      margin: 0 auto 5rem;
      position: relative;
    }

    .cta-box h3 {
      font-size: 1.7rem;
      color: #003f3c;
      font-weight: 400;
      line-height: 1.5;
      margin-bottom: 0;
    }

    .cta-btn {
      background-color: #003f3c;
      color: #fff;
      border: none;
      border-radius: 25px;
      padding: 0.6rem 1.5rem;
      font-size: 0.9rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
    }

    .cta-btn:hover {
      background-color: #003f3c;
    }

    @media (max-width: 992px) {
      .info-card img {
        border-radius: 15px;
      }
      .cta-box {
        text-align: center;
        padding: 2rem;
      }
    }

  /* register page */

  .build-section-m {
  background-color: #f8f4f4;
  text-align: center;
  min-height: 30vh;
  padding: 3rem 3rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.build-section-m .container-m {
  display: flex;
  flex-direction: column; /* 👈 important */
  align-items: center;
  justify-content: center;
}

.build-heading-m {
  font-size: 2.7rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 0.5rem;
}

.build-text-m {
  color: #5c6f63;
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.5;
  margin: 8px auto 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .build-heading-m {
    font-size: 2.3rem;
  }
  .build-text-m {
    font-size: 1rem;
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .build-section-m {
    padding: 3rem 1.5rem;
  }
  .build-heading-m {
    font-size: 1.9rem;
  }
  .build-text-m {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .build-heading-m {
    font-size: 1.6rem;
  }
  .build-text-m {
    font-size: 0.9rem;
    max-width: 95%;
  }
}

.view-more-btn-m {
  background-color: #003f3c;
  border: none;
  transition: all 0.3s ease;
}

.view-more-btn-m:hover {
  background-color: #003f3c;
}
/* emp page contact form */
/* Make both columns same height */
.contact-section-m .row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-top: -40px;
}

/* Left image styling */
.contact-img-m {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* Ensure left column stretches */
.contact-section-m .col-lg-6:first-child {
  display: flex;
}

.contact-section-m .col-lg-6:first-child img {
  flex: 1 1 auto; /* Fill the column height */
}

/* Right form styling */
.contact-form-m {
  background-color: #fff;
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 80%;
}

/* Responsive behavior */
@media (max-width: 992px) {
  .contact-section-m .row {
    flex-direction: column;
  }

  .contact-img-m {
    height: auto;
    margin-bottom: 1.5rem;
  }

  .contact-form-m {
    height: auto;
  }
}
/* review scrollr code */
.info-section-m {
  background: #f2f2f2;
}

.info-wrapper-m {
   position: relative;
  padding-top: 40px;
}

.info-shape-m {
  position: absolute;
  top: -60px;
  right: -40px;
  width: 170px;
  height: 540px;
  border-radius: 50px 50px 0 0;
  transform: rotate(12deg);
  opacity: 0.75;
  z-index: 1; 
}



.info-wrapper-m > div {
  /* background: #ff3b8d; */
  padding: 40px 28px;
  border-radius: 22px;
  text-align: center;
  position: relative;
  z-index: 2;
  border: 1px solid transparent;
  border: 1px solid #1b202171;
  /* box-shadow: 0 8px 28px rgba(0,0,0,0.12); */
  transition: all 0.3s ease;
}

/* .info-wrapper-m .info-card-mn {
  background: #9b51e0;
}
.info-wrapper-m .info-card-mno {
  background: #00d4b3; 
}
.info-wrapper-m .info-card-mnop {
  background: #0092ff; 
} */

.info-wrapper-m >div:hover {
  transform: translateY(-8px);
  border: 1px solid #17afc7;
}

.info-img-m {
  width: 150px;
  height: 150px;
  object-fit: cover;
 /* border-radius: 50%; */
 margin-bottom: 10px;
}

.info-card-m h4 {
  margin-bottom: 12px;
  font-size: 16px;
  color: #555;
}

.info-card-m p {
  font-size: 14px;
  line-height: 1.55;
  color: #444;
}
.info-card-mn:hover {
  transform: translateY(-8px);
}

.info-img-mn {
  width: 55px;
  height: 55px;
  object-fit: contain;
  margin-bottom: 15px;
}

.info-card-mn h4 {
  margin-bottom: 12px;
  font-size: 16px;
  color: #555;
}

.info-card-mn p {
  font-size: 14px;
  line-height: 1.55;
  color: #444;
}
.info-card-mno:hover {
  transform: translateY(-8px);
}

.info-img-mno {
  width: 55px;
  height: 55px;
  object-fit: contain;
  margin-bottom: 15px;
}

.info-card-mno h4 {
  margin-bottom: 12px;
  font-size: 16px;
  color: #555;
}

.info-card-mno p {
  font-size: 14px;
  line-height: 1.55;
  color: #444;
}
.info-card-mnop:hover {
  transform: translateY(-8px);
}

.info-img-mnop {
  width: 55px;
  height: 55px;
  object-fit: contain;
  margin-bottom: 15px;
}

.info-card-m h4,
.info-card-mn h4,
.info-card-mno h4,
.info-card-mnop h4 {
  margin-bottom: 12px;
  font-size: 18px;
  color: #555;
 
}

.info-card-m h5,
.info-card-mn h5,
.info-card-mno h5,
.info-card-mnop h5 {
  margin-bottom: 12px;
  font-size: 14px;
  
}
.info-card-m p,
.info-card-mn p,
.info-card-mno p,
.info-card-mnop p {
  font-size: 14px;
  line-height: 1.55;
 
}

/* Responsive */
@media (max-width: 768px) {
  .info-card-m {
    padding: 30px 20px;
  }
  /* .info-img-m {
    width: 55px;
    height: 55px;
  } */
}


/* case study */
.case-study-list {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap; 
}
.case-study-section-m {
  background: #fff;
  padding: 80px 0;
  font-family: "Poppins", sans-serif;
}

.container-m {
  display: flex;
  gap: 40px;
  width: 90%;
  margin: auto;
  flex-wrap: wrap;
}

.case-list-m {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.new-layout-m {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.top-center-m {
  display: flex;
  flex-direction: row;
  justify-content: space-around;   /* FIXED */
  align-items: center;
  /* gap: 25px; */
  flex-wrap: wrap;
  width: 100%;
}



/* Buttons responsive look same */
.top-center-m .case-item-m {  
  min-width: fit-content;
  /* text-align: center; */
  display: flex;  
  align-items: center;
  justify-content: center;
  width: 24%;
  gap: 1rem;
}

.case-item-m {
  background: #f9f9f9;
  border: 1px solid #eee;
  border-left: 5px solid transparent;
  padding: 20px 25px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.case-item-m i {
  font-size: 22px;
  color: #002b5c;
}

.case-item-m h4 {
  color: #002b5c;
  font-size: 18px;
  margin: 0;
  font-weight: 500;
}

.case-item-m.active-m {
  background: #003f42;
  color: #fff;
  border-left: 5px solid #ddb710;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.case-item-m.active-m i,
.case-item-m.active-m h4 {
  color: #fff;
}

.case-content-m {
  flex: 3;
  background: #fafafa;
  padding: 40px 50px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.case-box-m {
  display: none;
  animation: fadeIn 0.4s ease;
}

.case-box-m.active-m {
  display: block;
}

.text-part-m {
  width: 100%;
}

.text-part-m h2 {
  color: #e3bf0f;
  margin-bottom: 15px;
  font-size: 26px;
}

.text-part-m h3 {
  color: #423300;
  margin-top: 25px;
  font-size: 20px;
}

.text-part-m p, .text-part-m ul {
  color: #555;
  line-height: 1.8;
  margin-bottom: 12px;
}

.text-part-m ul {
  padding-left: 20px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) {
  .container-m {
    flex-direction: column;
  }

  .case-content-m {
    padding: 30px 25px;
  }

  .case-item-m {
    justify-content: center;
    text-align: center;
  }
  .top-center-m{
    gap:1.5rem ;
  }
  .top-center-m .case-item-m{
    max-width: 32%;
  }
  .case-item-m h4{
    font-size: 15px;
  }
}

.challenge-part-m {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 10px;
}

.challenge-img-m {
  width: 100%;
  height:200px;
  border-radius: 10px;
}
.challenge-part-m h3{
  margin-bottom: 1rem;
}

.challenge-part-m ul {
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 768px) {
  .challenge-part-m {
    flex-direction: column;
    align-items: center;
  }

  .challenge-img-m {
    width: 100%;
    margin-bottom: 10px;
  }
}




/* Title + Text + Button */
/* Whole Section Bigger */
.hs2-wrapper {
  width: 100%;
  /* background: #d6eabe; */
  background: #eceef0;;
  padding-top: 70px;
  padding-bottom: 120px;
  position: relative;
  overflow: visible;
  gap: 30px;
}



/* LEFT IMAGE BACKGROUND */
.hs2-left-imgbox {
  width: 170%;
  height:450px;     
  background-image: url('./assets/images/new-hero-s.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 30px;       
  border-top-right-radius: 35px; 
  border-bottom-right-radius: 35px; 
  animation: slideLeft 1.3s ease-out forwards;
  opacity: 0;
    margin-left: -200px;
    margin-bottom: 30px;
}

/* FIRST BOX — Slight Overlap on image */
.hs2-box-1 {
  margin-top: -32px;
  position: relative;
  z-index: 5;
  margin-left: 70px;
  width: 120%;
}

/* RIGHT BOXES */
.hs2-box {
  /* background: #a9c98b; */
  background: #014c51;;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  opacity: 0;
  transform: translateY(35px);
  animation: fadeUp 1.1s ease-out forwards;
}
/* ONLY 2ND BOX */
.col-lg-7 .col-md-6:nth-child(2) .hs2-box {
   width: 120%;
  margin-left: -30px;
  margin-top: 160px;
  transform: translateY(35px);   
  transform-origin: left;
    
}

/* Small, clean headings */
.hs2-title {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.hs2-text {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 15px;
}

.hs2-btn {
  background: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  /* color: #456d28; */
  color: #003f43;;
  font-weight: 600;
  transition: 0.3s;
}

.hs2-btn:hover {
  background: #e4f2d7;
  /* color: #2f4e1b; */
  color: #05545a;;
}

/* Animations */
@keyframes slideLeft {
  0% { opacity: 0; transform: translateX(-70px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
  0% { opacity: 0; transform: translateX(70px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation delay */
.hs2-box:nth-child(1) { animation-delay: 0.2s; }
.hs2-box:nth-child(2) { animation-delay: 0.4s; }

/* Mobile */
@media(max-width: 768px){
  .hs2-left-imgbox {
    height: 260px;
    margin-top: 20px;
  }

  .hs2-box-1 {
    margin-top: 0;
  }
}




/* 2nd test */
.hs2-btn {
  position: relative;
  z-index: 99;
}
.hero-design2-m,
.hero-wrapper2-m,
.right-img-box-m {
  position: relative;
  z-index: 1;
}

/* HERO SECTION */
.hero-design2-m {
  width: 100%;
  padding: 60px 10px ;
 padding-bottom: 100px; 
  background: #ebf1f8;
}

.small-overlap-box-m h3,
.small-overlap-box-n h3 {
  font-size: 24px;   
  font-weight: 600;
  margin-bottom: 10px;
}

.hero-wrapper2-m {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 1500px;
  margin: auto;
  gap: 0;
}


.left-box-m {
  width: 25%;
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.left-box-m h2 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 500;
}

.half-img-m img {
  width: 300px;
  border-radius: 20px;
  object-fit: cover;
  
}

.right-img-box-m {
   flex: 1;
  position: relative;
  
}

/* Big Images */
.big-img-m {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* LEFT IMAGE ANIMATION: Left → Right */
.left-slide {
  animation: slideLeftToRight 1.4s ease forwards;
}

@keyframes slideLeftToRight {
  0% {
    opacity: 0;
    transform: translateX(-80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* RIGHT IMAGE ANIMATION: Right → Left */
.right-slide {
  animation: slideRightToLeft 1.4s ease forwards;
}

@keyframes slideRightToLeft {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Overlap Box */
.small-overlap-box-m {
  position: absolute;
  bottom: -90px;
  left: -50px;
  background: #fff;
  padding: 20px;
  width: 280px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  opacity: 0;
  margin-bottom: 30px;
}

.small-overlap-box-n {
  position: absolute;
  bottom: -90px;
  right: -50px;
  background: #fff;
  padding: 20px;
  width: 280px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  opacity: 0;
   margin-bottom: 30px;
}
.small-overlap-box-m,
.small-overlap-box-n {
  width: 250px;     
  padding: 12px;
}

/* Fade Up Animation For Overlap Boxes */
.small-overlap-box-m,
.small-overlap-box-n {
  animation: fadeUp 1.4s ease forwards;
  animation-delay: .3s;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.btn-m, .btn-small-m, .btn-small-n {
  display: inline-block;
  padding: 10px 30px;
  background: #003f43;
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
}

/* RESPONSIVE */
@media(max-width: 992px) {
  .hero-wrapper2-m {
    flex-direction: column;
  }

  .big-img-m {
    width: 100%;
    height: 370px;
  }

  .small-overlap-box-m,
  .small-overlap-box-n {
    position: static;
    width: 100%;
    margin-top: 20px;
  }
}

/* test slider */

/* MAIN HERO SECTION */
.hero-slider-m {
  width: 100%;
  height: 80vh;            /* ↓ reduced from 100vh */
  position: relative;
  overflow: hidden;
}

/* BACKGROUND IMAGE */
.hero-bg-m {
  width: 100%;
  height: 80vh;            /* ↓ reduced */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(40%);
}

/* Each Slide */
.carousel-item {
  height: 80vh;            /* ↓ reduced */
  position: relative;
}

/* CAPTION */
.hero-caption-m {
  bottom: 22%;
  z-index: 5;
}

.hero-caption-m h1 {
  font-size: 47px;
  font-weight: 700;
}

.hero-caption-m p {
  font-size: 16px;
  margin-bottom: 18px;
}

.hero-btn-m {
  background: #00adb5;
  color: #f6f3f3;
  padding: 12px 28px;
  border-radius: 40px;
  font-size: 18px;
}

/* ---------------------------- */
/* MOBILE (max 768px) */
/* ---------------------------- */
@media(max-width: 768px) {

  .hero-slider-m,
  .carousel-item,
  .hero-bg-m {
    height: 75vh;          /* smaller for mobile */
  }

  .hero-caption-m { 
    bottom: 22%;
  }

  .hero-caption-m h1 {
    font-size: 28px;
  }

  .hero-caption-m p {
    font-size: 14px;
  }

  .hero-btn-m {
    font-size: 15px;
    padding: 8px 20px;
  }
}
 .hero-slider-m,
  .carousel-item,
  .hero-bg-m {
    height: 70vh;          /* balanced tablet height */
  }
/* ---------------------------- */
/* TABLET (769px – 1024px) */
/* ---------------------------- */
@media (min-width: 769px) and (max-width: 1024px) {

  .hero-slider-m,
  .carousel-item,
  .hero-bg-m {
    height: 40vh;          /* balanced tablet height */
  }

  .hero-caption-m {
    bottom: 28%;
  }

  .hero-caption-m h1 {
    font-size: 38px;
  }

  .hero-caption-m p {
    font-size: 16px;
  }

  .hero-btn-m {
    font-size: 17px;
    padding: 10px 25px;
  }
}
.nav-active {
  color: #23c6e0 !important;
  font-weight: 600 !important;
  
}

/* SMOOTH FADE EFFECT */
.carousel-item { transition: opacity 1.2s ease-in-out !important; }
.carousel-fade .carousel-item { opacity: 0; }
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end { opacity: 1; }
.carousel-fade .active.carousel-item-end,
.carousel-fade .active.carousel-item-start { opacity: 0; }

.fb-header div >span{
  position: relative;
}
.fb-header div >span:first-child::before{
  content: '';
  position: absolute;
  right: -575px;
  top: -125px;
  width: 575px;
  height: 150px;
  background-color: transparent;
  border-radius:0px 0 50px 0px;
  border: 3px solid #23c6e0;
  border-left: none;
  border-top: none;
  display: none;
  /* z-index: -1; */
  pointer-events: none;
}
#fb-header div >span:first-child::after{
  content: '';
  position: absolute;
  left: -555px;
  top: 20px;
  width: 555px;
  height: 900px;
  background-color: transparent ;
  border: 3px solid #23c6e0; 
  border-radius:50px 0 0 50px;
  border-right: none;
  border-bottom: none;
  /* z-index: -1; */
  pointer-events: none;
}
.four-sec-h{
  position: relative;
}
.four-sec-h::before{
  content: "";
  position: absolute;
  top: -100px;
  left: -20px;
  background-color: transparent;  
  border: 3px solid #23c6e0;
  border-radius: 50px 0 0 0px;
  border-style: solid none solid solid; 
  width:568px;
  height: 150%;
  display: block;
  z-index: 0;
  pointer-events: none;
}
.four-sec-h::after{
    content: '';
    position: absolute;
    right: 0px;
    top: -240px;
    width: 585px;
    height: 150px;
    background-color: transparent;
    border-radius: 0px 0 50px 0px;
    border: 3px solid #23c6e0;
    border-left: none;
    border-top: none;
    /* z-index: -1; */
    pointer-events: none;
  }

.tmc{
  position: relative;
}
.tmc::before{
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  background-color: transparent;  
  border: 3px solid #23c6e0;
  border-style: solid none solid solid; 
  width: 0px;
  height: 100%;
  display: block;
  
}
.jt-c,.msc{
  position: relative;
}
.jt-c::before{
  content: "";
  position: absolute;
  top: -40px;
  left: -20px;
  background-color: transparent;  
  border: 3px solid #23c6e0;
  border-style: solid none solid solid; 
  width: 0px;
  height: 120%;
  display: block;  
}
.tsw{
  position: relative;
}
.tsw::before{
  content: "";
  position: absolute;
  top: -92px;
  left: -20px;
  background-color: transparent;  
  border: 3px solid #23c6e0;
  border-style: none none  solid solid; 
  width: 400px;
  height: 60%;
  border-radius: 0 0 0 50px;
  display: block;  
}
.tsw::after{
    content: "";
    position: absolute;
    top: 120px;
    right: -30px;    
    background-color: transparent;
    border: 3px solid #23c6e0;
    border-style: solid solid solid none;
    border-radius: 0 50px 50px 0px;
    width: 550px;
    height:340px;
    display: block;
    z-index: 0;
}


.tsw .trusted-title-w{
  position: relative;   
   z-index: 2;  
}
.tsw .trusted-title-w::before{
  content: "";
  position: absolute;
  bottom: -310px;
  right: -50px;
  background-color:transparent;  
  border: 3px solid #23c6e0;
  border-style: solid solid solid none; 
  width: 580px;
  height: 340px;
  border-radius: 0 50px 50px 0px;
  display: none; 
  z-index: -1; 
}

.tsw .trusted-title-w::after{
  content: "";
  position: absolute;
  background-color:rgb(247 247 247);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 45%;
  height: 100%;
  z-index: -1;
  display: inline-block;
 
}

/* .ts-mn{
  position: relative;
  z-index: 2;
}
.ts-mn::before{
  content: "";
  position: absolute;
  top: -298px;
  right: -30px;
  background-color:transparent;  
  border: 3px solid #23c6e0;
  border-style:  solid solid solid none; 
  width: 500px;
  height: 335px;
  border-radius: 0 50px 50px 0 ;
  display: block;  
  z-index: 1;
} */
 .btn-primary-l{
  position: relative;
  z-index: 2;
 }
.btn-primary-l:hover{  
  /* color: #dadcdc; */
  font-weight: 400;
 
}
.container.animated-section.lines{
  position: relative;
}
.container.animated-section.lines::before{
  content: "";
  position: absolute;
  bottom: 495px;
  right: -20px;
  background-color:transparent;  
  border: 3px solid #23c6e0;
  border-style: solid solid solid none; 
  width: 600px;
  height: 620px;
  border-radius: 0 50px 50px 0px;
  display: block; 
  z-index: -1; 
  pointer-events: none;
}
.container.animated-section.lines::after{
  content: '';
  position: absolute;
  left: -10px;
  top: 70px;
  width: 565px;
  height: 1360px;
  background-color: transparent ;
  border: 3px solid #23c6e0;
  border-radius:50px 0  0px 50px;
  border-style: solid none solid solid; 
  pointer-events: none;
  z-index: -1;
}


/* .animated-section h2 >span:first-child::after{
  content: '';
  position: absolute;
  left: -20px;
  top: 70px;
  width: 565px;
  height: 1360px;
  background-color: transparent ;
  border: 3px solid #23c6e0;
  border-radius:50px 0  0px 50px;
  border-style: solid none solid solid; 
  pointer-events: none;
  z-index: -1;
} */
.wts h2 {
  position: relative;
  z-index: 2;
}
.team-section-mno .lines{
  position: relative;  
}

.team-section-mno .lines::before {
  content: "";
  position: absolute;
  bottom: 328px;
  right: -20px;
  border-radius: 0;
  background-color: transparent;
  border: 3px solid #23c6e0;
  border-style: solid solid solid none;
  border-radius: 0 50px 50px 0px;
  width: 460px;
  height: 577px;
  display: block;
  z-index: 1;
  pointer-events: none;
}
.section-r .content-wrapper-r{
  position: relative;
}

.section-r .content-wrapper-r::before{
  content: "";
  position: absolute;
  top: -145px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0;
  background-color: transparent;
  border: 3px solid #23c6e0;
  border-style: solid solid none none;
  border-radius: 0 50px 0 0px;
  width: 80%;
  /* height: 200px; */
  display: block;
  z-index: 1;
}

.section-r .content-wrapper-r::after{
  content: "";
  position: absolute;
  top: -145px;
  right: -20px;
  border-radius: 0;
  background-color:transparent;
  border: 3px solid #23c6e0;
  border-style:  solid  solid none none;
  border-radius:0 50px  0 0px;
  width: 300px;
  height: 1100px;
  display: block;
  z-index: 1;
}
.wrapper-row-lines {
  position: relative;
}
.wrapper-row-lines::after{
  content: "";
  position: absolute;
  left: 5px;
  bottom: -120px;
  border-radius: 0;
  background-color:transparent;
  width: 120px;
  height: 90px;
  border: 3px solid #23c6e0;
  border-style: none none solid solid;
  border-radius: 0  0 0px 50px;
  display: block;
  z-index: 0;
}

.emp-form{
  position: relative;
}
.emp-form input, .emp-form textarea{
  border-radius: 5px;
  border-color: #e3e3e3;
  border-width: 1px;
}
.emp-form button{
  border-radius: 5px;
  border-color: #e3e3e3;
  border-width: 1px;
  font-size: 15px;
  font-weight: normal;
}
.emp-form button:hover{ 
  border-width: 1px;
  background-color: #1e4b73;
}
.mobile-nav-toggle{
  font-size: 1.5rem;
}


@media screen and (min-width:1530px) {
  .section-r .content-wrapper-r::before{
    width: 90%;
  }
}
@media screen and (max-width:1530px) {
  .section-r .content-wrapper-r::before{
    width: 84%;
  }
}


@media (max-width:1400px){
  .tsw .trusted-title-w::after{
    width: 52%;
  }
  .industry-header-l .industry_content_l::before {
   left: -90%;    
  }
  .text-dark-blue::after {
        right: -30%;  
        height: 940px;     
    }
    .fb-header div >span:first-child::before {
    width:481px;
    right:-481px;
  }
  .four-sec-h::before{
    width: 479px;
  }
  .tsw .trusted-title-w::before{
    width: 430px;
  }
  .animated-section h2 > span:first-child::before{
    width: 470px;
  }
  .animated-section h2 >span:first-child::after {
    width: 480px;
    height: 1405px;
  }
  .team-section-mno h2::before{
    height: 585px;
    right: -445px;
    width: 460px;
  }
  .container.tdb-lines::before{
    height: 936px;
    width: 480px;
  }
  .tsw::before{
    width: 315px;
  }
  .four-sec-h::after{
    width: 497px;
  }
  .container.animated-section.lines::before{
    width: 520px;
    /* height:62px ; */
  }
  
}
@media (min-width:1400px){
  .team-section-mno .lines::before{   
    bottom: 325px;
    right: -20px;    
    width: 540px;
    height: 521px; 
  }
  .tsw::after {
    right:-20px;
  }
}
@media (max-width:1330px){  
  .text-dark-blue::after {
        right: -38%;       
    }
  .line-wrapper .line-right::after {
    bottom: -170px;
    height: 185px;
  }
  .text-dark-blue::after{
    right: -30%;
    height: 940px;
    width: 60%;
  }
  .fb-header div >span:first-child::before {
    width:481px;
    right:-481px;
  }
  /* .four-sec-h::before{
    width: 462px;
  } */
  .hero-slider-m, .carousel-item,
   .hero-bg-m{
    height: 60vh;
  }
  .tsw::after{
    right: 0;
  }
  .container.animated-section.lines::after,
  .text-dark-blue::after,
  .wrapper-row-lines::after,
  .section-r .content-wrapper-r::after,
  .section-r .content-wrapper-r::before,
  .industry-container-l::before,
  .industry-container-l::after ,
  .container.tdb-lines::before ,
  .tsw::after
  {
    display: none;
  } 
    .team-section-mno .lines::before,
 .container.animated-section.lines::before,
  .fb-header div >span:first-child::before {
    display: none;
  }
  .four-sec-h::before,
  .four-sec-h::after{
   display: none;
  }
  .tsw .trusted-title-w::before{
    display: none;
  }
  .four-sec-h::before{
    display: none;
  }
  .tmc::before{
    display: none;
  }
  .jt-c::before{
    display: none;
  }
  .ch-c::before,
  .tsw::before{
    display: none;
  }
  /* .mobile-nav-toggle{
    display: none;
  } */
  .animated-section h2 >span:first-child::after,
  .animated-section h2 >span:first-child::before{
    display: none;
  }
  .team-section-mno h2::before{
    display: none;
  }
}
@media  (max-width:1200px) {
 
  .hire-section-m h2{
    font-size: 2.5rem;
  }
  .confidence-section-m h3{
    font-size: 2.3rem;
  }
  .testimonial-text{
    padding: 1rem;
  }
   .info-left-m p{
    display: none;
  }
}
@media  (max-width:1100px) {
  .header .navmenu ul{
    gap: 1rem;
  }
  .header{
    padding: 1rem 2rem;
  }  
  .section-r {
    margin: 0;
  }
  
}
@media  (min-width:993px) {
  .mobile-nav-toggle{
    display: none;
  }
  .carousel-item h1 + p{   
    width: 60%;
  } 
}

@media (max-width:992px){
  .tm-container .row, 
  .second-about .row,
  .wrapper-row-lines{
    gap: 3rem;
  }
  .content-wrapper-r {
    flex-direction: column;
    gap: 20px;
  }
   .heading-rl{    
    display: none;
  } 
  .heading-r{
    display: flex;
    margin-top: -90px;
  } 
  /* .line1-r{
    margin-left: 0;
  }  */
}
@media (max-width:1024px){
  .tm__l p {
    width: 100%;
  }
}

@media (max-width:768px){
  .hero-slider-m, .carousel-item, .hero-bg-m{
    height: 50vh;
  }
  .second-about .row{
    gap: 2rem;
  }
  .section-r {
    margin:4.5rem 0;
  }
}
@media (max-width:576px){
  .hero-caption-m h1{
    font-size: 21px;
  }
  .pre-header a{
    font-size: 14px;
  }
  .header{
    padding: 1rem 1rem;
  
  }
  .heading-r{    
    margin-top: -20px;
  }
  .container.tsw   {
    display: none !important ;
  }
  .hero-section .first_line{
    width: fit-content;
  }
  .filled-role-box-m{
    width:200px;
    font-size: 0.9rem;
  }
  .top-center-m  .case-item-m{
    width: 100%;
  }  
}