html {
  font-size: 10px;
}

:root {
  --clr-white: #fff;
  --clr-theme: #086ad8;
  --clr-heading: #282828;
  --clr-para: #616161;

  --fs-700: 2.8rem;
  --fs-600: 2.4rem;
  --fs-500: 1.8rem;
  --fs-400: 1.6rem;
  --fs-300: 1.8rem;
  --fs-body: 1.6rem;
  --fs-btn: 1.6rem;

  --fw-bolder: 800;
  --fw-bold: 700;
  --fw-semibold: 600;
  --fw-medium: 500;
  --fw-regular: 400;

  --cards: 6;
  --card-height: 350px;
  --card-Toppadding: 1.5em;
  --cardMargin: 4vw;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: var(--fs-body);
  color: var(--clr-para);
  overflow-x: hidden;
}

h5 {
  font-size: var(--fs-400);
}

h6 {
  font-size: var(--fs-300);
  font-weight: var(--fw-medium);
  color: #333333;
}

h4 {
  font-size: var(--fs-500);
}

h3 {
  font-size: var(--fs-600);
  color: var(--clr-heading);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
}

a,
a:hover {
  text-decoration: none;
}

.cta-btn:hover {
  color: #fff;
    background-color: #00489B;
}


.theme-text {
  color: var(--clr-theme);
}

.cta-btn {
  font-size: var(--fs-btn);
  color: var(--clr-white);
  display: inline-block;
  background-color: #0077d2;
  border-radius: 1rem;
  padding: 1rem 2rem;
  transition: transform 0.5s;
  white-space: nowrap;
  transition: 0.5s ease;
}

.section-heading {
  font-size: 3.5rem;
  font-weight: var(--fw-medium);
  color: var(--clr-heading);
  line-height: 1.4;
  margin-bottom: 16px;
}

.section-padding {
  padding: 8rem 0;
}



.banner-section {
  background-color: var(--clr-theme);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background-image: url(https://staffaugmentation.evontech.com/wp-content/uploads/2025/07/banner_leftop.png),
    url(https://staffaugmentation.evontech.com/wp-content/uploads/2025/07/banner_left_bottom.png),
    url(https://staffaugmentation.evontech.com/wp-content/uploads/2025/07/banner_rightop.png);
  background-repeat: no-repeat;
  background-position: top left, bottom left, top right 0;
  background-size: 5%, 26%, 10%;
}

.banner-section .cta-btn {
  background-color: #f29f09;
  border: none;
  border-radius: 10px;
}
.line-left {
  top: 13px;
  height: 146px;
  width: 5px;
  background-color: var(--clr-white);
  border-radius: 6px;
  left: 9px;
  position: absolute;
}
.banner-section h1 {
  max-width: 20ch;

}

.options-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.option-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 8rem 2rem 1.2rem;
  border-radius: 10px;
  height: 100%;
}

.option-box.yellow {
  background-color: #ffe082;
  color: #654100;
}

.option-box.pink {
  background-color: #f8bbd0;
  color: #6b0101;
}

.option-box.blue {
  background-color: #bbdefb;
  color: #0b1782;
}

.option-box.lightblue {
  background-color: #b3e5fc;
  color: #0b4673;
}



.option-box h5 {
  padding: 1rem 0 0.5rem;
}

.roadblocks-section,
.hiredev-section {
  background-color: #f0f6fc;
  background-image: url(/wp-content/uploads/2025/05/roadblock_ecllipse.png),
    url(/wp-content/uploads/2025/05/roadblock_cross.png);
  background-repeat: no-repeat;
  background-position: left center, top right;
  background-size: 6%, 7%;
}

.roadblock-box {
  background-color: #ffffff;
  border-radius: 40px;
  padding: 60px 40px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
}

.roadblock-box h3 {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 50px;
  color: #333;
}

.roadblock-box h3 .highlighted {
  color: #007bff;
}

.roadblock-point {
  display: grid;
  gap: 15px;
  margin-bottom: 35px;
  grid-template-columns: auto 1fr;
}

.roadblock-point .check-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background-color: #007bff;
  color: #ffffff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  font-weight: bold;
}

.smart-hiring-section {
  background-color: #ffffff;
}

.smart-hiring-heading {
  font-size: 32px;
  font-weight: 600;
}

.smart-hiring-heading span {
  color: #007bff;
}

.smart-card {
  width: 100%;
  padding: 3rem 1rem;
  border-radius: 21px;
  height: 100%;
  box-shadow: 0px 7px 29px 0px #64646f1a;
  transition-duration: 1s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
}

.smart-card p {
  font-size: 1.4rem;
}

.smart-card:hover {
  transform: scale(1.1);
  cursor: pointer;
  transition-duration: 1s;
}

.smart-card img {
  width: 70%;
}

.smart-card h4 {
  padding: 1rem 0;
  margin-bottom: 0;
  color: #1c1c1c;
}

.icon-circle {
  padding: 5px;
  background-color: #086ad8;
  border-radius: 50%;
  margin-right: 10px;
  display: none;
  margin-top: -60px;
}


.ehire-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 1.2rem;
}

.tagline {
  font-weight: var(--fw-regular);
  font-style: italic;
  font-size: 1.8rem;
  display: inline-block;
  padding-bottom: 3rem;
}

.business-section {
  background: url(/wp-content/uploads/2025/05/business-bg.png)
      no-repeat,
    #f0f6fc;
}

.business-section .panel-content ul li {
  position: relative;
  margin-left: 25px;
}

.business-section .panel-content ul li::before {
  content: "";
  padding: 5px;
  background-color: #5f5f5f;
  border-radius: 50%;
  margin-right: 10px;
  position: absolute;
  left: -24px;
  top: 6px;
}

.accordion-item {
  border-bottom: 1px solid #3e3e3e;
}

.accordion {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.panel {
  height: 0;
  overflow: hidden;
  transition: height 0.4s linear;
}

#cards {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(var(--cards), var(--card-height));
  gap: var(--cardMargin);
  padding-bottom: calc(var(--cards) * var(--card-Toppadding));
  margin-bottom: var(--cardMargin);
}

#card1 {
  --index: 1;
}

#card2 {
  --index: 1.5;
}

#card3 {
  --index: 2;
}

#card4 {
  --index: 2.5;
}

#card5 {
  --index: 3;
}

#card6 {
  --index: 3.5;
}

#card7 {
  --index: 4;
}

#card8 {
  --index: 4.5;
}

#card9 {
  --index: 5;
}

.card {
  position: sticky;
  top: 8rem;
  padding-top: calc(var(--index) * var(--card-Toppadding));
  border: none;
  background-color: transparent;
}

.hiring-section .card-body {
  box-sizing: border-box;
  padding: 5rem 3rem;
  border-radius: 50px;
  box-shadow: 0px 7px 29px 0px #64646f33;

  min-height: var(--card-height);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  background-color: var(--clr-white);
  column-gap: 1.5rem;
}

.card-content {
  flex: 0.6;
}
.card-content h2 {
	font-size: var(--fs-600);
    color: var(--clr-heading);
}

.card-content p {
  padding: 1rem 0;
}

.card-img {
  flex: 0.4;
}

.overflow-hidden {
  overflow: hidden;
}

.rotate-icon {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}


.faq_3 {
margin-bottom: 14px;
border-bottom: 1px solid #dddddd;
}

.faq_3 h3 {
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
cursor: pointer;
padding: 10px 0;
color: #1a1313;
font-weight: var(--fw-medium);
}

.faq_block button {
width: 100%;
cursor: pointer;
border-radius: 6px;
display: flex;
justify-content: space-between;
align-items: center;
border: none;
text-align: left;
font-size: 20px;
line-height: 1.5;
background-color: transparent;
padding-left: 0;
}

button:focus {
outline: none;
}

.accordion_grouping {
padding: 3rem 0 3rem;
}

.accordion_content {
display: none;
padding: 0 0 1.5rem;
}

.business-section .accordion h4 {
  color: #333333;
  font-weight: 400;
}

.roadblocks-section,
.ehire-section, .industries-section {
  overflow-x: hidden;
}



.hire-leftContent {
  position: sticky;
  top: 10rem;
  display: flex;
  flex-direction: column;

  height: var(--card-height);
}

.hire-section{
  background-color: #F0F6FC;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  padding-top: 3rem;
}

.application-grid-item {
  background-color: #ffffff;
  display: flex;
  align-items: flex-start;
  padding: 1.875rem;
  border-radius: 16px;
  border: none;
  box-shadow: 0px 1px 4px 0px #00000029;
  gap: 13px;
}

.application-grid-content h3 {
  color: rgb(97, 97, 97);
/*   font-weight: 600; */
  font-size: var(--fs-400);
}

.application-grid-content p {
  color: #272727;
  font-weight: 400;
}


.tooltip.show {
  opacity: 1;
}

.tooltip-inner {
  padding: 1.25rem 1.5rem;
  width: auto;
  color: #667085;
  background-color: #fff;
  box-shadow: 0px 12px 16px -4px #10182814;
  border-radius: 8px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  height: 100%;
  display: flex;
  row-gap: 20px;
}

.tooltip-inner ul li {
  text-align: left;
  padding-bottom: 5px;
}

.tooltip {
  left: -45px !important;
}

.tooltip-inner ul li:nth-last-child {
  padding-bottom: 0;
}

.bs-tooltip-top .arrow::before {
  left: 40px;
}


.bs-tooltip-top .arrow::before {
  top: 0;
  border-width: 1rem 1rem 0;
  border-top-color: #fff;
}

.dark-blue,
.light-blue {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-color: #4b63dd;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.light-blue {
  background-color: #6e86ff;
}

.dark-blue::after,
.light-blue::after {
  content: "";
  position: absolute;
  top: 104px;
  right: -22px;
  border-color: transparent;
  border-style: solid;
  border-width: 1.4rem 0 1.4rem 2.4rem;
  border-left-color: #4b63dd;
}

.light-blue::after {
  border-left-color: #6e86ff;
}

.hiredev-content {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  text-align: center;
  font-weight: var(--fw-bold);
  padding-top: 1rem;
}

.text-stroke {
  font-weight: var(--fw-bolder);
  font-size: 80px;
  color: #ffffff33;
  line-height: 1.2;

}

.dark-blue img,
.light-blue img {
  width: 55px;
}

.col-lg-3:nth-of-type(4) .light-blue::after {
  display: none;
}

.faq-section.section-padding{
    padding-bottom: 0;
}
.tech-blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px; 
}

.tech-blocks {
  background-color: #fff;
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
}
.consultant-section {
  background-color: #086AD8; 
}
.consultant-section h4.consultant-heading {
  font-size: 32px;  
  font-weight: 700;
}

.icon-circle {
display: inline-block;
width: 10px;
height: 10px;
background-color: #007bff; 
border-radius: 50%;
margin-right: 15px; 
vertical-align: middle; 
}

ul.pt-1 {
padding-left: 0;
list-style-type: none; 
}

ul.pt-1 li {
display: flex;
align-items: center; 
}



/* Targeting CTA buttons in the consultant section */
.consultant-section .cta-btn {
background-color: #ffffff; /* White background */
color: #333333; /* Dark text color */
border: 1px solid #ccc; /* Border */
padding: 10px 20px; /* Adjust padding as needed */
text-decoration: none; /* Remove underline */

transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for hover effects */
}

/* Hover effect for the CTA button */
.consultant-section .cta-btn:hover {
background-color: #f0f0f0; /* Light gray background on hover */
color: #333333; /* Keep text color the same */
border: 1px solid #ccc; /* Border remains visible */

}

/* Focus effect to keep visibility when focused */
.consultant-section .cta-btn:focus {
outline: none; /* Remove default focus outline */
background-color: #f0f0f0; /* Same as hover */
color: #333333; /* Text color remains the same */
border: 1px solid #ccc; /* Keep border */
}

/* Active effect when the button is clicked */
.consultant-section .cta-btn:active {
background-color: #e0e0e0; /* Darker shade on click */
}






.techgrid-section {
background-color: #F0F6FC; 
padding: 5rem 0; 
}


.tech-stack-box {
background-color: #ffffff; 
border-radius: 19px; 
padding: 3rem; 
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
text-align: center;
}


.tech-blocks {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 20px; 
}


.tech-stackblock {
background-color: #ffffff; 
border-radius: 10px; 
padding: 20px;
width: calc(100% / 7 - 20px); 
transition: height 0.3s ease; 

}


@media (max-width: 768px) {
.tech-stackblock {
  width: calc(100% / 3 - 15px); 
}
}

@media (max-width: 480px) {
.tech-stackblock {
  width: calc(100% - 20px); 
}
}

.tech-blocks {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 20px; 
text-align: center;
}





@media (max-width: 768px) {
.tech-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 15px; /* Add some gap between items (optional) */
  justify-items: center; /* center the items horizontally */
}
}



/* Responsive Design for Small Screens */
@media (max-width: 768px) {
.section-heading {
  font-size: 2.4rem;
  padding: 1rem;
}

.cta-btn {
  font-size: 1.4rem;
  padding: 0.8rem 1.6rem;
}

.banner-section h1 {
  font-size: 2.4rem;
  max-width: 100%;
  padding: 0 1rem;
}

/* Adjusting grid columns */
.tech-stackblock {
  width: calc(100% / 3 - 20px); 
}

.tech-blocks {
  gap: 10px;
}

.option-box {
  width: 100%;
  padding: 3rem 1.5rem;
}
}

@media (max-width: 480px) {
.section-heading {
  font-size: 2rem;
  padding: 0.5rem;
}

.cta-btn {
  font-size: 1.2rem;
  padding: 0.7rem 1.4rem;
}

.banner-section {
  padding: 60px 0;
}

.tech-stackblock {
  width: calc(100% - 20px); 
}

.option-box {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
}

/* Stack elements vertically for mobile */
.roadblock-box,
.smart-card {
  width: 100%;
  padding: 2rem;
}

.tech-blocks {
  flex-direction: column;
  align-items: center;
}

/* Adjusting margin/padding */
.business-section .panel-content ul li {
  position: relative;
  margin-left: 20px;
}

.hire-leftContent {
  position: static;
  height: auto;
  display: block;
}
}

/* Tech Block Styling */
.tech-blocks {

flex-wrap: wrap;
justify-content: space-between;
gap: 20px; 
text-align: center;
}

.tech-stackblock {
background-color: #ffffff;
border-radius: 10px;
padding: 20px;
width: calc(100% / 7 - 20px); 
transition: height 0.3s ease;

}


/* Roadblock Section */
.roadblock-box {
background-color: #ffffff;
border-radius: 40px;
padding: 60px 40px;
box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
margin-bottom: 3rem;
}

.roadblock-box h3 {
text-align: center;
font-size: 32px;
font-weight: 600;
margin-bottom: 50px;
color: #333;
}

/* Smart Card Section */
.smart-card {
width: 100%;
padding: 3rem 1rem;
border-radius: 21px;
height: 100%;
box-shadow: 0px 7px 29px 0px #64646f1a;
transition-duration: 1s;
display: flex;
flex-direction: column;
align-items: center;
justify-content: end;
}

.smart-card:hover {
transform: scale(1.1);
cursor: pointer;
transition-duration: 1s;
}

.smart-card img {
width: 70%;
}

.smart-card h4 {
padding: 1rem 0;
margin-bottom: 0;
color: #1c1c1c;
}




/* media queries */


/* media queries */

@media (min-width: 1600px) {
:root {
  --fs-body: 1.6rem;
  --fs-600: 2.6rem;
  --fs-400: 1.8rem;
}

.section-heading {
  font-size: 4.6rem;
}

.container {
  max-width: 1440px;
}

.section-padding {
  padding: 8rem 0;
}

.hiredev-content{
  font-size: 2.2rem;
}

.text-stroke{
  font-size: 102px;
}

.dark-blue, .light-blue{
  width: 320px;
  height: 320px;
  gap: 15px;
}

.dark-blue img, .light-blue img {
  width: 62px;
}

.dark-blue::after, .light-blue::after{
top: 146px;
}
}

@media (max-width: 1199px) {
.text-stroke{
  font-size: 68px;
}

.dark-blue, .light-blue{
  width: 220px;
  height: 220px;
}

.hiredev-content{
  font-size: 16px;
}
}

@media (max-width: 991px) {
:root{
  --fs-600: 2.2rem;
  --card-height: 410px;
}
	.engagement-model-image {
		order: 1;
	}
	.engagement-model-text {
		order: 0;
	}

.container {
  max-width: 90%;
}

.staff-section .row,
.smart-hiring-section .row {
  row-gap: 3rem;
}

.section-heading {
  font-size: 3.2rem;
}

.dark-blue::after, .light-blue::after {
   border-width: 1.4rem 1.4rem 0;
  border-top-color: #4b63dd;
  border-left-color: transparent;
  bottom: -10px;
  right: 99px;
  top: auto;
}

.light-blue::after {
  border-top-color: #6e86ff;
}

.hiredev-section .row {
  gap: 35px;
}

.hiredev-section {
  background-size: 21%, 11%;
}

}





@media (max-width: 767px) {
:root {
  --fs-600: 2.4rem;
  
}

.section-padding {
  padding: 6rem 0;
}

.section-heading {
  font-size: 2.8rem;
}

.roadblock-box {
  padding: 40px 20px;
}

.roadblock-box h3 {
  font-size: 26px;
  margin-bottom: 35px;
}

.hiring-section.section-padding {
  padding-bottom: 0;
}

.line-left {
  display: none;
}

.banner-section h1 {
  max-width: 100%;
}

.banner-section {
  padding-bottom: 2rem;
}

.option-box {
  padding: 3rem 2rem;
}

.hiring-section h2 {
  position: static;
  height: 100%;
}

.smart-card img {
  width: 30%;
}

#cards {
  padding-bottom: 12rem;
}

.faq_block button {
  font-size: 1.6rem;
}

.card {
  top: 6rem;
}

.hire-leftContent{
  height: 100%;
  position: static;
  text-align: center;
}

.hire-leftContent h2 br{
  display: none;
}



.hiredev-section .row{
gap: 35px;
}

.col-lg-3:nth-of-type(4) .light-blue::after {
display: none;
}

.techstack-wrapper{
grid-template-columns: repeat(4, 1fr);
gap: 50px;
}

.ehire-section.section-padding {
  padding-bottom: 0;
}


}

@media (min-width: 575px) and (max-width: 767px) {

.application-grid {
grid-template-columns: 100%;
}
}

@media (max-width: 575px) {
:root {
  --fs-600: 2.2rem;
  --fs-body: 1.4rem;
  --fs-btn: 1.4rem;
}

.section-heading {
  font-size: 2.6rem;
  text-align: center;
}

.hiring-section .card-body {
  flex-direction: column-reverse;
  text-align: center;
  /* row-gap: 4rem; */
  height: auto;
  padding: 2rem;
}

.card-body img {
  width: 30%;
}

.card-content,
.card-img {
  flex: none;
}

.card-content {
  padding-top: 1rem;
}

.roadblock-point {
  margin-bottom: 20px;
}

.application-grid{
grid-template-columns: 100%;
}

.hiredev-section.section-padding{
padding: 4rem 0;
}

.ehire-section.section-padding{
padding-top: 4rem;
}

.techstack-wrapper {
  grid-template-columns: repeat(3, 1fr);
  column-gap: 22px;
  row-gap: 32px;
}

.tech-framework, .hiredev-content {
  font-size: 14px;
}

.tech-framework img{
width: 62%;
}

.dark-blue, .light-blue{
width: 206px;
height: 206px;
}

.dark-blue::after, .light-blue::after{
right: 90px;
}

.text-stroke{
font-size: 70px;
}

.banner-section{
background-size: 19%, 30%, 10%;
padding: 40px 0;
}

.card {
  top: 2rem;
}

.hiredev-section{
background-size: 37%, 7%;
}

.faq-arrow svg {
  width: 16px;
}

.tooltip, .bs-tooltip-top .arrow::before {
  left: 0 !important;
}



}

@media (max-width: 424px) {
.section-heading {
  font-size: 2.4rem;
}
}


@media (max-width: 375px){
.tech-framework {
  font-size: 12px;
  gap: 12px;
}

.tech-framework img{
width: 62%;
}


}










@media (max-width: 787px) {
.techstack-wrapper {
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px; 
}

.tech-stackblock {
  width: 100%; 
  padding: 1.5rem; 
}
}


@media (max-width: 575px) {
.techstack-wrapper {
  grid-template-columns: 1fr; 
  gap: 15px; 
}

.tech-stackblock {
  padding: 1rem;
}

.consultant-section .cta-btn {
  background-color: #ffffff;
  color: #333333;
  border: 1px solid #ccc;
  padding: 10px 20px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 50px;
}
}


@media (max-width: 767px) {
  .banner-section .section-heading {
      text-align: center !important; 
      margin-bottom: 20px;
      max-width: 100%; 
      box-sizing: border-box; 
  }
}


@media (max-width: 1199px) {
.consultant-section .section-heading {
  font-size: 3rem; 
}

.consultant-description {
  font-size: 1.6rem;
}

.consultant-profile {
  display: flex;
  align-items: center;
  text-align: center;
}

.consultant-img {
  width: 120px; 
  height: 120px;
}

.consultant-name {
  font-size: 2rem; 
  margin-bottom: 1rem; 
}

.cta-btn {
  font-size: 1.4rem; 
  padding: 1rem 2rem; 
}


@media (max-width: 767px) {
.consultant-section {
  padding: 6rem 0; 
}

.consultant-section .section-heading {
  font-size: 2.6rem; 
}

.consultant-description {
  font-size: 1.4rem;
  margin-bottom: 2rem; 
}

.consultant-profile {
  display: flex;
  flex-direction: column; 
  justify-content: center;
  align-items: center;
  text-align: center;
}

.consultant-img {
  width: 120px; 
  height: 120px;
  margin-bottom: 1rem; 
}

.consultant-name {
  font-size: 2rem; 
  margin-bottom: 1rem; 
}

.cta-btn {
  font-size: 1.4rem; 
  padding: 1rem 2rem; 
}
.consultant-block {
  flex-direction: column-reverse;
  padding-bottom: 2rem;
}

}


@media (max-width: 575px) {
.consultant-section {
  padding: 4rem 0; 
}

.consultant-section .section-heading {
  font-size: 2.4rem; 
}

.consultant-description {
  font-size: 1.2rem; 
  margin-bottom: 1.5rem;
}

.consultant-profile {
  display: flex;
  flex-direction: column; 
  justify-content: center;
  align-items: center;
  text-align: center;
}

.consultant-img {
  width: 100px;
  height: 100px;
  margin-bottom: 1rem; 
}

.consultant-name {
  font-size: 1.8rem;
  margin-bottom: 1rem; 
}

.cta-btn {
  font-size: 1.3rem; 
  padding: 0.8rem 1.5rem; 
}
}









@media (max-width: 787px) {

.banner-section {
  text-align: center; 
  padding: 6rem 2rem; 
}


.banner-section h1 {
  font-size: 3rem; 
  max-width: 100%; 
}


.banner-section p {
  font-size: 1.6rem; 
  max-width: 90%;
  margin: 0 auto 2rem auto; 
}


.cta-btn {
  font-size: 1.6rem; 
  padding: 1rem 2rem; 
  margin: 2rem auto 0 auto; 
}

.banner-section img {
  display: block; 
  margin: 0 auto; 
  width: 80%; 
}
}

  

}
@media (max-width: 767px) and (min-width: 500px) {
    .d-flex {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        
    }
	
    .d-flex .cta-btn {
        margin-top: -6px !important; /* Reduce space above the CTA button */
    }
}

@media (max-width: 499px){
	.d-flex .cta-btn {
        margin-top: -6px !important; /* Further reduce space above the CTA button */
    }
}
