/********** Template CSS **********/
:root {
  --primary: #ee5d3e;
  --secondary: #34AD54;
  --light: #EEF9FF;
  --dark: #091E3E;
}


/*** Spinner ***/
.spinner {
  width: 40px;
  height: 40px;
  background: var(--primary);
  margin: 100px auto;
  -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
  animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
  0% {
    -webkit-transform: perspective(120px)
  }

  50% {
    -webkit-transform: perspective(120px) rotateY(180deg)
  }

  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
  }
}

@keyframes sk-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
  }

  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
  }

  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
  font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
  font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
  font-weight: 600 !important;
}


/*** Button ***/
.btn {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  transition: .5s;
}

.btn-primary,
.btn-secondary {
  color: #FFFFFF;
  box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
  box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
  box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 30px;
  height: 30px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  font-family: 'Nunito', sans-serif;
  position: relative;
  margin-left: 25px;
  padding: 35px 0;
  color: #232b62;
  font-size: 18px;
  font-weight: 600;
  outline: none;
  transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
  color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-dark {
    position: relative;
    background: #FFFFFF;
  }

  .navbar-dark .navbar-nav .nav-link,
  .navbar-dark .navbar-nav .nav-link.show,
  .sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 10px 0;
    color: var(--dark);
  }

  .navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
}

@media (min-width: 992px) {
  .navbar-dark {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(256, 256, 256, .1);
    z-index: 999;
  }

  .sticky-top.navbar-dark {
    position: fixed;
    background: #FFFFFF;
  }

  .navbar-dark .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: var(--primary);
    transition: .5s;
  }

  .navbar-dark .navbar-nav .nav-link:hover::before,
  .navbar-dark .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }

  .navbar-dark .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }

  .sticky-top.navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
}


/*** Carousel ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(9, 30, 62, .7);
  z-index: 1;
}

@media (max-width: 576px) {
  .carousel-caption h5 {
    font-size: 14px;
    font-weight: 500 !important;
  }

  .carousel-caption h1 {
    font-size: 30px;
    font-weight: 600 !important;
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}


/*** Section Title ***/
.section-title::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 5px;
  left: 0;
  bottom: 0;
  background: var(--primary);
  border-radius: 2px;
}

.section-title.text-center::before {
  left: 50%;
  margin-left: -75px;
}

.section-title.section-title-sm::before {
  width: 90px;
  height: 3px;
}

.section-title::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 5px;
  bottom: 0px;
  background: #FFFFFF;
  -webkit-animation: section-title-run 5s infinite linear;
  animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
  width: 4px;
  height: 3px;
}

.section-title.text-center::after {
  -webkit-animation: section-title-run-center 5s infinite linear;
  animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
  -webkit-animation: section-title-run-sm 5s infinite linear;
  animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
  0% {
    left: 0;
  }

  50% {
    left: 145px;
  }

  100% {
    left: 0;
  }
}

@-webkit-keyframes section-title-run-center {
  0% {
    left: 50%;
    margin-left: -75px;
  }

  50% {
    left: 50%;
    margin-left: 45px;
  }

  100% {
    left: 50%;
    margin-left: -75px;
  }
}

@-webkit-keyframes section-title-run-sm {
  0% {
    left: 0;
  }

  50% {
    left: 85px;
  }

  100% {
    left: 0;
  }
}


/*** Service ***/
.service-item {
  position: relative;
  height: 300px;
  padding: 0 30px;
  transition: .5s;
  cursor: pointer;
}

.service-item .service-icon {
  margin-bottom: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 2px;
  transform: rotate(-45deg);
}

.service-item .service-icon i {
  transform: rotate(45deg);
}

.service-item a.btn {
  position: absolute;
  width: 60px;
  bottom: -48px;
  left: 50%;
  margin-left: -30px;
  opacity: 0;
}

.service-item:hover a.btn {
  bottom: -24px;
  opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
  margin-top: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: #DDDDDD;
  border-radius: 2px;
  transition: .5s;
}

.testimonial-carousel .owl-dot.active {
  width: 30px;
  background: var(--primary);
}

.testimonial-carousel .owl-item.center {
  position: relative;
  z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
  transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: #FFFFFF !important;
  box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
  transition: .5s;
}

.team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .5s;
}

.team-social a.btn {
  position: relative;
  margin: 0 3px;
  margin-top: 100px;
  opacity: 0;
}

.team-item:hover {
  box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
  background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
  opacity: 1;
  margin-top: 0;
  transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
  opacity: 1;
  margin-top: 0;
  transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
  opacity: 1;
  margin-top: 0;
  transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
  opacity: 1;
  margin-top: 0;
  transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img {
  transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
  transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
  .facts {
    position: relative;
    margin-top: -75px;
    z-index: 1;
  }
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

.bg-header {
  background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.link-animated a {
  transition: .5s;
}

.link-animated a:hover {
  padding-left: 10px;
}

@media (min-width: 767.98px) {
  .footer-about {
    margin-bottom: -75px;
  }
}


/* New Changes Made By BS */

/* NEW Start */
.project {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.project h6 {
  font-weight: 400;
}

.project h6::before {
  content: "";
  height: 2px;
  width: 30px;
  display: inline-block;
  background: var(--brand);
  vertical-align: middle;
  margin-right: 10px;
}


.project .overlay {
  width: 100%;
  height: 220px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(255, 76, 41, 0) 0%, var(--dark) 100%);
}

.project .content {
  position: absolute;
  left: 3%;
  bottom: 10%
}

.project h2,
.project h6 {
  color: #fff;
  font-size: 24px;
}

.project h6::before {
  content: "";
  height: 2px;
  width: 30px;
  display: inline-block;
  background: #06a3da;
  vertical-align: middle;
  margin-right: 10px;
}

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.owl-theme .owl-dots,
.owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}


.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px;
}

.owl-dot.active span {
  background-color: black !important;
}

/* NEW End */

/* About Start */
#card1 {
  /* margin: 21vmax 8vmax;
    width: 19vmax; */
  /* background-color: #111; */
  /* padding: 2em;
    border-radius: 0.5vmax; */
  position: absolute;
  /* color: white; */
  border: 1px solid white;
  transition: background-color 0.5s ease;
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

#card1::after,
#card1::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: conic-gradient(from var(--angle), #ee5d3e, #202960);
  left: 50%;
  top: 50%;
  translate: -51% -51%;
  z-index: -1;
  padding: 4px;
  border-radius: 0.7vmax;
  animation: spin 10s linear infinite;
}

#card1::before {
  opacity: 0.5;
  filter: blur(1.5rem);
  padding: 4px;
}

#card1:hover,
#card2:hover,
#card3:hover {
  background: rgb(28, 28, 28);
  border-radius: 10px;
}

@keyframes spin {
  from {
    --angle: 0deg;
  }

  to {
    --angle: 360deg;
  }
}

/* About End */

/* Card Animation Start */

.cardnew {
  background-color: #ffffff;
  border: 1px solid #202963;
  width: min(360px, 100%);
  padding: 30px;
  border-radius: 10px;
  margin-inline: auto;
  text-align: center;
  position: relative;

  & h4 {
    font-weight: bold;
    font-size: 28px;
    margin-bottom: 10px;
    position: relative;
    /* width: max-content; */
    margin-inline: auto;

    &::after {
      content: "";
      position: absolute;
      width: 0;
      height: 3px;
      background: linear-gradient(270deg, #202963, #ed5e40);
      inset-inline-start: 0;
      inset-block-end: 0;
      border-radius: 10px;
      transition: 0.5s ease-in-out;
    }
  }

  & p {
    font-weight: 300;
    font-size: 14px;
    opacity: 0.7;
  }
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.cardnew:hover::after,
.cardnew:hover::before {
  content: "";
  position: absolute;
  background-image: conic-gradient(from var(--angle), transparent 70%, #f26b24);
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  padding: 3px;
  box-sizing: content-box;
  border-radius: inherit;
  animation: move 3s linear infinite;
}

.cardnew::before {
  filter: blur(10px);
  opacity: 0.7;
}

@keyframes move {
  from {
    --angle: 0deg;
  }

  to {
    --angle: 360deg;
  }
}

.cardnew:is(:hover) h4::after {
  width: 100%;
}

/* Cart Animation End */


/* Photo ANimation Start */
.wrapper11 {
  padding-top: 100px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(90deg, #202962 0%, #ee5d3d 30%, #6a4bc9 70%, #e9c794 100%);
  background-size: 200% auto;
  animation: animated-border 5s linear infinite;
  box-shadow:
    0px 2.8px 2.2px rgba(0, 0, 0, 0.038),
    0px 6.7px 5.3px rgba(0, 0, 0, 0.055),
    0px 12.5px 10px rgba(0, 0, 0, 0.065),
    0px 22.3px 17.9px rgba(0, 0, 0, 0.07),
    0px 41.8px 33.4px rgba(0, 0, 0, 0.072),
    0px 100px 80px rgba(0, 0, 0, 0.07);
}

.card11 {
  position: absolute;
  top: 1%;
  left: 0;
  right: 0;
  height: 98%;
  width: 98%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  align-self: center;
  background: #fff;
  z-index: 2;
  border-radius: 7px;
  overflow: hidden;
}

.card11 img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@keyframes animated-border {
  from {
    background-position: 200% right;
  }

  to {
    background-position: 200% center;
  }
}

@keyframes shimmer {
  to {
    background-position: 200% bottom;
  }
}

/* Photo Animation End */


.owl-theme .project:hover a.btn {
  bottom: 10%;
  opacity: 1;
}

/* .owl-theme .project:hover .owl-theme .project h6{
    display: none;
} */
.owl-theme .project a.btn {
  position: absolute;
  width: 60px;
  bottom: 20px;
  right: 10%;
  margin-left: -30px;
  opacity: 0;
}

/* Project Start */
.card2 {
  float: left;
  padding: 1rem;
  min-width: 100%;
}

.card2 .menu-content {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.card2 .menu-content::before,
.card2 .menu-content::after {
  content: "";
  display: table;
}

.card2 .menu-content::after {
  clear: both;
}

.card2 .menu-content li {
  display: inline-block;
}

.card2 .menu-content a {
  color: #fff;
}

.card2 .wrapper {
  background-color: #fff;
  min-height: 540px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.2);
}

.card2 .wrapper:hover .data {
  transform: translateY(0);
}

.card2 .data {
  position: absolute;
  bottom: 0;
  width: 100%;
  transform: translateY(calc(150px + 1em));
  transition: transform 0.3s;
}

.card2 .data .content {
  padding: 1.5em;
  position: relative;
  z-index: 1;
}

.card2 .type {
  font-size: 12px;
}

.card2 .title {
  margin-top: 10px;
}

.card2 .text {
  height: 70px;
  margin: 0;
}

.card2 input[type=checkbox] {
  display: none;
}

.card2 input[type=checkbox]:checked+.menu-content {
  transform: translateY(-60px);
}

.example-1 .wrapper {
  background: url(https://images.unsplash.com/photo-1547405358-4ef2671bb1bb?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=634&q=80) 30% 1%/cover no-repeat;
}

.example-1 .date {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #333;
  color: #fff;
  padding: 0.7em 2.5em 1.5rem 0.7em;
  border-radius: 0 0 90% 0;
}

.example-1 .date span {
  display: block;
  text-align: center;
}

.example-1 .date .day {
  font-weight: 700;
  font-size: 24px;
  text-shadow: 2px 3px 2px rgba(0, 0, 0, 0.18);
}

.example-1 .date .month {
  text-transform: uppercase;
}

.example-1 .date .month,
.example-1 .date .year {
  font-size: 10px;
}

.example-1 .content {
  background-color: #fff;
  box-shadow: 0 5px 30px 10px rgba(0, 0, 0, 0.3);
}

.example-1 .title a {
  color: gray;
}

.example-1 .menu-button {
  position: absolute;
  z-index: 999;
  top: 18px;
  right: 16px;
  width: 30px;
  text-align: center;
  cursor: pointer;
}

.example-1 .menu-button span {
  width: 6px;
  height: 6px;
  background-color: gray;
  color: gray;
  position: relative;
  display: inline-block;
  border-radius: 20%;
}

.example-1 .menu-button span::after,
.example-1 .menu-button span::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: currentColor;
  position: absolute;
  border-radius: 20%;
}

.example-1 .menu-button span::before {
  left: -12px;
}

.example-1 .menu-button span::after {
  right: -12px;
}

.example-1 .menu-content {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  transition: transform 0.3s;
  transform: translateY(0);
}

.example-1 .menu-content li {
  width: 25%;
  float: left;
  background-color: #333;
  height: 60px;
  position: relative;
}

.example-1 .menu-content a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
}

.example-1 .menu-content span {
  top: -10px;
}

.example-2 .wrapper {
  background: url(https://images.unsplash.com/photo-1547405358-4ef2671bb1bb?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=634&q=80) 30% 1%/cover no-repeat;
}

.example-2 .wrapper1 {
  background: url(../NEWIMAGES/project1.jpg) 30% 1%/cover no-repeat;
}

.example-2 .wrapper2 {
  background: url(../NEWIMAGES/project2.jpg) 30% 1%/cover no-repeat;
}

.example-2 .wrapper3 {
  background: url(../NEWIMAGES/project3.jpg) 30% 1%/cover no-repeat;
}

.example-2 .date {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #333;
  color: #fff;
  padding: 0.7em 2.5em 1.5rem 0.7em;
  border-radius: 0 0 90% 0;
}

.example-2 .date span {
  display: block;
  text-align: center;
}

.example-2 .date .day {
  font-weight: 700;
  font-size: 24px;
  text-shadow: 2px 3px 2px rgba(0, 0, 0, 0.18);
}

.example-2 .date .month {
  text-transform: uppercase;
}

.example-2 .date .month,
.example-2 .date .year {
  font-size: 10px;
}

.example-2 .content {
  background-color: rgb(32 42 96 / 50%);
  color: white;
  box-shadow: 0 5px 30px 10px rgba(0, 0, 0, 0.3);
}

.example-2 .title a {
  color: white;
  font-size: 28px;
}

/* Project End */

.navbar-brand img {
  width: 149px;
  height: 87px;
}

.footer {
  background-color: #d6e1f4de;
}

.footer p,
.link-animated a {
  color: black !important;
}

.footer h3 {
  color: #202a61 !important;
}

.whatsapp-float img {
  width: 50px;
  position: fixed;
  bottom: 40px;
  left: 20px;
  border-radius: 10px;
  z-index: 1;
}

.iconsize {
  width: 60px;
  height: 60px;
}

.imghei1 {
  width: 744px;
  height: 495px;
  object-fit: cover;
}


/* Text Animation Start */
.vdocontent span {
  color: #f1692b;
}

.vdocontent span::after {
  content: '|';
  animation-name: blinking;
  animation-duration: .71s;
  animation-iteration-count: infinite;
}

@keyframes blinking {
  from {
    color: transparent;
  }

  to {
    color: lightgrey;
  }
}

.typing-container h1 {
  color: white;
}

.typing-container p {
  font-size: 17px;
  text-align: center;
  margin-top: 20px;
}

/* Text Animation End */

/* Button Animation Start */
:root {
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --body-color: #393937;
  --accent-color: #ee5d3e;
  --white-color: #fff;
  --box-shadow: 0 0 5px #ee5d3e, 0 0 25px #ee5d3e, 0 0 50px #ee5d3e,
    0 0 100px #ee5d3e;
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: 1rem;
  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*=============== BASE ===============*/


.button-animation {
  position: relative;
  display: inline-block;
  padding: 15px 24px;
  color: #ee5d3e;
  text-transform: uppercase;
  overflow: hidden;
  letter-spacing: 4px;
  transition: 0.5s;
  font-size: 15px;
  background-color: #ffffff;
}

.button-animation span {
  position: absolute;
  display: block;
}

.button-animation span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-color));
  animation: btn-anim1 1s linear infinite;
}

@keyframes btn-anim1 {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 100%;
  }
}

.button-animation span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--accent-color));
  animation: btn-anim2 1s linear infinite;
  animation-delay: 0.25s;
}

@keyframes btn-anim2 {
  0% {
    top: -100%;
  }

  50%,
  100% {
    top: 100%;
  }
}

.button-animation span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, var(--accent-color));
  animation: btn-anim3 1s linear infinite;
  animation-delay: 0.5s;
}

@keyframes btn-anim3 {
  0% {
    right: -100%;
  }

  50%,
  100% {
    right: 100%;
  }
}

.button-animation span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, var(--accent-color));
  animation: btn-anim4 1s linear infinite;
  animation-delay: 0.75s;
}

@keyframes btn-anim4 {
  0% {
    bottom: -100%;
  }

  50%,
  100% {
    bottom: 100%;
  }
}

.button-animation:hover {
  background-color: var(--accent-color);
  color: var(--white-color);
  border-radius: 5px;
  box-shadow: var(--box-shadow);
}

/* Button Animation End */

/* Whatsapp Start */
.floating_btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size: 30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}


.text_icon {
  margin-top: 8px;
  color: #707070;
  font-size: 13px;
}

/* Whatsapp End */


/* mission vision */


/* Container */
.container12 {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

/* Box Styles */
.box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 500px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Icon Styles */
.icon {
  font-size: 40px;
  color: #007bff;
  margin-bottom: 10px;
}

/* Heading Styles */
.box h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

/* Paragraph Styles */
.box p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

/* career form */

/* Form Content */
.form-content {
  flex: 1;
  padding: 20px;
}

.tagline {
  font-size: 24px;
  color: #eb6423;
  margin-bottom: 10px;
  font-weight: bold;
}

.form-content h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
}

.input-group {
  margin-bottom: 15px;
}

.input-group label {
  display: block;
  font-size: 14px;
  color: #555;
  margin-bottom: 5px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: box-shadow 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
  outline: none;
}

.btn-submit {
  background: #eb6423;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-submit:hover {
  background: #0056b3;
  transform: scale(1.05);
}

/* Image Container */
.image-container12 {
  flex: 1;
}

.image-container12 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-left: 2px solid #007bff;
}

/* Animation */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.careervdo {
  width: 100%;
  height: 100%;
  max-width: 600px;
  max-height: 658px;
}

.box ul li {
  color: black;
}

.box p {
  color: black;
}

.footerlogo {
  width: 100% !important;
  max-width: 229px !important;
  height: 100% !important;
}

.downloadbtn {
  margin: 0px 0px 0px 26px !important;
}
.copyhei{
  height: 75px;
}

@media (max-width: 768px) {
  .container12 {
    display: block;
  }

  .typing-container {
    font-size: 10px;

  }

  .typing-container {
    /* padding-top: 200px; */
    margin-top: 2px;

  }

  .typing-container h1 {
    font-size: 20px;
  }

  .form-content {
    display: block;
  }

  .base {
    display: block !important;
  }
  .home-hero{
    height: 400px !important;
  }
  
.box {
  width: 365px;

}
.display-4{
  font-size: 20px;
}
.element.style{
  margin-bottom: 0px !important;
}

.imghei1{
  height: 220px;
  width: 100%;
}
.allphead{
  margin-bottom: 2px !important;
}
.copyhei{
  height: 100px;
}
.cardnew {
  background-color: #ffffff;
  border: 1px solid #202963;
  width: 87%;
  padding: 30px;
  border-radius: 10px;
  margin-inline: auto;
  text-align: center;
  position: relative;
}
.vdocontent{
  width: 100%;
}
.navbar-brand img {
  width: 85px;
  height: 50px;
}
.dropdown-item {
  display: block;
  width: 100%;
  padding: .25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: normal;
  font-size: 9px;
  background-color: transparent;
  border: 0;
}
}

