/* Reset some default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* // <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900 */

/* .montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */
body {
  font-family: "montserrat";
  /*font-family: Arial, sans-serif;*/
}
video {
  padding: 50px 0 0 0;
  height: 100% !important;
  width: 100%;
}
/* Navbar Styles */
.navbar {
  background: #313131 !important;
  z-index: 1000;
  position: fixed;
  width: 100%;
  top: 0;
  padding: 10px 0;
}
.nav-link:focus,
.nav-link:hover {
  color: #e9c155;
}
.navbar-brand img {
  width: 120px;
}

.navbar-collapse {
  background: transparent;
}

.navbar-nav {
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.navbar-nav .nav-link {
  color: #ffffff;
  margin: 0 10px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #b27e2a;
}

.navbar-toggler {
  border: none;
  padding: 0;
  width: 30px;
  margin-right: 20px;
  height: 30px;
  position: relative;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: none;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  top: 50%;
  left: 0;
  transition: all 0.5s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.5s ease;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  bottom: -8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  bottom: 0;
}

.btn-outline-light {
  border-color: #b27e2a;
  color: #b27e2a;
}

.btn-outline-light:hover {
  background-color: #b27e2a;
  color: #ffffff;
}

@media (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(47, 47, 47, 0.9);
    padding: 20px 0;
    transition: transform 0.3s ease-in-out;
    transform: translateY(-100%);
  }

  .navbar-collapse.show {
    transform: translateY(0);
  }

  .nav-item {
    margin: 10px 0;
  }

  .btn-outline-light {
    margin-top: 10px;
    display: inline-block;
  }
}

.button-container {
  margin-left: auto;
}

nav.btn {
  background: #e94e77;
  color: #ffffff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

nav.btn:hover {
  background: #d63961;
}

img.d-block.w-100 {
  height: 520px;
}

/* ########################### */

section#home {
  margin-top: -109px;
}
.navbar-brand img {
  width: 100px;
  transition: width 0.3s ease;
}
.logo a {
  font-size: 24px;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}
video {
  height: 100%;
}
.nav-links {
  list-style: none;
  display: flex;
  justify-content: space-around;
  width: 100%;
}

.nav-links li {
  margin-right: 20px;
}

a.nav-link {
  color: #f0f0f0;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: #b27e2a;
  transform: translateY(-2px);
}

.button-container {
  margin-left: auto; /* Pushes the button to the right */
}

nav.btn {
  background: #e94e77; /* Button color */
  color: #ffffff; /* Text color inside button */
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

nav.btn:hover {
  background: #d63961; /* Darker shade on hover */
}
img .d-block.w-100 {
  height: 700px;
}
.services-bot {
  padding-top: 60px;
}
.manik {
  padding-bottom: 19px;
}

@media only screen and (max-width: 800px) {
  .navbar-nav {
    background: rgba(26, 26, 26, 0.95);
    padding: 20px 0;
  }

  .nav-item {
    margin: 10px 0;
  }

  .navbar-toggler {
    border: none;
    outline: none;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar-brand img {
    width: 80px;
  }
}
.container {
  overflow: hidden;
  .slider {
    animation: slidein 30s linear infinite;
    white-space: nowrap;
    .logos {
      width: 100%;
      display: inline-block;
      margin: 0px 0;
      .fab {
        width: calc(100% / 5);
        animation: fade-in 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
      }
    }
  }
}

@keyframes slidein {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.logos i img {
  padding: 40px 30px;
  width: 200px;
}

.logos-slider {
  background-color: #f7f7fa;
}

.aboutus-head {
  font-weight: bold;
}
.aboutus-text {
  line-height: 26px;
  font-size: 16px;
}
.features {
  padding: 50px 6px 50px 14px;
}
.features .features1,
.features2,
.features3 {
  margin: 10px 0;
  padding: 33px;
}
.features1 {
  color: #fff;
  text-align: center;
  background-image: url(./images/Widget-3.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center;
}
.features2 {
  color: #fff;
  text-align: center;
  background-image: url(./images/Widget-4.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center;
}
.features3 {
  color: #fff;
  text-align: center;
  background-image: url(./images/Widget-5.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center;
}
.gallery {
  margin-top: 140px;
}
.gallery h3 {
  margin-bottom: 30px;
}
.services-mid .card-body {
  height: 275px;
}
.Services {
  /* margin-top: 140px; */
  background-color: #f9f9ff;
  padding: 50px 0;
  border: 1px solid rgb(220 220 220);
}
.services-icons {
  padding: 8px;
  border: 1px #b27e2a solid;
  border-radius: 50%;
}

.Services .ser-card {
  background-color: #fff;
  margin: 26px 0;
  height: 500px;
  padding: 30px;
  box-shadow: 1px 3px 14px #cecece;
}

.process {
  padding: 20px 0;
}

.process h2 {
  padding: 0 0 20px 0;
}
.process p {
  font-size: 13px;
  padding: 10px 35px;
}

.client {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}

p.lh-lg {
  color: black;
}
a.left.fa.fa-chevron-left.btn.btn-outline-light,
a.right.fa.fa-chevron-right.btn.btn-outline-light {
  color: black;
}
.carousel-icon {
  i {
    font-size: 5rem;
    color: rgba(#000000, 0.3);
  }
}
.carousel-item {
  i {
    font-size: 1.6rem;
    color: #000 !important;
  }
}

.t-card {
  padding: 0 0.125rem;
  background-color: rgba(#000, 0.5);
  border-radius: 1.25rem;
  color: #fff;
  height: auto;
}
.services-top img {
  height: 200px;
  width: 300px;
  border-radius: 5px;
}
.arrow-down {
  width: 0;
  height: 0;
  border-left: 1.5625rem solid transparent;
  border-right: 1.5625rem solid transparent;
  margin-left: 4.6875rem;
}
/* Footer Styles */
footer {
  color: #fff;
}
ul {
  padding: 0px;
}
ol,
ul {
  margin-bottom: 0px;
}

.social-icon {
  padding: 0;
  margin-bottom: 0px;
  float: right;
}

.social-icon li {
  list-style: none;
  display: inline-block;
}
.social-icon li i {
  font-size: 14px;
  color: #262725;
  border: solid 2px #ffffff;
  height: 31px;
  width: 31px;
  text-align: center;
  vertical-align: middle;
  border-radius: 100px;
  line-height: 27px;
  margin-right: 15px;
  transition: 1s;
  background: #fff;
}
.social-icon li i:hover {
  border: solid 2px #262725;
  color: #ffffff;
  background: #262725;
}
.services-bot .card-body.bg-light.p-3 {
  height: 141px;
}
.services-bot .col-xl-4.col-md-12.col-lg-6.col-sm-12 {
  margin: 20px 0 0 0;
}

.phone-no i {
  position: relative;
  margin-right: 14px;
  font-size: 43px;
  top: 5px;
}
.team img {
  border-radius: 5px;
}
.phone-no {
  margin-top: -22px;
  text-align: right;
}
.footer-day-time {
  padding-bottom: 30px;
  border-bottom: 2px solid #7a6f6f;
  padding-top: 14px;
  margin-bottom: 55px;
}
.footer-day-time ul li {
  display: inline;
  margin-right: 20px;
}
.footeer-links ul li a {
  color: #fff;
  text-decoration: none;
}
.footer-day-time ul li:last-child {
  margin-right: 0px;
}
.phone-no a {
  color: #fff;
  font-family: PlayfairDisplay-Black;
  font-size: 34px;
  font-weight: bold;
}
.footer-top {
  background: #313131;
  padding: 50px 0 50px;
}
.footer-top h4 {
  font-size: 19px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.footer-top p {
  font-size: 13px;
  line-height: 2;
}

.box {
  margin: 60px;
  padding: 30px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  text-align: center;
}

footer p {
  margin-bottom: 0;
}
.footer-logo {
  display: block;
  margin-bottom: 32px;
}
.address1 li {
  list-style: none;
  position: relative;
  padding: 0px 0 14px 34px;
  line-height: 26px;
}
ul.address1 span {
  position: absolute;
  width: 40px;
  max-width: 40px;
  left: 0;
}
.address1 li a {
  color: #fff;
  text-decoration: none;
}
ul.address1 i {
  width: 20px;
  position: absolute;
  left: 0px;
  text-align: center;
  font-size: 28px;
  top: 0;
}

ul.address1 i.fa-envelope {
  font-size: 18px;
  top: 4px;
}
footer ul.social-icon {
  float: left;
}
footer .social-icon li i:hover {
  background: #2f2f2f;
  border-color: #2f2f2f;
}

.footer-bottom {
  background: #313131;
  padding: 10px 0px;
}
.footer-bottom ul li {
  display: inline;
  margin-right: 20px;
  font-size: 18px;
}
.footer-bottom ul li a {
  color: #fff;
}

.footer-bottom ul {
  float: right;
}

.footer-bottom ul li:last-child {
  margin-right: 0;
}
.copyright {
  font-size: 12px;
  text-align: center;
}

/* about us page */

.about-sec {
  margin-top: 126px;
  padding: 50px;
  color: #ffffff;
}

.about-sec .btn {
  background-color: #e7e7e7;
  color: black;
}
.overview {
  font-size: 14px;
  line-height: 30px;
  padding: 20px 0;
}
.mission {
  margin-top: 40px;
  background-color: #313131;
  border-radius: 50px;
}

.mission .list-group-item {
  background-color: #313131;
  border: none;
  color: #fff;
}
.Vision {
  padding-top: 30px;
}
.services-top {
  margin-top: 128px;
  text-align: center;
  padding: 40px;
}
.services h2 {
  padding: 30px;
  text-align: center;
  color: #fff;
}
.Services i.fa {
  color: #000;
  border: 2px solid #b27e2a;
  padding: 14px;
  font-size: 28px;
  border-radius: 50%;
}
.Services i.fa.fa-map-marker {
  padding: 14px 20px;
}

.services h5 {
  padding: 10px;
  text-align: center;
  color: #fff;
}
.services-mid {
  padding: 50px 0;
}
.services-mid img {
  margin: 40px;
  border-radius: 5px;
  width: 350px;
  height: 250px;
}
.services-mid button {
  background-color: #b27e2a;
  color: #fff;
}
.services-mid .card-body {
  padding-top: 0px;
}

.services-bot p {
  font-size: 20px;
}
.team p {
  font-size: 13px;
}
.team .card {
  border: 11px solid #ffffff;
}
.team .card .row {
  border: 1px solid #d0d0d0;
  border-radius: 5px;
}
.gallery img {
  border-radius: 40px;
}
.branches .card {
  box-shadow: -3px 2px 3px #00000033;
  height: 520px;
  /* transition: transform 0.3s ease; */
}
/* 
.branches .card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
} */
.gallery .oneimg {
  width: 634px;
  height: 615px;
}

.gallery .mulimg {
  width: 313px;
  height: 299px;
}

.gallery .image2 {
  margin-top: 20px;
}
.About-startup {
  margin: 48px auto;
  text-align: center;
  padding: 40px;
}
.About-startup img {
  height: 200px;
  width: 300px;
  border-radius: 5px;
}
.form-control {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 35px;
  border-radius: 0;
  font-size: 16px;
  box-shadow: none;
  border: none;
  border-bottom: 1px solid #cccccc;
  background-color: transparent;
}
.form-group {
  padding: 30px 0;
}
.custom-control.custom-radio.custom-control-inline {
  width: 24%;
  display: inline-block;
}
button#submit {
  background: #000;
  color: #fff;
  float: right;
}
.team-cont {
  margin: 50px 0;
}
.team-cont h2 {
  text-align: center;
  margin: 50px 0 30px 0;
  margin: 0px;
}
.team-cont p {
  font-size: 12px;
}
form#survey-form {
  padding: 0px 20px;
}

footer ul li {
  list-style: none;
}
.mobile {
  display: none;
}
@media only screen and (max-width: 1000px) {
  .team .col-md-6 {
    width: 100%;
  }
  .services-bot .col-md-4 {
    margin: 24px 0;
  }

  .Services .ser-card {
    background-color: #fff;
    font-size: 12px;
  }
  .about-sec {
    margin-top: 110px;
  }
  .services-top {
    margin-top: 109px;
  }
  /* .services-top .row-cols-md-4 > * {
    width: 50%;
  } */
  .oneimg.img-fluid {
    width: 300px;
    margin: 20px;
  }
  .gallery .mulimg {
    width: 300px;
    margin: 20px;
  }
  .services-mid .card.shadow-sm {
    margin: 11px;
  }
  .Services .col-sm-3 {
    width: 80%;
    margin: 20px auto;
  }
  .features .features1,
  .features2,
  .features3 {
    margin: 10px auto;
    width: 300px;
    border-radius: 20px;
  }
  ul.nav.mx-auto.text-center {
    display: table;
  }
  div#navbarSupportedContent button {
    margin: auto;
  }
  .container.gallery img {
    margin: 23px auto;
    width: 300px;
    height: 299px;
    display: flex;
    justify-content: center;
  }
  .homefull {
    height: 400px;
  }

  video {
    padding: 219px 0 0 0;
    height: 100%;
    width: 100%;
  }
  .vidwc {
    padding: 0;
    border-radius: 10px;
  }
  .team .card {
    margin: auto !important;
  }
  .Services .ser-card {
    height: 422px;
  }
  .process .col-md-3 {
    width: 100%;
  }
  .footer-top h4 {
    margin: 36px 0 7px 0;
  }
  /* .mission img{
    border-radius: 44px;
    padding: 0 0 30px 0px;
  } */
  .mobile {
    display: block;
  }
  .mobile-hide {
    display: none;
  }
}
@media (min-width: 768px) {
  .row-cols-md-3 > {
    flex: 0 0 auto;
    width: 49.333333%;
  }
  .Services .ser-card {
    background-color: #fff;
    height: 333px;
  }
  .Services .ser-card p {
    font-size: 14px;
  }
  .services-mid .card-body {
    height: 311px;
  }
  .services-bot .card-body.bg-light.p-3 {
    height: 101px;
  }
}

@media (min-width: 992px) {
  .Services .ser-card {
    height: 530px;
    background-color: #fff;
  }
  .Services .ser-card p {
    font-size: 16px;
  }
  .services-mid .card-body {
    height: 246px;
  }
  .services-bot .card-body.bg-light.p-3 {
    height: 140px;
  }
  .manik {
    padding-bottom: 0px;
  }
}
@media (min-width: 1200px) {
  .manik {
    padding-bottom: 19px;
  }
}
@media (max-width: 600px) {
  .branches .card {
    height: 574px;
  }
}
