/*     
    .swiper-container {
      width: 100%;
      height: 100%;
      
    }


.swiper-full-mobile {
    position: relative;
    margin: 50px auto;
    padding-bottom: 50px;
}

.swiper-full-mobile:befores {
    content: "";
    width: 265px;
    background: url(http://md-aqil.github.io/images/Pixel-3-XL.png);
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    right: 0;
    top: 0px;
    height: 565px;
    z-index: 2;
    margin: auto;
}
.swiper-full-mobile .swiper-slide {
  height: 100%;

}
.swiper-full-mobile .swiper-slide img{
  width: 100%;

  object-fit: cover;

}

  .swiper-full-mobile .swiper-slide p{position: absolute; top: 50%; left: 50%; transform: translate(-50px, -50px); background: #000; color: #fff; width: 100%;}


  :root {
  --color-text: navy;
  --color-bg: papayawhip;
  --color-bg-accent: #ecdcc0;
  --size: clamp(10rem, 1rem + 40vmin, 30rem);
  --gap: calc(var(--size) / 14);
  --duration: 60s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-text: papayawhip;
    --color-bg: navy;
    --color-bg-accent: #2626a0;
  }
}

* {
  box-sizing: border-box;
}

body {
  display: grid;

  gap: var(--gap);
  width: 100%;
  min-height: 100vh;
  font-family: system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-bg);
}

.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  mask-image: linear-gradient(
    var(--mask-direction, to right),
    hsl(0 0% 0% / 0),
    hsl(0 0% 0% / 1) 20%,
    hsl(0 0% 0% / 1) 80%,
    hsl(0 0% 0% / 0)
  );
}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll-x var(--duration) linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__group {
    animation-play-state: paused;
  }
}

.marquee--vertical {
  --mask-direction: to bottom;
}

.marquee--vertical,
.marquee--vertical .marquee__group {
  flex-direction: column;
}

.marquee--vertical .marquee__group {
  animation-name: scroll-y;
}

.marquee--reverse .marquee__group {
  animation-direction: reverse;
  animation-delay: -3s;
}

@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }
  to {
    transform: translateX(var(--scroll-end));
  }
}

@keyframes scroll-y {
  from {
    transform: translateY(var(--scroll-start));
  }
  to {
    transform: translateY(var(--scroll-end));
  }
}


.marquee svg {
  display: grid;
  place-items: center;
  width: var(--size);
  fill: var(--color-text);
  background: var(--color-bg-accent);
  aspect-ratio: 16/9;
  padding: calc(var(--size) / 10);
  border-radius: 0.5rem;
}

.marquee--vertical svg {
  aspect-ratio: 1;
  width: calc(var(--size) / 1.5);
  padding: calc(var(--size) / 6);
}


.wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  margin: auto;
  max-width: 100vw;
}

.wrapper--vertical {
  flex-direction: row;
  height: 100vh;
}

.toggle {
  --size: 3rem;
  position: relative;
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: var(--size);
  height: var(--size);
  font: inherit;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
  border-radius: 50%;
  color: inherit;
  background-color: var(--color-bg-accent);
  z-index: 1;
}

.toggle:focus-visible {
  box-shadow: 0 0 0 2px var(--color-text);
}

.toggle span {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: calc(100% + 0.4em);
  width: fit-content;
  white-space: nowrap;
  transform: translateY(-50%);
  animation: fade 400ms 4s ease-out forwards;
  user-select: none;
}

.toggle svg {
  --size: 1.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--size);
  height: var(--size);
  fill: currentcolor;
  transform: translate(-50%, -50%);
  transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
}

.toggle--vertical svg {
  transform: translate(-50%, -50%) rotate(-90deg);
}

@keyframes fade {
  to {
    opacity: 0;
    visibility: hidden;
  }
} */ 


.enquirysection{padding: 3rem 0;}
.enquirysection .container{display: flex; justify-content: space-between; align-items: start;}
.enquirysection .enquirycontent h2{font-size: 2.6rem; font-weight: 600; color: #333;}
.careerForm {
    width: 90%;
    margin: 0 auto;
    padding: 50px 25px; 
    background: #f6f6f6;
    border-radius: 10px;
}
.careerForm h3 {
    font-size: 30px;
    text-align: center;
    line-height: 26px;
    font-weight: 600;
    color: #052944;
    letter-spacing: .5px;
    margin-bottom: 2rem;
}
.careerForm .form-control, .careerForm input, .careerForm select, .careerForm textarea {
    border-radius: 0;
    box-shadow: none;
    line-height: 25px;
    padding: 9px 16px;
    border-radius: 5px;
    color: #767474;
    border: 1px solid #8a8a8a;
    transition: all .3s ease;
    font-size: .8rem;
    width: 100%;
    outline: none;
}
.careerForm .form-group{margin: .5rem 0 !important;}
.careerForm label {
    font-size: .8rem;
    color: #000;
}
.careerForm .form-control:focus, .careerForm input:focus, .careerForm select:focus, input, textarea:focus {
    background-color: #f6f9fa;
    border-color: #052944;
    box-shadow: none;
}
button, input, select, label, li, span {
    /* -webkit-appearance: none; */
    outline: none;
}
.fileUploadWrap {
    /* padding-top: 10px; */
    position: relative;
    margin-bottom: 20px;
    border: 1px dashed;
    border-radius: 6px;
}
.fileUploadWrap img {
    position: absolute;
    cursor: pointer;
    pointer-events: none;
    width: 25px;
    top: 50%;
    transform: translatey(-50%);
    left: 6px;
}
.fileUploadWrap input[type=file] {
    margin-left: -25px;
    opacity: 0;
    line-height: 16px;
}
.fileUploadWrap .fileName {
    position: absolute;
    left: 48px;
    top: 15px;
    font-size: .8rem;
    pointer-events: none;
    margin-bottom: 0;
}
p.fileName {
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    text-transform: none;
    line-height: 1.1;
    letter-spacing: 0;
    color: #565656;
    font-family: Poppins, Helvetica, Arial, sans-serif;
}
.careerForm p {
    font-size: 14px;
    text-align: center;
    margin-bottom: 28px;
}
.applyBtn i{rotate: 50deg;}