* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  /* font-family: "Montserrat", sans-serif; */
  /* overflow: hidden; */
}

/* --- Customize ScrollBars --- */
.footer .center .linkedin-content::-webkit-scrollbar {
  width: 11px;
}
.footer .center .linkedin-content::-webkit-scrollbar-track {
  background: #fff;
}
.footer .center .linkedin-content::-webkit-scrollbar-thumb {
  background: #676767;
  border-radius: 7px;
}

/* Header Styles Starts Here */
header {
  background-color: #ec9122;
  padding: 5px 0;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}
.header a {
  text-decoration: none;
  color: #fff;
}
.header .icons i {
  margin-right: 7px;
  transition: all 0.3s ease;
}
.header .icons i:hover {
  scale: 1.2;
  color: #5f86c3;
}
.header .email i {
  margin-right: 1px;
}

@media screen and (max-width: 576px) {
  header {
    padding: 0 0 2px 0;
  }
  .header .icons i{
      margin-right: 3.5px;
  }
  .header a{
      font-size: 0.7rem;
  }
  .header .phone span{
      font-size: 0.7rem;
  }
  .header i{
      font-size: 0.8rem;
  }
}
/* Header Styles Ends Here */

/* Nav Styles Starts Here */
nav {
  padding: 12px 0 !important;
  font-family: "Montserrat", sans-serif !important;
  background-color: #fff !important;
}
nav .nav-link {
  font-weight: 500;
}
nav .dropdown-menu {
  background-color: #e79b3e !important;
}
nav .dropdown-item {
  color: #fff;
  font-weight: 400;
}
nav .dropdown-item:hover,
nav .dropdown-item:focus {
  background-color: #e79b3e !important;
  color: #fff;
}

@media screen and (max-width: 576px) {
  nav .nav-link {
      font-size: 0.8rem !important;
    }
    nav .dropdown-item {
      font-size: 0.8rem !important;
    }
}

/* .dropdown-toggle::after {
    display: none;
  } */

/* Nav Styles Ends Here */

/* Top Image Section Starts Here */
.top-image {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.top-image img {
  width: 100%;
}
.top-image h1 {
  background-color: #ec9122ea;
  color: #fff;
  font-size: 3.8rem;
  position: absolute;
  top: 33%;
  padding: 0 3rem 1rem 7rem;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

@media screen and (max-width: 576px) {
  .top-image h1 {
    font-size: 1.8rem;
    top: 33%;
    padding: 0 1rem 0.5rem 1rem;
  }
}
/* Top Image Section Ends Here */

/* Join Us Section Starts Here */
.join-us {
  padding: 3rem 0;
}
.join-us h2 {
  font-size: 2.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  border-bottom: 4px solid #ec9122;
  width: fit-content;
  padding-bottom: 0.4rem;
}
.join-us h4 {
  font-size: 1.8rem;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  margin-top: 1rem;
}

@media screen and (max-width: 576px) {
  .join-us {
    padding: 2rem 1rem;
  }
  .join-us h2 {
    font-size: 1.5rem;
    padding-bottom: 0.2rem;
  }
  .join-us h4 {
    font-size: 1.3rem;
    margin-top: 2rem;
  }
}
/* Join Us Section Ends Here */

/* Dropdown Input Section Starts Here */
.dropdown-box {
  position: relative;
}
.dropdown-box .select-boxes form {
  display: flex;
  justify-content: space-between;
}
.dropdown-box .select-boxes .input-div {
  width: 45%;
  position: relative;
}
.dropdown-box .select-boxes .input-div i {
  position: absolute;
  top: 40%;
  right: 20px;
  color: #da7800;
}
.dropdown-box .select-boxes .input-div input {
  width: 100%;
  height: 60px;
  border: 1.8px solid #989898;
  padding: 0 40px 0 20px;
  font-size: 1.2rem;
  border-radius: 5px;
  /* font-weight: 400; */
}
.dropdown-box .select-boxes .input-div input::placeholder {
  color: #000;
}
.dropdown-box .select-boxes button {
  height: 60px;
  padding: 0 18px;
  border: none;
  outline: none;
  background-color: #eb8a15;
  color: #fff;
  border-radius: 5px;
  transition: all 0.2s ease;
}
.dropdown-box .select-boxes button:hover {
  background-color: #da7800;
}
.dropdown-box .select-boxes button i {
  font-size: 1.7rem;
}

.dropdown-content {
  position: absolute;
  background-color: #f5f5f5fa;
  width: fit-content;
  transition: all 0.2s ease;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.dropdown-content h6 {
  color: #676767;
  padding: 10px 1rem;
  margin: 0 auto;
  font-weight: 400;
  font-size: 1.1rem;
  transition: all 0.1s ease;
}
.dropdown-content h6:hover {
  color: #eb8a15;
  background-color: #e4e4e4;
}

#dropdown-content-1 {
  position: absolute;
  top: 5rem;
  left: 1rem;
  opacity: 0;
  z-index: -1;
}
#dropdown-content-2 {
  position: absolute;
  top: 5rem;
  left: 48%;
  width: 43%;
  opacity: 0;
  z-index: -1;
}

@media screen and (max-width: 576px) {
  .dropdown-box .select-boxes form {
    flex-direction: column;
  }
  .dropdown-box .select-boxes .input-div {
    width: 100%;
    margin-bottom: 1rem;
  }
  .dropdown-box .select-boxes .input-div input {
    height: 55px;
    padding: 0 40px 0 15px;
    font-size: 1rem;
  }
  .dropdown-box .select-boxes button {
    height: 55px;
    width: 100%;
  }
  .dropdown-box .select-boxes button i{
    font-size: 1.5rem;
  }
  .dropdown-content {
    width: 100%;
  }
  .dropdown-content h6 {
    font-size: 0.9rem;
  }

  #dropdown-content-1 {
    top: 4rem;
    left: 2.5%;
    width: 95%;
    border-radius: 10px;
  }
  #dropdown-content-2 {
    top: 8.5rem;
    left: 2.5%;
    width: 95%;
    border-radius: 10px;
  }
}

/* Dropdown Input Section Ends Here */

/* Details Form Starts Here */
.details-form {
  width: 100%;
  min-height: 100vh;
  background-color: #fff;
  padding: 5rem 0;
  overflow: hidden;
}

.contact-form {
  background-image: url("images/bg2.webp");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 3rem 13rem 2rem 13rem;
}
.contact-form .location {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
.contact-form .desc {
  margin-top: 1rem;
}
.contact-form .desc p {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-align: justify;
}

.contact-form form {
  margin-top: 3rem;
  position: relative;
}
.contact-form form .input-row {
  margin-bottom: 1.5rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.contact-form form .input-row input {
  width: 49%;
  padding: 15px 30px;
  border: none;
  outline: none;
}
.contact-form form .input-row #skill-input {
  width: 100%;
}
.contact-form form .input-row #address {
  width: 100%;
  min-height: 6rem;
  padding: 15px 30px;
  border: none;
  outline: none;
}
.contact-form form #msg-row {
  display: flex;
  flex-direction: column;
}
.contact-form form .input-row #msg {
  width: 100%;
  min-height: 10rem;
  padding: 15px 30px;
  border: none;
  outline: none;
}
.contact-form form .input-row span {
  align-self: flex-end;
  margin-top: 5px;
  font-weight: 500;
}
.contact-form form .input-row #location {
  width: 49%;
  padding: 0 29px;
  position: relative;
  color: #777777;
  border: none;
  outline: none;
}

.sr-only {
  position: absolute;
  margin: -1px;
  width: 1px;
  height: 1px;
  border: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.upload-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  color: #000;
  background-color: #fff;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.586) 1.95px 1.95px 5.6px;
  transition: all 0.2s ease;
}
.upload-btn:hover {
  background-color: #f4f4f4;
}

.submit-btn {
  position: absolute;
  bottom: -6rem;
  left: 45%;
  border: none;
  outline: none;
  background-color: #ee8505;
  color: #fff;
  padding: 7px 20px;
  border-radius: 3px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: rgba(168, 168, 168, 0.552) 3.95px 4.95px 2.6px;
  transition: all 0.2s ease;
}
.submit-btn:hover {
  background-color: #d37400;
}

@media screen and (max-width: 576px) {
  .details-form {
    padding: 3rem 0 5rem 0;
  }
  .contact-form {
    padding: 2rem 1rem 2rem 1rem;
  }
  .contact-form form {
    margin-top: 2rem;
  }
  .contact-form form .input-row {
    margin-bottom: 0.7rem;
  }
  .contact-form form .input-row input {
    padding: 12px 8px;
    font-size: 0.8rem;
  }
  .contact-form form .input-row #location {
    padding: 0 3px;
    font-size: 0.8rem;
  }
  .contact-form form .input-row #address {
    min-height: 5rem;
    padding: 12px 8px;
    font-size: 0.8rem;
  }
  .contact-form form .input-row #msg {
    font-size: 0.8rem;
    min-height: 8rem;
    padding: 12px 8px;
  }
  .contact-form form .input-row span {
    font-size: 0.7rem;
  }
  .upload-btn {
    padding: 0.4rem 1.5rem;
    font-size: 0.8rem;
    margin-top: 1rem;
  }
  .submit-btn {
    width: 35%;
    bottom: -5rem;
    left: 32.5%;
    padding: 5px 17px;
    font-size: 0.9rem;
  }
}
/* Details Form Ends Here */

/* Life Section Starts Here */
.life {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 4rem 0;
}
.life .head h1 {
  font-size: 3rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  padding-left: 1rem;
  text-align: center;
}
.life .top {
  display: flex;
  justify-content: space-between;
}
.life .left {
    width: 45%;
    margin-top: 2rem;
}
.life .left img {
    width: 100%;
}

.life .right {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    width: 50%;
    overflow: hidden;
}
.life .right p {
  font-size: 1.1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  margin-top: 2rem;
  color: #676767;
  max-width: 90%;
}
.highlights {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.highlights img {
  width: 19px;
  height: 19px;
  object-fit: contain;
}
.highlights div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}
.highlights span {
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

@media screen and (max-width: 576px) {
  .life {
    padding: 2rem 0;
  }
  .life .head h1 {
    font-size: 1.8rem;
    padding-left: 0;
  }
  .life .top {
    flex-direction: column;
  }
  .life .left {
      width: 100%;
      margin-top: 1.5rem;
      padding: 0 0.5rem;
  }
  .life .left img {
      border-radius: 7px;
  }
  
  .life .right {
      padding: 0 0.5rem;
      width: 100%;
  }
  .life .right p {
    font-size: 0.9rem;
    margin-top: 1rem;
    max-width: 100%;
  }
  .highlights {
    margin-top: 0.5rem;
    justify-content: start;
    flex-direction: column;
    padding: 0 0.5rem;
  }
  .highlights img {
    width: 15px;
    height: 15px;
  }
  .highlights div {
    gap: 5px;
    margin-top: 0;
  }
  .highlights span {
    font-size: 0.7rem;
  }
}

/* Life Section Ends Here */

/* Footer Styles Starts Here */
footer {
  background-color: #ec9122;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.footer {
  display: flex;
  justify-content: space-between;
}
.footer .left {
  width: 29%;
  color: #fff;
}
.footer .left img {
  background-color: #fff;
  padding: 0.5rem 0.8rem;
  margin-top: 1rem;
}
.footer .left a {
  color: #fff;
}
.footer .left .foot-icons {
  margin-top: 2rem;
}
.footer .left .foot-icons i {
  margin-right: 0.7rem;
  font-size: 1.3rem;
  transition: all 0.2s ease;
}
.footer .left .foot-icons i:hover {
  scale: 1.1;
  color: #5f86c3;
}

.footer .center {
  width: 30%;
}
.footer .center h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 1rem;
}
.footer .center img {
  width: 100%;
  /* position: relative; */
}
.footer .center button {
  position: absolute;
  left: 75%;
  top: 46%;
  border: none;
  outline: none;
  font-size: 0.8rem;
  padding: 2px 5px;
  border-radius: 5px;
  box-shadow: 2px 2px 3px #616161;
  background-color: #f9f9f9;
  transition: all 0.2s ease;
}
.footer .center button:hover {
  background-color: #ededede4;
}
.footer .center .linkedin-content {
  height: 150px;
  overflow-y: scroll;
  padding: 10px;
  background-color: #d2d0d0;
}

.footer .end {
  width: 22%;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.footer .end h3 {
  font-size: 1.1rem;
}
.footer .end p {
  font-size: 0.8rem;
}
.footer .end div {
  margin-bottom: 1rem;
}
.footer-line .line {
  width: 100%;
  height: 1.5px;
  background-color: #fff;
  margin-top: 1rem;
}
.copyright {
  display: flex;
  justify-content: space-between;
  color: #fff;
  margin-top: 7px;
  font-size: 0.9rem;
}

#back-to-top {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  bottom: 1.2rem;
  right: 1.4rem;
  box-shadow: rgba(0, 0, 0, 0.308) 0px 10px 20px,
    rgba(0, 0, 0, 0.23) 0px 6px 6px;
  transition: all 0.3s ease;
}
#back-to-top:hover {
  scale: 1.1;
}

@media screen and (max-width: 1400px) {
  .footer .center button{
    top: 41%;
  }
}

@media screen and (max-width: 576px) {
  footer{
      margin-top: 2rem;
  }
  .footer{
      flex-direction: column;
    }
    .footer .left{
      width: 100%;
    }
    .footer .left img{
      margin-top: 0.5rem;
      width: 45%;
    }
    .footer .left .foot-icons{
      margin-top: 1rem;
    }
    .footer .center{
      width: 100%;
      margin-top: 2rem;
    }
    .footer .end{
      width: 100%;
      margin-top: 2rem;
    }
    .copyright{
      font-size: 0.7rem;
     }
     #back-to-top{
      width: 20px;
      height: 20px;
      bottom: 1rem;
      right: 1rem;
    }
}

/* Footer Styles Ends Here */
