@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary__blue: #0D6EFD;
  --primary__orange: #F89420;
  --primary__text-color: #3D3D3D;
  --light__blue-bg: #EDF6FF;
  --light__grey-bg: #F8F8F8;
  --primary__font-family: "Inter", sans-serif;
  --heading-font-family: "Saira", sans-serif;
  --large__pargraph: 15px;
  --primary__paragraph: 14px;
}

header {
  position: fixed;
  width: 100%;
  top: 75px;
  z-index: 1000;
  transition: background-color 0.3s ease, top 0.3s ease; /* Added transition for 'top' */
}

.header-top {
  display: flex;
  align-items: center;
  align-items: center;
  min-height: 78px;
  position: fixed;
  width: 100%;
  top: 0px;
  z-index: 1000;
  transition: top 0.3s;
}
.header-top .header-top-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-top .header-top-content .top-right-sec {
  display: flex;
  align-items: center;
}
.header-top .header-top-content .top-right-sec .contact-details {
  display: flex;
  align-items: center;
}
.header-top .header-top-content .top-right-sec .contact-details .phone {
  margin-right: 15px;
}
.header-top .header-top-content .top-right-sec .contact-details .phone span {
  color: #fff;
}
.header-top .header-top-content .top-right-sec .contact-details .phone a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}
.header-top .header-top-content .top-right-sec .contact-details .email {
  margin-right: 15px;
}
.header-top .header-top-content .top-right-sec .contact-details .email span {
  color: #fff;
}
.header-top .header-top-content .top-right-sec .contact-details .email a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}
.header-top .header-top-content .top-right-sec .social:not(:last-child) {
  margin-right: 15px;
}
.header-top .header-top-content .top-right-sec .social a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-size: 22px;
}

@media only screen and (max-width: 600px) {
  header {
    position: fixed;
    top: 0;
    background-color: lightblue;
  }
  header .menu ul li a {
    color: #000;
  }
  .header-top {
    display: none;
  }
}
.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: darkblue;
  border: none;
}

.header-top {
  transition: transform 0.3s ease; /* Added transition for 'transform' */
}

.header-top.hide {
  transform: translateY(-100%); /* Hide by pushing up */
}

footer .footer-top .footer-top-content {
  min-height: 119px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #c4c4c4;
}
footer .footer-top .footer-top-content .text img {
  max-height: 23px;
}
footer .footer-top .footer-top-content .text p {
  font-size: 22px;
  margin-bottom: 0px;
  margin-top: 10px;
}
footer .footer-menu {
  margin-top: 28px;
}
footer .footer-menu .footer-menu-item-sec ul li {
  list-style: none;
  font-size: 14px;
  line-height: 33px;
}
footer .footer-menu .footer-menu-item-sec ul li::after {
  content: "";
  background-color: var(--primary__blue);
  height: 1px;
  width: 100%;
  left: 0;
  bottom: 0;
  display: flex;
  position: relative;
  transform: scaleX(0);
  transition: transform ease-in 0.3s;
  transform-origin: bottom right;
}
footer .footer-menu .footer-menu-item-sec ul li:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
footer .footer-menu .footer-menu-item-sec ul li a {
  color: #3D3D3D;
}
footer .footer-menu .footer-menu-item-sec ul li a:hover {
  color: var(--primary__blue);
  text-decoration: none;
}
footer .footer-menu .footer-social {
  display: flex;
  justify-content: end;
}
footer .footer-menu .footer-social ul li {
  list-style: none;
  font-size: 35px;
}
footer .copyright {
  background-color: var(--primary__blue);
  padding: 12px 0px;
  margin-top: 25px;
}
footer .copyright p {
  margin-bottom: 0px;
  font-size: 14px;
  color: #fff;
  text-align: center;
}

.slider-1 {
  background-image: url("../images/slider/slider-01-bg.png");
  padding-top: 197px;
  padding-bottom: 70px;
  background-repeat: no-repeat;
  background-size: cover;
}

.slider_2 {
  background-image: url("../images/slider/slider-02-bg.png");
  padding-top: 197px;
  padding-bottom: 70px;
  background-repeat: no-repeat;
  background-size: cover;
}

.slider_3 {
  background-image: url("../images/slider/slider-01-bg.png");
  padding-top: 197px;
  padding-bottom: 70px;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero .hero-slider {
  overflow: hidden;
}
.hero .hero-slider .hero-text-img {
  display: flex;
  align-items: center;
}
.hero .hero-slider .hero-content {
  display: flex;
  align-items: center;
}
.hero .hero-slider .hero-text h1 {
  font-family: var(--heading-font-family);
  font-size: 45px;
  color: #fff;
  font-weight: 700;
}
.hero .hero-slider .hero-text p {
  color: #fff;
  font-size: 22px;
  line-height: 30px;
  margin-top: 15px;
}

.counter .counter-box {
  background-color: var(--light__blue-bg);
  text-align: center;
  padding: 50px 0px;
}
.counter .counter-box .counter-number h1 {
  font-size: 53px;
  font-weight: 800;
  line-height: 35px;
  color: var(--primary__blue);
}
.counter .counter-box .counter-number h1 .duration {
  font-size: 35px;
  font-weight: 400;
}
.counter .counter-box .counter-number p {
  font-size: 18px;
  margin: 0;
  color: #3D3D3D;
}

.experience {
  background-color: var(--light__grey-bg);
  padding: 100px 0px;
}
.experience .experience-box {
  background-color: #fff;
  min-height: 319px;
  display: flex;
  align-items: center;
  flex-direction: column;
  align-items: start;
  position: relative;
  overflow: hidden;
}
.experience .experience-box .experience-box-content p {
  font-size: 16px;
  line-height: 25px;
}

.iron-steel .experience-box-content, .chemical .experience-box-content, .infrastucture .experience-box-content, .cement .experience-box-content, .power-supply .experience-box-content, .mining .experience-box-content {
  z-index: 3;
  padding: 35px 25px;
}
.iron-steel::after, .chemical::after, .infrastucture::after, .cement::after, .power-supply::after, .mining::after {
  content: url(/assets/images/iron&stell_hover.jpg);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
  transition: all 1s;
}
.iron-steel:hover, .chemical:hover, .infrastucture:hover, .cement:hover, .power-supply:hover, .mining:hover {
  color: #fff;
  transition: 0.6s;
}
.iron-steel:hover::after, .chemical:hover::after, .infrastucture:hover::after, .cement:hover::after, .power-supply:hover::after, .mining:hover::after {
  opacity: 1;
  transform: scale(1.2);
}
.iron-steel:hover .simple-btn, .chemical:hover .simple-btn, .infrastucture:hover .simple-btn, .cement:hover .simple-btn, .power-supply:hover .simple-btn, .mining:hover .simple-btn {
  color: #fff;
  transition: 0.6s;
}
.iron-steel:hover .simple-btn, .chemical:hover .simple-btn, .infrastucture:hover .simple-btn, .cement:hover .simple-btn, .power-supply:hover .simple-btn, .mining:hover .simple-btn {
  font-size: 20px;
  padding: 0px;
  border-radius: 0px;
  border-bottom: 1px solid var(--primary__orange);
  font-family: var(--heading-font-family);
}
.iron-steel:hover .simple-btn span, .chemical:hover .simple-btn span, .infrastucture:hover .simple-btn span, .cement:hover .simple-btn span, .power-supply:hover .simple-btn span, .mining:hover .simple-btn span {
  color: var(--primary__orange);
}
.iron-steel:hover .simple-btn:hover, .chemical:hover .simple-btn:hover, .infrastucture:hover .simple-btn:hover, .cement:hover .simple-btn:hover, .power-supply:hover .simple-btn:hover, .mining:hover .simple-btn:hover {
  color: var(--primary__orange);
  border-bottom: 1px solid var(--primary__orange);
}

.mining::after {
  content: url(/assets/images/mining&minarales_hover.jpg);
}

.power-supply::after {
  content: url(/assets/images/power_plant_hover.jpg);
}

.cement::after {
  content: url(/assets/images/cement_hover.jpg);
}

.infrastucture::after {
  content: url(/assets/images/infrastructure\ _hover.jpg);
}

.chemical::after {
  content: url(/assets/images/chemical_hover.jpg);
}

.services {
  position: relative;
}
.services .services-carousel .services-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.testimonial {
  background-color: var(--light__grey-bg);
  padding: 100px 0px;
  margin-top: 100px;
}
.testimonial .testimonial-box {
  background-color: #fff;
  padding: 20px;
}
.testimonial .testimonial-box .testimonial-content {
  background-image: url(/assets/images/quote.svg);
  background-repeat: no-repeat;
  background-position: top left;
  padding: 25px;
}
.testimonial .testimonial-box .testimonial-content .quote {
  font-size: 16px;
}
.testimonial .testimonial-box .testimonial-content .quote:first-child::first-letter {
  font-size: 24px;
}
.testimonial .testimonial-box .testimonial-content .title {
  font-size: 14px;
  color: var(--primary__blue);
}

.client-logo {
  background-color: #202020;
  padding: 100px 0px;
}

.quote__btn {
  font-family: var(--heading-font-family);
  font-size: 18px;
  border-radius: 0px;
  padding: 6px 15px;
  color: white;
  background-color: var(--primary__blue);
  transform: perspective(1px) translateZ(0);
  transition-duration: 0.3s;
  display: inline-block;
  position: relative;
  border: 0px;
}
.quote__btn::after {
  content: "";
  background-color: #0d28c0;
  height: 100%;
  width: 100%;
  display: block;
  top: 0;
  left: 0;
  position: absolute;
  overflow: hidden;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.quote__btn:hover::after {
  transform: scaleX(1);
}

.submit-btn {
  border-radius: 0px;
  font-family: var(--heading-font-family);
  font-size: 20px;
  text-transform: uppercase;
  padding: 3px 18px;
}

.slider-simple-btn {
  font-size: 20px;
  padding: 0px;
  border-radius: 0px;
  border-bottom: 1px solid var(--primary__orange);
  font-family: var(--heading-font-family);
  color: #fff;
}
.slider-simple-btn span {
  color: var(--primary__orange);
}
.slider-simple-btn:hover {
  color: var(--primary__orange);
  border-bottom: 1px solid var(--primary__orange);
}

.simple-btn {
  font-size: 20px;
  padding: 0px;
  border-radius: 0px;
  border-bottom: 1px solid var(--primary__orange);
  font-family: var(--heading-font-family);
}
.simple-btn span {
  color: var(--primary__orange);
}
.simple-btn:hover {
  color: var(--primary__orange);
  border-bottom: 1px solid var(--primary__orange);
}

.section-margin {
  margin: 100px 0px;
}

.margin-top-100 {
  margin-top: 100px;
}

.margin-bottom-100 {
  margin-bottom: 100px;
}

.margin-top-50 {
  margin-bottom: 50px;
}

.margin-bottom-50 {
  margin-top: 50px;
}

.border-top {
  border-top: 1px solid #c4c4c4;
}

.border-bottom {
  border-bottom: 1px solid #c4c4c4;
}

.white-text-color {
  color: white;
}

.swiper-wrapper {
  margin-bottom: 40px;
}

.sub__heading {
  font-size: 18px;
  color: var(--primary__orange);
  display: flex;
  align-items: center;
  margin: 0px;
}
.sub__heading::before {
  content: "";
  background-color: var(--primary__orange);
  height: 1px;
  width: 38px;
  display: inline-flex;
  position: relative;
  margin-right: 10px;
}

.sec-heading {
  font-size: 30px;
  font-weight: 700;
}
.sec-heading .blue-text {
  color: var(--primary__blue);
}

.assistant {
  background-color: #000;
  padding: 60px 0px;
}
.assistant h1 {
  font-size: 48px;
  color: var(--primary__orange);
  text-align: center;
  font-weight: 700;
}
.assistant .call-number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  text-align: center;
  color: #fff;
  font-weight: 600;
}
.assistant .call-number p {
  font-size: 40px;
  text-align: center;
  color: #fff;
}
.assistant .call-number a {
  font-size: 40px;
  text-align: center;
  color: #fff;
}

.controller {
  display: flex;
  top: 50%;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  display: flex;
  margin-top: 0px;
  top: 6%;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: auto;
  right: 76px;
}

.swiper-button-next:after {
  content: "→";
}

.swiper-button-prev:after {
  content: "←";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 17px);
  left: auto;
}

.about__page_title {
  min-height: 574px;
  padding: 295px 0px 50px 0px;
  background-image: url(/assets/images/about_title_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 600px) {
  .about__page_title {
    min-height: 100%;
    padding: 109px 0px 50px 0px;
  }
}
.about__page_title h1 {
  font-size: 55px;
  font-weight: 700;
  color: #fff;
}
.about__page_title p {
  font-size: 22px;
  color: #fff;
}
@media only screen and (max-width: 600px) {
  .about__page_title h1 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 30px;
  }
  .about__page_title p {
    font-size: 16px;
    color: #fff;
  }
}

.excellence {
  background-color: var(--light__grey-bg);
  padding: 100px 100px;
}
.excellence .excellence-content {
  display: flex;
  justify-content: center;
  text-align: center;
}
.excellence .excellence-content h1 {
  font-size: 45px;
}
.excellence .excellence-content p {
  font-size: 22px;
  line-height: 33px;
}

.mission-vision {
  background-color: var(--primary__blue);
  padding: 100px 0px;
}
.mission-vision .card {
  border-radius: 0px;
  border: none;
  padding: 25px !important;
  min-height: 490px;
}
.mission-vision .card .card-body {
  padding: 0px;
}
.mission-vision .card .card-body h3 {
  font-size: 25px;
  font-weight: 600;
  line-height: 18px;
  margin-bottom: 15px;
}
.mission-vision .card .card-body img {
  margin-bottom: 25px;
}

.sec-three-icon .icon {
  background-color: #EDF6FF;
  height: 140px;
  width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec-three-icon .text h3 {
  font-weight: 600;
}

.contact__page_title {
  min-height: 574px;
  padding: 295px 0px 50px 0px;
  background-image: url(../images/contact__us__bg.png);
}
@media only screen and (max-width: 600px) {
  .contact__page_title {
    min-height: 100%;
    padding: 109px 0px 50px 0px;
  }
}
.contact__page_title h1 {
  font-size: 55px;
  font-weight: 700;
  color: #fff;
}
.contact__page_title p {
  font-size: 22px;
  color: #fff;
}
@media only screen and (max-width: 600px) {
  .contact__page_title h1 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 30px;
  }
  .contact__page_title p {
    font-size: 16px;
    color: #fff;
  }
}

.centact__title .title {
  display: flex;
  align-items: center;
  flex-direction: column;
  align-items: center;
  justify-content: c;
}
.centact__title .title .center__align__title {
  max-width: 545px;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.centact__title .title .center__align__title h5 {
  font-size: 18px;
  color: #F89420;
  display: flex;
  align-items: center;
}
.centact__title .title .center__align__title h5::before {
  content: "";
  background-color: #F89420;
  height: 1px;
  width: 38px;
  position: relative;
  display: inline-flex;
  margin-right: 15px;
}
.centact__title .title .center__align__title h5::after {
  content: "";
  background-color: #F89420;
  height: 1px;
  width: 38px;
  position: relative;
  display: inline-flex;
  margin-left: 15px;
}
.centact__title .title .center__align__title h1 {
  font-weight: 700;
}
.centact__title .title .description {
  max-width: 730px;
}
.centact__title .title .description p {
  text-align: center;
  font-size: 18px;
}

.contact-details .contact-tabs {
  border-top: 1px solid #ddd;
  padding: 60px 0px;
}
.contact-details .contact-tabs .contact-box {
  background-color: #F8F8F8;
  padding: 25px;
  min-height: 172px;
}
.contact-details .contact-tabs .contact-box span {
  color: var(--primary__blue);
}
.contact-details .contact-tabs .contact-box a {
  color: #121212;
}
.contact-details .contact-tabs .contact-box a:hover {
  text-decoration: none;
  color: var(--primary__blue);
}

.assing__page_title {
  min-height: 574px;
  padding: 295px 0px 50px 0px;
  background-image: url(../images/assign-bg.png);
}
@media only screen and (max-width: 600px) {
  .assing__page_title {
    min-height: 100%;
    padding: 109px 0px 50px 0px;
  }
}
.assing__page_title h1 {
  font-size: 55px;
  font-weight: 700;
  color: #fff;
}
.assing__page_title p {
  font-size: 22px;
  color: #fff;
}
@media only screen and (max-width: 600px) {
  .assing__page_title h1 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 30px;
  }
  .assing__page_title p {
    font-size: 16px;
    color: #fff;
  }
}

.assistant {
  background-color: #000;
  padding: 60px 0px;
}
.assistant h1 {
  font-size: 48px;
  color: var(--primary__orange);
  text-align: center;
  font-weight: 700;
}
.assistant .call-number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  text-align: center;
  color: #fff;
  font-weight: 600;
}
.assistant .call-number p {
  font-size: 40px;
  text-align: center;
  color: #fff;
}
.assistant .call-number a {
  font-size: 40px;
  text-align: center;
  color: #fff;
}

.design__engineering__page_title {
  min-height: 574px;
  padding: 295px 0px 50px 0px;
  background-image: url(/assets/images/design-engineering-title-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 600px) {
  .design__engineering__page_title {
    min-height: 100%;
    padding: 109px 0px 50px 0px;
  }
}
.design__engineering__page_title h1 {
  font-size: 55px;
  font-weight: 700;
  color: #fff;
}
.design__engineering__page_title p {
  font-size: 22px;
  color: #fff;
}
@media only screen and (max-width: 600px) {
  .design__engineering__page_title h1 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 30px;
  }
  .design__engineering__page_title p {
    font-size: 16px;
    color: #fff;
  }
}

.project__management__page_title {
  min-height: 574px;
  padding: 295px 0px 50px 0px;
  background-image: url(/assets/images/project-management-title-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 600px) {
  .project__management__page_title {
    min-height: 100%;
    padding: 109px 0px 50px 0px;
  }
}
.project__management__page_title h1 {
  font-size: 55px;
  font-weight: 700;
  color: #fff;
}
.project__management__page_title p {
  font-size: 22px;
  color: #fff;
}
@media only screen and (max-width: 600px) {
  .project__management__page_title h1 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 30px;
  }
  .project__management__page_title p {
    font-size: 16px;
    color: #fff;
  }
}

.procure__management__page_title {
  min-height: 574px;
  padding: 295px 0px 50px 0px;
  background-image: url(/assets/images/procure-management-title-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 600px) {
  .procure__management__page_title {
    min-height: 100%;
    padding: 109px 0px 50px 0px;
  }
}
.procure__management__page_title h1 {
  font-size: 55px;
  font-weight: 700;
  color: #fff;
}
.procure__management__page_title p {
  font-size: 22px;
  color: #fff;
}
@media only screen and (max-width: 600px) {
  .procure__management__page_title h1 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 30px;
  }
  .procure__management__page_title p {
    font-size: 16px;
    color: #fff;
  }
}

.services-description p {
  font-size: 20px;
  line-height: 30px;
}

/* Vertical Tab */
.tabs-verical .nav-link {
  border-radius: 0;
  font-size: 22px;
  font-weight: 500;
  background-color: #EDF6FF;
  color: #0D6EFD;
  padding: 8px 15px !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Saira Condensed", sans-serif;
}

.tabs-verical .nav-link:not(:last-child) {
  border-bottom: 1px solid #0D6EFD;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #0D6EFD;
}

.tabs-verical .navbar-default .navbar-text {
  color: #ffffff;
}

.tabs-verical .nav-tabs > li.active > a, .tabs-verical .nav-tabs > .profile-posts li.active > a:focus, .tabs-verical .nav-tabs > li.active > a:hover {
  color: #555;
  cursor: default;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: rgb(221, 221, 221);
  border-bottom-color: transparent;
}

.tab-banner h1 {
  font-size: 35px;
  text-align: center;
  color: #fff;
  font-weight: 700;
}

.tab-large-text {
  font-size: 18px;
  margin-top: 20px;
}

.design__engineering__tab__banner {
  background-image: url(/assets/images/design-and-engineering-tab-banner-bg.png);
  padding: 45px 0px;
}

.services-tab .tab-bar {
  display: flex;
}
.services-tab .tab-bar .tabs-button {
  min-width: 30%;
  margin-right: 15px;
}
.services-tab .tab-bar .tabs-button ul {
  padding-left: 0;
}
.services-tab .tab-bar .tabs-button ul li {
  max-width: 323px;
}
.services-tab .tab-bar .tabs-button ul li:not(:last-child) {
  border-bottom: 1px solid var(--primary__blue);
}
.services-tab .tab-bar .tabs-button ul li a {
  display: block;
  background-color: var(--light__blue-bg);
  padding: 15px 15px;
  font-family: "Saira Condensed", sans-serif;
  color: var(--primary__blue);
  font-size: 24px;
  font-weight: 600;
}
.services-tab .tab-bar .tabs-button ul li a:hover {
  background-color: var(--primary__blue);
  color: #fff;
}
.services-tab .tab-bar .tabs-button ul li a.active {
  background-color: var(--primary__blue);
  color: #fff;
}

.Project-Concept-Development-tab-banner {
  background-image: url("../images/accodian_section/design-and-engineering-tab-banner-bg.png");
  min-height: 166px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.Project-Concept-Development-tab-banner h1 {
  font-size: 35px;
  text-align: center;
  font-weight: 700;
  color: #fff;
}

.feasibility-Study-Report-tab-banner {
  background-image: url("../images/accodian_section/feasibility.jpg");
  min-height: 166px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feasibility-Study-Report-tab-banner h1 {
  font-size: 35px;
  text-align: center;
  font-weight: 700;
  color: #fff;
}

.Basic-tab-banner {
  background-image: url("../images/accodian_section/basic_detailed_enginering.jpg");
  min-height: 166px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.Basic-tab-banner h1 {
  font-size: 35px;
  text-align: center;
  font-weight: 700;
  color: #fff;
}

.detail-tab-banner {
  background-image: url("../images/accodian_section/detail_engineering.jpg");
  min-height: 166px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.detail-tab-banner h1 {
  font-size: 35px;
  text-align: center;
  font-weight: 700;
  color: #fff;
}

.threed-tab-banner {
  background-image: url("../images/accodian_section/three_d_modeling.jpg");
  min-height: 166px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.threed-tab-banner h1 {
  font-size: 35px;
  text-align: center;
  font-weight: 700;
  color: #fff;
}

.project-management-service-tab-banner {
  background-image: url("../images/accodian_section/project_management_service.jpg");
  min-height: 166px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.project-management-service-tab-banner h1 {
  font-size: 35px;
  text-align: center;
  font-weight: 700;
  color: #fff;
}

.construction-management-tab-banner {
  background-image: url("/assets/images/accodian_section/construction_management_supervision.jpg");
  min-height: 166px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.construction-management-tab-banner h1 {
  font-size: 35px;
  text-align: center;
  font-weight: 700;
  color: #fff;
}

.Procurement-management-tab-banner {
  background-image: url("../images/accodian_section/procurement_managentment_v2.jpg");
  min-height: 166px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.Procurement-management-tab-banner h1 {
  font-size: 35px;
  text-align: center;
  font-weight: 700;
  color: #fff;
}

.inspection-services-tab-banner {
  background-image: url("../images/accodian_section/inspection_service.jpg");
  min-height: 166px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.inspection-services-tab-banner h1 {
  font-size: 35px;
  text-align: center;
  font-weight: 700;
  color: #fff;
}

.Procurement-assistance-tab-banner {
  background-image: url("../images/accodian_section/procurement-management.jpg");
  min-height: 166px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.Procurement-assistance-tab-banner h1 {
  font-size: 35px;
  text-align: center;
  font-weight: 700;
  color: #fff;
}

.quality-inspection-tab-banner {
  background-image: url("../images/accodian_section/quality_inspection.jpg");
  min-height: 166px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.quality-inspection-tab-banner h1 {
  font-size: 35px;
  text-align: center;
  font-weight: 700;
  color: #fff;
}

.inquiry-tab-banner {
  background-image: url("../images/accodian_section/inquiry.jpg");
  min-height: 166px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.inquiry-tab-banner h1 {
  font-size: 35px;
  text-align: center;
  font-weight: 700;
  color: #fff;
}

.vendor-selection-tab-banner {
  background-image: url("../images/accodian_section/vendor_selection.jpg");
  min-height: 166px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.vendor-selection-tab-banner h1 {
  font-size: 35px;
  text-align: center;
  font-weight: 700;
  color: #fff;
}

.quality-surveillance-tab-banner {
  background-image: url("../images/accodian_section/quality_surveillance.jpg");
  min-height: 166px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.quality-surveillance-tab-banner h1 {
  font-size: 35px;
  text-align: center;
  font-weight: 700;
  color: #fff;
}

.safety-surveillance-tab-banner {
  background-image: url("../images/accodian_section/safety_surveillance.jpg");
  min-height: 166px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.safety-surveillance-tab-banner h1 {
  font-size: 35px;
  text-align: center;
  font-weight: 700;
  color: #fff;
}

.co-ordination-interaction-tab-banner {
  background-image: url("../images/accodian_section/co-ordination_interaction.jpg");
  min-height: 166px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.co-ordination-interaction-tab-banner h1 {
  font-size: 35px;
  text-align: center;
  font-weight: 700;
  color: #fff;
}

.as-built-drawing-tab-banner {
  background-image: url("../images/accodian_section/as-built_drawings.jpg");
  min-height: 166px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.as-built-drawing-tab-banner h1 {
  font-size: 35px;
  text-align: center;
  font-weight: 700;
  color: #fff;
}

.accordion-item:first-of-type {
  border-radius: 0px;
}

.accordion-item:last-of-type {
  border-radius: 0px;
}

.accordion-item:first-of-type > .accordion-header .accordion-button, .accordion-item:first-of-type > .design_and_engineering__accordian .accordion-button {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: #EDF6FF;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.accordion-header .accordion-button, .design_and_engineering__accordian .accordion-button {
  font-size: 22px;
}

.accordion-body .accordion-body-content ul {
  padding-left: 1rem;
}
.accordion-body .accordion-body-content ul li::before {
  content: "";
  background-color: var(--primary__blue);
  height: 11px;
  width: 11px;
  display: inline-flex;
  position: relative;
  margin-right: 6px;
}
.accordion-body .accordion-body-content ul li:not(:last-child) {
  margin-bottom: 8px;
}

@media only screen and (max-width: 600px) {
  .test-list {
    padding: 0 0px;
  }
}
.experience-filter-box {
  border-radius: 0px;
}
.experience-filter-box .card-body .card-title {
  font-weight: 600;
  line-height: 23px;
}
.experience-filter-box .card-body .card-title span {
  color: var(--primary__blue);
}
.experience-filter-box .card-body .card-title::after {
  content: "";
  background-color: var(--primary__blue);
  height: 1px;
  width: 100%;
  display: flex;
  position: relative;
  margin-top: 5px;
}
.experience-filter-box .card-body .list {
  padding-left: 0px;
}
.experience-filter-box .card-body .list span {
  font-weight: 700;
  color: var(--primary__blue);
}
.experience-filter-box .card-body .list .sublist {
  padding-left: 10px;
}
.experience-filter-box .card-body .list .sublist li {
  display: flex;
  align-items: center;
}
.experience-filter-box .card-body .list .sublist li::before {
  content: "";
  background-color: var(--primary__blue);
  height: 8px;
  width: 8px;
  position: relative;
  display: inline-flex;
  margin-right: 5px;
}

.card.zoomed {
  z-index: 1000;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2); /* Adjust scale factor as needed */
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.2);
  background-color: #fff; /* Ensure zoomed card background remains white */
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
}
.card.zoomed .card-body {
  font-size: 1.5em; /* Adjust the scale factor as needed */
  line-height: 1.6; /* Adjust for better readability */
}
.card.zoomed .close-btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 20px;
  width: 20px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgb(255, 255, 255);
  cursor: pointer;
  z-index: 1100;
}

.card.zoom:hover:not(.zoomed)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent; /* Default hover color */
  z-index: 5;
  transition: 0.3s;
}

.card.zoom:hover:not(.zoomed)::before {
  background-color: rgba(3, 7, 243, 0.3); /* Use RGBA color for transparency */
}

.zoom .zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10; /* Ensure icon is above card content */
}

.card.zoom:hover .zoom-icon {
  opacity: 1;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.6);
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -o-transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes zoomInContent {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .card.zoomed {
    top: 30%;
    left: 0;
    right: 0;
    transform: none;
    width: 92%;
    margin: 10px auto;
    max-width: 100%;
    max-height: 100%;
    box-shadow: none;
  }
  .card.zoomed .card-body p,
  .card.zoomed .card-body li {
    font-size: 18px;
    margin-bottom: 7px;
  }
  .card.zoomed .card-body .card-title {
    margin-right: 8px;
    font-size: 25px;
    line-height: 27px;
  }
  .zoomed .close-btn {
    top: 0px;
    right: 0px;
  }
}
@media only screen and (max-width: 600px) {
  header {
    padding: 10px 0px !important;
  }
  header .header-item-left a img {
    max-width: 165px;
  }
  .hero .hero-slider .hero-text-img {
    display: flex;
    flex-direction: column-reverse;
  }
  .hero .hero-slider .hero-content {
    text-align: center;
    margin-top: 25px;
  }
  .hero .hero-slider .hero-content h1 {
    font-size: 30px;
  }
  .hero .hero-slider .hero-content p {
    font-size: 18px;
  }
  .hero .hero-slider .slider-1 {
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .flex-reverse {
    display: flex;
    flex-direction: row-reverse;
  }
  .sec-heading {
    font-size: 28px;
    font-weight: 700;
  }
  .sub__heading::before {
    display: none;
  }
  .sub__heading::after {
    content: "";
    background-color: var(--primary__orange);
    height: 1px;
    width: 38px;
    display: block;
    position: relative;
    margin-top: 5px;
  }
  .sub__heading {
    font-size: 16px;
    color: var(--primary__orange);
    display: block;
    align-items: center;
    margin: 0px;
  }
  .crafting h1 {
    font-size: 28px;
  }
  .excellence {
    padding: 100px 0px;
  }
  .excellence .excellence-content h1 {
    font-size: 30px;
  }
  .excellence .excellence-content p {
    font-size: 18px;
    line-height: 24px;
  }
  .services-tab .tab-bar {
    display: block;
    flex-direction: column;
  }
  .services-tab .tab-bar .tabs-button {
    width: 100%;
    margin-right: 0px;
  }
  .services-tab .tab-bar .tabs-button ul li {
    max-width: 100%;
  }
  .services-description p {
    font-size: 18px;
    line-height: 26px;
  }
  .Project-Concept-Development-tab-banner h1 {
    font-size: 30px;
  }
  .accordion-header .accordion-button, .design_and_engineering__accordian .accordion-button {
    font-size: 20px;
  }
  footer .footer-top .footer-top-content .text p {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 0px;
    margin-top: 5px;
  }
  footer .footer-top .footer-top-content .text .mobile-fimia-footer-top-img {
    max-height: 36px;
  }
  footer .footer-menu .footer-social {
    display: flex;
    justify-content: start;
  }
  footer .footer-menu .footer-social ul li {
    display: inline-flex;
  }
}
body {
  font-family: var(--primary__font-family);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font-family);
}

ol, ul {
  padding-left: 0px;
}

p, li {
  font-size: 15px;
  line-height: 21px;
}

img {
  max-width: 100%;
  height: auto;
}

.text-white {
  color: #fff;
}

.bold-heading-text {
  font-weight: 700;
}

.blue-text {
  color: var(--primary__blue);
}

.big-text {
  font-size: 20px;
  line-height: 29px;
}

.medium-text {
  font-size: 18px;
  line-height: 26px;
}

.form-control {
  border-radius: 0px;
  border: 1px solid #E2E2E2;
}

input {
  min-height: 47px;
}

select {
  min-height: 47px;
}

.form-select {
  border-radius: 0px;
}

textarea {
  min-height: 140px !important;
}

label {
  font-family: var(--heading-font-family);
  font-size: 20px;
  margin-bottom: 2px;
}/*# sourceMappingURL=style.css.map */