:root {
  --primary-color: #2D308F;
  --secondary-color: #920204;
  --white-color: #fff;
  --black-color: #000;
  --main-font: 'poppinsregular';
  --yellow-color: #FBC915;
}



html {
  /* scroll-behavior: smooth; */
  overflow-x: hidden;
}

body {
  font-family: var(--main-font) !important;
  overflow-x: hidden;
}

a {
  text-decoration: none !important;
}

img {
  height: auto;
  max-width: 100%;
}

p {
  font-size: 15px !important;
}

.logo-bg {
  /* height: 118px; */
  width: 100%;
  background-image: url(../img/line.svg);
  background-repeat: no-repeat;
  background-size: cover;
}


.head-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0px;
}

.head-bottom-line {
  display: flex;
  height: 5px;
}

.head-bottom-line div:first-child {
  background-color: var(--secondary-color) !important;
  width: 50%;
}

.head-bottom-line div:nth-child(2) {
  background-color: var(--primary-color);
  width: 50%;
}

.head-logos img {
  width: 260px;
}

.vision-logo {
  width: 120px !important;
  float: right;
}

.width-30 {
  width: 20%;
}

.custom-container {
  padding: 0px 100px;
}

.banner {
  height: 100vh;
  width: 100%;
  position: relative;
  background-repeat: no-repeat;
}

.banner-overlay {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  height: 100%;
  width: 100%;
  background-color: rgb(0 0 0 / 66%);
}

.banner video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
}

.navbar li {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0px;
  margin-right: 30px;
  font-weight: 500;
  position: relative;
}


.navbar .nav-link {
  padding: 0px !important;
}

.navbar li a {
  color: var(--secondary-color);
  transition: 1s;
}

.navbar li .active {
  border-bottom: 2px solid var(--secondary-color);
  width: fit-content;
  padding-bottom: 5px;
}

.navbar .dropdown-menu li {
  position: relative;
}

.navbar .dropdown-menu li:before {
  content: "\f101";
  position: absolute;
  top: 0px;
  left: 0px;
  font-family: "Font Awesome 5 pro";
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 17px;
}

.navbar li a:hover {
  color: var(--primary-color);
  transition: 1s;
}

.lang-switch-btn {
  background: #ffc514;
  padding: 3px 10px;
  margin-right: 20px;
  border-radius: 8px;
  font-weight: 800;
}

.lang-switch-btn a {
  color: var(--secondary-color);
}

.nav-btn {
  padding: 0px 15px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.5s;
  z-index: 1;
  font-size: 15px;
  font-weight: 500;
  color: var(--white-color);
  background: var(--primary-color);
  height: 40px;
  border: none;
}

.nav-btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: var(--white-color);
  height: 150px;
  width: 200px;
  border-radius: 50%;
}

.nav-btn:hover {
  color: #fff;
}

.nav-btn:before {
  top: 100%;
  left: 100%;
  transition: all 0.7s;
}

.nav-btn:hover:before {
  top: -30px;
  left: -30px;
  background-color: var(--secondary-color);
}

.custom-nav .dropdown-menu {
  border: none !important;
  border-radius: 0 !important;
  padding-left: 20px;
}

.custom-nav .dropdown-menu .dropdown-item {
  background: transparent;
  font-weight: 500;
}


#navbar {
  width: 100%;
  position: relative;
  /* Start with relative positioning */
  transition: background-color 0.5s ease, top 0.5s ease;
  /* Smooth transition for background and position */
  z-index: 1000;
  background-color: transparent;
  /* No background initially */
}

#navbar.scrolled {
  background-image: url(../img/line.svg);
  /* Background image when scrolled */
  background-color: rgba(0, 0, 0, 0.8);
  /* Add background color on scroll */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.dropdown-toggle::after {
  transition: transform .2s linear;
}

.dropdown::after:has(.active) .dropdown-toggle {
  transform: rotate(180deg);
}

/* banner */

.banner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.banner-cntent {
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  z-index: 1;
  margin-top: 40px;
}


.banner-cntent h2 {
  font-size: 70px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white-color);
}

.banner-cntent h4 {
  color: var(--white-color);
  font-size: 40px;
  margin-bottom: 20px;
}

.banner-cntent h4 span {
  color: var(--yellow-color);
}

.banner-cntent p {
  color: #A5A5A5;
  font-size: 17px;
}

/* button-2 */

.button-2 {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: #2D308F;
  color: #ffff;
  font-weight: bold;
  border: 3px solid rgba(255, 255, 255, 0.5);
  outline: none;
  overflow: hidden;
  font-size: 14px;
  cursor: pointer;
  padding: 0px 20px;
  height: 50px;
  text-transform: capitalize;
}


.button-2:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.button-2::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0) 70%);
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}


.sec-sub-head {
  color: var(--primary-color);
  font-size: 40px;
  font-weight: 800;
  font-family: 'poppinsmedium';
}

.abt-section {
  padding: 80px 0px;
  position: relative;
}

.read-more-btn {
  color: var(--secondary-color);
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  font-family: 'poppinsmedium';
  padding: 0px;
  font-size: 17px;
}

.disc-content {
  padding: 20px 0px 0px 20px;
  border-left: 1px solid #c9c9c9;
}

.disc-content p {
  font-size: 17px;
  width: 80%;
  color: #666;
}

.abt-right-cntnt svg {
  font-size: 55px;
  color: var(--secondary-color);
  border-bottom: 5px solid var(--yellow-color);
  width: fit-content;
}

.quote-box {
  background-color: var(--yellow-color);
  border-radius: 10px;
  padding: 20px 40px;
  margin-top: 20px;
  width: 70%;
}

.quote-box p {
  color: var(--primary-color);
  font-size: 20px;
  margin: 0;
}


.profile-div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.profile-div h5 {
  font-size: 17px;
  color: var(--primary-color);
  font-family: 'poppinssemibold';
}

.profile-div h6 {
  font-size: 15px;
  color: var(--primary-color);
  margin: 0;
}

.profile-div-img {
  height: 60px;
  width: 60px;
  border-radius: 100%;
}

.profile-div-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}


.image-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  cursor: pointer;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: 1s;
}

.image-container img:hover {
  transform: scale(1.1) rotate(2deg);
  transition: 1s;
}

.image-content {
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  background: rgba(146, 2, 4, 0.6);
  color: #fff;
  padding: 20px;
  text-align: center;
  transition: bottom 0.3s ease-in-out;
}

.image-content p {
  margin: 0px;
  font-size: 17px !important;
}

.image-container:hover .image-content {
  bottom: 0;/
}


#service-slider {
  margin-top: 60px;
}

.service-section {
  padding: 80px 0px;
  background-image: url(../img/scvce-banner.png);
  background-position: center;
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
  background-attachment: fixed;

}

.service-section::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.822);
}

.servce-cntnt {
  position: relative;
  z-index: 1;
  text-align: center;
}

.servce-cntnt h4 {
  font-size: 40px;
  color: var(--yellow-color);
  margin-bottom: 10px;
  font-family: 'poppinssemibold';
  text-transform: uppercase;
}

.servce-cntnt p {
  color: #A5A5A5;
}


.effect-icon {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #fbc915;
  padding: 30px;
  cursor: pointer;
  margin-top: 30px;
}


.effect-icon img {
  /* opacity: 0.7;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s; */
}

.effect-icon-img {
  height: 80px;
  width: 80px;
  border-radius: 100%;
  border: 1px solid var(--yellow-color);
  margin: 30px auto 15px;
  display: grid;
  place-content: center;
}

.effect-icon-img img {
  width: 40px;
}

.effect-icon:hover img {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.effect-icon-img img {
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale(1.10);
  transform: scale(1.10);
}

.effect-icon-img:hover img {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.effect-icon h2 {
  font-size: 20px;
  font-family: 'poppinssemibold';
  color: var(--white-color);
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
  text-transform: uppercase;
}

.effect-icon p {
  opacity: 1;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  margin-bottom: 0px;
}

.effect-icon:hover h2 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.effect-icon:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1.1);
}

.abt-2 h3 {
  font-size: 40px;
  color: var(--secondary-color);
  font-family: 'poppinssemibold';
  margin-bottom: 20px;
  text-transform: uppercase;
}

.abt-2 p {
  color: #060606;
}

.abt-2 img {
  width: 600px;
}

.abt-2 {
  padding: 80px 0px;
}

.mt-4 {
  margin-top: 40px !important;
}

.logo-box {
  height: 100px;
  width: 100%;
  box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.07);
  background: var(--white-color);
  padding: 10px;
}

.logo-box img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.section-head h5 {
  text-transform: uppercase;
  font-size: 17px;
  color: var(--primary-color);
}

.section-head h4 {
  font-size: 40px;
  color: var(--secondary-color);
  font-family: 'poppinssemibold';
  margin-bottom: 20px;
}

.client-logo-section {
  padding: 70px 0px 0px 0px;
}

.float-right {
  float: right;
}

.client-bg {
  background: rgb(0 0 0 / 5%);
  padding: 50px 0px;
}

#client-slider-1 {
  margin-top: 13px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  margin: auto;
}

.footer-logo img {
  width: 140px;
}

.footer-logo img:first-child {
  width: 250px;
}

.footer-links ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
  justify-content: center;
  margin: auto;
  margin-top: 30px;
  flex-wrap: wrap;
}

.footer-links ul li {
  list-style: none;
  display: inline-block;
  font-family: 'poppinsmedium';

}

.footer-links ul li a:hover {
  transition: .5s;
  color: var(--secondary-color);
}

.footer-links ul li a {
  color: var(--primary-color);
  transition: .5s;
}

.footer-icons {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin: auto;
  width: 35%;
  margin-top: 20px;
}

.footer-icons a {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow-color);
  border: 1px solid var(--secondary-color);
  border-radius: 100%;
  color: var(--secondary-color);
  cursor: pointer;
}

.footer-icons a svg {
  height: 20px;
}

.footer-line {
  height: 1px;
  background: #ebebeb;
  width: 100%;
  margin: 40px 0px 10px 10px;
}

.copyright-text a {
  text-align: center;
  color: #060606;
  margin: 10px 0px;
}

.copyright-text {
  text-align: center;
  margin: 0;
  padding-bottom: 5px;
  margin-top: 20px;
  margin-bottom: 15px;
}

#loader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Spinner styling */
.spinner {
  border: 8px solid #f3f3f3;
  border-top: 8px solid var(--yellow-color);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 1s linear infinite;
}

/* Spinner animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Hide content until loader disappears */
#content {
  display: none;
}

.mobile-menu {
  display: none !important;
}





.mobile-nav {
  position: relative;
  width: 100%;
  z-index: 200;
  visibility: hidden;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background-color: var(--primary-color);
  transition: opacity 0.3s ease-in-out;
}

.closeButton {
  color: #fff;
  font-size: 30px;
  margin: 0;
  position: absolute;
  top: 10px;
  right: 30px;
  cursor: pointer;
  z-index: 210;
}

.burgerIcon {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
  z-index: 190;
}

.burgerLine {
  width: 30px;
  height: 3px;
  background-color: #fff;
  margin-bottom: 7px;
  border-radius: 50px;
}

.navMenu {
  flex-flow: column wrap;
  padding: 0;
}

.navMenu li {
  list-style: none;
}

.navMenu li a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  display: inline-block;
  padding: 15px 50px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--yellow-color) !important;
  transition: 0.2s ease all;
}

.navMenu li:last-child a {
  border-bottom: none;
}

.navMenu li:hover a {
  background-color: var(--yellow-color);
}

.burgerIcon {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.nav-active .burgerIcon {
  opacity: 0;
  visibility: hidden;
}

/* Show burger icon again when the menu is closed */
body:not(.nav-active) .burgerIcon {
  opacity: 1;
  visibility: visible;
}

.mobile-btn {
  height: 50px;
  padding: 0px 20px;
  background-color: var(--yellow-color);
  color: var(--primary-color);
  font-family: 'poppinssemibold';
  font-size: 17px;
  border: none;
  outline: none;
  margin-bottom: 20px;
}



::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}


::-webkit-scrollbar-track {
  background: #f1f1f1;
}


::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 10px;
  border: 3px solid #f1f1f1;
}


::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary-color);
}

.inner-banner {
  background-image: url(../img/inner-banner.png);
  width: 100%;
  height: 400px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 0%;
  position: relative;
}

.inner-banner:after {
  position: absolute;
  top: 0px;
  left: 0px;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #00000057;
}


.inner-banner-cntnt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  margin-top: 50px;
}

.inner-banner-cntnt h4 {
  color: var(--white-color);
  font-size: 50px;
  font-family: 'poppinssemibold';
  text-align: center;
}

.footer {
  height: 100%;
  width: 100%;
  background-image: url(../img/line.svg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0px 0px 0px;
}

.breadcrumbs {
  background: var(--white-color);
  border-radius: 40px;
}

.breadcrumbs ul {
  margin: 0;
  padding: 5px 20px;
  text-align: center;
}

.breadcrumbs ul li {
  list-style: none;
  display: inline;
}

/* .breadcrumbs ul li a{
  color: var(--secondary-color);
  font-size: 14px;
  font-family: 'poppinsmedium';
} */

.breadcrumbs ul li span {
  color: var(--secondary-color);
  font-size: 14px;
  font-family: 'poppinsmedium';
}

.breadcrumbs ul li a .bread-active {
  color: var(--primary-color);
}

/* .bread-active{
  color: var(--primary-color);
} */

.inner-abt {
  padding: 60px 0px;
}


.coming-div-logo {
  width: fit-content;
  padding: 20px 20px;
  border-radius: 50px;
  background-color: var(--white-color);
  margin: 10px auto;
}

.coming-text img {
  width: 260px;
}

.inner-abt-img {
  width: 500px;
}

.bold-text {
  font-size: 18px;
  color: var(--primary-color);
  font-weight: 600;
}

.mision-box {
  background-color: var(--white-color);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
  min-height: 320px;
  padding: 30px;
  margin-top: 60px;
  transition: .5s;
  cursor: pointer;

}

.mision-box:hover img {
  scale: 1.1;
  transition: .5s;
}


.mision-box h4 {
  color: #2D308F;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 15px;
}

.mision-box img {
  width: 60px;
  transition: .5s;
}

.we-are-section {
  background-image: url(../img/slider-2.png) !important;
}

.we-are-section h2 {
  color: var(--yellow-color);
  margin-bottom: 25px;
}

.we-are-section .effect-icon {
  min-height: 260px;
}

.serving-box {
  /* background: var(--white-color);
  filter: drop-shadow(0px 10px 60px rgba(226, 236, 249, 0.70)); */
  padding: 20px;
  display: flex;
  align-items: center;
  border: 1px solid #dcdde8;
  justify-content: center;
  flex-direction: column;
  border-radius: 10px;
  margin-top: 20px;
  transition: .5s;
}

.serving-box:hover {
  transition: .5s;
  transform: translateY(-4px);
  box-shadow: 0px 37px 60px -15px rgba(50, 59, 79, 0.1);
}

.serving-box-img {
  border: 3px solid var(--yellow-color);
  border-radius: 100%;
  background: var(--primary-color);
  height: 60px;
  width: 60px;
  display: grid;
  place-content: center;
}

.serving-box .serving-box-img img {
  width: 30px;
  /* animation: animName 2s linear infinite; */
}

.serving-box:hover .serving-box-img img {
  animation: animName 2s linear infinite;
}


@keyframes animName {
  0% {
    transform: rotateX(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

.serving-box h4 {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 0px;
  text-transform: uppercase;
  text-align: center;
}


/* From Uiverse.io by alexmaracinaru */
.veiw-more-btn {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0px;
}

.veiw-more-btn span {
  padding-bottom: 7px;
  letter-spacing: 2px;
  font-size: 14px;
  padding-right: 15px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primary-color);
}

.veiw-more-btn svg {
  transform: translateX(-15px);
  transition: all 0.3s ease;
  fill: var(--primary-color);
}

.veiw-more-btn:hover svg {
  transform: translateX(-8px);
}

.veiw-more-btn:active svg {
  transform: scale(0.9);
}

.hover-underline-animation {
  position: relative;
  color: var(--primary-color);
  padding-bottom: 20px;
}

.hover-underline-animation:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.veiw-more-btn:hover .hover-underline-animation:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.service-box {
  padding: 15px;
  background-color: var(--white-color);
  border-radius: 20px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
}

.service-box-img {
  height: 300px;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.service-box-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: .5s;
}

.service-box-img img:hover {
  transition: .5s;
  transform: scale(1.1);
}

.service-box h4 {
  font-size: 21px;
  font-weight: 600;
  margin-top: 15px;
}

/* Tabs */
.tabs {
  border-radius: 5px 5px 5px 5px;
}

ul#tabs-nav {
  list-style: none;
  margin: 0;
  padding: 20px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  background: #f6f6f6;
}

ul#tabs-nav li {
  float: left;
  font-weight: bold;
  padding: 8px 10px;
  border-bottom: 1px solid #fff;
  cursor: pointer;
  padding-bottom: 10px;
}

ul#tabs-nav li:hover span {
  color: var(--secondary-color);
}

ul#tabs-nav li.active span {
  color: var(--secondary-color);
}

#tabs-nav li a {
  text-decoration: none;
  color: var(--black-color);
  font-weight: 400;
  font-size: 17px;
}



#tabs-nav li svg {
  opacity: 0;
  margin-left: -10px;
  transition: .5s;
  color: var(--secondary-color);
}

#tabs-nav li:hover a svg {
  opacity: 1;
  margin-right: 5px;
  transition: .5s;
}

#tabs-nav li.active a svg {
  opacity: 1;
  margin-right: 5px;
  transition: .5s;
  fill: var(--primary-color);
}

.servce-section {
  padding: 60px 0px;
}

.more-cntnt h5 {
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 600;
  position: relative;
  padding-left: 60px;
}

.more-cntnt {
  margin-bottom: 20px;
}

.more-cntnt h5::before {
  position: absolute;
  content: "";
  width: 50px;
  left: 0px;
  top: 10px;
  height: 2px;
  background-color: var(--secondary-color);
}

.tab-dtl-cntnt-img {
  width: 100%;
  height: 365px;
  margin-bottom: 15px;
}

.tab-dtl-cntnt-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.tab-dtl-cntnt h4 {
  color: var(--black-color);
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 15px;
}

.tab-dtl-cntnt h5 {
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 35px;
}

.tab-dtl-cntnt h6 {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-top: 30px;
}

.tab-dtl-cntnt ul {
  padding: 0px;
}

.tab-dtl-cntnt ul li {
  position: relative;
  list-style: none;
  padding-left: 25px;
  font-size: 15px;
  color: #8f8f8f;
  font-weight: 300;
  margin-bottom: 20px;
}

.tab-dtl-cntnt ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 15px;
  height: 15px;
  background-image: url(../img/arrow-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.srv-list-points {
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 15px;
}



.accordion {
  width: 100%;
  margin: 0 auto;
}

.arrow-icon {
  height: 30px;
  width: 30px;
  border-radius: 100%;
  background-color: var(--primary-color);
  display: grid;
  place-content: center;
}

.accordion-item {
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  margin-bottom: 10px;
  background-color: #fff;
  overflow: hidden;
  border: none;
  transition: all 0.3s ease;
}

.accordion-header {
  background-color: var(--white-color);
  color: var(--black-color);
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  width: 100%;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* .accordion-header:hover {
  background-color: #024936;
} */

.accordion-body {
  padding: 0 15px;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 0.3s ease, opacity 0.3s ease;
  border-top: 1px solid #ebebeb;
}

.accordion-body p {
  padding: 15px 0;
  margin: 0;
  color: #8f8f8f;
  text-align: left;
}

.accordion-item.active .accordion-body {
  height: auto;
  opacity: 1;
}

.arrow {
  width: 7px;
  height: 7px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  margin-bottom: 2px;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.accordion-item.active .arrow {
  transform: rotate(-135deg);
  margin-top: 6px;
}

.service-include-div {
  background-color: var(--primary-color);
  position: relative;
  padding: 30px;
  text-align: center;
}

.srv-cnt-icon {
  height: 70px;
  width: 70px;
  background-color: var(--white-color);
  border-radius: 100%;
  display: flex;
  align-items: center;
  border: 2px solid var(--yellow-color);
  justify-content: center;
  margin: 0px auto;
}

.srv-cnt-icon svg {
  color: var(--yellow-color);
  font-size: 20px;
}

.service-include-div h4 {
  font-size: 25px;
  font-weight: 700;
  color: var(--white-color);
}

.service-include-div h6 {
  margin-top: 15px;
  color: #b0b0b0;
}

.service-include-div h3 {
  font-size: 25px;
  font-weight: 600;
  color: var(--yellow-color);
}









/* new style */


.banner-bg {
  background-image: url(../img/inner-banner.png);
  height: 350px;
  width: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
  display: flex;
  /* justify-content: center; */
  align-items: center;
}

.banner-bg:before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.743);
}

.banner-title {

  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
}

.banner-title h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
}

.path {
  color: #fff;
  font-size: 15px;
  width: 100%;
  display: flex;
  justify-content: center;
  bottom: 55px;
  gap: 5px;
  position: absolute;
  font-weight: 500;
}

.path a {
  text-decoration: none !important;
  color: #fff;
}

.path-link-text {
  color: #FBC915 !important;

}

.contact-head h2 {
  font-size: 40px;
  font-weight: 700;
  color: #000;
}

.contact-head h6 {
  font-size: 14px;
  color: #666;
}


.contact-head span {
  color: #FBC915;
}

.contact-icons {
  font-size: 16px;
  color: #FBC915;
}

.contact-icons:hover {
  color: #fff;
  transition: 0.5s;

}

.contact-details-card {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background-color: #2d308f;
  border-radius: 10px;
  padding: 25px 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.circle-1 {
  position: absolute;
  height: 250px;
  width: 250px;
  border-radius: 100%;
  background-color: #FBC915;
  right: -115px;
  bottom: -115px;
  opacity: 0.8;
}

.circle-2 {
  position: absolute;
  height: 80px;
  width: 80px;
  border-radius: 100%;
  background-color: #FBC915;
  right: 75px;
  bottom: 54px;
  opacity: 0.95;
  backdrop-filter: blur(18px);
  background: #FBC915(255, 255, 255, 0.14);
}

.contact-details-card h4 {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
}

.contact-details-card p {
  font-size: 16px;
  font-weight: 300 !important;
  color: #e8e6e6;
  margin-top: 5px;
}

.contact-details-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-details {
  display: flex;
  gap: 10px;
  width: 60%;
  align-items: baseline;
}



.contact-details a {
  text-decoration: none !important;
  justify-content: center;
}

.label-title label {
  font-size: 16px;
  color: #666464;
  font-weight: 300;
}

.contact-details-text h5 {
  font-size: 18px;
  margin: 0;
  color: #fff;
  font-weight: 700;
}

.contact-details-text h6 {
  font-size: 15px;
  margin-top: 5px;
  color: #e8e6e6;
}

.form-custom {
  border-radius: 0 !important;
  font-size: 14px !important;
  padding: 10px;
  font-weight: 400 !important;
}

.form-custom:focus {
  box-shadow: none !important;
  border-color: #FBC915 !important;
}


.contact-form {
  width: 80%;
  margin: 0 auto;
}

.social-media ul {
  display: flex;
  list-style-type: none;
  gap: 15px;
  color: #fff !important;
  font-size: 16px;
  padding: 0;
  margin: 0;
}

.social-media ul a {
  text-decoration: none !important;
  color: #fff;
}

.social-media ul a:hover {
  color: #FBC915;
}

.map {
  width: 100%;
  padding: 50px 0 0;
}

.contact-section {
  margin-top: 50px;
}

.contact-head {
  margin-bottom: 16px;
}

.contact-banner {
  width: 100%;
  height: 350px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.contact-details-card .svg-inline--fa {
  height: 1.2em;
}


.offcanvas.offcanvas-end {
  width: 100% !important;
  transition: transform 1s ease-in-out;
  background: #fffde6;
}

.offcanvas-body {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 100px;
}

.enquire-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.enquire-form-container {
  gap: 40px;
}

.offcanvas-header {
  padding: 40px 0 !important;
}

.conatct-modal .form-custom {
  background-color: #ffffff54;
}

.mobile-menu .lang-switch-btn {
  margin-right: 0px;
  margin-bottom: 10px;
}

/* trading */

.trading-main {
  height: 400px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.trading-main img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 20px;
  transition: .5s;
}

.trading-main img:hover {
  transform: scale(1.1);
  transition: .5s;
}


.service-include-div {
  overflow: hidden;
  height: 320px;
}

.service-include-div .circle-1 {
  position: absolute;
  height: 200px;
  width: 200px;
  right: -115px;
  bottom: -115px;
  opacity: 0.8;
}

.service-include-div .circle-2 {
  position: absolute;
  height: 50px;
  width: 50px;
  right: 38px;
  bottom: 33px;
  opacity: 0.8;
}

.bottom-widget {
  margin: 20px 0 0;
}

.bottom-widget a {
  padding: 15px;
  display: block;
  background-color: transparent;
  font-size: 20px;
  font-weight: 600;
  color: var(--yellow-color);
  position: relative;
  z-index: 99;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;


}

.bottom-widget .svg-inline--fa {
  height: 1.4em;
}


.bottom-widget a::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--primary-color);
  z-index: -1;
  transition: 0.8s;

}

.bottom-widget a:hover::before {
  height: 100%;
  transition: 0.8s;
}


ul#tabs-nav {
  margin-bottom: 20px;
}

.trade-cntnt {
  background-color: #f5f5f5;
  padding: 20px 30px;
  margin-bottom: 20px;
  border: 1px solid #ebebeb;
  min-height: 270px;
  width: 80%;
  margin: 0 auto;
  margin-top: 30px;
}

.trade-cntnt h5 {
  margin-top: 0px;
}

.trade-cntnt h4 {
  font-size: 22px !important;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 10px;
}

.trade-cntnt ul {
  padding: 0;
}

.trade-cntnt ul li {
  list-style: none;
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  text-align: left;
}

.trade-cntnt ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 15px;
  height: 15px;
  background-image: url(../img/arrow-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.trading-main-wrapper h4 {
  font-size: 35px;
  color: var(--black-color);
  font-weight: 600;
  text-align: left;
}

.trading-main-wrapper p {
  margin-top: 20px;
}

.trade-cntnt img {
  width: 600px;
}

.btn-close:focus {
  outline: none;
  box-shadow: none;
}

#loader img {
  width: 150px;
}


.loading {
  left: 50%;
  top: 60%;
  font-size: 45px;
  font-weight: 800;
  letter-spacing: 20px;
  text-transform: capitalize;
  position: absolute;
  overflow: hidden;
  transform: translate(-50%, -60%);
}

/* .loading:before {
  color:#fbc9155c;
  content: attr(data-loading-text);
}

.loading:after {
  top: 0;
  left: 0;
  width: 0;
  opacity: 1;
  color: var(--primary-color);
  overflow: hidden;
  position: absolute;
  content: attr(data-loading-text);
  -webkit-animation: loading 4s infinite;
  animation: loading 4s infinite;
}

@-webkit-keyframes loading {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@keyframes loading {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
} */

.trd-pro-head{
  font-size: 35px;
  color: var(--black-color);
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
}

.fix-height .service-box{
  min-height: 400px;
}

.fix-height .service-box h4{
  text-align: center;
}

.accordion-header span{
  width: 90%;
}

.offcanvas {
  overflow-y: scroll;
}


@media only screen and (max-width: 1440px) {
  .banner-cntent h2 {
    font-size: 60px;
  }

  .inner-abt-img {
    width: 500px;
  }

  .head-logos img {
    width: 170px;
  }

  .width-30 {
    width: fit-content;
  }

  .vision-logo {
    width: 100px !important;
  }
}


@media only screen and (max-width: 1200px) {
  .custom-container {
    padding: 0px 60px;
  }

  .banner-cntent h4 {
    width: 80%;
  }

  .quote-box {
    width: 100%;

  }

  .quote-box br {
    display: none;
  }

  .effect-icon {
    padding: 20px;
  }

  .contact-details-align {
    margin-top: 35px !important;
  }

  .contact-details-card h4 {
    font-size: 23px;
  }

  .circle-1 {
    height: 200px;
    width: 200px;
    right: -90px;
    bottom: -100px;
  }

  .circle-2 {
    height: 65px;
    width: 65px;
    right: 50px;
    bottom: 39px;
  }

  .contact-head h2 {
    font-size: 24px;
    margin-bottom: 10px !important;
  }

  .enquire-form-container {
    gap: 0px;
  }

  .offcanvas-body {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .sec-sub-head {
    font-size: 30px;
  }

  .label-title label {
    font-size: 15px;
  }

  .contact-details-card p {
    font-size: 14px;
  }

  .contact-details-text h5 {
    font-size: 16px;
  }

  .contact-details-text h6 {
    font-size: 13px;
  }

  .banner-cntent h2 {
    font-size: 50px;
  }

  .banner-cntent h4 {
    font-size: 30px;
    width: 55%;
  }

  .banner-cntent p {
    font-size: 16px;
  }

  .head-logos img {
    width: 125px;
  }


  .vision-logo {
    width: 70px !important;
  }

  .navbar li {
    margin-right: 18px;
    font-size: 14px;
  }

  .nav-btn {
    padding: 0px 10px;
    font-size: 13px;
    height: 35px;
  }

  .button-2 {
    padding: 0 25px;
  }

  .logo-box {
    height: 65px;
  }

  .service-include-div h4,
  .service-include-div h3 {
    font-size: 22px;
  }

  .srv-cnt-icon {
    height: 60px;
    width: 60px;
  }

  .bottom-widget a {
    font-size: 18px;
  }

  .serving-box h4 {
    font-size: 15px;
  }
}

@media only screen and (max-width: 1024px) {
  .banner-cntent p {
    width: 80%;
  }

  .banner-cntent p br {
    display: none;
  }

  .abt-2 h3 {
    margin-bottom: 10px;
  }

  .client-logo-section {
    padding: 50px 0px 0px 0px;
  }

  .abt-right-cntnt svg {
    font-size: 35px;
  }

  .navbar {
    padding-top: 20px;
  }

  .image-container {
    height: 300px;
  }

}



@media only screen and (max-width: 991px) {
  .mobile-menu {
    display: block !important;
    position: absolute;
    top: 75px;
    width: 100%;
  }

  .navbar {
    display: none !important;
  }

  .abt-2 img {
    display: block;
    margin: auto;
    margin-bottom: 30px;
  }

  .float-right {
    float: revert;
  }

  .abt-2 {
    text-align: center;
  }

  .disc-content {
    padding: 0px;
    border: none;
    margin-bottom: 20px;
  }

  .quote-box {
    width: 100%;
  }

  .custom-container {
    padding: 0px 40px;
  }

  .abt-section {
    padding: 40px 0px;
  }

  .disc-content p {
    width: 100%;
  }

  .contact-icons {
    font-size: 14px;
  }

  .contact-details-card {
    padding: 25px 15px;
  }

  .contact-details-card p {
    margin-top: 10px;
  }

  .circle-1 {
    height: 250px;
    width: 250px;
    right: -155px;
    bottom: -130px;
  }

  .circle-2 {
    height: 60px;
    width: 60px;
    right: 35px;
    bottom: 40px;

  }

  .contact-head {
    margin-bottom: 10px;
  }

  .contact-details-align {
    margin-top: 25px !important;
  }

  .enquire-form-container {
    row-gap: 30px;
  }

  .offcanvas-header {
    padding: 30px 20px  0px 20px  !important;
  }

  .offcanvas-body .contact-head h2 {
    margin-top: 0;
  }

  .contact-details-card .svg-inline--fa {
    height: 1em;
  }

  .form-custom::placeholder {
    font-size: 13px;
  }

  .mobile_accordion .tab-dtl-cntnt {
    padding: 20px;
  }

  .mobile_accordion .tab-dtl-cntnt h4 {
    font-size: 20px;
  }

  .mobile_accordion .accordion-body p {
    color: #000;
    font-size: 14px;
    line-height: 23px;
    padding-top: 0;
    padding-bottom: 25px;
  }

  .mobile_accordion .bold-text {
    font-size: 15px;
  }

  .mobile_accordion .tab-dtl-cntnt h5 {
    margin-top: 25px;
    font-size: 18px;

  }

  .tab-dtl-cntnt ul li {
    font-size: 14px;
    line-height: 23px;
  }

  .tab-dtl-cntnt ul li::before {
    width: 13px;
    height: 13px;
  }

  .fst-sub-head {
    margin-top: 0 !important;
  }

  .srv-list-points {
    padding-bottom: 0;
  }

  .service-include-div {
    margin-top: 30px;
  }

  .service-include-div {
    height: auto;
  }

  .bottom-widget a {
    font-size: 16px;
    padding: 15px 30px;
    display: inline-block;
  }

  .servce-section {
    padding: 50px 0px;
  }

  .mision-box {
    margin-top: 30px;
  }

  .serving-box {
    padding: 15px;
  }

  .serving-box .serving-box-img img {
    margin-bottom: 0px;
  }
  .inner-banner-cntnt{
    width: 90%;
  }
  .service-box-img img{
    margin-bottom: 0px;
  }
  .fix-height .service-box {
    min-height: 250px;
  }
  .trd-pro-head{
    font-size: 25px;
  }
  .trade-cntnt{
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .banner {
    height: 80vh;
  }

  .abt-2 {
    padding: 50px 0px;
  }

  .client-logo-section {
    padding: 30px 0px 0px 0px;
  }

  .section-head {
    text-align: center;
  }

  .footer-icons {
    width: auto;
  }

  .service-section {
    padding: 50px 0px;
  }

  .banner-cntent p {
    width: 100%;
  }

  .contact-details-card h4 {
    font-size: 25px;
  }

  .circle-1 {
    height: 250px;
    width: 250px;
    right: -100px;
    bottom: -125px;
  }

  .circle-2 {
    height: 70px;
    width: 70px;
    right: 70px;
    bottom: 60px;
  }

  .contact-head h2 {
    margin-top: 30px;
  }

  .contact-details-card {
    padding: 25px;
    gap: 20px;
  }

  .service-include-div h4 {
    font-size: 20px;
  }

  .service-include-div h6 {
    font-size: 14px;
  }

  .service-include-div h3 {
    font-size: 18px;
  }

  .srv-cnt-icon {
    height: 50px;
    width: 50px;
  }

  .service-box-img,
  .tab-dtl-cntnt-img {
    height: auto;
  }

  .banner-cntent h4 {
    width: 100%;
  }

  .inner-banner-cntnt h4 {
    font-size: 40px;
  }

  .loading {
    font-size: 35px;
  }
  .inner-banner{
    height: 300px;
  }
}

@media only screen and (max-width: 600px) {
  .banner-cntent h2 {
    font-size: 40px;
  }

  .banner-cntent h4 {
    font-size: 25px;
  }

  .sec-sub-head {
    font-size: 30px;
  }

  .servce-cntnt h4 {
    font-size: 30px;
  }

  .footer-links ul {
    gap: 20px;
  }

  .footer-logo img:first-child {
    width: 200px;
  }

  .footer-logo img {
    width: 120px;
  }

  .head-logos img {
    width: 150px;
  }

  .head-logos img:nth-child(2) {
    width: 100px !important;
  }

  .custom-container {
    padding: 0px 20px;
  }

  .abt-2 h3 {
    font-size: 30px;
  }

  .section-head h4 {
    font-size: 30px;
  }

  footer {
    padding: 0px 20px;
  }

  .contact-button button {
    height: 50px;
    margin: 0 auto;
    display: block;
    width: 60%;
  }

  .offcanvas-body {
    padding-top: 0px;
    padding-bottom: 20px;
  }

  .contact-head h2 {
    font-size: 20px;
  }

  .banner-cntent h4 br {
    display: none;
  }

  .loading {
    font-size: 25px;
  }
  .footer-logo{
    gap: 80px;
  }
  .veiw-more-btn svg{
    display: none;
  }
}

@media only screen and (max-width: 436px) {
  .footer-logo img:first-child {
    width: 140px;
  }

  .footer-logo img {
    width: 90px;
  }

  .quote-box {
    padding: 20px;
  }

  .banner-cntent h2 {
    font-size: 30px;
  }

  .footer-links ul {
    gap: 10px;
  }

  .copyright-text a {
    padding: 0px;
    font-size: 14px;
  }

  .circle-1 {
    height: 230px;
    width: 230px;
    right: -100px;
    bottom: -125px;
  }

  .circle-2 {
    height: 60px;
    width: 60px;
    right: 75px;
    bottom: 40px;
  }

  .service-include-div {
    height: 300px;
  }

  .mobile_accordion .tab-dtl-cntnt {
    padding: 20px 0px;
  }

  .mobile_accordion .tab-dtl-cntnt h4 {
    font-size: 16px;
  }

  .mobile_accordion .accordion-body {
    padding: 0 11px;
  }

  .breadcrumbs ul li {
    display: inline-block;
    min-width: 130px;
  }

  .loading {
    font-size: 18px;
    letter-spacing: 10px
  }

  #loader img {
    width: 120px;
  }
}