* {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-size: 16px;
}

html, body {
    margin: 0;
    padding: 0;
    /* width: 100vw; */
    font-family: 'Roboto', sans-serif;
    background: #06142e;
    color: #f5d7d6;
    overflow-x: hidden;
}

header {
    box-sizing: border-box;
    /* position: sticky; */
    top: 0;
    width: 100%;
    z-index: 1;
    background: #06142e;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
}

.logo {
    display: flex;
    gap: 5px;
    font-size: 20px;
}

.logo p {
  margin: 2px 0 0 0;
  padding-left: 5px;
  letter-spacing: 2px;
  font-size: 25px;
}

.logo p::first-letter {
  color: #f1916d;
  font-size: 35px;
  font-weight: 500;
  font-family: serif;
}

.logo a {
    font-size: 24px;
    font-weight: bold;
}

.logo > span {
  transition: transform 0.3s ease-in-out;
  cursor: default;
}
  
.logo > span:hover {
  transform: scale(3);
  animation: fadeInDownBig;
  animation-delay: .1s; 
}
  /* .logo a span {
    color: #f5d7d6;
} */

span {
    color: #f1916d;
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    list-style: none;
    background: #06142e;
    /* filter: opacity(0.8) drop-shadow(0 0 0 #06142e); */
}

.menu a {
    display: block;
    padding: 7px 15px;
    font-size: 17px;
    font-weight: 500;
    transition: .3s all ease-in-out;
    text-decoration: none;
    color: #f5d7d6;
}

.menu:hover a {
    opacity: 0.4;
}
  
.menu a:hover {
    opacity: 1;
    letter-spacing: 5px;
    color: #f1916d;
    transform: scale(1.1);
    background: #1b3358;
    /* filter: opacity(0.8) drop-shadow(0 0 0 #06142e); */
    transform-origin: left;
}

.menu-icon, .close-icon {
    display: none;
}
  
#menu-toggle {
    display: none;
}

#menu-toggle:checked ~ .menu {
    transform: scale(1, 1);
}

.container {
    display: flex;
    flex-direction: column;
    /* margin: 0px 0; */
}

.intro {
  padding: 15px 65px 10px 20px;
  margin: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* flex: 0 0 65%; */
}

.intro-header {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    margin: 0 0 20px;
}

h1 {
  font-size: 2em;
  font-weight: 400;
  margin: 0;
  /* line-height: 120px; */
  white-space: nowrap;
}

.mat-icon {
  color: #1b3358;
  background-color: #f5d7d6;
  font-size: .8em;
  padding: 0 5px;
}

.intro-header >h1:nth-child(2) {
    color: #f1916d;
}

.creative {
  animation: fadeInDownBig;
  animation-delay: .1s; 
}

.developer {
  animation: fadeInUpBig;
  animation-delay: .1s; 
}

.front-end {
  animation: fadeInRightBig;
  animation-delay: .3s;
}

.intro-body {
    margin: 0 0 10px;
    font-size: 16px;
}

.desc-container {
    margin: 0 0 30px;
}

.desc {
    line-height: 25px;
    word-spacing: 2px;
    font-weight: 300;
    /* font-size: 20px; */
    margin: 0;
    /* text-align: justify; */
}

.extra-info-cont {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.extra-info {
  flex: 1;
  font-size: 16px;
  color: #7465a8;
}

.extra-info p {
  font-size: .6em;
  line-height: 15px;
}

button {
    margin: 0px;
}

.custom-btn {
    width: 80px;
    height: 28px;
    /* padding: 5px 15px; */
    font-weight: 500;
    /* background: transparent; */
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    outline: none;
    border-radius: 8px;
    animation: bounceInUp;
    animation-delay: 0.4s;
}

.btn-7 {
    background: #f1916d;
    line-height: 30px;
    padding: 0;
    border: none;
}
.btn-7 span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    color: #1b3358;
    font-size: 12px;
}

.btn-7:before,
.btn-7:after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  background: #bd63b8;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.btn-7:before{
   height: 0%;
   width: 2px;
}
.btn-7:after {
  width: 0%;
  height: 2px;
}
.btn-7:hover{
  color: #f5d7d6;
  background: transparent;
}
.btn-7:hover:before {
  height: 100%;
}
.btn-7:hover:after {
  width: 100%;
}
.btn-7 span:hover {
  color: #f5d7d6;
}
.btn-7 span:before,
.btn-7 span:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background: #bd63b8;
  transition: all 0.3s ease;
}
.btn-7 span:before {
  width: 2px;
  height: 0%;
}
.btn-7 span:after {
  height: 2px;
  width: 0%;
}
.btn-7 span:hover:before {
  height: 100%;
}
.btn-7 span:hover:after {
  width: 100%;
}

.image-container {
  background: #f1916d;
  display: grid;
  place-items: center;
}

.img-box {
  /* width: 40%; */
  display: grid;
  place-items: center;
  margin: 30px 0;
  position: relative;
}

.img-box:before,
.img-box:after {
  content:"";
  position: absolute;
  height: 100%;
  width: 100%;
}

.img-box:before,
.img-box:after {
  top: 20px;
  left: 55px;
}

.img-box:before {
  border: 2px solid #bd63b8;
  z-index: 0;
  width: 192px;
  height: 212px;
}

img {
    width: 80%;
    /* filter: opacity(0.4) drop-shadow(0 0 0 #06142e); */
}

.page2 {
  background: #fff;
  color: #b52fae;
  padding: 80px 40px 40px;
  font-size: 16px;
}
#canvas {
  width: 100%;
  margin: 20px 0 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}
#canvas2 {
  display: none;
}
.rectangle{
  position: relative;
  /* left:20px; */
  width: 10px;
  height: 10px;
  border: 1px #b52fae solid;
  /* background: #f57070; */
}
.box:first-of-type {
  margin-bottom: 30px;
}

.box h2 {
  color: #b52fae;
  font-size: 1.5em;
  font-weight: 500;
  margin: 0 0 20px;
  letter-spacing: 2px;
}

.box p {
  font-size: .8em;
  line-height: 25px;
  color: #7465a8;
  width: 100%;
}

.page3 {
  background: #b505ac;
  color: #fff;
  padding: 80px 40px 40px;
  font-size: 16px;
}

.page3-container {
  margin-bottom: 40px;
}

.page3-container h2 {
  color: #ffeaea;
  font-size: 1.8em;
  font-weight: 500;
  /* margin: 0 0 20px; */
  letter-spacing: 2px;
}

.page3-container p {
  color: #e6e2e2;
  margin: 10px 0 0;
}

.page3-btn {
  position: relative;
  background-color: #b52fae;
  background-image: linear-gradient(90deg, white 50%, #b52fae 50%);
  background-size: 300%;
  color: #b505ac;
  border: #bd63b8 1px solid;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  width: 200px;
  height: 40px;
  cursor: pointer;
  transition: 0.4s;
}

.page3-btn:hover {
  color: #fff;
  background-position: -50%;
  transform: translateX(0.5rem);
}

.page3-btn:active {
  transform: translate(0.5rem, 0.5rem);
  box-shadow: 0px 10px 20px -15px rgba(0, 0, 0, 0.75);
}

.page4 {
  background: #fff;
  color: #7465a8;
  padding: 80px 40px 40px;
  font-size: 16px;
}

.page4 h2 {
  color: #b52fae;
  font-size: 2em;
  font-weight: 500;
  margin: 0 0 20px;
  letter-spacing: 3px;
}

.page4 p {
  margin: 0 0 30px;
  word-spacing: 2px;
}

.form-input-holder {
  display: flex;
  flex-direction: column;
}

.form-input-holder label {
  margin: 30px 0 15px;
  opacity: .6;
}

.form-input-holder input, .form-input-holder textarea {
  border: none;
  border-bottom: 1px solid #7465a8;
  padding-bottom: 10px;
  outline: none;
}

.form-input-holder textarea {
  padding-bottom: 15px;
}

.form-input-holder input:focus, .form-input-holder textarea:focus {
  border: none;
  border-bottom: 1px solid #b52fae;
  padding-bottom: 20px;
}

.form-input-holder input::placeholder, .form-input-holder textarea::placeholder, input, textarea {
  line-height: 20px;
  color: #7465a8;
  font-weight: 100;
  opacity: .9;
}

input:-webkit-autofill {
  -webkit-box-shadow:0 0 0 50px white inset; /* Change the color to your own background color */
  -webkit-text-fill-color: #7465a8;
}

input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 50px white inset;/*your box-shadow*/
  -webkit-text-fill-color: #7465a8;
} 

.form-input-holder input:focus::placeholder, .form-input-holder textarea:focus::placeholder {
  color: transparent;
}

.form-input-holder:focus-within label {
  opacity: 1;
  color: #b52fae;
}

.form-input-holder:focus-within input, .form-input-holder:focus-within textarea {
  color: #b52fae;
}

.form-btn {
  margin: 30px 0 0;
}

.btn {
  position: relative;
  /* background-color: transparent; */
  background-image: linear-gradient(90deg, white 50%, #bd63b8 50%);
  background-size: 300%;
  letter-spacing: 3px;
  color: #bd63b8;
  border: #bd63b8 1px solid;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 3px;
  width: 200px;
  height: 40px;
  cursor: pointer;
  transition: 0.4s;
}

.btn:hover {
  color: #fff;
  background-position: -50%;
  transform: translateX(0.5rem);
}

.btn:active {
  transform: translate(0.5rem, 0.5rem);
  box-shadow: 0px 10px 20px -15px rgba(0, 0, 0, 0.75);
}

.form-btn button i {
  margin-left: 10px;
}

footer {
  padding: 80px 60px 20px;
  font-size: 16px;
  color: #f1916d;
}

h3 {
  color: #7465a8;
  letter-spacing: 5px;
  font-size: 1.2em;
  text-transform: uppercase;
  margin: 0 0 15px;
}

a {
  text-decoration: none;
}

.footer-header {
  margin-bottom: 80px;
}

#footer-texts {
  margin: 0 0 30px;
}

#footer-texts a {
  color: #bd63b8;
  font-size: 1.1em;
}

.footer-ul {
  list-style: none;
}

.footer-ul li {
  margin: 0 0 12px;
}

.footer-ul li a {
  color: #bd63b8;
}

.line {
  border: none;
  border-top: 1px solid #bd63b8;
  width: 100%; 
  margin: 0 auto;
}

#copyright {
  color: #bd63b8;
  margin: 0 0 20px;
}

.footer-footer {
  margin: 30px 0 0;
}

.socials a {
  margin: 0 10px 0 0;
}
@media only screen and (min-width: 768px) {

  header {
    position: sticky;
  }
  .img-box {
    width: 100%;
    height: 100%;
  }
  .image-container {
    display: flex;
    flex: 1;
  }
  img {
    width: 50%;
    /* max-width: 25%; */
    position: absolute;
    right: 78%;
  }
  .img-box:before{
    top: 238px;
    left: -24%;
  }
  .img-box:before {
    width: 53%;
    height: 15vh;
  }
  .page4 {
    padding: 80px 15% 40px;
  }
  .page4 h2 {
    font-size: 3em;
  }
  #contact-header {
    display: grid;
    place-items: center;
  }
  #form-holder {
    display: flex;
    flex-wrap: wrap;
  }
  .form-input-holder {
    flex-basis: calc(50% - 30px); /* Adjust the width as needed */
    margin: 15px;
  }
  .form-input-holder:nth-child(3) {
    flex-basis: 100%;
  }
  .form-btn {
    text-align: center;
  }
  .page2 {
    display: flex;
    gap: 50px;
    padding: 100px 15%;
    height: 450px;
  }
  #canvas, #canvas2 {
    margin-top: 80px;
    height: 200px;
    display: grid;
    place-items: center;
  }
  #canvas2 {
    margin: 0;
    margin-bottom: 70px;
  }
  .box h2 {
    font-size: 2em;
  }
  
  .box p {
    font-size: 1em;
  }

  .page3 {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 100px 15%;
    height: 400px;
  }

  .page3-container .form-btn {
    display: flex;
    justify-content: flex-start;
  }
}

@media only screen and (min-width: 880px) and (max-width: 1024px) {
  .img-box:before{
    top: 215px;
    left: -22%;
  }

  .img-box:before {
    width: 53%;
    height: 19vh;
  }
}

@media only screen and (min-width: 1025px)  and (max-width: 1199px) {
  .img-box:before{
    top: 184px;
    left: -19%;
  }

  .img-box:before {
    width: 50%;
    height: 24vh;
  }
}

@media only screen and (min-width: 1200px) {
  .img-box:before{
    top: 201px;
    left: -20%;
  }

  .img-box:before {
    width: 50%;
    height: 29vh;
  }
}

@media only screen and (min-width: 1200px) {
  .logo p {
    padding-left: 5px;
    letter-spacing: 4px;
    font-size: 30px;
  }
  
  .logo p::first-letter {
    font-size: 45px;
  }

  .container {
    flex-direction: row;
    margin: 50px 0 50px;
  }

  .intro {
    flex: 0 0 60%;
    padding: 30px 0 0;
    margin: 20px 0 0 50px;
  }

  h1 {
    font-size: 5em;
    line-height: 80px;
  }
  
  .mat-icon {
      font-size: .9em;
  }

  .intro-body {
    width: 70%;
  }

  .desc-container {
    margin: 20px 0 60px;
  }

  .extra-info-cont {
    margin-bottom: 30px;
    gap: 30px;
  }

  .extra-info p {
    line-height: 20px;
    font-size: .9em;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .container {
    flex-direction: row;
    margin: 10px 0;
  }

  .intro {
    flex: 0 0 60%;
    padding: 40px 0 0;
    margin: 20px 0 0 50px;
  }

  h1 {
    font-size: 3em;
  }
  
  .mat-icon {
      font-size: 1em;
  }

  .intro-body {
    width: 70%;
  }

  .desc-container {
    margin: 20px 0 60px;
  }

  .extra-info-cont {
    margin-bottom: 30px;
    gap: 30px;
  }

  .extra-info p {
    line-height: 20px;
    font-size: .9em;
  }
}
  
@media only screen and (max-width: 768px) {
  .menu {
    flex-direction: column;
    align-items: start;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding-left: 3px;
    z-index: 1;
    transform: scale(1, 0);
    transform-origin: top;
    transition: transform 0.3s ease-in-out;
    margin: 0 0 16px 0;
    /* box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px; */
  }

  .menu a {
    margin-left: 12px;
  }

  .menu li {
    margin-bottom: 10px;
    width: fit-content;
    /* width: -moz-fit-content; */
  }

  .menu-icon {
    display: block;
    font-size: 28px;
    cursor: pointer;
  }

  /* Styling for the open menu */
  #menu-toggle:checked ~ .menu {
    display: block;
  }

  #menu-toggle:checked ~ .menu-icon {
  display: none;
  }

  #menu-toggle:checked ~ .close-icon {
    display: block;
    font-size: 28px;
    cursor: pointer;
  }
}

@media only screen and (max-width: 300px) {
  .logo p {
    letter-spacing: 3px;
    font-size: 15px;
  }
  
  .logo p::first-letter {
    font-size: 35px;
  }

  .extra-info-cont {
    gap: 5px;
  }
}
  