* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background: #fff;
    color: #111;
    line-height: 1.6;
  }
  
  a {
    text-decoration: none;
  }

.header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
}

.logo {
  display: flex;
  align-items: center;
  max-height: 70px; /* limit height */
  padding: 5px;
}

/* Make logo image responsive */
.logo-img {
  max-height: 400px;
  max-width: 200px;
  height: auto;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Adjust for small screens */
@media (max-width: 768px) {
  .logo {
    max-height: 50px;
  }
}
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color:#f12525;
}
.nav a.btn-red:hover{
  color: #fff;
}


/* Red Button */
/* .btn-red {
  background-color: red;
  color: #000;
  padding: 8px 16px;
  border-radius: 20px;
}
.btn-red:hover{
  color: #fff;
} */
.btn-red {
  background-color: red;
  color: #000;
  padding: 10px 18px;
  border-radius: 8px;
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
}
.btn-red:hover{
  color: #fff;
}


/* Hide menu icons initially on desktop */
.fa-bars {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  position: absolute;
  top: 20px;           
  right: 20px;         
  z-index: -1;   
}

.nav .fa-xmark {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  position: absolute;
  top: 20px;
  left: 20px;
}


/* Responsive Styling */
@media (max-width: 768px) {
  .fa-bars {
    display: block;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    background-color: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 20px;
    gap: 20px;
    transition: right 0.3s ease-in-out;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
  }

  .nav.active {
    right: 0;
  }

  .nav .fa-xmark {
    display: block;
  }

  .nav a {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }
}
/* =============== hero section start ================ */
.hero {
  display: flex;
  padding: 50px 20px;
  justify-content: center;
  align-items: center;
  gap: 200px;
}

.hero-text {
  width: 45%;
  padding: 20px;
}

.hero-text h1 {
  font-size: 2.4em;
  margin-bottom: 15px;
  line-height: 50px;
  font-weight: 900;
}

.hero-text h1 span {
  color: teal;
}

.hero-img {
  width: 400px;
  height: 400px;
  background: linear-gradient(225deg, red 50%, white 50%);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border: 1px solid #d2caca;
}

.hero-img img {
  transform: scale(0.8);
  object-fit: cover;
  border-radius: 8px;
  z-index: 1;
}
  /* =============== hero section ends ================ */
  /* ====== client section styling start ====== */
  .clients {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

.clients img {
  max-width: 150px;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.clients img:hover {
  transform: scale(1.05);
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .clients img {
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  .clients img {
    max-width: 100px;
  }
}

  /* ====== client section styling ends ====== */
 /* ====== unique section styling starts ====== */
.unique {
  padding: 40px 20px;
  background-color: #f7f7f7;
  overflow: hidden;
}

.unique h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}

.unique h2 span {
  color: red;
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.cards {
  display: flex;
  gap: 20px;
  animation: scroll 40s linear infinite;
}

.card {
  flex: 0 0 300px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
}

.card img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.card p {
  font-size: 14px;
  color: #666;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Responsive */
@media (max-width: 768px) {
  .card {
    flex: 0 0 80%;
  }
}

@media (max-width: 480px) {
  .card {
    flex: 0 0 90%;
  }

  .unique h2 {
    font-size: 22px;
  }
}



  /* ====== unique section styling ends ====== */
  /* <!-- ======================= API section styling starts======================== --> */
  .api {
    padding: 40px 20px;
    background-color: #f9f9f9;
  }
  
  .api-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .api-img img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    transform: scaleX(-1); /* Flips the image horizontally */
}
  
  .api-text {
    max-width: 600px;
  }
  
  .api-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
  }
  
  .api-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
  }
  
  .api-text h4 {
    font-size: 1.2rem;
    margin-top: 20px;
    color: #333;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .api-content {
      flex-direction: column;
      text-align: center;
    }
  
    .api-text {
      padding: 0 10px;
    }
  }
  .getquote-btn {
  display: inline-block;
  background-color: #ff4747; 
  color: white;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-family: Arial, sans-serif;
}

.getquote-btn:hover {
  background-color: #e60000; /* darker red on hover */
}

  

/* <!-- ======================= API section styling ends======================== --> */

/* <!-- ======================= Funnel section styling starts======================== --> */
 .funnel-section {
  text-align: center;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  background-color: #fff;
}

.funnel-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.funnel-section .subtitle {
  font-size: 16px;
  color: #333;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.custom-feature-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.custom-feature-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px 25px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.466);
  transition: transform 0.3s ease;
}

.custom-feature-card:hover {
  transform: translateY(-4px);
}

.custom-icon-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.custom-icon-heading i {
  font-size: 24px;
  color: #f44336;
}

.custom-icon-heading h3 {
  font-size: 16px;
  margin: 0;
  color: #000;
}

.custom-feature-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .custom-feature-section {
    grid-template-columns: 1fr;
  }
}




.explore-btn {
  display: inline-block;
  margin-top: 40px;
  background-color: red;
  color: white;
  padding: 7px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s ease;
}

.explore-btn:hover {
  background-color: #c40000;
}

  
/* <!-- ======================= Funnel section styling ends======================== --> */
/* <!-- ======================= checks section styling starts======================== --> */

.checks {
    padding: 40px 20px;
    text-align: center;
  }
  
  .checks h2 {
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: bold;
  }
  .icons div {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
  }
  .fas{
    color: teal;
  }
  .icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 15px;
    padding: 20px;
    max-width: 900px;
    margin: auto;
    text-align: center;
  }
  
  .icons i {
    font-size: 24px;
    margin-bottom: 10px;
    /* padding: 15px;
    border-radius: 10px; */
  }
  
  @media (max-width: 768px) {
    .icons {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 480px) {
    .icons {
      grid-template-columns: 1fr;
    }
  }
  
 .bgv-section {
  padding: 60px 20px;
  background-color: #fff;
}

.bgv-container {
  max-width: 960px;
  margin: 0 auto;
}

.bgv-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 40px;
  flex-wrap: wrap;
  background-color: #fff;
}

.bgv-left {
  flex: 1 1 400px;
}

.bgv-text {
  font-size: 30px;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.6;
}

.bgv-btn {
  background-color: #ff4d4d;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 14px;
  display: inline-block;
}

.bgv-right {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bgv-logo {
  width: 300px;
  height: auto;
  margin-bottom: 8px;
}

.bgv-tagline {
  font-size: 13px;
  color: #000;
  margin: 0;
}

@media (max-width: 768px) {
  .bgv-card {
    flex-direction: column;
    text-align: center;
  }

  .bgv-left, .bgv-right {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }

  .bgv-right {
    margin-top: 0;
  }
}


/* <!-- ======================= checks section styling ends======================== --> */
/* <!-- ======================= Testimonials section styling starts======================== --> */
  .testimonials {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
    overflow: hidden;
  }

  .testimonials h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .testimonials h2 span {
    font-size: 1.2rem;
    color: #555;
  }



  .testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .testimonial-slide {
    min-width: 100%;
   
    /* background: #fff; */
    background: #e6faf4;
    
    padding: 30px;
  }

  .testimonial-slide p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
  }

  .testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .testimonial-footer button {
    /* background: #ff0055; */
    color: #000;
    border: none;
    font-size: 1.5rem;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
  }

  .testimonial-footer div {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .testimonial-footer img {
    width: 60px;
    height: 60px;
    /* border-radius: 50%; */
    object-fit: cover;
  }

  .testimonial-footer p {
    margin: 0;
    text-align: left;
    font-size: 0.9rem;
  }

  .testimonial-footer p strong {
    display: block;
    font-size: 1rem;
  }

  @media (max-width: 600px) {
    .testimonial-footer {
      flex-direction: column;
      gap: 10px;
    }

    .testimonial-footer div {
      flex-direction: column;
      text-align: center;
    }

    .testimonial-footer img {
      width: 50px;
      height: 50px;
    }
  }

  /* <!-- ======================= Testimonials section styling ends ======================== --> */

/* <!-- ======================= footer section styling ends ======================== --> */
  .footer {
    background-color: #b9fad6;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-section {
    flex: 1 1 220px;
    min-width: 220px;
  }
  
  .footer-section h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
  }
  
  .footer-section ul li {
    margin-bottom: 6px;
    font-size: 14px;
    color: #000;
  }
  
  .footer-section p {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .footer-section a {
    color: #000;
    text-decoration: none;
  }
  
  .footer-section a:hover {
    text-decoration: underline;
  }
  
  .social-icons a {
    margin: 0 10px;
    font-size: 24px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #1da1f2; 
  }
  

  .footer-logo {
    width: 160px;
    height: 90px;
    box-shadow:5px 2px 20px gray;
	border-radius:10px;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
  
    .footer-section {
      width: 100%;
    }
  
    .social-icons img {
      width: 24px;
      height: 24px;
    }
  }
  /* <!-- ======================= footer section styling ends ======================== --> */

  /* ================================================================================================================================== */
 /* -----------product page----------- */
 /* ================= Intro section styling start ================== */
 


/* ================= Benefits section styling ends ================== */
.benefits {
  padding: 40px 20px;
  text-align: center;
}

.benefits h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.benefits .subtitle {
  margin-bottom: 30px;
  color: #666;
}

.benefit-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.box {
  background: #fcfafab9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(26, 9, 9, 0.473);
  max-width: 200px;
  height: 270px;
  flex: 1;
}

.box h3 {
  font-size: 16px;
  margin-bottom: 10px;
}
/* ================= Benefits section styling ends ================== */
/* ================= Steps section styling start ================== */

.steps {
  background: #e7fdfb;
  padding: 40px 20px;
  text-align: center;
}

.steps h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.steps p {
  color: #444;
  margin-bottom: 30px;
}

.step-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.step {
  flex: 1;
  max-width: 200px;
}

.icon {
  font-size: 32px;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .intro {
    flex-direction: column;
    text-align: center;
  }

  .benefit-boxes,
  .step-container {
    flex-direction: column;
    align-items: center;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    margin-top: 10px;
  }
}
/* ================= Steps section styling ends ================== */
/* ================= white -collar section styling start ================== */
.container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.content {
  flex: 1 1 500px;
  padding: 20px;
}

.content h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.content h3 {
  font-weight: 600;
  margin-bottom: 15px;
}

.content p {
  font-size: 1rem;
  margin-bottom: 25px;
  max-width: 600px;
}

.properties{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.property {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.property img {
  width: 48px;
  height: 48px;
}

.property h4 {
  margin-top: 10px;
  font-weight: 600;
}
.cta {
  display: inline-block;
  color: #007bff;
  font-weight: bold;
  text-decoration: none;
  margin-top: 10px;
}

.image-section {
  flex: 1 1 400px;
  text-align: center;
}

.image-section img {
  max-width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .properties {
    justify-content: center;
  }
}
/* ================= white -collar section styling ends ================== */

/* ================= support section styling ends ================== */

.support-section {
  padding: 60px 20px;
  background-color: #e9f0ed;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.support-img {
  flex: 1 1 400px;
  text-align: center;
}

.support-img img {
  max-width: 100%;
  height: auto;
}

.support-content {
  flex: 1 1 500px;
}

h5 {
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #444;
  line-height: 1.6;
}

.icons {
  /* display: flex; */
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.icon-box img {
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
}

.icon-box p {
  font-weight: 600;
  color: #000;
}

.cta {
  display: inline-block;
  color: #007b7b;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .icons {
    justify-content: center;
  }
}



/* security section styling start */
.security-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.security-text {
  flex: 1 1 500px;
}

.security-text h5 {
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.security-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.security-text p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #444;
  line-height: 1.6;
}
.security-img {
  flex: 1 1 400px;
  text-align: center;
}
.security-img img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .security-img img {
    max-width: 100%;
  }

  .quote-btn {
    margin-top: 15px;
  }
}
/* ------ contact page styling start ------ */
/* ============== container secction start ================ */
.container2{
  display: flex;
  flex-wrap: wrap;
  background-color: rgb(247, 246, 246);
  border-radius: 10px;
  padding: 30px;
  /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); */
}

.left-section {
  padding: 40px 20px;
  max-width: 600px;
  margin: auto;
  color: #002d3d;
}

.left-section h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #00323f;
}

.left-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

.left-section ul {
  padding-left: 20px;
  color: #333;
  margin-bottom: 25px;
}

.left-section li {
  margin-bottom: 12px;
  font-size: 15px;
}

.contact-info-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 30px; /* space between phone and email */
  font-size: 15px;
  align-items: center;
  color: #000;
}

.contact-item {
  display: flex;
  align-items: center;
  align-items: baseline;

}

.icon0 {
  color: #e60023;
  margin-right: 6px;
}

.small-icon {
  font-size: 14px;
}





.right-section {
  flex: 1;
  padding: 20px;
  min-width: 300px;
}

.form {
  background-color: #f5f5f5;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #3a3a3a;
}

.form h3 {
 margin: 0 auto 20px auto;
  color: #004d40;
  text-align: center;
  display: block;

}

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"] {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #3a3a3a;
}

.checkboxes {
  margin: 10px 0;
  font-size: 14px;
}

.checkboxes label {
  display: block;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .container2 {
    flex-direction: column;
  }

  .left-section, .right-section {
    padding: 10px 0;
  }
}
/* ============== container secction ends ================ */

/* ============== check  security section start ================ */

.container4 {
  max-width: 800px;
  margin: auto;
  height: 400px;
  padding-top: 90px;
}

/* Top CTA Box */
.cta-card1 {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  background-color: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

.cta-content1{
  font-size: 18px;
  font-weight: 600;
}

/* Trust Section */
.trust-section {
  margin-top: 60px;
  text-align: center;
}

.trust-section h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.brand-placeholder {
  height: 100px;
  border: 1px solid #000;
  border-radius: 6px;
  margin-bottom: 50px;
  width: 100%;
}

/* Responsive Styling */
@media (max-width: 600px) {
  .cta-card {
    padding: 20px;
  }

  .cta-content {
    font-size: 16px;
  }

  .logo span {
    font-size: 16px;
  }

  .brand-placeholder {
    height: 80px;
  }
}
/* ============== check  security section start ================ */
/* ============================================================================================================================= */

/* -------- Resoureces page styling start --------- */
/* ========== main section styling start ========== */
.section {
  padding: 50px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.section.main, .section.ats {
  background: #fff;
}
.section.solutions {
  background: #f1f8f6;
  flex-direction: column;
  
}

.section .content, .section .image {
  flex: 1;
  min-width: 300px;
  padding-left: 80px;
  
}

.section .image img {
  max-width: 400px;
  
  border-radius: 8px;
  height: 400px;
  
}




.section .content h1,
.section .content h2 {
  margin-bottom: 15px;
  font-size: 24px;
}

.section .content p {
  margin-bottom: 15px;
  color: #444;
}

.section .content ul {
  list-style: none;
  padding-left: 20px;
}
.section .content ul li::before {
  content: "✓";
  color: green;
  margin-right: 8px;
}
.section .content ul li {
  margin-bottom: 10px;
}

.text-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 20px auto;
}

.badge {
  background: red;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 20px;
  text-align: center;
  font-size: 14px;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}


@media (max-width: 768px) {
  .header, .section {
    flex-direction: column;
    text-align: center;
  }

  .nav {
    justify-content: center;
  }

  .section .content ul {
    padding-left: 0;
  }

  .badge {
    margin: 10px auto;
  }
}
.cta-section {
  padding: 60px 20px;
  background: #f8f9f9;
}

.cta-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
}

.cta-content img {
  max-width: 300px;
  width: 100%;
  height: auto;
}

.cta-content .text {
  max-width: 400px;
}

.cta-content h2 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}
/* =========== Integrate section styling start =========== */
.incoverify-hiring {
  padding: 40px 0; /* reduced top and bottom space */
  background-color: #f9f9f9;
}

.inco-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.inco-image img {
  max-width: 300px;
  height: auto;
  transform: rotate(-8deg); /* bend left */
}


.inco-content {
  text-align: left;
}

.inco-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}

.get-started-btn {
  background-color: #ff4747;
  color: white;
  padding: 7px 41px;;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.get-started-btn:hover {
  background-color: #e60000;
}

/* ====================== faq section styling starts ======================= */
.faq-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 700;
}

.faq {
  border-top: 1px solid #ddd;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  padding: 16px;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  color: #000;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
}

.faq-question.active::after {
  content: "-";
}

.faq-answer {
  padding: 0 16px 16px;
  display: none;
  font-size: 15px;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-content {
    flex-direction: column;
    text-align: center;
  }
}
/* ===================================================================================================================== */
/* -------------- solution page styling --------------- */
/* <!-- =========== verification section  styling start =========== --> */
.verification-section {
  padding: 60px 20px;
  background-color: #fff;
}

.verification-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.verification-text-content {
  flex: 1 1 500px;
}

.verification-text-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.4;
}

.highlight {
  color: #00525e; /* Dark teal like in your image */
}

.verification-section {
  padding: 40px 20px;
  background-color: #fff;
}

.verification-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 20px;
}

.verification-text-content {
  flex: 1 1 50%;
  min-width: 280px;
}

.verification-text-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
  line-height: 1.3;
}

.highlight {
  color: #00525e;
}

.verification-text-content p {
  font-size: 14px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.5;
}

.btn-red {
  background-color: #ff4d4d;
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 14px;
  display: inline-block;
}

.verification-image-content {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.verification-image-content img {
  max-width: 100%;
  height: auto;
  width: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .verification-container {
    flex-direction: column;
    text-align: center;
  }

  .verification-text-content {
    margin-bottom: 20px;
  }

  .verification-image-content {
    width: 100%;
  }

  .verification-image-content img {
    width: 100%;
    height: auto;
  }
}


/* <!-- =========== verification section  styling ends =========== --> */

.features-section {
  background-color: #f2f7f7;
  padding: 60px 20px;
  border-radius: 12px;
}

.features-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.features-heading {
  font-size: 28px;
  font-weight: 700;
  color: #00323f;
  margin-bottom: 10px;
}

.features-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.features-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.feature-box {
  background-color: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  flex: 1 1 300px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.icon-circle {
  background-color: #00525e;
  color: #fff;
  width: 50px;
  height: 50px;
  margin: 0 auto 15px auto;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-box h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.feature-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .features-grid {
    flex-direction: column;
    align-items: center;
  }

  .feature-box {
    max-width: 100%;
  }
}

/* ============= Recruiter dasboard section styling start ============= */
.rd-wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  justify-content: space-between;
  gap: 40px;
}

.rd-content {
  flex: 1 1 500px;
}

.rd-subtitle {
  color: #176353;
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 10px;
}

.rd-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.rd-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.rd-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.rd-icon-box {
  font-size: 28px;
  background-color: #e0ecea;
  padding: 12px;
  border-radius: 10px;
  min-width: 50px;
  text-align: center;
}

.rd-text-box {
  flex: 1;
}

.rd-feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 5px;
}

.rd-feature-desc {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
}
.rd-image-container {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rd-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .rd-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .rd-title {
    font-size: 1.6rem;
    text-align: center;
  }

  .rd-content,
  .rd-image-container {
    flex: 1 1 100%;
    text-align: center;
  }

  .rd-feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .rd-icon-box {
    margin-bottom: 10px;
  }

  .rd-btn-book {
    margin-left: auto;
    margin-right: auto;
  }
}
/* =============== DIY reporting section styling start ================ */
.insights-section {
  padding: 60px 20px;
  background-color: #fff;
}

.insights-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
  gap: 40px;
}

.insights-left {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.insights-left img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.insights-right {
  flex: 1 1 50%;
}

.insights-right h2 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.main-subtext {
  font-size: 15px;
  color: #333;
  margin-bottom: 30px;
}

.insight-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 25px;
}

.insight-feature img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.insight-feature h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #000;
}

.insight-feature p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

.get-started-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

.get-started-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .insights-container {
    flex-direction: column;
  }

  .insights-left,
  .insights-right {
    flex: 1 1 100%;
    text-align: center;
  }

  .insight-feature {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .insight-feature img {
    margin-bottom: 10px;
  }
}

/* <!-- =========== status section styling start ============= --> */
 /* ============== platform section  styling start ============== */

 .recruiter-tools-container {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.recruiter-tools-container h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.recruiter-tools-container p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.recruiter-feature-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Common styles for all feature cards */
.recruiter-feature-item,
.recruiter-feature-item-alt,
.notify-feature-box,
.user-role-access-card,
.dashboard-visual-card,
.custom-metrics-report {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 4px 10px rgba(15, 0, 0, 0.301);
  transition: transform 0.3s;
  text-align: center;
}

.recruiter-feature-item:hover,
.recruiter-feature-item-alt:hover,
.notify-feature-box:hover,
.user-role-access-card:hover,
.dashboard-visual-card:hover,
.custom-metrics-report:hover {
  transform: translateY(-5px);
}

.recruiter-feature-item i,
.recruiter-feature-item-alt i,
.notify-feature-box i,
.user-role-access-card i,
.dashboard-visual-card i,
.custom-metrics-report i {
  font-size: 36px;
  color: teal;
  margin-bottom: 15px;
}

.recruiter-feature-item h4,
.recruiter-feature-item-alt h4,
.notify-feature-box h4,
.user-role-access-card h4,
.dashboard-visual-card h4,
.custom-metrics-report h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.recruiter-feature-item p,
.recruiter-feature-item-alt p,
.notify-feature-box p,
.user-role-access-card p,
.dashboard-visual-card p,
.custom-metrics-report p {
  font-size: 14px;
  color: #666;
}

/* Tablet Responsive (2 columns) */
@media (max-width: 992px) {
  .recruiter-feature-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Responsive (1 column) */
@media (max-width: 600px) {
  .recruiter-feature-wrapper {
    grid-template-columns: 1fr;
  }
}








.candidate-section {
  padding: 60px 20px;
  background-color: #f2f8fa;
}

.candidate-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.candidate-left {
  flex: 1 1 55%;
}

.candidate-highlight {
  color: #0073a8;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}

.candidate-left h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
}

.candidate-desc {
  font-size: 15px;
  color: #444;
  margin-bottom: 25px;
}

.candidate-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.candidate-feature img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.candidate-feature h4 {
  font-size: 15px;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}

.candidate-feature p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.candidate-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

.candidate-link:hover {
  text-decoration: underline;
}

.candidate-right {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.candidate-right img {
  max-width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .candidate-container {
    flex-direction: column;
    text-align: center;
  }

  .candidate-left,
  .candidate-right {
    flex: 1 1 100%;
  }

  .candidate-feature {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .candidate-feature img {
    margin-bottom: 8px;
  }
}













/* ============== platform section  styling start ============== */
/* ============== Trust section  styling start ============== */
.cta-trust-section {
  background-color: #ff4d4d;
  padding: 40px 20px;
  border-radius: 12px;
  margin: 40px 20px;
}

.cta-trust-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cta-trust-content {
  flex: 1 1 60%;
  color: #fff;
}

.cta-trust-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-trust-content p {
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
}

.cta-trust-buttons {
  flex: 1 1 35%;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cta-btn-white {
  background-color: #fff;
  color: #000;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
}

.cta-btn-outline {
  background-color: transparent;
  color: #000;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #000;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-trust-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .cta-trust-buttons {
    justify-content: center;
  }

  .cta-trust-content h2 {
    font-size: 20px;
  }
}

/* ============== Trust section  styling start ============== */

/* ============== Insight section  styling start ============== */
.insights {
  padding: 60px 5%;
  text-align: center;
}
.insight-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.card {
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 8px;
  max-width: 300px;
  text-align: left;

}
.card img {
  max-width: 100%;
  margin-bottom: 10px;
 
}

/* Responsive */
@media (max-width: 768px) {
  .status-section, .trust-section {
    flex-direction: column;
    text-align: center;
  }
  .trust-actions {
    justify-content: center;
  }
  .card {
    max-width: 90%;
  }
}
/* ============== Insight section  styling ends ============== */


/* ================== Request Demo  page styling start==================== */
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.input-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.input-row input {
  flex: 1 1 48%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #fff;
  transition: border 0.3s, box-shadow 0.3s;
}

.input-row input:focus {
  border-color: #003d29;
  box-shadow: 0 0 0 2px rgba(0, 61, 41, 0.2);
  outline: none;
}

.inquiry-form textarea {
  width: 100%;
  max-width: 100%;
  display: block;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
  transition: border 0.3s, box-shadow 0.3s;
  resize: none; /* Disables resizing */
}

.inquiry-form textarea:focus {
  border-color: #003d29;
  box-shadow: 0 0 0 2px rgba(0, 61, 41, 0.2);
  outline: none;
}

.options {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
  gap: 0.5rem;
  color: #333;
}

.inquiry-btn {
  background-color: red;
  color: white;
  padding: 14px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.inquiry-btn:hover {
  background-color: darkred;
  transform: translateY(-2px);
}


@media (max-width: 768px) {
  .input-row {
      flex-direction: column;
  }

  .input-row input {
      flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .inquiry-wrapper {
      padding: 2rem 1rem;
  }

  .inquiry-wrapper h2 {
      font-size: 1.6rem;
  }

  .inquiry-btn {
      width: 100%;
  }
}
.modal-container {
position: fixed;
top: 0;
left: 0;
height: 100vh;
width: 100vw;
background-color: rgba(0, 0, 0, 0.5);
display: none;
justify-content: center;
align-items: center;
z-index: 1000;
}

.modal-container.show {
display: flex;
}

.modal {
  position: relative;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 600px;
  margin: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}


.modal button {
margin-top: 20px;
padding: 8px 20px;
background-color: #e60023;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}



.modal h1{
  margin: 0;
}
.modal p{
  opacity: 0.7;
  font-size: 14px;
}
.close-icon {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  z-index: 1000;
  transition: color 0.3s ease;
}

.close-icon:hover {
  color: red;
}
/* ================== Request Demo  page styling start==================== */

/* ========================= Login page Styling start ============================ */
.login-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.login-container {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.login-container h2 {
  margin-bottom: 20px;
}

.login-container input {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.login-container button {
  width: 100%;
  padding: 12px 15px;
  background-color: red;
  color: white;
  border: none;
  border-radius: 5px;
  margin-top: 10px;
  cursor: pointer;
  font-size: 16px;
}

.login-container button:hover {
  background-color: #cc1c10;
}

.login-container a {
  display: block;
  margin-top: 15px;
  color: #007BFF;
  text-decoration: none;
}

.login-container a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .login-container {
    padding: 20px;
  }
}
/* ========================= Login page Styling start ============================ */

