* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

::selection {
  background-color: var(--main-color);
  color: #fff;
}

:root {
  --main-color: #166db0;
  --secondary: #4a3194;
  --black: #041424;
  --border: rgba(4, 20, 36, 0.1);
  --ternary: #45566a;
  --bg: #f1f5fd;
}

html {
  overflow-x: hidden;
}
body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  overflow-x: hidden;
  color: var(--balck);
}

a {
  text-decoration: none;
}

a:focus {
  box-shadow: none;
}

ul {
  padding: 0;
  margin-bottom: 0;
}

ul li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
}

/* font size */

h1 {
  font-weight: 500;
  font-size: 72px;
  line-height: 1.2;
}

h2 {
  font-weight: 500;
  font-size: 52px;
  line-height: 1.3;
}

h3 {
  font-weight: 600;
  font-size: 38px;
  line-height: 1.3;
}

h4 {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
}

h5 {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
}
h6 {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
}
p {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--ternary);
}
.fs-14 {
  font-size: 14px;
  line-height: 1.5;
}
/* font size */
.transition-3 {
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}

.text-underline {
  text-decoration: underline;
}
.light-white {
  color: var(--lightwhite);
}
.primary {
  color: var(--main-color);
}
.secondary {
  color: var(--secondary);
}
.balck {
  color: var(--balck);
}
.bg {
  background-color: var(--bg);
}
.border {
  border: 1px solid var(--border);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.fs-section {
  padding: 100px 0;
}
html.overflowY {
  overflow-y: hidden;
}

.btn-fill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: fit-content;
  width: auto;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  border-radius: 50px;
  padding: 15px 35px;
  color: #fff;
  background: var(--main-color);

  border: 0;
  outline: 0;
  overflow: hidden;
  z-index: 1;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out,
    border-color 0.2s ease-in-out;
}

.btn-fill span,
.btn-fill svg {
  position: relative;
  z-index: 2;
}
.btn-fill::before {
  transition-duration: 800ms;
  position: absolute;
  width: 210%;
  height: 320%;
  content: "";
  top: 182%;
  left: 50%;
  background: var(--secondary);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%) rotate(-8deg);
  border-radius: 80%;
  z-index: -1;
}
.btn-fill:hover::before {
  top: -110%;
}
.btn-fill p {
  color: #fff;
}

.black {
  color: var(--black);
}
.btn-fill svg {
  transform: rotate(-30deg);
  transition: transform 0.4s ease-in-out;
}
.btn-fill:hover svg {
  transform: rotate(0deg);
}
.img-anim {
  position: relative;
  overflow: hidden;
}
.img-anim::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 3;
}
.img-anim:hover::after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.img-anim img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* <==========header section start===========> */
.header-wrapper {
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
  position: relative;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 15px 12px;
  transition: all 0.35s ease;
  padding: 20px;
}

.header.on-scroll {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-medium);
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  column-gap: 1.25rem;
  padding: 0;
  width: 100%;
  height: auto;
  margin: 0 auto;
  background-color: var(--bg2);
}

.brand {
  width: auto;
  max-width: 150px;
  height: 80px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu {
  position: fixed;
  top: 72px;
  right: -100%;
  width: 100%;
  height: 100%;
  padding: 3rem 0;
  overflow: hidden;
  background-color: #fff;
  box-shadow: var(--shadow-medium);
  z-index: 5;
}

.menu.is-active {
  right: 0;
  width: 100%;
  transition: all 0.4s ease-in-out;
}

.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 0.5rem;
}

.menu-link {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  transition: all 0.3s linear;
  position: relative;
}
.menu-link p {
  color: #fff;
}
.menu-link.active p {
  color: var(--secondary);
}
.menu-link:hover {
  color: var(--secondary);
}
.burger {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
  order: 1;
  z-index: 10;
  width: 1.6rem;
  height: 1.15rem;
  border: none;
  outline: none;
  background: none;
  visibility: visible;
  margin-left: auto;
  transform: rotate(0deg);
  transition: 0.35s ease;
}

.burger-line {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 1.5px;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 1rem;
  transform: rotate(0deg);
  background-color: #fff;
  transition: 0.25s ease-in-out;
}

.burger-line:nth-child(1) {
  top: 0px;
}

.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}

.burger-line:nth-child(3) {
  top: 1rem;
}

.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}

.burger.is-active .burger-line:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}

.burger.is-active .burger-line:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-135deg);
}

.contact-num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 30px 8px 8px;
  background-color: var(--bg1);
  box-shadow: -2px -3px 5px rgba(0, 168, 181, 0.6);
  border-radius: 50px;
  transition: all 0.5s linear;
  cursor: pointer;
}
.contact-num:hover {
  box-shadow: 2px 3px 5px rgba(0, 168, 181, 0.6);
}
.contact-num .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  display: grid;
  place-items: center;
  gap: 10px;
  background-color: var(--main-color);
}
.contact-num .icon-box svg {
  width: 26px;
  height: 26px;
}

/* home baner section start */
.home-banner {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url(../img/bg1.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.home-banner .container-fluid::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.home-banner .container {
  z-index: 3;
}
.home-banner .btn-fill {
  display: inline-flex;
}
.home-banner .btn-fill:after {
  background: var(--bg);
}

.heading .subtitle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 4px 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
}
.heading .subtitle .dot {
  width: 8px;
  height: 8px;
  background-color: var(--secondary);
  border-radius: 100%;
  z-index: 2;
  position: relative;
}
.heading .subtitle h6 {
  color: var(--ternary);
}
.heading h2 {
  color: var(--main-color);
}
.home-banner .heading .subtitle {
  position: relative;
  overflow: hidden;
}
.home-banner .heading .subtitle::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  filter: blur(15px);
}
.home-banner .heading .subtitle h6 {
  color: #fff;
  z-index: 2;
  position: relative;
}

/* home about section start */
.home-about-left {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 590px;
  border-radius: 8px;
}
.home-about-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-about-left .widget-box {
  width: calc(100% - 72px);
  height: auto;
  position: absolute;
  bottom: 15px;
  left: 36px;
  padding: 30px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  z-index: 2;
  border-radius: 10px;
}
.home-about-left img {
  position: relative;
  z-index: 2;
}
/* product section start */
.products-section .heading h2 {
  color: var(--main-color);
}

.products-section .section-desc {
  font-size: 15px;
  color: var(--ternary);
}

.product-card {
  background-color: #f6f8fe;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.product-card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card .read-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 50px;
  padding: 10px 20px;
  color: var(--black);
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
  background-color: #eaeafc;
  margin-top: auto;
}

.product-card .read-more-btn .icon {
  margin-left: 10px;
  color: var(--secondary);
  font-size: 16px;
}

.product-card .read-more-btn:hover .icon {
  color: #fff;
}

.product-card .icon-box {
  width: 40px;
  height: 40px;
  background-color: var(--secondary);
  border-radius: 100%;
  display: grid;
  place-items: center;
}

.product-card .icon-box svg {
  width: 24px;
  height: 24px;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.product-card .read-more-btn:hover svg {
  transform: rotate(30deg);
}

/* journey section start */

.journey-left-box {
  background-color: var(--main-color);
  color: white;
}

.journey-left-box > img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.journey-left-box .widget-box {
  width: 140px;
  height: 140px;
  display: grid;
  place-items: center;
  border-radius: 100%;
  background-color: var(--secondary);
  overflow: hidden;
  position: relative;
}
.journey-left-box .widget-box .middle-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.journey-left-box .widget-box .curve-text {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  left: 0%;
  object-fit: contain;
  animation: spin 20s linear infinite;
}
.journey-section .info-box {
  background-color: var(--main-color);
  color: #fff;
}
.journey-section .info-box p {
  color: #fff;
}
.journey-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.journey-section .info-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* infrascture section start */

.infrastructure-section {
  background-color: #ffffff;
}

.infra-subtitle {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary);
  background: #f2f2f2;
  padding: 6px 16px;
  border-radius: 20px;
}

.infra-subtitle .dot {
  width: 8px;
  height: 8px;
  background-color: var(--secondary);
  border-radius: 50%;
  margin-right: 8px;
}

.infra-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
}

.infra-swiper {
  padding: 20px 0;
}

.infra-swiper .swiper-slide {
  text-align: center;
  transition: transform 0.3s ease;
}

.infra-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 20px;
}

.infra-btn {
  background-color: #4b2aad;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.infra-btn::after {
  font-size: 16px;
  color: #fff;
}
.carousel-slider .swiper-wrapper {
  display: flex;
  align-items: center;
  /* max-height: 200px; */
  max-width: 100%;
}

.carousel-slider .swiper-slide {
  /* width: clamp(150px, 15vw, 293px);
  height: clamp(150px, 15vw, 293px); */
  width: 50%;
  height: 460px;
  border-radius: 15px;
  overflow: hidden;
}
.carousel-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-slider .item-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.carousel-slider .item-content .img-box,
.carousel-slider .item-content .img-box img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
}
.infrastructure-section .heading {
  max-width: 575px;
  text-align: center;
  margin: 0 auto 40px;
}

/* testimonials section start */

.testimonial-card {
  background: #f2f6fd;
  padding: 2rem;
  border-radius: 1rem;
  height: 100%;
}

.quote-icon {
  font-size: 2rem;
  color: #5a30b0;
  margin-bottom: 1rem;
}

.testimonial-swiper {
  padding-bottom: 40px; /* space for dots */
  margin-top: 40px;
}

.testimonial-swiper .icon-box {
  width: 32px;
  height: 32px;
  overflow: hidden;
  margin-bottom: 40px;
}
.testimonial-swiper .icon-box svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.testimonial-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: var(--secondary);
}
.testimonial-swiper .swiper-pagination-bullet-active {
  width: 60px !important;
}

/* footer section start */
footer {
  background-color: var(--main-color);
}
footer .brand-logo {
  height: 70px;
  overflow: hidden;
}
footer .brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
}
.footer-top-right {
  display: flex;
  justify-content: end;
}
.footer-top-right ul {
  display: inline-flex;
  flex-direction: column;
  gap: 15px;
  margin-left: auto;
}

/* footer links white + underline animation */
footer .footer-top-right .nav li a,
.footer-bottom .nav li a {
  color: #fff !important;
  position: relative;
  text-decoration: none;
}

footer .footer-top-right .nav li a::after,
.footer-bottom .nav li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease-in-out;
}

footer .footer-top-right .nav li a:hover::after,
.footer-bottom .nav li a:hover::after {
  width: 100%;
}

.footer-top-right ul .nav-link {
  padding: 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
}
.footer-bottom .copyrights {
  color: rgba(255, 255, 255, 0.9);
}
.footer-bottom .nav-item .nav-link {
  padding: 0;
}

footer.fs-section {
  padding-bottom: 30px;
}
/* footer section end */


/* <========== about us section start ==========> */
.inner-banner {
  width: 100%;
  height: 450px;
  background-image: url("../img/inner-banner.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}
.inner-banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
}
.inner-banner .container {
  position: relative;
  z-index: 2;
  color: #fff;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}

/* journey section start */
.vision-section {
  padding: 100px 0;
}

.vision-images {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vision-images .image-main {
  width: 80%;
  height: 340px;
  overflow: hidden;
  border-radius: 15px;
}
.vision-images .image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-images .image-overlay {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 50%;
  height: 360px;
  z-index: 2;
  padding: 15px;
  background-color: #fff;
  border-radius: 15px;
}

.vision-images .image-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.vision-box {
  background-color: var(--main-color);
  color: white;
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  width: 45%;
  margin-top: 30px;
}

.vision-points {
  padding-left: 0;
  margin: 0;
}

.vision-points li {
  list-style: none;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ternary);
}

/* mission section start */
.mission-section {
  background-color: #f5f8ff; /* matches the light blue in your design */
}

.mission-section .heading {
  margin-bottom: 40px;
}

.mission-card {
  background-color: #fff;
  padding: 30px 25px;
  border-radius: 16px;
  height: 100%;
  transition: 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.mission-number {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background-color: var(--main-color);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 30px;
}

/* environment section start */
.environment-left ul li {
  list-style: none;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.environment-img1 {
  width: 100%;
  height: 410px;
  overflow: hidden;
  border-radius: 15px;
}
.environment-img1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.environment-img2 {
  width: 100%;
  height: 190px;
  overflow: hidden;
  border-radius: 15px;
}
.environment-img2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* csr section start */
.csr-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 24px;
}
.csr-right .csr-box {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px dashed var(--border);
}
.csr-right .csr-box .csr-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

/* marqueeSwiper section start */
/* .marqueeSwiper .swiper-slide {
  width: fit-content !important;
}
.marqueeSwiper .swiper-slide {
  font-size: 80px;
  font-weight: 900;
  white-space: nowrap;
  color: #fff;
  text-transform: capitalize;
  text-align: center;
  margin-right: 32px;
}
.marqueeSwiper {
  background-color: var(--main-color);
  padding: 20px 0;
} */

.swiper--top {
  background-color: var(--main-color);
  padding: 30px 0;
}
.swiper--top .swiper-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.swiper--top .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  position: relative;
}
.swiper--top .swiper-slide {
  text-align: center;
  font-size: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  position: relative;
  overflow: hidden;
  padding: 0 15px;
  color: #fff;
}

.swiper--bottom .swiper-container {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 20px 0;
}
.swiper--bottom .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  position: relative;
}
.swiper--bottom .swiper-slide {
  text-align: center;
  font-size: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  position: relative;
  overflow: hidden;
  padding: 0 15px;
  color: #000;
}
.swiper--bottom h1 {
  font-size: 120px;
  font-weight: 900;
  color: rgba(74, 49, 148, 0.6);
}

/* product details page start */
.product-details-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.product-details-right .two-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px 24px;
}
.product-details-right ul li {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.product-details-right ul li svg {
  width: 20px;
  height: 20px;
  overflow: hidden;
}
.product-details-right .small-img-box {
  width: 100%;
  height: 270px;
  overflow: hidden;
  border-radius: 15px;
}

.product-details-right .small-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-details-right .main-box {
  width: 100%;
  height: 410px;
  overflow: hidden;
  border-radius: 15px;
}
.product-sidebar ul li {
  display: flex;
  gap: 8px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.product-sidebar ul p {
  font-size: 15px;
}
.product-sidebar ul li p:first-child {
  min-width: 130px;
}
.product-sidebar ul li p span {
  color: var(--black);
}
.related-project .heading {
  margin-bottom: 40px;
}

/* quality section start */
.quality .small-img-box {
  width: 100%;
  height: 270px;
  overflow: hidden;
  border-radius: 15px;
}
.quality .main-box {
  width: 100%;
  height: 413px;
  border-radius: 15px;
  overflow: hidden;
}
.quality-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.quality-left ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px 24px;
}
.quality-left ul li {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.quality-left ul li svg {
  min-width: 20px;
  width: 20px;
  height: 20px;
  overflow: hidden;
  margin-top: 4px;
}

.accordion-item:not(:last-child) {
  margin-bottom: 24px;
}
.accordion-item {
  padding: 20px 30px;
  border-radius: 24px !important;
  overflow: hidden;
  background-color: var(--bg);
  border: 1px solid var(--border);
}
.accordion-button:not(.collapsed),
.accordion-button {
  background-color: transparent;
  box-shadow: none !important;
  padding: 0;
}
.accordion-item:first-of-type > .accordion-header .accordion-button,
.accordion-button {
  color: var(--white);
}
.accordion-button::after {
  background-image: url('data:image/svg+xml,%3Csvg width="16" height="17" viewBox="0 0 16 17" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M1 8.5H8M8 8.5H15M8 8.5V1.5M8 8.5V15.5" stroke="black" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-size: 90% 90%;
}

.accordion-button:not(.collapsed)::after {
  background-image: url('data:image/svg+xml,%3Csvg width="14" height="3" viewBox="0 0 14 3" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M13 1.5H1" stroke="black" stroke-width="1.5" stroke-linecap="round"/%3E%3C/svg%3E');
}
.accordion-body {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

.quality-sidebar {
  border-radius: 10px;
  overflow: hidden;
}
.quality-sidebar .top {
  background-color: var(--secondary);
  padding: 12px 30px;
  color: #fff;
}
.quality-sidebar .body {
  padding: 30px;
  background-color: var(--bg);
}

.quality-sidebar .body ul li {
  display: flex;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 10px;
}
.quality-sidebar .body ul li p {
  font-size: 15px;
}
.quality-sidebar .body ul li p:first-child {
  min-width: 130px;
}
.quality-sidebar .body ul li p span {
  color: var(--black);
}

/* quality section end */

/* infrastruture section start */
.infrastructure-img .img-box {
  width: 100%;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
}

/* careers page start */
.careers .main-image {
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 60px;
}
.jobs .heading {
  margin-bottom: 40px;
}
.job-box {
  height: auto;
  background-color: var(--bg);
  border-radius: 15px;
  overflow: hidden;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: 0.3s ease;
  margin-bottom: 24px;
}
.job-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.job-box .icon-box {
  min-width: 80px;
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  background-color: var(--secondary);
  overflow: hidden;
  border-radius: 100%;
}
.job-box .job-logo img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  object-position: center;
}
.job-box .bottom {
  display: flex;
  align-items: center;
}
.job-box .job-right {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  row-gap: 15px;
}
.job-box .job-right > * {
  flex-grow: 1;
}
.job-box h5 {
  margin-bottom: 8px;
}
.job-box h6 {
  font-weight: 400;
  margin-bottom: 8px;
}
.jobs .notice {
  font-weight: 400;
} 
.jobs .notice a {
  color: var(--secondary);
}


/* contact us setion start */
.contact-section .heading{
  margin-bottom: 40px;
}
.contact-section .contact-form{
  padding: 30px;
  background-color: var(--bg);
  border-radius: 15px;
  overflow: hidden;
}

.contact-section .icon-box {
  background: var(--secondary);
  color: white;
  min-width: 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-widgets {
  display: flex;
  gap: 24px;
}

.contact-tag {
  background-color: #f1f4fd;
  color: #1c60d5;
  font-size: 14px;
  padding: 8px 16px;
}

.contact-img {
  background-size: cover;
  background-position: center;
}

.quote-box {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 16px 24px;
  border-radius: 12px;
  max-width: 90%;
  font-size: 16px;
  color: #fff;
}


.contact-area-inner{
  background-image: url(../img/img19.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.contact-area-left {
  background-color: var(--bg);
  padding: 40px;
}

.contact-area .form-control,
.contact-area textarea
 {
    width: 100%;
    height: 45px;
    color: var(--ternary);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0 16px;
    transition: all 0.3s linear;
}
.contact-area .form-control::placeholder {
  color: var(--ternary);
  opacity: 0.6;
}
.contact-area .form-control:focus {
  box-shadow: none;
  border-color: var(--secondary);
}
.contact-area textarea{
  height: 150px !important;
  padding-top: 10px !important;
}
.contact-area label {
  margin-bottom: 4px;
}
.contact-area .quote-box
{
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    z-index: 2;
    border-radius: 10px;
}