@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', 'Inter', sans-serif;
}

html {
  font-size: clamp(14px, 1vw, 18px);
}

/* navbar */
header {
  position: fixed;
  /* Fix the header to the top of the page */
  top: 0;
  left: 0;
  width: 100%;
  /* Make the header full width */
  background-color: #fff;
  /* Set background color */
  z-index: 9999;
  /* Make sure it stays on top of other content */
  height: auto;
  /* Ensure the height adjusts based on content */
  overflow: visible;
  /* Ensure that the content is visible */

}

.navbar-toggler {
  border-color: #fff;
  /* Optional: change the toggle button color */
  background-color: white !important;
}


.navbar a {
  padding-left: 0.625rem;
  /* 10px = 0.625rem */
  padding-right: 0.625rem;
  /* 10px = 0.625rem */
  font-size: 1rem;
  /* 16px = 1rem */
  font-weight: 700;
  /* Keeps the boldness */
  line-height: 1.21rem;
  /* 19.36px = 1.21rem */
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #C2C2C2;
}

.navbar a:hover {
  color: #C2C2C2;

}

.navbar .active {
  color: white !important;
  text-decoration: none;
  /* Remove the default underline */
  position: relative;
  /* Make sure we can position the pseudo-element */
  display: inline-block;
  /* Ensure the label takes only the required width */
  padding-bottom: 0.25rem;
  /* Adjust the space below the text */
}

.active-submenu {
  background-color: #ffff !important;
  color: #1E3A8A !important;
}
.dropdown-item.active-submenu {
  color: #1E3A8A !important;
}

.navbar .active::before {
  content: '';
  /* Create a pseudo-element */
  position: absolute;
  bottom: 0;
  /* Align it at the bottom of the element */
  left: 5%;
  /* Adjust the left side */
  width: 90%;
  /* Adjust the width to be smaller than 100% */
  height: 0.125rem;
  /* The thickness of the underline (2px = 0.125rem) */
  background-color: white;
  /* Set the color of the underline */
}

.navbar-nav .nav-link {
  color: #C2C2C2;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
  color: #C2C2C2;
  background-color: transparent;
  /* Ensure no background color is added */
  text-decoration: none;
  /* Remove underline on hover */
}

.dropdown-menu {
  border-radius: 0px !important;
  background: #1E3A8A !important;
  border: none !important;
}

.dropdown-item {
  padding: 10px !important;
  color: white !important;
  font-size: 13px !important;
  line-height: 17px !important;
  font-weight: 400 !important;
}

.navbar-nav .dropdown-menu {
  min-width: 200px;
}

.dropdown-item:hover {
  color: #1E3A8A !important;
}




.navbar-brand {
  background-color: white;
  margin-left: 30px;
}

.navbar .socialmedia {
  margin-left: 50px;
}




.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  /* Circle size */
  height: 30px;
  /* Circle size */
  background-color: #1E3A8A;
  /* Blue background */
  color: #fff;
  /* White icon */
  border-radius: 50%;
  /* Make it circular */
  text-decoration: none;
  /* Remove underline */
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-icon i {
  font-size: 18px;
  /* Adjust icon size */
}

.social-icon:hover {
  background-color: #3B82F6;
  /* Lighter blue on hover */
  transform: scale(1.1);
  /* Slight zoom effect */
}


.navbar img {
  height: 100%;
}


.header_wrapper {
  padding: 0px !important;
  margin: 0px !important;
}

/* hero section */
.hero_section {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 70px;
}

/* hero section */
.hero_section img {
  margin-top: 70px;
  width: 100%;
  height: auto;
  display: block;
}

.overlay {
  position: absolute;
  top: 25%;
  left: 23%;
  width: 50%;
  height: 60%;
  background-color: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 36px;
  font-weight: 700;
  font-family: Poppins, sans-serif;
  text-align: center;
  flex-direction: column;
}

.overlay button {
  padding: 10px 20px;
  font-size: 1rem;
  color: white;
  background-color: #D7263D;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 40px;
}

.overlay h1 {
  width: 75%;
  height: auto;
  text-align: center;
  font-family: Poppins;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
}

/* services */
.services_wrapper {
  align-items: center;
  display: flex;
}

.services_wrapper h1 {
  color: #282828;
  font-family: Poppins;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.card {
  border-radius: none;
  border: .0002 solid #1E3A8A;
  box-shadow: 4px 4px 12.4px 0px rgba(0, 0, 0, 0.25);

}

.card-body {
  justify-items: center;
}

.card-title {
  margin-top: 20px;
  color: #1E3A8A;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.card-text {
  color: #8F8F8F;
  text-align: center;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* banner */

.Banner_wrapper {
  width: 100%;
  height: 20%;
  background: #F4F4F4;
  display: inline-block;
  display: flex;
  overflow: hidden;
}

.Banner_wrapper h1 {
  color: #1E3A8A;
  font: Inter;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: -5%;
}

.Experience_wrapper {
  overflow: hidden;
}

/* Experince */
.Experience_wrapper .container-fluid {
  margin: 10px;
}

.Experience_wrapper h1 {
  color: #282828;
  font-family: Poppins;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.Experience_wrapper .box {
  background: #EAEAEA;
}

.Experience_wrapper .title {
  color: #000;
  font-family: Poppins;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.44px;
}

.Experience_wrapper .card-body {
  color: #717171;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.165px;
}

/* Why Us? */
.Whyus_wrapper {
  padding: 60px 0;
  /* Add spacing above and below */

}

.Whyus_box {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  /* Spacing between text and image */

  text-align: left;
  /* Align text on the left for readability */
}

.text-content {

  flex: 1;
  /* Allow text to resize proportionally */
}

.image-content img {
  max-width: 100%;
  /* Make the image responsive */
  height: auto;
  /* Maintain aspect ratio */
  flex: 1;
  /* Allow image to resize proportionally */
}

.Whyus_wrapper h1 {
  color: #282828;
  font-family: Poppins;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: -20px;
  /* margin-top: 60px;
  margin-left: 20px; */
}

.Whyus_wrapper li {
  color: #000;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 250%;
  letter-spacing: -0.22px;
}

/* Software Speecialization */
.Software_wrapper .background {
  background: #EAEAEA;
  margin: 10px auto;

  padding: 40px;
}

.Software_wrapper H1 {
  color: #282828;
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
  margin-top: 60px;
}

.Software_wrapper .box {


  padding: 15px;
  /* Padding inside each box */
  transition: transform 0.3s ease;
  /* Hover effect */
}



.Software_wrapper img {
  max-width: 80%;
  /* Restrict maximum image width */
  height: auto;
  /* Maintain aspect ratio */
  display: block;
  margin: 0 auto;
  /* Center images */
}

.row.g-4 {
  gap: 20px;
  /* Ensures consistent spacing between boxes */
}


/* Pricing */
.pricing_wrapper h1 {
  color: #282828;
  font-family: Poppins;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 45px */
  letter-spacing: -0.33px;
  margin-top: 60px;
}

.pricing_wrapper p {
  color: #8F8F8F;
  text-align: center;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin-top: 20px;
}

.pricing_wrapper .card {
  border-radius: 40px;
  border: 0.09px solid #1E3A8A;
  background: var(--white, #FFF);
  box-shadow: none;
}

.pricing_wrapper h2 {
  color: #282828;
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 48px */
  letter-spacing: -0.352px;
}



.pricing-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.pricing-section .card {
  border-radius: 20px;
  border: 1px solid #1E3A8A;
  background-color: #FFF;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  /* Ensure all text aligns left */
}

.pricing-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.pricing-section .card .card-title {
  font-size: 1.75rem;
  color: #282828;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
}

.pricing-section .card .card-text {
  font-size: 1rem;
  color: #8F8F8F;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  margin-bottom: 20px;
}

.pricing-section .card h2 {
  font-size: 2.5rem;
  color: #1E3A8A;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-section .card h2 .fs-6 {
  font-size: 1rem;
  color: #8F8F8F;
}

.pricing-section .card h5 {
  font-size: 1.25rem;
  color: #282828;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  margin-top: 20px;
}

.pricing-section .card ul {
  list-style: disc;
  padding-left: 10px;
}

.pricing-section .card-body {
  justify-items: left;
}

.pricing-section .card-text {
  justify-items: left;
}

/* .pricing-section .card ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #8F8F8F;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
} */

.pricing-section .text-primary {
  color: #1E3A8A !important;
}

.pricing-section .card .btn {
  padding: 12px 30px;
  font-size: 1.1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  border-radius: 50px;
  background-color: #1E3A8A;
  color: #FFF;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: block;
  /* Makes button a block element */
  margin-left: auto;
  /* Centers the button */
  margin-right: auto;
  /* Centers the button */
}

.pricing-section .list-unstyled {
  list-style-type: disc;
  /* Adds the dot (bullet) in front of the list items */
  padding-left: 20px;
  /* Adds padding to the left to make space for the bullet */
}

.pricing-section .list-unstyled li {
  font-family: Poppins;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.011em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #717171;
  /* Changes the text color */

}

.pricing-section .card .btn:hover {
  background-color: #17407A;
  transform: scale(1.05);
}



/* Testimonals */
/* .testimonals_wrapper {
  background-color: #EAEAEA;
}

.testimonals_wrapper h1 {
  color: #282828;
  font-family: Poppins;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.33px;
} */


.testimonials-section {
  background-color: #f7f7f7;
  padding-top: 60px;
  padding-bottom: 60px;
}

.testimonial-image img {
  width: 300px;
  /* height: 150px; */
  object-fit: cover;
  /* border-radius: 50%; */
}

.testimonial-content {
  text-align: left;
}

.testimonial-content h3 {
  font-family: Poppins;
  font-size: 30px;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: -0.011em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #282828;
  padding-bottom: 30px;
  margin-top: -10px;

}

.testimonial-text {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.011em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #282828;
  ;
}

.testimonial-author {
  font-size: 1rem;
  color: #333;
  font-weight: bold;
}

.testimonial-thumbs img {
  width: 50px;
  height: 50px;
  margin: 0 10px;
  object-fit: cover;
}


/* footer */
.footer {
  padding: 20px;
  background-color: #1E3A8A;
  color: white;
}

.footer a {
  color: #ffffff;

  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.contact-info p {
  font-family: Poppins;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #E1E1E1;

}

.bottom-footer {
  font-family: Poppins;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #ffffff;
}

.footer .list-unstyled li {
  padding-top: 15px;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;

  color: #EAEAEA;


}

.footer .list-unstyled a {
  color: #EAEAEA;
  text-decoration: none;
}

.footer h5 {

  font-size: 16px;
  font-weight: 800;
  line-height: 24px;
  text-align: left;

  color: white;
  ;
  padding-top: 20px;
}

.moto {

  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
  color: #EAEAEA;


}




/* career */

.join_wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 250px;
}


.img-container-career {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 2rem;
  flex-wrap: wrap;
  margin-top: 40px;
}

.img-container-career img {
  flex: 1;
  max-width: calc(50% - 0.5rem);
  border-radius: 52px;
  object-fit: cover;
}


@media (max-width: 1024px) {
  .join_wrapper {
    margin-top: 150px;
  }

  .img-container-career img {
    max-width: calc(50% - 0.5rem);
  }
}

@media (max-width: 992px) {
  .join_wrapper {
    margin-top: 250px;
  }

}

@media (max-width: 768px) {
  .join_wrapper {
    margin-top: 200px;
  }

  .img-container-career {
    gap: 0.5rem;
  }

  .img-container-career img {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .join_wrapper {
    margin-top: 150px;
  }

  .img-container-career {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .img-container-career img {
    max-width: 100%;
    border-radius: 30px;
    /* Reduce border-radius for smaller screens */
  }
}

.icon_container {
  display: flex;
  /* Center the icon */
  justify-content: center;
  align-items: center;
  background-color: #EAEAEA;
  border-radius: 50%;
  /* Make it a circle */
  width: 30px;
  height: 30px;
}

.icon_container i {
  color: #083a91;
  font-size: 20px;
}

@media (max-width: 768px) {
  .img-container img {
    max-width: 100%;
    /* Stack images vertically on smaller screens */
  }
}

.current-openings {
  overflow: hidden !important;
  padding-left: 30px !important;
  margin-bottom: 40px;
}

.current-openings h2 {
  font-family: Poppins;
  font-size: 35px;
  font-weight: 700;
  line-height: 52.5px;
  letter-spacing: -0.011em;
  text-align: left;


}

.current-openings .text-muted {
  font-family: Poppins;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #8F8F8F;

}

/* .icon-box{
  width: 44px;
height: 44px;

gap: 0px;
background: #EAEAEA;
border-radius: 50%;

} */
.job-card {
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 15px;
  /* box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); */
  position: relative;
  box-shadow: 3px 3px 15px 0px #00000040;

}

.icon-box {
  background: #EAEAEA;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
}

.apply-btn {
  background: #1E3A8A;

  color: white;
  border: none;
  border-radius: 5px;
  padding: 5px 15px;
  text-transform: uppercase;
  position: absolute;
  top: 15px;
  right: 15px;
}

.apply-btn:hover {
  background-color: #003d80;
}

.info-section h4 {
  font-family: Poppins;
  font-size: 30px;
  font-weight: 700;
  line-height: 0px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;

}


.info-section img {
  display: block;
  width: 100%;
  height: auto;
}

.info-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  background: none;
  /* No round or colored background */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  /* Align text to the left */
  color: white;
}

.info-section h4 {
  font-family: Poppins;
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;

}


.info-overlay p {
  font-family: Poppins;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;

}


.job-title-container {
  display: flex;
  align-items: center;
}

.job-title-container h5 {
  font-family: Poppins;
  font-size: 23px;
  font-weight: 700;
  line-height: 34.5px;
  letter-spacing: -0.011em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #1E3A8A !important;

}

/* end */




/* details page */

.detail-content {
  margin-top: 230px !important;
  margin-left: 30px !important;
  width: auto !important;
  overflow: hidden;
  margin-right: 20px !important;
}

.list-group {
  padding: 40px;
  background: #EAEAEA !important;

}

.list-group-item {
  background-color: transparent !important;
  padding: 10px !important;
  border: none !important;
  text-decoration: underline !important;

  font-size: 18px;
  font-weight: 450;
  line-height: 27.5px;
  text-align: left;
  color: #000000;


}

.list-group-item.active {
  color: #1E3A8A !important;

}

.breadcrumb-item a {
  color: #1E3A8A !important;
}



/* Responsive Styles */
@media (max-width: 768px) {

  /* Reduce top margin on smaller screens */
  .detail-content {
    margin-top: 100px !important;
    margin-left: 15px !important;
    margin-right: 15px !important;
  }

  /* Sidebar padding adjustment */
  .list-group {
    padding: 20px;
  }

  /* Adjust font size and spacing for list items */
  .list-group-item {
    font-size: 16px;
    line-height: 24px;
    padding: 8px !important;
  }

  /* Breadcrumb font size adjustment */
  .breadcrumb-item a {
    font-size: 14px;
  }

  /* Reduce heading size for main content */
  h2 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {

  /* Further reduce top margin for extra small screens */
  .detail-content {
    margin-top: 80px !important;
    margin-left: 10px !important;
    margin-right: 10px !important;
  }

  /* Further reduce padding for the sidebar */
  .list-group {
    padding: 10px;
  }

  /* Adjust font size for extra small screens */
  .list-group-item {
    font-size: 14px;
    line-height: 20px;
    padding: 6px !important;
  }

  /* Adjust paragraph font size */
  p {
    font-size: 14px;
    line-height: 20px;
  }

  /* Further reduce heading size */
  h2 {
    font-size: 20px;
  }
}

/* end */



/* Styling for the contact form */
.contact-container {
  margin-top: 230px !important;
  margin-left: 30px !important;
  width: auto !important;
  overflow: hidden;
  margin-right: 20px !important;
}

.contact-container img {
  border-radius: 15px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.contact-form {
  padding: 20px;
}

.contact-form h2 {
  font-family: Poppins;
  font-size: 30px;
  font-weight: 700;
  line-height: 45px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;

}

.form-control {
  border: none !important;
  border-bottom: 1px solid #282828 !important;

  border-radius: 0px !important;
  padding: 20px 10px !important;
  margin-bottom: 20px !important;
}

.form-control::placeholder {
  color: #8F8F8F !important;

  /* Custom color for placeholder text */
  opacity: 1;
  /* Ensures the placeholder is fully opaque */
  font-family: Poppins;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;

}

/* Custom styling for textarea */
textarea.form-control {
  margin-top: 40px !important;
  border-radius: 15px;
  /* Makes the corners rounded */
  background-color: #EAEAEA;
  /* Custom background color */

  border: none !important;
  /* Adds a subtle border */
  padding: 10px;
  /* Adjusts padding for better spacing */
  border-radius: 10px !important;
}

/* Change placeholder color for textarea */
textarea.form-control::placeholder {
  color: #666;
  /* Custom placeholder color */
  opacity: 1;
}

/* Focus state for textarea */
textarea.form-control:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(30, 58, 138, 0.5);
  /* Adds a subtle shadow on focus */
  border: 1px solid #1E3A8A;
  /* Highlights border on focus */
}


.form-control:focus {
  outline: none;
  box-shadow: none;
  border-bottom: 1px solid #000;
}

.btn-primary {
  background-color: #1E3A8A !important;
  border: none;
  width: 107px;
  height: 39px;

  border-radius: 5px;
  opacity: 0px;

}

.btn-primary:hover {
  background-color: #162C6A;
}



@media (max-width: 768px) {

  /* Reduce top margin for smaller devices */
  .contact-container {
    margin-top: 200px !important;
    /* Reduce margin for tablets and smaller devices */
    margin-left: 15px !important;
    margin-right: 15px !important;
  }

  .contact-form h2 {
    font-size: 24px;
    /* Adjust heading size for smaller devices */
    line-height: 36px;
  }

  .form-control {
    padding: 15px 8px !important;
    /* Adjust padding for better spacing on smaller screens */
    margin-bottom: 15px !important;
  }

  textarea.form-control {
    margin-top: 20px !important;
    /* Reduce margin above the textarea */
  }

  .btn-primary {
    width: 100%;
    /* Button spans full width on smaller screens */
    height: auto;
    padding: 10px 0;
    font-size: 16px;
    /* Adjust font size for smaller screens */
  }
}

@media (max-width: 576px) {

  /* Further reduce margin for very small devices */
  .contact-container {
    margin-top: 150px !important;
    margin-left: 10px !important;
    margin-right: 10px !important;
  }

  .contact-form h2 {
    font-size: 20px;
    /* Smaller heading for very small screens */
    line-height: 30px;
  }

  .form-control {
    padding: 10px 5px !important;
    /* Compact padding */
    margin-bottom: 10px !important;
  }

  textarea.form-control {
    margin-top: 15px !important;
    /* Further reduce margin above textarea */
  }

  .btn-primary {
    padding: 8px 0;
    font-size: 14px;
    /* Smaller button text */
  }
}

/* end contact form */


/* get quote */
.form-container {
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.quote-container {
  margin-top: 230px !important;
  /* margin-left: 30px !important; */
  width: auto !important;
  overflow: hidden;
  /* margin-right: 20px !important; */
}

.form-container h2 {
  text-align: center;
  margin-bottom: 20px;
}

.invalid-feedback {
  display: block;
}

/* end quote */

/* meeting here */

.left-section {
  position: relative;
  background: url('../images/meeting.png') no-repeat center center;
  background-size: cover;
  color: white;
  padding: 30px;
}

.left-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Overlay with 50% opacity */
  z-index: 1;
}

.left-section * {
  position: relative;
  z-index: 2;
  /* Ensure content is above the overlay */
}

.left-section h2 {
  font-family: Poppins;
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;

}

.left-section p {
  font-family: Poppins;
  font-size: 25px;
  font-weight: 700;
  line-height: 37.5px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;

}

.left-section li {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;


}

/* end meeting */

/* Responsive Styles for Devices Below 1024px */
@media (max-width: 1024px) {
  .Experience_wrapper .container-fluid {
    margin: 5px;
    /* Reduce margin for smaller screens */
    padding: 10px;
    /* Add padding for better spacing */
  }

  .Experience_wrapper h1 {
    font-size: 24px;
    /* Adjust heading size */
    text-align: center;
    /* Center-align headings for smaller screens */
  }

  .Experience_wrapper .box {
    padding: 15px;
    /* Add padding to boxes for better content spacing */
  }

  .Experience_wrapper .title {
    font-size: 28px;
    /* Reduce title font size */
    text-align: center;
    /* Center-align titles */
  }

  .Experience_wrapper .card-body {
    font-size: 14px;
    /* Adjust body font size */
    line-height: 1.5;
    /* Improve readability */
    text-align: justify;
    /* Justify text for a cleaner look */
  }

  .Experience_wrapper .box {
    margin-bottom: 20px;
    /* Add spacing between stacked boxes */
  }

  .testimonial-image {
    text-align: center !important;
    /* Override text-end to align content to the start */
  }

  .testimonial-thumbs {
    padding-right: 0;
    /* Adjust padding for better fit on smaller screens */
    text-align: center !important;
  }

  .testimonial-content h3 {
    padding-top: 20px !important;
    text-align: center;
    /* Optional: Center-align heading for better balance */
  }

  .testimonial-content p {
    text-align: justify;
    /* Optional: Improve readability */
  }
}

/* Responsive Styles for Devices Below 1200px */
@media (max-width: 1200px) {

  .overlay {
    top: 22%;
    left: 12%;
    width: 76%;
  }

  .overlay h1 {
    font-size: 2.2rem;
  }

  .Whyus_wrapper {
    padding: 40px 20px;
    /* Reduce padding for smaller screens */
  }

  .Whyus_box {
    flex-direction: column;
    /* Stack items vertically */
    gap: 30px;
    /* Reduce gap for better spacing */
    text-align: center;
    /* Center-align text for smaller devices */
  }

  .text-content {
    flex: unset;
    /* Disable proportional resizing for text */
    margin-bottom: 20px;
    /* Add spacing between text and image */
  }

  .image-content img {
    width: 100%;
    /* Ensure full-width image display */
    max-width: 400px;
    /* Optional: Limit max width for better readability */
    margin: 0 auto;
    /* Center the image horizontally */
  }

  .Whyus_wrapper h1 {
    font-size: 32px;
    /* Reduce heading size for smaller screens */
    margin-top: 0;
    /* Adjust margin for a better fit */
  }

  .Whyus_wrapper li {
    font-size: 18px;
    /* Reduce list item font size */
    line-height: 200%;
    /* Adjust line height for readability */
  }
}

/* Large devices (max-width: 992px) */
@media (max-width: 992px) {
  .overlay {
    top: 25%;
    left: 10%;
    width: 80%;
  }

  .hero_section {

    margin-top: 80px;
  }

  /* hero section */
  .hero_section img {
    margin-top: 80px;

  }

  .testimonial-image {
    text-align: center !important;
    /* Overrides text-end */
  }

  .testimonial-thumbs {
    justify-content: center !important;
    /* Ensures thumbnails are centered */
    padding-right: 0 !important;
    /* Removes extra padding */
  }

  .testimonial-content p {
    text-align: left;
  }

  .overlay button {
    margin-top: 10px !important;
  }

  .overlay h1 {
    font-size: 1.8rem !important;
  }

  .services_wrapper .container>.text-center {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
}

@media (max-width: 768px) {
  .quote-container {
    margin-top: 200px !important;
    /* Reduce margin for tablets and smaller devices */
  }

  .pricing-section .card {
    padding: 15px;
  }

  .hero_section {

    margin-top: 70px;
  }

  /* hero section */
  .hero_section img {
    margin-top: 70px;

  }

  .pricing-section .card .card-title {
    font-size: 1.5rem;
  }

  .pricing-section .card h2 {
    font-size: 2rem;
  }

  .pricing-section .card .btn {
    padding: 10px 20px;
  }

  .bottom-footer .col-md-6.text-end {
    text-align: left !important;
    /* Align to the left for smaller screens */
    margin-left: -10px;
  }


}

/* Medium devices (max-width: 768px) */
@media (max-width: 768px) {
  .footer {
    padding-left: 0px !important;
  }

  .footer .container-fluid>.row {
    margin: 0px !important;
  }

  .Experience_wrapper .container-fluid>.row {
    margin-right: 0px !important;
  }

  .footer .img-fluid {
    width: 90px;
  }

  .hero_section {

    margin-top: 50px;
  }

  /* hero section */
  .hero_section img {
    margin-top: 50px;

  }

  .overlay {
    top: 30%;
    left: 8%;
    width: 84%;
  }

  .contact-info .col-12 {
    margin-left: -10px !important;
  }

  .socialmedia {
    display: none !important;
  }

  .navbar-brand {
    margin-left: 0px !important;
  }

  .navbar form {
    margin-left: 10px;
  }

  .navbar .btn {
    padding: 5px 13px;
    /* Reduce padding */
    font-size: 0.875rem;
    /* Reduce font size */
  }

  .navbar a {
    padding-left: 0rem;
    /* Add more padding for touch devices */
    padding-right: 1rem;
    /* Add more padding for touch devices */
    font-size: 0.9rem;
    /* Reduce font size for smaller screens */
    line-height: 1.1rem;
    /* Adjust line height for better spacing */
    text-align: center;
    /* Center-align text for smaller screens */
    color: #FFFFFF;
    /* Optionally change color to white on smaller screens */
  }

  .navbar a img {
    height: 90px;
  }

  .Banner_wrapper {
    display: flex;
    flex-direction: column;
    /* Stack content vertically */
    align-items: center;
    /* Center-align both text and image */
    justify-content: center;
    /* Center-align both text and image */
    height: auto;
    /* Make the height auto to fit content */
  }

  .Banner_wrapper .container {
    padding-top: 40px;
    display: block !important;
  }

  .text-container {
    width: 100%;
    /* Ensure the text-container takes full width */
    text-align: center;
    /* Center-align the text */
    margin-bottom: 20px;
    /* Add spacing below the text */
  }

  .img-container {
    width: 100%;
    /* Ensure the image container takes up 100% width */
    margin-top: 20px;
    /* Add spacing between the text and image */
  }

  .img-container img {
    width: 100%;
    /* Make the image responsive */
    height: auto;
    /* Maintain aspect ratio */
  }

  .Banner_wrapper h1 {
    font-size: 30px;
    /* Adjust font size for mobile screens */
    text-align: center;
    /* Center-align the heading text */
    line-height: 1.3;
    /* Adjust line height for better readability */
  }

  .img-container {
    width: 100%;
    /* Might be overridden if conflicts exist */
  }

  .footer .container-fluid .row {
    margin-left: 0px !important;
  }

  .overlay h1 {
    font-size: 1.3rem !important;
    line-height: 1.4;
  }

  .overlay button {
    padding: 9px 18px;
    font-size: 0.95rem;
    margin-top: 0px;
  }

  .container-fluid .bottom-footer {
    margin-left: 0px !important;
  }
}

/* Small devices (max-width: 576px) */
@media (max-width: 576px) {
  .quote-container {
    margin-top: 100px !important;
    /* Reduce margin for tablets and smaller devices */
  }

  .overlay {
    top: 39%;
    left: 5%;
    width: 90%;
    height: 150px;
  }


  .navbar .btn {
    padding: 4px 10px;
    /* Reduce padding */
    font-size: 0.675rem;
    /* Reduce font size */
  }

  .overlay h1 {
    font-size: 1.2rem !important;
    line-height: 1.4;
  }

  .overlay button {
    padding: 8px 16px;
    font-size: 0.9rem;
    margin-top: 0px !important;
  }

  .navbar a {
    padding-left: 0.5rem;
    /* Less padding for very small screens */
    padding-right: 0.5rem;
    /* Less padding for very small screens */
    font-size: 0.8rem;
    /* Reduce font size further */
    line-height: 1rem;
    /* Adjust line height for better spacing */
    text-align: center;
    /* Center-align text for smaller screens */
    color: #FFFFFF;
    /* White text color */
  }

  .navbar a img {
    height: 60px;
    /* Reduce image size */
  }
}