@import url(root.css);

/* Company Profile Styles */

.about-section {
    background-color: var(--WhiteColor);
    overflow: hidden;
}

.bg-illustration {
    position: absolute;
    bottom: -10%;
    left: 0;
    width: 40%;
    opacity: 0.05;
    z-index: 0;
}

.about-img-wrapper {
    position: relative;
    z-index: 1;
}

.about-img-wrapper img {
    border-radius: 16px;
    max-width: 70%;
    height: auto;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.aboutUsContainer {
    width: 90%;
    margin: 50px auto;
}

.aboutUsTitle {
    font-size: var(--fontMediumLarge);
    color: var(--PrimaryColor);
}

.aboutUsDesc {
    font-size: var(--fontSml);
    color: var(--TextLight);
}

/* Mission and Vision Styles */


.whyusSectionWrap {
    width: 90%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--WhiteColor);
    z-index: 99;
    position: relative;
}

.contentWrapper {
    padding: 40px 0;
    width: 100%;
    margin: auto;
}

.whyUsImage {
    border-radius: 20px;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.whyUsTitle {
    font-size: var(--fontMedium);
    font-weight: var(--fontW300);
    color: var(--TitleLight);
    margin-bottom: 20px;
    text-align: left;
}

.whyUsContentPoints {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--fontLarge);
    font-weight: var(--fontW400);
    color: var(--TitleLight);
    margin-bottom: 10px;
    text-align: left;
}

.whyUsTabsContainer .nav-pills li {
    width: 50%;
}

.whyUsTabsContainer .nav-pills li a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
    border-radius: 0;
}

.whyUsTabsContainer .nav-pills li a.active {
    background: var(--PrimaryColor);
}

.whyUsTabsContainer .nav-pills li a.active svg path {
    fill: var(--WhiteColor);
}

.whyUsTabsContainer .nav-pills li a {
    color: var(--LightBlack);
    text-decoration: none;
    font-size: var(--fontMedium);
    font-weight: var(--fontW400);
}

.whyUsTabsContainer .nav-pills li a.active {
    color: var(--WhiteColor);
}

/* Why Choose Us Styles */
.whyChooseUsSection {
    background-color: var(--WhiteColor);
}

.whyChooseUscontainer {
    width: 90%;
    margin: auto;
}

.whyChooseUsTitle {
    font-size: var(--fontMedium);
    font-weight: var(--fontW400);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

.whatWeDoHighlighted {
    font-size: var(--fontExtraLarge);
    font-weight: var(--fontW200);
}

.featureBox {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
}

.featureIcon {
    width: 55px;
    height: 55px;
    border: 1px solid var(--TitleLight);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featureIcon img {
    width: auto;
    height: 35px;
}

.featureBox span {
    font-weight: var(--fontW500);
    color: var(--BlackColor);
    font-size: var(--fontMedium);
}

.whyChooseUsHR {
    border-color: var(--TitleLight);
    opacity: 1 !important;
}

.whyChooseUsBox {
    width: 43%;
}

.whyChooseUsBoxLeft {
    margin: 100px 0 40px 0;
}

.whyChooseUsBoxRight {
    margin: 40px 0;
}

/* Core Strength Section */

.featureCard {
    border: 1px solid var(--BlackBorder);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    flex-direction: column;
    transition: all 0.3s ease;
    height: 100%;
}

.featureCard .coreFeatureIcon {
    width: 50px;
    height: 50px;
}

.coreStrengthTitle {
    color: var(--LightBlack);
    font-size: var(--fontMedium);
    font-weight: var(--fontW500);
}

.coreStrengthDesc {
    color: var(--LightBlack);
    font-size: var(--fontSml);
    font-weight: var(--fontW400);
}

/* Infrastructure Styles */

.infrastructure-section {
  background-color: var(--WhiteColor);
  padding: 50px 0;
}

.infrastructureContainer{
  width: 90%;
  margin: auto;
  position: relative;
  z-index: 9;
}

.infrastructureProfileIcon{
  border-radius: 7px;
  object-fit: cover;
}

.infrastructure-quote {
  color: var(--TitleLight);
  font-size: var(--fontMedium);
  font-weight: var(--fontW300);
}

.infrastructureProfileName{
  font-size: var(--fontMedium);
  font-weight: var(--fontW500);
  color: var(--PrimaryColor);
}

.ourClientsTitle{
  font-size: var(--fontMedium);
  font-weight: var(--fontW500);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--PrimaryColor);
}

.satisfactionText{
  font-size: var(--fontExtraLarge);
  font-weight: var(--fontW400);
  color: var(--TextColor);
}

.infrastructureNavigation{
  border-radius: 7px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--PrimaryColor);
  border: solid 1px var(--PrimaryColor);
}

.infrastructureNavigation:hover{
  border: solid 1px var(--PrimaryColor);
  background: var(--WhiteColor);
}

.infrastructureNavigation i{
  color: var(--WhiteColor);
}

.infrastructureNavigation:hover i{
  color: var(--PrimaryColor);
}