@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap");
:root {
  --font-family: "Poppins", sans-serif;
  --bg-primary: #121651;
  --bg-secondary: #f7f8fc;
  --text-primary: #333;
  --blue-color: #121651;
  --maroon-color: #ed1b24;
  --paragraph-text-color: #232323;
  --white-color: #fff;
  --black-color: #333;
  --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
body {
  font-family: var(--font-family);
  font-weight: normal;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-weight: normal;
}
a {
  text-decoration: none;
  color: inherit;
}

/* header top*/
.header-top {
  background-color: var(--bg-secondary);
}
.content-wrp-top {
  padding: 10px 0;
  display: flex;
  gap: 2rem;
  justify-content: end;
}
.header-top .contact-number-top a {
  color: var(--text-primary);
  font-family: var(--font-family);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: normal;
}
.header-top .contact-number-top a i {
  color: var(--maroon-color);
  margin-right: 10px;
}
.header-top .email-top a {
  color: var(--text-primary);
  font-family: var(--font-family);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: normal;
}
.header-top .email-top a i {
  color: var(--maroon-color);
  margin-right: 10px;
}

/* main navbar */
.main-navbar {
  padding: 0px 0;
  background-color: #fff;
}
.navbar-brand {
  width: 150px !important;
}
.navbar-brand img {
  width: 100%;
}
.navbar-nav .nav-link {
  font-size: 16px !important;
  padding: 13px 25px !important;
  font-weight: 500 !important;
  font-family: var(--font-family);
  transition: all 0.2s;
}
.navbar-nav .nav-link:hover {
  color: var(--maroon-color);
}
.active {
  color: var(--maroon-color) !important;
}
.navbar-bottom-line {
  width: 100%;
  height: 14px;
  background-color: #1c3449;
}

/* slider  */
.caption-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-caption {
  right: auto !important;
  bottom: inherit !important;
  left: auto !important;
  text-align: left;
  position: relative !important;
}
.carousel-caption h2 {
  font-family: var(--font-family);
  font-size: 4rem;
  color: var(--bg-primary);
  font-weight: 400;
}
.carousel-caption p {
  color: var(--bg-primary);
  font-weight: 300;
  font-size: 18px;
  font-family: var(--font-family);
}
.carousel-dark .carousel-caption {
  text-align: center;
  color: var(--bg-primary);
  width: max-content;
  background: #ffffffba;
  padding: 50px;
  border-radius: 20px;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.carousel-dark .carousel-caption .read-more {
  color: var(--white-color);
  background-color: var(--blue-color);
  width: max-content;
  padding: 8px 30px;
  border-radius: 8px;
  /* margin: 30px 0; */
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid var(--blue-color);
  font-family: var(--font-family);
  font-size: 0.9rem;
}
.carousel-dark .carousel-caption .read-more:hover {
  transform: scale(1.1);
  background-color: var(--white-color);
  border: 1px solid var(--blue-color);
  color: var(--blue-color);
  font-family: var(--font-family);
  font-size: 0.9rem;
}
/* <!-- welcome section area style--> */
.welcom-section {
  padding: 80px 0;
}
.welcom-section h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 3rem;
  color: var(--blue-color);
  letter-spacing: 0.1rem;
  line-height: 3rem;
}
.welcom-section h2 small {
  font-size: 1.8rem;
}
.welcom-section p {
  text-align: center;
  font-family: var(--font-family);
  font-weight: normal;
  color: var(--paragraph-text-color);
  line-height: 1.6rem;
  margin-top: 20px;
}

/* <!-- brand section style --> */

.brand-section {
  padding: 30px 0;
  background-color: var(--bg-secondary);
}

.brand-img-wrp {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.brandImage {
  width: max-content;
}

.brandImage img {
  height: 120px;
}

/* <!-- card image set --> */
.card-image-set {
  margin: 80px 30px;
  margin-top: 0px;
}

.card-image-set .card {
  border-color: var(--bg-secondary);

  transition: all 0.2s;
}
.card-image-set .card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.card-image-set .card .card-img-top {
}

.card-image-set .card .card-title {
  text-align: center;
  font-size: 1.5rem;
}
.card-image-set .card .card-title:after {
  width: 83px;
  height: 5px;
  background-color: var(--bg-primary);
  margin: 20px auto;
  content: "";
  display: flex;
}

.card-image-set .card .card-text {
  font-family: var(--font-family);
  font-weight: normal;
  font-size: 0.95rem;
  color: var(--paragraph-text-color);
  text-align: center;
  height: min-content;
}
.card-image-set .card .card-link-btn {
  background-color: var(--bg-primary);
  color: var(--white-color);
  padding: 7px 30px;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  width: max-content;
  margin: 20px auto;
  transition: all 0.2s;
  border: 1px solid var(--blue-color);
  font-family: var(--font-family);
  font-size: 0.9rem;
}
.card-image-set .card .card-link-btn:hover {
  transform: scale(1.1);
  background-color: var(--white-color);
  color: var(--blue-color);
}

/* <!-- latest news section --> */
.news-section {
  background-image: linear-gradient(117deg, #377c2b 30%, #121651 70%);
  padding: 80px 0;
}
.news-text-content {
  display: flex;
  flex-direction: column;
}

.news-text-content h2 {
  color: var(--white-color);
  font-size: 4rem;
  margin-bottom: 50px;
  font-family: var(--font-family);
}
.news-text-content p {
  color: var(--white-color);
  font-family: var(--font-family);
}
.news-text-content .read-more {
  color: var(--white-color);
  background-color: var(--blue-color);
  width: max-content;
  padding: 8px 30px;
  border-radius: 8px;
  margin: 30px 0;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid var(--blue-color);
  font-family: var(--font-family);
  font-size: 0.9rem;
}
.news-text-content .read-more:hover {
  transform: scale(1.1);
  background-color: var(--white-color);
  border: 1px solid var(--blue-color);
  color: var(--blue-color);
  font-family: var(--font-family);
  font-size: 0.9rem;
}
.news-image-wrp {
  width: 100%;
}

.news-image-wrp img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* <!-- contact detail section --> */
.contact {
  margin: 100px 0;
}
.contact-img-wrp {
  width: 100%;
}
.contact-img-wrp img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-family);
}
.contact-content h2 {
  font-size: 3rem;
  font-family: var(--font-family);
  font-weight: 400;
}
.contact-content h5 {
  margin-top: 30px;
  font-weight: 600;
}
.contact-content .call {
  margin-top: 30px;
  color: var(--black-color);
  text-decoration: none;
}
.contact-content .call i {
  color: var(--maroon-color);
  margin-right: 10px;
}
.contact-content .mail {
  margin-top: 10px;
  color: var(--black-color);
  text-decoration: none;
}
.contact-content .mail i {
  color: var(--maroon-color);
  margin-right: 10px;
}

/* <!-- footer section --> */
.footer {
  padding-top: 80px;
  background-color: var(--blue-color);
}
.company-content-box {
  display: flex;
  flex-direction: column;
}

.company-content-box img {
  width: 70%;
  /* margin-bottom: 30px; */
}
.company-content-box h3 {
  color: var(--white-color);
  font-size: 1.2rem;
  text-transform: uppercase;
  font-family: var(--font-family);
  font-weight: 400;

  margin-bottom: 20px;
}
.company-content-box a {
  font-family: var(--font-family) !important;
  font-size: 0.9rem !important;
  color: var(--white-color) !important;
  text-decoration: none;
  font-family: var(--font-family);
}
.company-content-box a i {
  margin-right: 0.5rem;
  color: var(--maroon-color);
}
.company-content-box address {
  color: var(--white-color);
  font-family: var(--font-family);
  font-size: 0.9rem;
}
.company-content-box address i {
  margin-right: 0.5rem;
  color: var(--maroon-color);
}
.company-content-box p {
  font-family: var(--font-family);
  font-size: 0.9rem;
  font-weight: normal;
  color: var(--white-color);
}

.company-content-box .socail-link {
  display: flex;
  gap: 1.5rem;
  margin-top: 20px;
}

.company-content-box .socail-link a {
  color: var(--white-color);
  font-size: 1.3rem;
  transition: all 0.2s;
}
.company-content-box .socail-link a:hover {
  transform: scale(1.4);
  font-size: 1.3rem;
}
.company-content-box .quick-links {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.company-content-box .quick-links a {
  text-decoration: none;
  color: var(--white-color);
}

.company-content-box .quick-links li {
}

.company-content-box .iso-img {
  width: 50%;
}
.footer .end-footer {
  margin-top: 30px;
  /* display: flex; */
  color: var(--white-color);
  border-top: 1px solid #f5f5f52b;
  padding-top: 30px;
  padding-bottom: 10px;
}
.footer .end-footer p {
  display: flex;
  justify-content: space-between;
}
.footer .end-footer p span {
  color: var(--bg-secondary);
  color: #f7f8fc8c;
  font-weight: normal;
  font-size: 0.9rem;
  font-family: var(--font-family);
}
.footer .end-footer p span a {
  color: inherit;
  text-decoration: none;
}
/* ABOUT US PAGE 
   STYLES */

/* <!-- page header title --> */

.page-header {
  background-color: var(--blue-color);
  padding: 80px 0;
  color: var(--white-color);
}
.page-header h2 {
  font-size: 3rem;
  font-weight: 400;
  font-family: var(--font-family);
}

.breadcrumb-item.active {
  color: #ffffff75 !important;
}
.breadcrumb-item a {
  color: var(--white-color);
  text-decoration: none;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: #ffffff75 !important;
}
/* <!-- About us intro section --> */
.about-page-intro {
  margin: 80px 0;
}

.image-box {
  width: 100%;
}
.image-box img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.about-page-intro .content {
  display: flex;
  flex-direction: column;
  padding: 0 50px;
}
.about-page-intro .content h2 {
  margin-bottom: 30px;
  font-family: var(--font-family);
  font-size: 2rem;
}
.about-page-intro .content {
  font-family: var(--font-family);
  font-size: 0.9rem;
}
.about-page-intro .content .link-btn {
  background-color: var(--blue-color);
  display: flex;
  width: max-content;
  color: var(--white-color);
  text-decoration: none;
  padding: 8px 20px;
  margin-top: 30px;
  transition: all 0.2s;
  border: 1px solid var(--blue-color);
  font-family: var(--font-family);
  font-size: 0.9rem;
  border-radius: 8px;
}
.about-page-intro .content .link-btn:hover {
  background-color: var(--white-color);
  color: var(--blue-color);
  border: 1px solid var(--blue-color);
  transform: scale(1.1);
}

/* <!-- our team section --> */
.our-team h1 {
  font-weight: 600;
  font-family: var(--font-family);
  color: var(--blue-color);
  font-size: 2rem;
}

.our-team p {
  font-family: var(--font-family) !important;
  font-size: 0.9rem !important;
  font-weight: normal;
  margin-bottom: 30px;
}
/* <!-- image gallery section --> */

.image-gallery-set {
  padding: 80px 0;
}
.image-gallery-set h2 {
  font-size: 2rem;
  font-family: var(--font-family);
  color: var(--blue-color);
  margin-bottom: 20px;
  text-align: center;
}
.image-gallery-set .subheading {
  font-family: var(--font-family) !important;
  font-size: 0.9rem !important;
  font-weight: normal;
  margin-bottom: 30px;
}
.photo-gallery {
  color: #313437;
  background-color: #fff;
}
.photos {
  display: flex;
}
.photos .item {
  margin-bottom: 20px;
}
.photos .item img {
  height: 100%;
  border-radius: 20px;
}
.photo-gallery p {
  color: #7d8285;
}

.photo-gallery h2 {
  font-weight: bold;
  margin-bottom: 40px;
  padding-top: 40px;
  color: inherit;
}

.photo-gallery .intro {
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto 40px;
}

.photo-gallery .intro p {
  margin-bottom: 0;
}

.photo-gallery .photos {
  padding-bottom: 20px;
}

.photo-gallery .item {
  padding-bottom: 30px;
}

/* 0.3 SUBSIDIARIES PAGE
   STYLES */

.company-title {
  color: var(--blue-color);
  font-family: var(--font-family);
  display: flex;
  background: var(--bg-secondary);
  width: max-content;
  padding: 20px 50px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  font-weight: 600;
}

/* <!-- company list section style --> */
.company-name-list {
  padding: 80px 0;
}
.company-name-list .nav-item {
  margin-bottom: 20px;
  display: flex;
  gap: 1rem;
  position: relative;
}
.company-name-list h3 {
  font-family: var(--font-family);
  font-weight: 600;
  text-align: center;
  color: var(--blue-color);
  font-size: 2rem;
}
.company-name-list p {
  text-align: center;
  font-family: var(--font-family);
  font-size: 0.9rem;
}
.nav-tabs .nav-link.active {
  background-color: var(--bg-primary) !important;
  box-shadow: var(--shadow);
  color: var(--white-color) !important;
}
.nav-tabs .nav-link.active::after {
  content: "";
  width: 50px;
  height: 50px;
  margin: 0 auto;
  background-image: url("../images/bottom-arrow.svg");
  background-repeat: no-repeat;
  position: absolute;
  background-size: 100% 100%;
  bottom: -30px;
}
.nav-tabs .nav-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: none !important;
  padding: 20px 20px;
  transition: all 0.2s;
  font-family: var(--font-family);
  color: var(--blue-color);
  border-radius: 8px !important;
  text-align: center;
  background-color: var(--bg-secondary);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  width: 100%;
  font-size: 1.5rem;
  font-weight: 600;
}
.nav-tabs .nav-link:hover {
  box-shadow: var(--shadow);
}
.nav-tabs .nav-link img {
  border-radius: 8px;
  height: auto;
  width: 150px;
}
.nav-link:focus,
.nav-link:hover {
  color: var(--blue-color) !important;
}
.nav-tabs {
  border: none !important;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

/* <!-- company content section style--> */

/* <!-- company section one --> */
.company-section {
  padding: 80px 0;
  background-color: var(--bg-secondary);
}

.company-section .company-img-wrp {
  width: 100%;
}
.company-section .company-img-wrp img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.company-content-wrp h2 {
  font-family: var(--font-family);
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--blue-color);
}
.company-content-wrp h6 {
  font-family: var(--font-family);
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--black-color);
}
.company-content-wrp p {
  font-family: var(--font-family);
  font-size: 0.9rem;
  color: var(--black-color);
}

/* <!-- company section two --> */
.company-section-two {
  padding: 80px 0;
}
.company-section-two .company-img-wrp {
  width: 100%;
}
.company-section-two .company-img-wrp img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.company-section-two .company-content-wrp h2 {
  font-family: var(--font-family);
  font-size: 2rem;
  margin-bottom: 30px;
}
.company-section-two .company-content-wrp h6 {
  font-family: var(--font-family);
  font-size: 1rem;
  margin-bottom: 20px;
}
.company-section-two .company-content-wrp p {
  font-family: var(--font-family);
  font-size: 0.9rem;
}

/* <!-- company section Three --> */
.company-section-three {
  padding: 80px 0;
  background-color: var(--bg-secondary);
}
.company-section-three .company-img-wrp {
  width: 100%;
}
.company-section-three .company-img-wrp img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.company-section-three .company-content-wrp h2 {
  font-family: var(--font-family);
  font-size: 2rem;
  margin-bottom: 30px;
}
.company-section-three .company-content-wrp h6 {
  font-family: var(--font-family);
  font-size: 1rem;
  margin-bottom: 20px;
}
.company-section-three .company-content-wrp p {
  font-family: var(--font-family);
  font-size: 0.9rem;
}

/* <!-- company section four --> */
.company-section-four {
  padding: 80px 0;
}
.company-section-four .company-img-wrp {
  width: 100%;
}
.company-section-four .company-img-wrp img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.company-section-four .company-content-wrp h2 {
  font-family: var(--font-family);
  font-size: 2rem;
  margin-bottom: 30px;
}
.company-section-four .company-content-wrp h6 {
  font-family: var(--font-family);
  font-size: 1rem;
  margin-bottom: 20px;
}
.company-section-four .company-content-wrp p {
  font-family: var(--font-family);
  font-size: 0.9rem;
}

/* <!-- company section Five --> */
.company-section-five {
  padding: 80px 0;
  background-color: var(--bg-secondary);
}
.company-section-five .company-img-wrp {
  width: 100%;
}
.company-section-five .company-img-wrp img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.company-section-five .company-content-wrp h2 {
  font-family: var(--font-family);
  font-size: 2rem;
  margin-bottom: 30px;
}
.company-section-five .company-content-wrp h6 {
  font-family: var(--font-family);
  font-size: 1rem;
  margin-bottom: 20px;
}
.company-section-five .company-content-wrp p {
  font-family: var(--font-family);
  font-size: 0.9rem;
}

/* <!-- company section Six --> */
.company-section-six {
  padding: 80px 0;
}
.company-section-six .company-img-wrp {
  width: 100%;
}
.company-section-six .company-img-wrp img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.company-section-six .company-content-wrp h2 {
  font-family: var(--font-family);
  font-size: 2rem;
  margin-bottom: 30px;
}
.company-section-six .company-content-wrp h6 {
  font-family: var(--font-family);
  font-size: 1rem;
  margin-bottom: 20px;
}
.company-section-six .company-content-wrp p {
  font-family: var(--font-family);
  font-size: 0.9rem;
}

/* 
4. CONTACT US PAGE 
STYLES 
*/

/* <!-- contact detail box --> */
.contact-boxes {
  padding: 80px 0;
}
.contact-boxes .box-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow);
  width: 100%;
  padding: 50px;
  border-radius: 20px;
}
.contact-boxes .box-content i {
  color: var(--white-color);
  background-color: var(--maroon-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.contact-boxes .box-content a {
  color: inherit;
  text-decoration: none;
}
.contact-boxes .box-content h4 {
  font-family: var(--font-family);
  font-weight: 600;
}
.contact-boxes .box-content h5 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1rem;
}

/* <!-- map nad form section --> */
.map-and-form {
  padding: 80px 0;
  background-color: var(--bg-secondary);
}
.contact-imgwrp {
  width: 100%;
}
.contact-imgwrp img {
  width: 100%;
  height: 100%;
}
.form-wrp {
  padding: 50px;
  background-color: var(--white-color);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.form-wrp h3 {
  font-family: var(--font-family);

  text-align: center;
  font-weight: 600;
}
.form-wrp p {
  text-align: center;
  font-family: var(--font-family);
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 30px;
}
.form-floating > label {
  font-family: var(--font-family);
  font-size: 0.9rem;
}
.form-wrp .submit-btn {
  background-color: var(--blue-color);
  border: 1px solid var(--blue-color);
  padding: 8px 60px;
  font-family: var(--font-family);
  font-size: 0.9rem;
  margin-top: 20px;
  transition: all 0.2s;
  border-radius: 8px;
}
.form-wrp .submit-btn:hover {
  background-color: var(--white-color);
  border: 1px solid var(--blue-color);
  color: var(--blue-color);
  transform: scale(1.1);
  padding: 8px 60px;
}
.form-floating > .form-control {
  border: 1px solid #ddd;
  border-radius: 20px;
  background: #f7f8fc;
}

.body-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 50px;
}
.body-text h3 {
  color: var(--blue-color);
}
.body-text p {
  color: var(--black-color);
}

@media (max-width: 991.98px) {
  .tab-pane img {
    margin-bottom: 30px;
  }
  .nav-tabs .nav-link {
    font-size: 0.9rem;
  }
  .nav-tabs .nav-link img {
    width: 60px;
  }
  .about-page-intro .content {
    margin-top: 50px;
    padding: 0;
  }
  .carousel-item {
    height: 520px;
  }
  .carousel-item img {
    height: 100%;
  }
}

@media (max-width: 767px) {
  .photo-gallery h2 {
    margin-bottom: 25px;
    padding-top: 25px;
    font-size: 24px;
  }
  .carousel-caption h2 {
    font-size: 2rem;
    font-weight: 600;
  }
  .tab-pane img {
    margin-bottom: 30px;
  }
  .welcom-section h2 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
  .welcom-section h2 small {
    font-size: 1.2rem;
  }
  .carousel-item {
    height: 420px;
  }
  .carousel-item img {
    height: 100%;
  }
}
@media (max-width: 575.98px) {
  .carousel-caption h2 {
    font-size: 1.5rem;
    font-weight: 600;
  }
  .carousel-dark .carousel-caption {
    padding: 20px 40px;
  }
  .welcom-section h2 {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: 0;
  }
  .welcom-section h2 small {
    font-size: 0.9rem;
  }
  .carousel-item {
    height: 320px;
  }
  .carousel-item img {
    height: 100%;
  }
}
