@import url("https://fonts.googleapis.com/css2?family=Arizonia&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Arizonia&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
.width50 {
  width: 50%;
}
@media only screen and (max-width: 1199px) {
  .width50 {
    width: 100%;
  }
}

.width100 {
  width: 100%;
}

.width40 {
  width: 40%;
}
@media only screen and (max-width: 1199px) {
  .width40 {
    width: 100%;
  }
}

.width30 {
  width: 30%;
}
@media only screen and (max-width: 1199px) {
  .width30 {
    width: 100%;
  }
}

.width25 {
  width: 25%;
}

.width70 {
  width: 70%;
}
@media only screen and (max-width: 1199px) {
  .width70 {
    width: 100%;
  }
}

.width60 {
  width: 60%;
}
@media only screen and (max-width: 1199px) {
  .width60 {
    width: 100%;
  }
}

.display-flex {
  display: flex;
  flex-wrap: wrap;
}

.w-container {
  width: 80%;
  margin: auto;
}

/* Variables */
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden !important;
}

.d-flex {
  display: flex;
  flex-wrap: wrap;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: between;
}

.w100 {
  width: 100%;
}

.w60 {
  width: 60%;
}

.w40 {
  width: 40%;
}

.cap {
  text-transform: capitalize;
}

.error-container {
  text-align: center;
  max-width: 600px;
  padding: 20px;
}
.error-container h1 {
  font-size: 8rem;
  color: #2e3192; /* Bright red for emphasis */
}
.error-container .error-message {
  font-size: 1.5rem;
  margin: 20px 0;
  color: #666;
}

/* Header Section Styling */
.header-section {
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  display: flex;
  flex-wrap: wrap;
  font-family: Montserrat;
  flex-direction: column;
}
@media only screen and (max-width: 1199px) {
  .header-section {
    padding: 7px 10px;
  }
}
@media only screen and (max-width: 767px) {
  .header-section {
    padding: 7px 10px;
  }
}
.header-section .social-contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 4px 4%;
  border-bottom: 1px solid #ccc;
}
@media only screen and (max-width: 767px) {
  .header-section .social-contact-container {
    display: none;
  }
}
.header-section .social-contact-container .social-icons {
  display: flex;
  flex-wrap: wrap;
  width: 40%;
}
.header-section .social-contact-container .social-icons a {
  margin-right: 10px;
  display: inline-block;
}
.header-section .social-contact-container .social-icons a img {
  width: 24px;
  height: 24px;
}
.header-section .social-contact-container .contact-info {
  width: 60%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}
.header-section .social-contact-container .contact-info a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
  display: flex;
  align-items: center;
}
.header-section .social-contact-container .contact-info a img {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}
.header-section .social-contact-container .contact-info a:hover {
  color: #2e3192;
}
.header-section .responsive {
  display: block !important;
}
.header-section .navbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 4px 4%;
}
@media only screen and (max-width: 767px) {
  .header-section .navbar {
    padding: 0px;
  }
}
.header-section .navbar .logo-container .logo {
  width: 15rem;
}
@media only screen and (max-width: 1199px) {
  .header-section .navbar .logo-container .logo {
    width: 10rem;
  }
}
@media only screen and (max-width: 359.98px) {
  .header-section .navbar .logo-container .logo {
    width: 10rem;
  }
}
@media only screen and (max-width: 479.98px) {
  .header-section .navbar .logo-container .logo {
    width: 10rem;
  }
}
.header-section .navbar nav {
  display: flex;
  justify-content: flex-end;
  flex: 1;
}
.header-section .navbar nav .dropdown {
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
  color: #282828;
  font-size: 15px;
}
.header-section .navbar nav .dropdown .dropdown-menu {
  position: absolute;
  top: 100%; /* Position below the "CFP" link */
  left: 0;
  background-color: white;
  border: 1px solid #ddd;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  padding: 10px 0;
  min-width: 180px;
  z-index: 1000;
}
.header-section .navbar nav .dropdown .dropdown-menu a {
  display: block;
  padding: 10px 16px;
  margin: 0;
  text-decoration: none;
  color: black;
}
.header-section .navbar nav .dropdown .dropdown-menu a:hover {
  background-color: #f1f1f1;
}
@media only screen and (max-width: 991px) {
  .header-section .navbar nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #f8f8f8;
    position: absolute;
    top: 105px;
    left: 0;
    padding: 20px 40px;
    z-index: 10;
    display: none;
    position: absolute;
  }
}
@media only screen and (max-width: 767px) {
  .header-section .navbar nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #f8f8f8;
    position: absolute;
    top: 80px;
    left: 0;
    padding: 20px 0;
    z-index: 10;
    display: none;
    position: absolute;
  }
}
@media only screen and (max-width: 479.98px) {
  .header-section .navbar nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #f8f8f8;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 20px 0;
    z-index: 10;
    display: none;
    position: absolute;
  }
}
.header-section .navbar nav .menu {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.header-section .navbar nav .menu li {
  margin: 0 1.2rem 0px 1.2rem;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .header-section .navbar nav .menu li {
    margin: 0 0.5rem 0px 0.3rem;
  }
}
@media only screen and (max-width: 991px) {
  .header-section .navbar nav .menu li {
    width: 100%;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .header-section .navbar nav .menu li {
    width: 100%;
    margin-bottom: 10px;
  }
}
.header-section .navbar nav .menu li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}
.header-section .navbar nav .menu li a:hover {
  color: #2e3192;
}
.header-section .navbar nav.active {
  display: flex;
}
.header-section .navbar .cta-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  align-items: center;
}
.header-section .navbar .cta-container .icon {
  display: none;
}
@media only screen and (max-width: 767px), only screen and (max-width: 991px) {
  .header-section .navbar .cta-container .icon {
    background-color: #33a852;
    color: #fff;
    padding: 0px 15px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    cursor: pointer;
  }
}
.header-section .navbar .cta-container .icon p {
  font-size: 30px;
}
@media only screen and (max-width: 359.98px) {
  .header-section .navbar .cta-container .icon p {
    font-size: 25px;
  }
}
@media only screen and (max-width: 479.98px) {
  .header-section .navbar .cta-container .icon p {
    font-size: 25px;
  }
}
.header-section .navbar .cta-container .join-us {
  background-color: #33a852;
  color: #fff;
  padding: 8px 15px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}
@media only screen and (max-width: 359.98px) {
  .header-section .navbar .cta-container .join-us {
    padding: 5px 10px;
  }
}
@media only screen and (max-width: 479.98px) {
  .header-section .navbar .cta-container .join-us {
    padding: 5px 10px;
  }
}
.header-section .navbar .cta-container .join-us:hover {
  background-color: #27813f;
}

/* Hero Section for home page */
.hero-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  align-items: center;
  font-family: Poppins;
  background: url("./../images/survey.webp") no-repeat center center;
  background-size: cover;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .hero-section {
    width: 100%;
    text-align: center;
    font-size: 10px;
  }
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1;
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  border-radius: 8px;
  width: 50%;
  margin-left: 40px;
}
@media only screen and (max-width: 1199px) {
  .hero-section .hero-content {
    padding: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-section .hero-content {
    width: 40%;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-content {
    width: 100%;
    margin: 0;
    padding: 20px;
  }
}
.hero-section .hero-content h4 {
  font-size: 16px;
  color: #000;
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .hero-section .hero-content h4 {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-content h4 {
    font-size: 11px;
    font-weight: normal;
  }
}
.hero-section .hero-content h1 {
  font-size: 40px;
  color: #2e3192;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1199px) {
  .hero-section .hero-content h1 {
    font-size: 30px;
    line-height: 1.3em;
  }
}
@media only screen and (max-width: 991px) {
  .hero-section .hero-content h1 {
    font-size: 21px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-content h1 {
    font-size: 25px;
    line-height: 32px;
    margin: 0;
  }
}
.hero-section .hero-content p {
  font-size: 16px;
  color: #000;
  line-height: 1.6;
}
@media only screen and (max-width: 1199px) {
  .hero-section .hero-content p {
    font-size: 14px;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 991px) {
  .hero-section .hero-content p {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-content p {
    font-size: 11px;
    margin-top: 11px;
  }
}
.hero-section .hero-content p strong {
  font-weight: bold;
  color: #2e3192;
}
.hero-section .hero-content .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 38px;
}
@media only screen and (max-width: 1199px) {
  .hero-section .hero-content .cta-buttons {
    gap: 5px;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-content .cta-buttons {
    width: 100%;
    font-size: 10px;
    justify-content: center;
    margin-top: 10px;
  }
}
.hero-section .hero-content .cta-buttons .btn {
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-right: 10px;
}
@media only screen and (max-width: 1199px) {
  .hero-section .hero-content .cta-buttons .btn {
    padding: 5px 10px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-section .hero-content .cta-buttons .btn {
    padding: 5px 5px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-content .cta-buttons .btn {
    padding: 7px 7px;
  }
}
.hero-section .hero-content .cta-buttons .btn.btn-primary {
  background-color: #33a852;
  color: white;
}
@media only screen and (max-width: 991px) {
  .hero-section .hero-content .cta-buttons .btn.btn-primary {
    font-size: 0.6em;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-content .cta-buttons .btn.btn-primary {
    font-size: 0.8em;
  }
}
.hero-section .hero-content .cta-buttons .btn.btn-primary:hover {
  background-color: #27813f;
}
.hero-section .hero-content .cta-buttons .btn.btn-secondary {
  background-color: transparent;
  border: 1px solid #33a852;
  color: #33a852;
}
@media only screen and (max-width: 991px) {
  .hero-section .hero-content .cta-buttons .btn.btn-secondary {
    font-size: 0.6em;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-content .cta-buttons .btn.btn-secondary {
    font-size: 0.8em;
  }
}
.hero-section .hero-content .cta-buttons .btn.btn-secondary:hover {
  background-color: #33a852;
  color: white;
}
.hero-section .hero-image {
  position: relative;
  z-index: 2;
  width: 45%;
  text-align: center;
  background-image: url("../images/heroimg.webp");
  background-size: 100%;
  background-repeat: no-repeat;
  height: 35rem;
}
@media only screen and (max-width: 1199px) {
  .hero-section .hero-image {
    height: 25rem;
  }
}
@media only screen and (max-width: 991px) {
  .hero-section .hero-image {
    width: 50%;
    height: 20rem;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-image {
    display: none;
  }
}
.hero-section .hero-image img {
  width: 35rem;
}

/* about us for home page */
.who-we-are {
  font-family: Poppins;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 8px;
  margin: 58px 58px 37px 40px;
  /* Right Section */
}
@media only screen and (max-width: 991px) {
  .who-we-are {
    margin: 40px 58px 37px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .who-we-are {
    margin: 25px 0;
    flex-direction: column;
    width: 100%;
  }
}
.who-we-are .left-section {
  width: 25%;
  position: relative;
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .who-we-are .left-section {
    margin-top: 15px;
    width: auto;
  }
}
.who-we-are .left-section .green-rectangle {
  background-color: #33a852;
  width: 350px;
  height: 350px;
  border-radius: 16px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .who-we-are .left-section .green-rectangle {
    width: 320px;
    height: 320px;
  }
}
@media only screen and (max-width: 991px) {
  .who-we-are .left-section .green-rectangle {
    width: 250px;
    height: 250px;
  }
}
@media only screen and (max-width: 767px) {
  .who-we-are .left-section .green-rectangle {
    width: 10rem;
    height: 10rem;
  }
}
.who-we-are .left-section .green-rectangle .blue-rectangle {
  position: absolute;
  bottom: -16px;
  right: -47px;
  background-color: #2e3192;
  color: #fff;
  font-size: 19px;
  font-weight: bold;
  text-align: center;
  width: 12rem;
  height: 6rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 1199px) {
  .who-we-are .left-section .green-rectangle .blue-rectangle {
    width: 10rem;
    height: 6rem;
  }
}
@media only screen and (max-width: 991px) {
  .who-we-are .left-section .green-rectangle .blue-rectangle {
    width: 8em;
    height: 4rem;
    line-height: 1;
    font-size: 0.8em;
    bottom: -10px;
    right: -30px;
  }
}
@media only screen and (max-width: 767px) {
  .who-we-are .left-section .green-rectangle .blue-rectangle {
    font-size: 10px;
    right: -20px;
    height: 4rem;
    width: 6rem;
  }
}
.who-we-are .left-section .green-rectangle .blue-rectangle p {
  margin: 8px;
  line-height: 1.4;
}
.who-we-are .right-section {
  width: 65%;
}
@media only screen and (max-width: 1199px) {
  .who-we-are .right-section {
    flex: 1;
  }
}
@media only screen and (max-width: 991px) {
  .who-we-are .right-section {
    flex: 1;
  }
}
@media only screen and (max-width: 767px) {
  .who-we-are .right-section {
    text-align: justify;
    margin: 30px 0;
    width: 85%;
  }
}
.who-we-are .right-section h1 {
  color: #2e3192;
  font-size: 28px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1199px) {
  .who-we-are .right-section h1 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .who-we-are .right-section h1 {
    font-size: 20px;
  }
}
.who-we-are .right-section p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1199px) {
  .who-we-are .right-section p {
    font-size: 13px;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 991px) {
  .who-we-are .right-section p {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .who-we-are .right-section p {
    font-size: 11px;
  }
}
.who-we-are .right-section p strong {
  color: #2e3192;
  font-weight: bold;
}
.who-we-are .right-section .cta-button {
  background-color: #33a852;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}
@media only screen and (max-width: 991px) {
  .who-we-are .right-section .cta-button {
    padding: 5px 10px;
  }
}
.who-we-are .right-section .cta-button a {
  color: #fff;
  text-decoration: none;
}
.who-we-are .right-section .cta-button:hover {
  background-color: #256628;
}

/* services-section for home page */
.header {
  font-family: poppins;
  text-align: center;
  padding: 20px;
  background-color: #fff;
}
.header h1 {
  color: #2e3192;
  font-size: 2em;
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .header h1 {
    font-size: 1.6em;
  }
}
@media only screen and (max-width: 767px) {
  .header h1 {
    font-size: 20px;
  }
}
.header p {
  font-size: 1.2em;
  margin: 0;
  color: #555;
}
@media only screen and (max-width: 991px) {
  .header p {
    font-size: 0.9em;
  }
}
@media only screen and (max-width: 767px) {
  .header p {
    font-size: 13px;
  }
}

.services-container {
  font-family: poppins;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 40px;
  width: 100%;
  margin: 0 auto;
}
.services-container .service {
  text-align: center;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  border: 0.5px solid #cecece;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.services-container .service hr {
  width: 80%;
  margin-left: 10%;
  margin-top: 10px;
}
.services-container .service a {
  text-decoration: none;
  color: #000;
}
.services-container .service img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
@media only screen and (max-width: 991px) {
  .services-container .service img {
    width: 40%;
  }
}
@media only screen and (max-width: 767px) {
  .services-container .service img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 479.98px) {
  .services-container .service img {
    width: 100%;
    height: auto;
  }
}
.services-container .service h3 {
  margin-top: 15px;
  color: #2e3192;
  font-size: 1.2em;
}
.services-container .service p {
  font-size: 0.95em;
  margin: 10px 0 0;
}
.services-container .center-circle {
  color: #fff;
  grid-column: 2/3;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 183px;
  background-color: #2e3192;
  font-size: 1.5em;
  font-weight: bold;
  border-radius: 50%;
  margin: auto;
  width: 183px;
}
@media (max-width: 768px) {
  .services-container {
    grid-template-columns: 100%;
    gap: 35px;
  }
  .services-container .center-circle {
    display: none;
    margin-bottom: 20px;
  }
}

/* why-pdv for home page */
.why-pdv {
  font-family: Poppins;
  background-color: #f8f8f8;
  margin-top: 50px;
  padding: 0px 20px 20px 20px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .why-pdv {
    width: 100%;
  }
}
.why-pdv h2 {
  display: inline-block;
  background-color: #fff;
  font-size: 28px;
  color: #2e3192;
  margin-bottom: 30px;
  font-weight: bold;
  padding: 5px;
}
@media only screen and (max-width: 767px) {
  .why-pdv h2 {
    font-size: 20px;
  }
}
.why-pdv .stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  /* Stat Item Styling */
}
@media only screen and (max-width: 767px) {
  .why-pdv .stats-container {
    gap: 40px;
    flex-direction: column;
  }
}
.why-pdv .stats-container .stat-item {
  text-align: center;
}
.why-pdv .stats-container .stat-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .why-pdv .stats-container .stat-item img {
    margin-bottom: 0;
  }
}
.why-pdv .stats-container .stat-item h3 {
  font-size: 24px;
  color: #33a852;
  font-weight: bold;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .why-pdv .stats-container .stat-item h3 {
    margin-bottom: 0;
    font-size: 20px;
  }
}
.why-pdv .stats-container .stat-item p {
  font-size: 20px;
  font-weight: 500;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .why-pdv .stats-container .stat-item p {
    font-size: 17px;
  }
}

/* our business values for home page*/
.business-values {
  font-family: Poppins;
  padding: 40px 20px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .business-values {
    width: 100%;
    font-size: 12px;
    flex-direction: column;
  }
}
.business-values h2 {
  font-size: 28px;
  color: #2e3192;
  margin-bottom: 30px;
  font-weight: bold;
}
.business-values .values-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  /* Value Item Styling */
}
.business-values .values-container .value-item {
  background-color: #fff;
  border: 1px solid #33a852;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 30%;
}
@media only screen and (max-width: 767px) {
  .business-values .values-container .value-item {
    width: 100%;
    font-size: 12px;
    flex-direction: column;
  }
}
.business-values .values-container .value-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}
.business-values .values-container .value-item h3 {
  font-size: 18px;
  color: #2e3192;
  margin-bottom: 10px;
  font-weight: bold;
}
.business-values .values-container .value-item p {
  font-size: 14px;
  color: #000;
  line-height: 1.6;
  text-align: center;
}

/* our Success-Stories for home page */
.success-stories {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}
@media only screen and (max-width: 767px) {
  .success-stories {
    width: 100%;
    align-items: center;
  }
}
.success-stories .text-content {
  font-family: poppins;
  text-align: center;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .success-stories .text-content {
    margin-bottom: 0;
  }
}
.success-stories .text-content h2 {
  font-size: 2rem;
  color: #2646a6;
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .success-stories .text-content h2 {
    font-size: 1.8rem;
  }
}
.success-stories .text-content p {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  .success-stories .text-content p {
    font-size: 0.9rem;
  }
}
.success-stories .content-section {
  font-family: Poppins;
}
.success-stories .content-section .slider-container .slide-show .mySlides .content {
  border: 1px solid #33a852;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  justify-content: space-between;
  margin-top: 10px;
}
@media only screen and (max-width: 991px) {
  .success-stories .content-section .slider-container .slide-show .mySlides .content {
    max-height: 16rem;
  }
}
@media only screen and (max-width: 767px) {
  .success-stories .content-section .slider-container .slide-show .mySlides .content {
    max-height: 27rem;
  }
}
.success-stories .content-section .slider-container .slide-show .mySlides .content .card {
  width: 60%;
  text-align: left;
  padding: 50px;
}
@media only screen and (max-width: 991px) {
  .success-stories .content-section .slider-container .slide-show .mySlides .content .card {
    padding: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .success-stories .content-section .slider-container .slide-show .mySlides .content .card {
    width: 100%;
    padding: 15px;
  }
}
.success-stories .content-section .slider-container .slide-show .mySlides .content .card h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #10286d;
}
@media only screen and (max-width: 991px) {
  .success-stories .content-section .slider-container .slide-show .mySlides .content .card h2 {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 767px) {
  .success-stories .content-section .slider-container .slide-show .mySlides .content .card h2 {
    font-size: 1.2rem;
  }
}
.success-stories .content-section .slider-container .slide-show .mySlides .content .card ul {
  list-style: none;
  padding: 0;
}
.success-stories .content-section .slider-container .slide-show .mySlides .content .card ul li {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 991px) {
  .success-stories .content-section .slider-container .slide-show .mySlides .content .card ul li {
    font-size: 0.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .success-stories .content-section .slider-container .slide-show .mySlides .content .card ul li {
    font-size: 0.7rem;
  }
}
.success-stories .content-section .slider-container .slide-show .mySlides .content .card ul li strong {
  color: #10286d;
}
.success-stories .content-section .slider-container .slide-show .mySlides .content .card .read-more {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: #10286d;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  text-transform: uppercase;
}
@media only screen and (max-width: 991px) {
  .success-stories .content-section .slider-container .slide-show .mySlides .content .card .read-more {
    font-size: 0.7rem;
  }
}
@media only screen and (max-width: 767px) {
  .success-stories .content-section .slider-container .slide-show .mySlides .content .card .read-more {
    font-size: 0.7rem;
  }
}
.success-stories .content-section .slider-container .slide-show .mySlides .content .card .read-more:hover {
  background-color: #0d2056;
}
.success-stories .content-section .slider-container .slide-show .mySlides .content .image-container {
  width: 40%;
}
@media only screen and (max-width: 767px) {
  .success-stories .content-section .slider-container .slide-show .mySlides .content .image-container {
    width: 100%;
  }
}
.success-stories .content-section .slider-container .slide-show .mySlides .content .image-container .card-image {
  height: 23rem;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .success-stories .content-section .slider-container .slide-show .mySlides .content .image-container .card-image {
    height: 16rem;
  }
}
@media only screen and (max-width: 767px) {
  .success-stories .content-section .slider-container .slide-show .mySlides .content .image-container .card-image {
    height: auto;
  }
}
.success-stories .content-section .slider-container .slide-show .mySlides .content .image-container .card-image .card-content {
  padding: 20px;
}
.success-stories .content-section .slider-container .slide-show .mySlides .dots {
  margin-top: 15px;
}
.success-stories .content-section .slider-container .slide-show .mySlides .dots .dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #fcb542;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
@media only screen and (max-width: 991px) {
  .success-stories .content-section .slider-container .slide-show .mySlides .dots .dot {
    width: 10px;
    height: 10px;
  }
}
.success-stories .content-section .slider-container .slide-show .mySlides .dots .active,
.success-stories .content-section .slider-container .slide-show .mySlides .dots .dot:hover {
  background-color: #717171;
}
.success-stories .content-section .slider-container .slide-show .fade {
  animation-name: fade;
  animation-duration: 1.5s;
}
@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/* About us page */
.hero {
  position: relative;
  font-family: poppins;
  color: #000;
  background: url("./../images/about-us/Nav_pagestop.webp") no-repeat center center/cover;
  height: 200px;
}
@media only screen and (max-width: 767px) {
  .hero {
    height: 125px;
  }
}
@media only screen and (max-width: 479.98px) {
  .hero {
    height: 125px;
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
}
@media only screen and (max-width: 767px) {
  .hero::before {
    background: rgba(255, 255, 255, 0.4);
  }
}
.hero .hero-overlay {
  margin-top: 1%;
  margin-left: 4%;
  position: absolute;
}
.hero .hero-overlay h1 {
  color: #2e3192;
  margin-top: 30px;
  font-size: 36px;
}
@media only screen and (max-width: 767px) {
  .hero .hero-overlay h1 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 479.98px) {
  .hero .hero-overlay h1 {
    font-size: 25px;
  }
}
.hero .hero-overlay .breadcrumb {
  font-size: 14px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .hero .hero-overlay .breadcrumb {
    font-size: 10px;
  }
}
@media only screen and (max-width: 479.98px) {
  .hero .hero-overlay .breadcrumb {
    font-size: 10px;
  }
}
.hero .hero-overlay .breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.hero .hero-overlay .breadcrumb a:hover {
  text-decoration: underline;
}
.hero .hero-overlay .breadcrumb span {
  color: #000;
}

.about-us {
  font-family: poppins;
  padding: 40px 20px;
  background-color: #fff;
}
.about-us .container {
  text-align: center;
}
.about-us .container .aboutus-header {
  margin-bottom: 30px;
}
.about-us .container .aboutus-header h1 {
  font-size: 28px;
  color: #2e3192;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .about-us .container .aboutus-header h1 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 479.98px) {
  .about-us .container .aboutus-header h1 {
    font-size: 25px;
  }
}
.about-us .container .aboutus-header p {
  font-size: 16px;
  color: black;
}
@media only screen and (max-width: 767px) {
  .about-us .container .aboutus-header p {
    text-align: justify;
    font-size: 10px;
  }
}
@media only screen and (max-width: 479.98px) {
  .about-us .container .aboutus-header p {
    text-align: justify;
    font-size: 10px;
  }
}
.about-us .container .values-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  /* Value Item Styling */
}
.about-us .container .values-container .value-item {
  background-color: #fff;
  border: 1px solid #33a852;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 30%;
}
@media only screen and (max-width: 767px) {
  .about-us .container .values-container .value-item {
    width: 100%;
    flex-direction: column;
  }
}
.about-us .container .values-container .value-item img {
  width: 50px;
  height: 50px;
}
@media only screen and (max-width: 767px) {
  .about-us .container .values-container .value-item img {
    width: 35px;
    height: 35px;
  }
}
@media only screen and (max-width: 479.98px) {
  .about-us .container .values-container .value-item img {
    width: 35px;
    height: 35px;
  }
}
.about-us .container .values-container .value-item h3 {
  font-size: 18px;
  color: #2e3192;
  margin-bottom: 10px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .about-us .container .values-container .value-item h3 {
    font-size: 15px;
  }
}
@media only screen and (max-width: 479.98px) {
  .about-us .container .values-container .value-item h3 {
    font-size: 15px;
  }
}
.about-us .container .values-container .value-item p {
  font-size: 14px;
  color: #000;
  line-height: 1.6;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .about-us .container .values-container .value-item p {
    font-size: 10px;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 479.98px) {
  .about-us .container .values-container .value-item p {
    font-size: 10px;
    line-height: 1.4;
  }
}
.about-us .container .clients_container {
  text-align: center;
  padding: 20px;
}
.about-us .container .clients_container h1 {
  margin-bottom: 30px;
  font-size: 24px;
  color: #2e3192;
}
.about-us .container .logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.about-us .container .logo-grid img {
  max-width: 150px;
  max-height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  border: 1px solid #ccc;
  padding: 10px;
  background-color: #fff;
  border-radius: 8px;
}

/* Services page */
.services-hero {
  position: relative;
  font-family: poppins;
  color: #000;
  background: url("./../images/about-us/Nav_pagestop.webp") no-repeat center center/cover;
  height: 200px;
}
@media only screen and (max-width: 767px) {
  .services-hero {
    height: 125px;
  }
}
@media only screen and (max-width: 479.98px) {
  .services-hero {
    height: 125px;
  }
}
.services-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
}
@media only screen and (max-width: 767px) {
  .services-hero::before {
    background: rgba(255, 255, 255, 0.4);
  }
}
.services-hero .hero-overlay {
  position: absolute;
  margin-top: 1%;
  margin-left: 4%;
}
.services-hero .hero-overlay h1 {
  color: #2e3192;
  margin-top: 30px;
  font-size: 36px;
}
@media only screen and (max-width: 767px) {
  .services-hero .hero-overlay h1 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 479.98px) {
  .services-hero .hero-overlay h1 {
    font-size: 25px;
  }
}
.services-hero .hero-overlay .breadcrumb {
  font-size: 14px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .services-hero .hero-overlay .breadcrumb {
    font-size: 10px;
  }
}
@media only screen and (max-width: 479.98px) {
  .services-hero .hero-overlay .breadcrumb {
    font-size: 10px;
  }
}
.services-hero .hero-overlay .breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.services-hero .hero-overlay .breadcrumb a:hover {
  text-decoration: underline;
}
.services-hero .hero-overlay .breadcrumb span {
  color: #000;
}

.Services {
  font-family: poppins;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.Services h1 {
  width: 100%;
  margin-top: 3%;
  font-size: 40px;
  color: #2e3192;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .Services h1 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .Services h1 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 479.98px) {
  .Services h1 {
    font-size: 20px;
  }
}
.Services .container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  margin: 1% 0 5% 0;
}
@media only screen and (max-width: 767px) {
  .Services .container {
    margin: 2rem;
  }
}
@media only screen and (max-width: 479.98px) {
  .Services .container {
    flex-direction: column;
    margin-top: 10px;
  }
}
.Services .card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid #e0e0e0;
  position: relative;
  width: 25%;
  height: auto;
  margin: 10px;
}
@media only screen and (max-width: 1199px) {
  .Services .card {
    width: 40%;
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .Services .card {
    width: 35%;
    height: auto;
  }
}
@media only screen and (max-width: 479.98px) {
  .Services .card {
    width: 100%;
    height: auto;
    margin: auto;
  }
}
.Services .card img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .Services .card img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 479.98px) {
  .Services .card img {
    width: 100%;
    height: auto;
  }
}
.Services .card .card-content {
  padding: 8%;
}
.Services .card .card-content h2 {
  color: #3b3b98;
  font-size: 1.5em;
  margin: 0 0 10px;
}
@media only screen and (max-width: 767px) {
  .Services .card .card-content h2 {
    font-size: 1em;
  }
}
@media only screen and (max-width: 479.98px) {
  .Services .card .card-content h2 {
    font-size: 0.9em;
    margin-bottom: 3px;
  }
}
.Services .card .card-content ul li {
  color: #333;
  line-height: 1.5em;
  font-size: 1.1vw;
  margin: 0 0 10px;
}
@media only screen and (max-width: 767px) {
  .Services .card .card-content ul li {
    font-size: 0.6em;
    margin: 0 0 5px;
  }
}
@media only screen and (max-width: 479.98px) {
  .Services .card .card-content ul li {
    font-size: 0.6em;
  }
}
.Services .card .card-footer a {
  text-decoration: none;
  color: #fff;
  font-size: 1em;
  display: inline-flex;
  align-items: center;
  background-color: #33a852;
  padding: 10px 15px;
  border-radius: 5px;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 1399px) {
  .Services .card .card-footer a {
    font-size: 0.8em;
  }
}
.Services .card .card-footer a i {
  margin-right: 5px;
}
.Services .card .card-footer a:hover {
  background-color: #b8d1aa;
}
@media only screen and (max-width: 991px) {
  .Services .card .card-footer a {
    padding: 5px 10px;
    font-size: 0.7em;
    bottom: -9px;
  }
}
@media only screen and (max-width: 767px) {
  .Services .card .card-footer a {
    padding: 5px 5px;
    font-size: 0.6em;
    bottom: -10px;
  }
}
@media only screen and (max-width: 479.98px) {
  .Services .card .card-footer a {
    padding: 5px 10px;
    font-size: 0.6em;
    bottom: -9px;
  }
}

/* Contact Us page */
.contactus-hero {
  position: relative;
  font-family: poppins;
  color: #000;
  background: url("./../images/about-us/Nav_pagestop.webp") no-repeat center center/cover;
  height: 200px;
}
@media only screen and (max-width: 767px) {
  .contactus-hero {
    height: 125px;
  }
}
@media only screen and (max-width: 479.98px) {
  .contactus-hero {
    height: 125px;
  }
}
.contactus-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
}
@media only screen and (max-width: 767px) {
  .contactus-hero::before {
    background: rgba(255, 255, 255, 0.4);
  }
}
.contactus-hero .hero-overlay {
  position: absolute;
  margin-top: 1%;
  margin-left: 4%;
}
.contactus-hero .hero-overlay h1 {
  color: #2e3192;
  margin-top: 30px;
  font-size: 36px;
}
@media only screen and (max-width: 767px) {
  .contactus-hero .hero-overlay h1 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 479.98px) {
  .contactus-hero .hero-overlay h1 {
    font-size: 25px;
  }
}
.contactus-hero .hero-overlay .breadcrumb {
  font-size: 14px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .contactus-hero .hero-overlay .breadcrumb {
    font-size: 10px;
  }
}
@media only screen and (max-width: 479.98px) {
  .contactus-hero .hero-overlay .breadcrumb {
    font-size: 10px;
  }
}
.contactus-hero .hero-overlay .breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.contactus-hero .hero-overlay .breadcrumb a:hover {
  text-decoration: underline;
}
.contactus-hero .hero-overlay .breadcrumb span {
  color: #000;
}

.contactus-section {
  font-family: Poppins;
  padding: 40px 20px;
  background-color: #f8f8f8;
}
.contactus-section .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .contactus-section .container {
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 479.98px) {
  .contactus-section .container {
    flex-direction: column-reverse;
  }
}
.contactus-section .container .form-container {
  width: 50%;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
}
@media only screen and (max-width: 767px) {
  .contactus-section .container .form-container {
    width: 100%;
  }
}
@media only screen and (max-width: 479.98px) {
  .contactus-section .container .form-container {
    width: 100%;
  }
}
.contactus-section .container .form-container h2 {
  font-size: 24px;
  color: #2e3192;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .contactus-section .container .form-container h2 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 479.98px) {
  .contactus-section .container .form-container h2 {
    font-size: 20px;
  }
}
.contactus-section .container .form-container p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: black;
}
@media only screen and (max-width: 767px) {
  .contactus-section .container .form-container p {
    font-size: 15px;
  }
}
@media only screen and (max-width: 479.98px) {
  .contactus-section .container .form-container p {
    font-size: 15px;
  }
}
.contactus-section .container .form-container form .form-group {
  margin-bottom: 20px;
}
.contactus-section .container .form-container form .form-group label {
  display: block;
  font-size: 14px;
  color: #000;
  margin-bottom: 5px;
}
.contactus-section .container .form-container form .form-group input,
.contactus-section .container .form-container form .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #f8f8f8;
  font-size: 14px;
  color: #000;
}
.contactus-section .container .form-container form .form-group input:focus,
.contactus-section .container .form-container form .form-group textarea:focus {
  outline: none;
  border-color: #2e3192;
}
.contactus-section .container .form-container form .btn {
  display: inline-block;
  background-color: #33a852;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.contactus-section .container .form-container form .btn:hover {
  background-color: #256628;
}
.contactus-section .container .info-container {
  width: 50%;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .contactus-section .container .info-container {
    width: 100%;
  }
}
@media only screen and (max-width: 479.98px) {
  .contactus-section .container .info-container {
    width: 100%;
  }
}
.contactus-section .container .info-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2%;
  width: 50%;
  height: 45%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 1;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 767px) {
  .contactus-section .container .info-container::before {
    top: 20px;
    left: 2%;
    width: 90%;
    height: 85%;
  }
}
@media only screen and (max-width: 479.98px) {
  .contactus-section .container .info-container::before {
    top: 20px;
    left: 2%;
    width: 90%;
    height: 85%;
  }
}
.contactus-section .container .info-container .background-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  opacity: 1;
}
.contactus-section .container .info-container .background-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 479.98px) {
  .contactus-section .container .info-container .background-image img {
    width: 34rem;
    height: 100%;
  }
}
.contactus-section .container .info-container .info {
  top: 50%;
  z-index: 2;
  padding: 10px;
  position: relative;
}
.contactus-section .container .info-container .info h3 {
  font-size: 18px;
  color: #2e3192;
  margin: 0 0 5px 0;
  padding: 0;
}
.contactus-section .container .info-container .info p {
  font-size: 14px;
  color: black;
  margin: 0;
  padding: 0;
}
.contactus-section .container .info-container .info p a {
  color: #33a852;
  text-decoration: none;
}
.contactus-section .container .info-container .info p a:hover {
  text-decoration: underline;
}

/* Footer Section for home page */
.footer {
  border-top: 1px solid #2e3192;
  color: #000;
  font-family: Poppins;
}
.footer .footer-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 7%;
  align-items: flex-start;
  padding: 2px;
}
@media only screen and (max-width: 767px) {
  .footer .footer-container {
    width: 100%;
    justify-content: space-evenly;
  }
}
.footer .footer-container .logo-section {
  width: 5%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 1199px) {
  .footer .footer-container .logo-section {
    width: 6%;
  }
}
@media only screen and (max-width: 767px) {
  .footer .footer-container .logo-section {
    display: none;
  }
}
.footer .footer-container .logo-section img {
  width: 80%;
}
@media only screen and (max-width: 1199px) {
  .footer .footer-container .logo-section img {
    width: 100%;
  }
}
.footer .footer-container .logo-section p {
  color: #2e2b76;
  font-weight: bold;
  text-align: center;
  font-size: 16px;
}
.footer .footer-container .quick-links {
  margin-top: 22px;
  width: 18%;
}
@media only screen and (max-width: 1199px) {
  .footer .footer-container .quick-links {
    width: 12%;
  }
}
@media only screen and (max-width: 767px) {
  .footer .footer-container .quick-links {
    width: 20%;
    font-size: 10px;
    margin-top: 3%;
  }
}
.footer .footer-container .quick-links h3 {
  color: #2e3192;
  font-size: 18px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .footer .footer-container .quick-links h3 {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .footer .footer-container .quick-links h3 {
    font-size: 10px;
  }
}
.footer .footer-container .quick-links ul {
  list-style: none;
  padding: 0;
}
.footer .footer-container .quick-links ul li {
  margin: 5px 0;
}
.footer .footer-container .quick-links ul li a {
  color: #000;
  text-decoration: none;
}
@media only screen and (max-width: 991px) {
  .footer .footer-container .quick-links ul li a {
    font-size: 13px;
  }
}
.footer .footer-container .quick-links ul li a:hover {
  text-decoration: underline;
}
.footer .footer-container .quick-links p {
  font-size: 14px;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .footer .footer-container .quick-links p {
    font-size: 5px;
  }
}
.footer .footer-container .quick-links p a {
  color: #000;
  text-decoration: none;
}
.footer .footer-container .quick-links p a:hover {
  text-decoration: underline;
}
.footer .footer-container .contact-section {
  margin-top: 22px;
  width: 35%;
}
@media only screen and (max-width: 1199px) {
  .footer .footer-container .contact-section {
    width: 40%;
  }
}
@media only screen and (max-width: 991px) {
  .footer .footer-container .contact-section {
    width: 38%;
  }
}
@media only screen and (max-width: 767px) {
  .footer .footer-container .contact-section {
    width: 40%;
    font-size: 10px;
    margin-top: 3%;
  }
}
.footer .footer-container .contact-section h3 {
  color: #2e3192;
  font-size: 18px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .footer .footer-container .contact-section h3 {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .footer .footer-container .contact-section h3 {
    font-size: 10px;
  }
}
.footer .footer-container .contact-section .contact-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 10px;
}
.footer .footer-container .contact-section .contact-item .icon-placeholder {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  margin-right: 10px;
  border-radius: 5px;
}
@media only screen and (max-width: 991px) {
  .footer .footer-container .contact-section .contact-item .icon-placeholder {
    width: 25px;
    height: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .footer .footer-container .contact-section .contact-item .icon-placeholder {
    width: 20%;
    width: 10px;
    height: 10px;
    margin-right: 4px;
  }
}
.footer .footer-container .contact-section .contact-item .icon-placeholder img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .footer .footer-container .contact-section .contact-item .icon-placeholder img {
    width: 100%;
  }
}
.footer .footer-container .contact-section .contact-item p {
  font-size: 14px;
  margin: 0;
}
@media only screen and (max-width: 991px) {
  .footer .footer-container .contact-section .contact-item p {
    font-size: 11px;
  }
}
@media only screen and (max-width: 767px) {
  .footer .footer-container .contact-section .contact-item p {
    font-size: 8px;
    width: 7rem;
  }
}
.footer .footer-container .contact-section .contact-item p a {
  color: #000;
  text-decoration: none;
}
.footer .footer-container .contact-section .contact-item p a:hover {
  text-decoration: underline;
}
.footer .footer-container .social-links {
  color: #2e3192;
  margin-top: 22px;
  width: 20%;
}
@media only screen and (max-width: 767px) {
  .footer .footer-container .social-links {
    width: 23%;
    margin-top: 3%;
  }
}
.footer .footer-container .social-links h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .footer .footer-container .social-links h3 {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .footer .footer-container .social-links h3 {
    font-size: 10px;
  }
}
.footer .footer-container .social-links .social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media only screen and (max-width: 767px) {
  .footer .footer-container .social-links .social-icons {
    width: 55%;
    gap: 6px;
  }
}
.footer .footer-container .social-links .social-icons .icon {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 5px;
}
@media only screen and (max-width: 991px) {
  .footer .footer-container .social-links .social-icons .icon {
    width: 25px;
    height: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .footer .footer-container .social-links .social-icons .icon {
    width: 40%;
    height: auto;
  }
}
.footer .footer-container .social-links .social-icons .icon img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .footer .footer-container .social-links .social-icons .icon img {
    width: 75%;
  }
}
.footer .footer-bottom {
  background-color: #2e3192;
  text-align: center;
  font-size: 14px;
  color: #fff;
  border-top: 1px solid #2e3192;
  padding: 5px;
}
@media only screen and (max-width: 767px) {
  .footer .footer-bottom {
    font-size: 7px;
  }
}
.footer .footer-bottom span {
  font-weight: bold;
  color: #00ff77;
}

/* success-stories page*/
.Success-Storiesnav-hero {
  position: relative;
  font-family: poppins;
  color: #000;
  background: url("../images/about-us/Nav_pagestop.webp") no-repeat center center/cover;
  height: 200px;
}
@media only screen and (max-width: 767px) {
  .Success-Storiesnav-hero {
    height: 125px;
  }
}
@media only screen and (max-width: 479.98px) {
  .Success-Storiesnav-hero {
    height: 125px;
  }
}
.Success-Storiesnav-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
}
@media only screen and (max-width: 767px) {
  .Success-Storiesnav-hero::before {
    background: rgba(255, 255, 255, 0.4);
  }
}
.Success-Storiesnav-hero .hero-overlay {
  position: absolute;
  margin-top: 1%;
  margin-left: 4%;
}
.Success-Storiesnav-hero .hero-overlay h1 {
  color: #2e3192;
  margin-top: 30px;
  font-size: 36px;
}
@media only screen and (max-width: 767px) {
  .Success-Storiesnav-hero .hero-overlay h1 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 479.98px) {
  .Success-Storiesnav-hero .hero-overlay h1 {
    font-size: 25px;
  }
}
.Success-Storiesnav-hero .hero-overlay .breadcrumb {
  font-size: 14px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .Success-Storiesnav-hero .hero-overlay .breadcrumb {
    font-size: 10px;
  }
}
@media only screen and (max-width: 479.98px) {
  .Success-Storiesnav-hero .hero-overlay .breadcrumb {
    font-size: 10px;
  }
}
.Success-Storiesnav-hero .hero-overlay .breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.Success-Storiesnav-hero .hero-overlay .breadcrumb a:hover {
  text-decoration: underline;
}
.Success-Storiesnav-hero .hero-overlay .breadcrumb span {
  color: #000;
}

.success-storiesnav {
  background-color: #fff;
  padding: 2rem;
}
.success-storiesnav .card-wrapper {
  position: relative;
  display: flex;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  overflow: visible;
  margin: 2rem 6.5rem;
  width: 50%;
  padding: 2rem;
  min-height: 300px;
}
@media only screen and (max-width: 1199px) {
  .success-storiesnav .card-wrapper {
    margin: 1rem 4.5rem;
    width: 60%;
    padding: 1rem;
    min-height: 280px;
  }
}
@media only screen and (max-width: 991px) {
  .success-storiesnav .card-wrapper {
    margin: 1rem 2.5rem;
    width: 65%;
    padding: 0.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .success-storiesnav .card-wrapper {
    flex-direction: column;
    margin: auto;
    width: 100%;
    padding: 1rem;
    min-height: auto;
  }
  .success-storiesnav .card-wrapper .image-wrapper {
    margin-top: 1rem;
    width: 100%;
  }
}
.success-storiesnav .card-wrapper .info-wrapper {
  flex: 1;
  padding: 2rem;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .success-storiesnav .card-wrapper .info-wrapper {
    padding: 0.7rem;
  }
}
.success-storiesnav .card-wrapper .info-wrapper h2 {
  color: #2e3192;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.success-storiesnav .card-wrapper .info-wrapper p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.success-storiesnav .card-wrapper .info-wrapper p strong {
  color: #33a852;
}
.success-storiesnav .card-wrapper .image-wrapper {
  position: absolute;
  top: 50%;
  right: -45%;
  transform: translateY(-50%);
  width: 50%;
  max-width: 400px;
  z-index: 1;
}
.success-storiesnav .card-wrapper .image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .success-storiesnav .card-wrapper .image-wrapper {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    margin-top: 1rem;
    width: 100%;
  }
}
.success-storiesnav .card-wrapper.reverse {
  flex-direction: row-reverse;
  margin: 2rem 32%;
}
.success-storiesnav .card-wrapper.reverse .image-wrapper {
  left: -45%;
  right: auto;
}
@media only screen and (max-width: 767px) {
  .success-storiesnav .card-wrapper.reverse {
    flex-direction: column;
    margin: 2rem 0;
  }
  .success-storiesnav .card-wrapper.reverse .image-wrapper {
    left: 0;
    right: 0;
  }
}
@media (max-width: 768px) {
  .success-storiesnav .card,
  .success-storiesnav .card.reverse {
    flex-direction: column;
    text-align: center;
    width: 100%;
    padding: 1.5rem;
    overflow: hidden;
  }
  .success-storiesnav .card .info,
  .success-storiesnav .card.reverse .info {
    padding: 1.5rem;
  }
  .success-storiesnav .card .image-wrapper,
  .success-storiesnav .card.reverse .image-wrapper {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin-top: 1rem;
  }
}
@media (max-width: 480px) {
  .success-storiesnav .info h2 {
    font-size: 1.5rem;
  }
  .success-storiesnav .info p {
    font-size: 0.9rem;
  }
}

.hero {
  position: relative;
  font-family: poppins;
  color: #000;
  background: url("./../images/about-us/Nav_pagestop.webp") no-repeat center center/cover;
  height: 200px;
}
@media only screen and (max-width: 767px) {
  .hero {
    height: 125px;
  }
}
@media only screen and (max-width: 479.98px) {
  .hero {
    height: 125px;
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
}
@media only screen and (max-width: 767px) {
  .hero::before {
    background: rgba(255, 255, 255, 0.4);
  }
}
.hero .hero-overlay {
  margin-top: 1%;
  margin-left: 4%;
  position: absolute;
}
.hero .hero-overlay h1 {
  color: #2e3192;
  margin-top: 30px;
  font-size: 36px;
}
@media only screen and (max-width: 767px) {
  .hero .hero-overlay h1 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 479.98px) {
  .hero .hero-overlay h1 {
    font-size: 25px;
  }
}
.hero .hero-overlay .breadcrumb {
  font-size: 14px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .hero .hero-overlay .breadcrumb {
    font-size: 10px;
  }
}
@media only screen and (max-width: 479.98px) {
  .hero .hero-overlay .breadcrumb {
    font-size: 10px;
  }
}
.hero .hero-overlay .breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.hero .hero-overlay .breadcrumb a:hover {
  text-decoration: underline;
}
.hero .hero-overlay .breadcrumb span {
  color: #000;
}

.testimonials {
  padding: 50px 20px;
  text-align: center;
  font-family: poppins;
}
.testimonials h2 {
  color: #33a852;
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.testimonials .description {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}
.testimonials .testimonial-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.testimonials .testimonial-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 350px;
  text-align: center;
  transition: transform 0.3s ease;
}
.testimonials .testimonial-card:hover {
  transform: scale(1.05);
}
.testimonials .testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #2e7d32;
}
.testimonials .testimonial-card .quote {
  font-size: 1rem;
  color: #444;
  font-style: italic;
  margin-bottom: 15px;
}
.testimonials .testimonial-card .quote .quote-icon {
  font-size: 1.5rem;
  color: #2e7d32;
}
.testimonials .testimonial-card h3 {
  color: #2e7d32;
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.testimonials .testimonial-card .role {
  color: #777;
  font-size: 1rem;
}

.hero {
  position: relative;
  font-family: poppins;
  color: #000;
  background: url("./../images/about-us/Nav_pagestop.webp") no-repeat center center/cover;
  height: 200px;
}
@media only screen and (max-width: 767px) {
  .hero {
    height: 125px;
  }
}
@media only screen and (max-width: 479.98px) {
  .hero {
    height: 125px;
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
}
@media only screen and (max-width: 767px) {
  .hero::before {
    background: rgba(255, 255, 255, 0.4);
  }
}
.hero .hero-overlay {
  margin-top: 1%;
  margin-left: 4%;
  position: absolute;
}
.hero .hero-overlay h1 {
  color: #2e3192;
  margin-top: 30px;
  font-size: 36px;
}
@media only screen and (max-width: 767px) {
  .hero .hero-overlay h1 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 479.98px) {
  .hero .hero-overlay h1 {
    font-size: 25px;
  }
}
.hero .hero-overlay .breadcrumb {
  font-size: 14px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .hero .hero-overlay .breadcrumb {
    font-size: 10px;
  }
}
@media only screen and (max-width: 479.98px) {
  .hero .hero-overlay .breadcrumb {
    font-size: 10px;
  }
}
.hero .hero-overlay .breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.hero .hero-overlay .breadcrumb a:hover {
  text-decoration: underline;
}
.hero .hero-overlay .breadcrumb span {
  color: #000;
}

.job-cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  margin: auto;
}

.job-card {
  background: white;
  padding: 20px;
  width: 40%;
  margin: 2rem auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  border-left: 5px solid #2e3192;
}
.job-card .job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.job-card .job-header h3 {
  color: #2e3192;
  margin: 0;
  font-size: 1.2rem;
}
.job-card .job-header .badge {
  background-color: #33a852;
  color: white;
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: bold;
}
.job-card .location,
.job-card .company {
  color: #000;
  font-size: 0.9rem;
  margin: 5px 0;
}
.job-card .description {
  font-size: 0.95rem;
  color: #000;
  margin: 10px 0;
}
.job-card .job-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.job-card .job-footer a {
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.9rem;
  transition: 0.3s ease;
}
.job-card .job-footer .learn-more {
  color: #2e3192;
  border: 1px solid #2e3192;
}
.job-card .job-footer .learn-more:hover {
  background: #2e3192;
  color: white;
}
.job-card .job-footer .apply-now {
  background: #33a852;
  color: white;
}
.job-card .job-footer .apply-now:hover {
  background: #27813f;
}/*# sourceMappingURL=index.css.map */