@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@font-face {
  font-family: "regular";
  src: url(/Fonts/source-sans-pro.regular.woff2);
}
@font-face {
  font-family: "bold";
  src: url(/Fonts/source-sans-pro.bold.woff2);
}
@font-face {
  font-family: "bolder";
  src: url(/Fonts/source-sans-pro.black.woff2);
}
@font-face {
  font-family: "light";
  src: url(/Fonts/source-sans-pro.light.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
html,
body {
  ::selection {
    color: white;
    background: #781cad;
  }
  scroll-behavior: smooth;
  overflow-x: hidden;
  cursor: url(/Media/cursor.png), pointer;
}
/* ----------Scroll bar css ------------ */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background-color: #fff;
}
::-webkit-scrollbar-thumb {
  background: #781cad;
  border-radius: 5px;
  transition: 1s all ease;
  cursor: pointer;
}
::-webkit-scrollbar-thumb:hover {
  background: #111;
}
#loader {
  height: 100%;
  width: 100%;
  background-color: #000000;
  position: fixed;
  top: 0;
  z-index: 9999;
  color: #781cad;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
#loader h3 {
  font-family: "Raleway";
  font-size: 2.2vw;
  letter-spacing: 1px;
  font-weight: 900;
  word-spacing: 1px;
  cursor: unset;
  user-select: none;
}

.fire-bolt {
  position: absolute;
  bottom: 10%;
  display: block;
  font-size: 20px;
  text-align: center;
  align-items: center;
  margin: 0 auto;
}

#main {
  width: 100%;
  height: 100%;
}
nav {
  line-height: 40px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.122);
  border: none;
  background-color: #ffffff;
  border-bottom: 2px solid #781cad;
  user-select: none;
}
nav a {
  font-size: 16px;
  font-family: "bold", sans-serif;
  display: block;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 1.5px;
  color: #333333;
}
nav img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 25px;
}
.navbar-brand {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  margin-left: 15px;
  color: #333333;
  line-height: 27px;
}
nav ul {
  padding: 0px 10px;
  padding-right: 50px;
}
nav li {
  padding-left: 40px;
}

.nav-link:hover {
  cursor: pointer;
  color: black;
  transition: 0.2s;
}
/* page1 styling  */
#page1 {
  width: 100%;
  min-height: 100vh;
  max-height: 120vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  user-select: none;
}
.overlay {
  background-color: rgba(48, 48, 48, 0.1);
  top: 0;
  left: 0;
  max-width: 100%;
  max-height: 120vh;
  position: relative;
  z-index: 1;
}
#page1 img {
  width: 100%;
  height: 120vh;
  opacity: 0.2;
}
.text {
  top: 35%;
  position: absolute;
  text-align: center;
  justify-content: center;
  display: block;
}
.text h1 {
  font-family: "bold", sans-serif;
  font-size: 65px;
  color: #111;
  letter-spacing: 3px;
  font-weight: 900;
  margin-bottom: 3vw;
}
.text h3 {
  font-family: "light", sans-serif;
  color: #333;
  font-weight: 600;
  font-size: 22px;
  padding: 0vw 25vw;
  letter-spacing: 0.5px;
  word-spacing: 1px;
  line-height: 40px;
}
div#page1 .btn {
  margin-top: 35px;
  padding: 12px 32px 12px 32px;
  font-size: 20px;
  background-color: #781cad;
  letter-spacing: 1px;
  border-radius: 5px;
  font-family: "bold", sans-serif;
  color: #ffffff;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.263);
}
div#page1 .btn:hover {
  transition: 0.3s;
  background-color: #fff;
  color: #781cad;
}
.float-icons {
  position: fixed;
  top: 60%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 55px;
  background-color: #ffffff;
  z-index: 2;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 5px;
  border-right: 2px solid #781cad;
}
.float-icons a {
  display: block;
  align-items: center;
  padding: 3px 8px;
  border-radius: 4px;
  margin: 1.5px 0px;
  transition: all 0.3s ease-in-out;
  color: #111;
  font-size: 30px;
}
.float-icons a:hover {
  background-color: #781cad;
  color: #ffffff;
  transition: all 0.5s ease-in-out;
}
/* arrow button  */
.arrow-down {
  display: block;
  font-size: 22px;
}
.arrow-down i {
  margin-top: 130px;
  opacity: 0;
}
.fa-bolt {
  animation: updown 1.4s linear infinite;
  position: relative;
}
@keyframes updown {
  0%,
  100% {
    transform: translateY(0) scale(1.1);
    opacity: 1;
  }
  50% {
    transform: translateY(0px) scale(1);
    opacity: 0;
  }
}
/* page 2 */
#page2 {
  width: 100%;
  height: 300px;
  user-select: none;
}
div#page2 .col-12 {
  width: 100%;
  height: 300px;
}
div#page2 .page2-text {
  padding: 40px 0px;
}
div#page2 .page2-text h1 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 3px;
  font-family: "bold", sans-serif;
  line-height: 60px;
  color: #111111;
  padding: 50px 0px 10px 0px;
}
.hr {
  width: 40px;
  height: 5px;
  background-color: #781cad;
  border-radius: 5px;
}
div#page2 .page2-text p {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  font-family: "light";
  color: #555555;
  padding: 20px 0px 10px 0px;
  text-align: justify;
}
/* page3  */
#page3 {
  width: 100%;
  background-color: #fafafa;
  user-select: none;
}
div#page3 .col-12 {
  padding: 70px 0px 70px 100px;
  height: 700px;
}
div#page3 .text-left,
div#page3 .buttons {
  padding: 10px;
}
div#page3 .text-left h1,
div#page3 .buttons h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 42px;
  color: #000000;
  font-family: "bold", sans-serif;
  display: block;
  padding: 50px 0px 40px 0px;
}
div#page3 .text-left p {
  font-size: 18px;
  line-height: 30.6px;
  display: block;
  font-family: "light";
  color: #666666;
  font-weight: 600;
  word-spacing: 0.5px;
}
div#page3 .text-left button {
  font-size: 16px;
  line-height: 24px;
  background-color: #781cad;
  letter-spacing: 1px;
  border: none;
  border-radius: 5px;
  font-family: "bold", sans-serif;
  color: #ffffff;
  padding: 15px 50px 15px 50px;
  margin: 25px 0px;
}
div#page3 .btn {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin: 0px 15px 15px 0px;
  padding: 10px 20px 10px 20px;
  color: #666666;
  background-color: #e7e7e7;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.263);
}
div#page3 .btn:hover {
  color: #781cad;
  background-color: white;
  transition: 0.3s;
}
/* page 4 */
/* the page 4 is same css in page 2 css the reason is reduce css code of line  */
/* page 5 */
div#page5 {
  width: 100%;
  height: 400px;
  user-select: none;
}
div#page5 .col-12 {
  width: 100%;
  height: 400px;
  /* background-color: red; */
}
div#page5 .col-12 img {
  max-width: 360px;
  min-height: 330px;
  padding: 10px 0px 30px 0px;
  filter: drop-shadow(0px 50px 50px rgba(0, 0, 0, 0.305));
  border-radius: 150px;
}
/* page6 */
div#page6 {
  width: 100%;
  user-select: none;
}
div#page6 .col-12 {
  padding: 2rem 3rem 2rem 3rem;
}
div#page6 .page6-img img {
  width: 500px;
  height: 300px;
}
div#page6 .page6-text {
  padding: 40px 50px 50px 50px;
}
div#page6 .page6-text h1 {
  font-size: 28px;
  line-height: 42px;
  font-weight: 700;
  font-family: "bold";
  color: #000000;
  margin: 0px 0px 20px 0px;
}
div#page6 .page6-text p {
  font-size: 17px;
  line-height: 30.6px;
  color: #666666;
  min-width: auto;
  display: block;
}
div#page6 .btn {
  padding: 10px 25px 10px 25px;
  font-size: 16px;
  background-color: #781cad;
  letter-spacing: 1px;
  border: none;
  line-height: 25px;
  border-radius: 5px;
  font-family: "bold", sans-serif;
  color: #ffffff;
  font-weight: 700;
  align-items: center;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.263);
}
div#page6 .btn:hover {
  color: #781cad;
  background-color: white;
  transition: 0.3s;
}

/* CSS for show more button in project section */

.toggle-button {
  font-size: 16px;
  background-color: #781cad;
  letter-spacing: 1px;
  border: none;
  line-height: 25px;
  border-radius: 5px;
  font-family: "bold", sans-serif;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.263);
  text-align: center;
  width: 130px;
  height: 45px;
  line-height: 1;
  display: block;
  margin: 20px auto;
  align-items: center;
}

.toggle-button:hover {
  color: #781cad;
  background-color: white;
  transition: 0.2s;
}

.project-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s ease-out;
  margin-top: 20px;
}

.project-details.show {
  max-height: 1000px;
}

.project {
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* contact form  */
div#page7 {
  width: 100%;
  min-height: 160vh;
  max-height: 160vh;
  display: flex;
  user-select: none;
}
.overlay-2 {
  background-color: rgba(48, 48, 48, 0.1);
  top: 0;
  left: 0;
  max-width: 100%;
  max-height: 160vh;
  position: relative;
  z-index: 1;
}
div#page7 img {
  width: 100%;
  height: 160vh;
  opacity: 0.2;
}
.text1 {
  top: 10%;
  left: 5%;
  right: 5%;
  position: absolute;
  padding: 1vw 5vw;
  display: block;
}
.text1 h1 {
  font-family: "bold", sans-serif;
  font-size: 40px;
  color: #111;
  letter-spacing: 3px;
  font-weight: 900;
  margin-bottom: 20px;
}
.text1 h3 {
  font-family: "light", sans-serif;
  color: #333;
  font-weight: 600;
  font-size: 20px;
  padding: 2vw;
  letter-spacing: 0.2px;
  word-spacing: 0.5px;
  line-height: 32px;
  text-align: justify;
  text-align-last: center;
}
div#page7 label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 21px;
  color: #666666;
  font-family: "bold", sans-serif;
  margin-bottom: 5px;
}
div#page7 input,
div#page7 textarea {
  padding: 20px 20px 20px 20px;
  background-color: #f0f0f0;
  border: 1px solid #ebebeb;
  display: inline-block;
  cursor: text;
  box-shadow: none;
  font-size: 18px;
  font-family: 700;
  color: #781cad;
}
div#page7 button {
  font-size: 16px;
  font-family: "bold", sans-serif;
  padding: 20px 40px 20px 40px;
  font-weight: 700;
  letter-spacing: 1px;
  background-color: #781cad;
  border: none;
  display: inline-block;
}
div#page7 button:hover {
  transition: 0.3s;
  background-color: #e7e7e7;
  color: #111;
}
/* footer */
#footer {
  width: 100%;
  background-color: #000000;
  user-select: none;
}
#footer .row {
  width: 100%;
  padding: 3rem 8rem 0rem 8rem;
  margin-left: 1px;
  color: #ffffff;
}
#footer .line {
  border-bottom: 1px solid #666666;
  padding: 3rem 8rem 4rem 8rem;
}
#footer .row h2,
#footer .row h1 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 33px;
  display: block;
  font-family: "bold", sans-serif;
}
#footer .row p {
  font-size: 15px;
  line-height: 25.5px;
  color: #eeeeee;
  margin-top: 20px 0px 0px 0px;
  font-family: "light";
  font-weight: 600;
  letter-spacing: 0.5px;
}
#footer .col-12 i {
  font-size: 25px;
  padding: 5px;
  color: #ffffff;
  line-height: 15px;
}
#footer .col-12 i:hover {
  color: #781cad;
  transform: translateY(2px) scale(1.2);
  transition: 0.2s;
}
#footer .col-12 ul {
  display: block;
  margin-top: 20px;
  line-height: 15px;
}
#footer .col-12 h5 {
  font-size: 15px;
  font-family: "bold", sans-serif;
  word-spacing: 1px;
  letter-spacing: 1px;
}

.col-12 textarea {
  resize: none;
}
/* here is all media quieries  */
@media (max-width: 500px) {
  #page1 {
    min-height: 100vh;
    max-height: 10 0vh;
  }
  .overlay {
    max-width: 100%;
    max-height: 100vh;
  }
  #page1 img {
    height: 100vh;
  }
  div#page1 .text {
    top: 36%;
  }
  div#page1 .btn {
    padding: 10px 30px 10px 30px;
  }

  .fa-bolt {
    font-size: 20px;
  }

  #navbarNav ul {
    margin-top: 10px;
  }
  .text {
    top: 25%;
  }
  .text h1 {
    padding: 0vw 2vw;
    font-size: 10vw;
    margin-bottom: 20px;
    height: 10vh;

  }
  .text h3 {
    font-size: 17px;
    padding: 0vw 6vw;
    line-height: 30px;
  }
  .float-icons {
    display: none;
  }
  .float-icons1 {
    display: flex;
    padding: 0px 30px;
  }
  .float-icons1 a {
    padding: 10px;
    align-items: center;
    color: #111;
    font-size: 20px;
    width: 40px;
  }
  .float-icons1 i:hover {
    transition: 0.5s all ease;
    transform: translateY(5px);
    color: #781cad;
    font-size: 25px;
  }
  .arrow-down i {
    margin-top: 90px;
    font-size: 25px;
    opacity: 0.8;
  }
  /* page 2 */
  div#page2 .page2-text p {
    font-size: 18px;
  }
  div#page2 .page2-text h1 {
    font-size: 35px;
    padding: 20px 0px 10px 0px;
  }
  /* page 3 */
  div#page3 .col-12 {
    padding: 10px;
    margin-bottom: 60px;
    text-align: center;
  }
  div#page3 .col-12:nth-child(2) {
    height: 800px;
  }
  div#page3 .text-left p {
    font-size: 17px;
  }
  div#page3 .text-left button {
    text-align: center;
    padding: 10px 40px 10px 40px;
  }
  /* page 6 */
  div#page6 .page6-text {
    padding: 30px 0px 30px 0px;
  }
  div#page6 .page6-text p {
    padding: 0px 0px 70px 0px;
    margin-top: 0;
    margin-bottom: -3rem;
  }
  div#page6 .col-12 {
    padding: 0rem 0rem 0rem 0rem;
    text-align: center;
    margin-top: 70px;
  }
  div#page6 .col-12 img {
    width: 380px;
    height: 250px;
  }
  div#page6 .page6-text button {
    padding: 10px 40px 10px 40px;
  }
  /* page 7 contact  */
  div#page7 {
    width: 100%;
    min-height: 150vh;
    max-height: 150vh;
    display: flex;
  }
  div#page7 img {
    /* width: 100%;
    height: 150vh; */
    min-height: 150vh;
    max-height: 150vh;
    opacity: 0.2;
  }
  .text1 {
    top: 10%;
  }
  .text1 h1 {
    font-family: "bold", sans-serif;
    font-size: 30px;
  }
  .text1 h3 {
    font-family: "light", sans-serif;
    color: #333;
    font-weight: 600;
    font-size: 18px;
    /* padding: 2vw; */
    word-spacing: 0.3px;
    line-height: 32px;
    text-align: center;
    text-align-last: center;
  }
  /* footer  */
  #footer .row {
    width: 100%;
    padding: 2rem 0rem 0rem 0rem;
    margin-left: 1px;
    color: #ffffff;
  }
  #footer .row h2,
  #footer .row h1 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 33px;
    display: block;
    font-family: "bold", sans-serif;
  }
  #footer .row p {
    font-size: 12px;
    line-height: 25.5px;
    color: #eeeeee;
    margin-top: 20px 0px 0px 0px;
    font-family: "light";
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  #footer .col-12 h5 {
    font-size: 10px;
    font-family: "bold", sans-serif;
    word-spacing: 0.5px;
    letter-spacing: 0.5px;
  }
  #loader h3 {
    font-size: 5.5vw;
    letter-spacing: 1px;
    word-spacing: 1px;
  }
}
/* copyright Sinu Gupta */
@media (min-width: 500px) and (max-width: 1600px) {
  .float-icons1 {
    display: none;
  }
  div#page3 .col-12 {
    height: 700px;
  }
}
@media (min-width: 500px) and (max-width: 1024px) {
  .text h1 {
    font-size: 7vw;
  }
  .text h3 {
    padding: 0vw 10vw;
    justify-content: center;
    text-align: center;
  }
  .arrow-down i {
    display: none;
  }
  /* page2  */
  /* page 3  */
  div#page3 .col-12 {
    padding: 10px;
    /* height: 600px; */
    text-align: center;
  }
  div#page3 .text-left p {
    font-size: 18px;
    /* padding:0px 100px; */
  }
  div#page3 .text-left button {
    text-align: center;
    margin: 40px 0px;
  }
  div#page3 .btn {
    margin: 0px 25px 20px 0px;
  }
  /* page 6 */
  div#page6 .page6-text p {
    padding: 30px;
  }
  div#page6 .col-12 {
    padding: 0rem 0rem 0rem 0rem;
    text-align: center;
    margin-top: 70px;
  }
  div#page6 .col-12 img {
    width: 500px;
    height: 350px;
  }
  div#page6 .page6-text button {
    padding: 10px 40px 10px 40px;
  }
  /* page 7 */
  div#page7 {
    width: 100%;
    min-height: 180vh;
    max-height: 180vh;
    display: flex;
  }
  .text1 {
    top: 5%;
  }
}
/* copyright Sinu Gupta */
