* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
html {
  scroll-behavior: smooth;
}

.text_color {
  color: #8892b0;
}
.text_color_2 {
  color: #ccd6f6;
  font-size: 30px;
}
.text_color_3 {
  color: #64ffda;
}
.text_color_4 {
  color: #dee4fa;
}

body {
  background-color: #0a192f;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: #ccd6f6;
  font-size: 1rem;
}
a:hover {
  color: #64ffda;
}

/*------------HEADER-------------*/

header {
  position: fixed;
  width: 100vw;
  padding: 0 0rem;
  z-index: 10;
  top: 0;
}

/**change nav bar style using js*/

.window-scroll {
  background-color: #112240;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);
  transition: all 400ms ease;
}

.navBar {
  width: 100%;
  height: 70px;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navBar .logo a {
  font-size: 2rem;
  font-weight: bold;
}

.logo-dot {
  color: #64ffda;
}

.navBar .links {
  display: flex;
  gap: 2rem;
}
.navBar .toggle_btn {
  color: #ccd6f6;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}
.button {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: none;
  color: #0f1923;
  cursor: pointer;
  position: relative;
  top: 10px;
  padding: 8px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.15s ease;
}

.button::before,
.button::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  height: calc(50% - 5px);
  border: 1px solid #ccd6f6;
  transition: all 0.15s ease;
}

.button::before {
  top: 0px;
  border-bottom-width: 0;
}

.button::after {
  bottom: 0;
  border-top-width: 0;
}

.button:active,
.button:focus {
  outline: none;
}

.button:active::before,
.button:active::after {
  right: 3px;
  left: 3px;
}

.button:active::before {
  top: 3px;
}

.button:active::after {
  bottom: 3px;
}

.button_lg {
  position: relative;
  display: block;
  padding: 7px 15px;
  color: #0a192f;
  background-color: #ccd6f6;
  overflow: hidden;
  box-shadow: inset 0px 0px 0px 1px transparent;
}

.button_lg::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 2px;
  background-color: #0f1923;
}

.button_lg::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 4px;
  height: 4px;
  background-color: #0f1923;
  transition: all 0.2s ease;
}

.button_sl {
  display: block;
  position: absolute;
  top: 0;
  bottom: -1px;
  left: -8px;
  width: 0;
  background-color: #64ffda;
  transform: skew(-15deg);
  transition: all 0.2s ease;
}

.button_text {
  position: relative;
}

.button:hover {
  color: #0f1923;
}

.button:hover .button_sl {
  width: calc(100% + 15px);
}

.button:hover .button_lg::after {
  background-color: #fff;
}

/*----------DROPDOWN MENU---------------*/

.drop-down-menu {
  display: none;
  position: absolute;
  right: 2.5rem;
  top: 60px;
  width: 300px;
  height: 0;
  background-color: #112240;
  backdrop-filter: blur(15px);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);
  transition: height 2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.drop-down-menu.open {
  height: 300px;
}
.drop-down-menu li {
  padding: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drop-down-menu .action_btn {
  width: 90%;
  display: flex;
  justify-content: center;
}

/*------------HERO--------------------*/

section#hero {
  height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #dee4fa;
  padding: 0 7%;
  background-image: url(Meteor.svg);
  background-size: cover;
  border-bottom: 1px solid #8892b0a2;
}
#hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}
#hero #title {
  color: #64ffda;
  margin-bottom: 20px;
}
#hero h2 {
  margin-bottom: 20px;
  color: #8892b0;
  font-size: 2.5rem;
}

#hero p {
  color: #8892b0;
  text-align: center;
  font-size: 1.5rem;
  max-width: 1200px;
}

/*-------------ABOUT------------------*/

#about {
  display: flex;
  padding-top: 100px;
  justify-content: center;
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto;
}

#about p {
  color: #8892b0;
}
.col_left {
  width: 50%;
  padding: 30px;
}
.col_left h3 {
  color: #8892b0;
  margin-bottom: 50px;
  font-size: 25px;
}
.profile {
  width: 300px;
  height: 300px;
  background-size: cover;
  border-inline-start: 6px solid;
  border-block-start: 6px solid;
  border-image-source: radial-gradient(
    circle at top left,
    #64ffda,
    transparent 50%
  );
  border-image-slice: 1;
  padding: 10px;
}
.profile img {
  width: 100%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.profile:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}
.col_right {
  padding-left: 20px;
}

.social {
  display: flex;
  color: #8892b0;
  padding: 20px;
  justify-content: center;
  cursor: pointer;
}
.social a {
  font-size: 30px;
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.3s;
}
.social a:hover {
  color: #64ffda;
  transform: translate(0, -5px);
  cursor: pointer;
}

/*------------SERVICES--------------*/
#services {
  max-width: 1300px;
  margin: 0 auto;
  margin-bottom: 50px;
  padding-top: 50px;
}
#services h3 {
  color: #8892b0;
  margin-bottom: 50px;
  font-size: 30px;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #8b8c8d31;
}
.row {
  display: flex;
  padding: 20px 0;
}

/*-----------------WEB DESIGN-------------*/

#services .container-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#services .container-1 .left {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#services .container-1 .left img {
  width: 100%;
  padding: 20px;
}
#services .container-1 .right h2 {
  margin-bottom: 20px;
}
#services .container-1 .right {
  width: 50%;
  display: flex;
  justify-content: center;
  padding-left: 50px;
  flex-direction: column;
}
#services .container-1 .right li {
  line-height: 2.2rem;
}

/*---------------SEO---------------*/
.container-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#services .container-2 .left {
  width: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#para {
  line-height: 2.2rem;
}
#services .container-2 .right img {
  width: 100%;
  padding: 20px;
}
#services .container-2 .left h2 {
  margin-bottom: 20px;
}
#services .container-2 .right {
  width: 50%;
  display: flex;
  justify-content: center;
  padding-left: 50px;
  flex-direction: column;
}
#services .container-1 .right li {
  line-height: 2.2rem;
}

/*----------SOCIAL MEDIA-------------*/
.container-3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#services .container-3 .left {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#services .container-3 .left img {
  width: 100%;
  padding: 20px;
}
.container-3 .right p {
  line-height: 2.2rem;
}
#services .container-3 .right h2 {
  margin-bottom: 20px;
}
#services .container-3 .right {
  width: 50%;
  display: flex;
  justify-content: center;
  padding-left: 50px;
  flex-direction: column;
}

/*-------------MY WORK--------------*/

#my-work {
  max-width: 1300px;
  margin-bottom: 50px;
  padding-top: 50px;
  margin: 0 auto;
}
#my-work h3 {
  color: #8892b0;
  padding-bottom: 10px;
}
#my-work #subTitle {
  margin-bottom: 20px;
}

#my-work .col-1 {
  display: flex;
  gap: 20px;
}
#my-work .col-1 .left {
  width: 50%;
  padding: 10px 0;
  text-align: center;
  margin: 20px 0;
}
#my-work .col-1 .right {
  width: 50%;
  padding: 10px 0;
  text-align: center;
  margin: 20px 0;
}
#my-work .col-1 .left img {
  width: 100%;
  height: auto;
  overflow: hidden;
  filter: drop-shadow(1px 2px 6px rgba(0, 0, 0, 0.75));
}
#my-work .col-1 .right img {
  width: 100%;
  height: auto;
  overflow: hidden;
  filter: drop-shadow(1px 2px 6px rgba(0, 0, 0, 0.75));
}
#my-work .col-1 .right p {
  padding: 20px 0;
}
#my-work .col-1 .left p {
  padding: 20px 0;
}

/*------------CONTACT--------------*/

#contact {
  padding: 0 15%;
  text-align: center;
  padding-top: 50px;
}
#contact h3 {
  color: #8892b0;
  padding-bottom: 10px;
}

/*---------------FORM---------------*/

form {
  max-width: 520px;
  margin: 50px auto;
}

.feedback-input {
  color: white;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  background-color: transparent;
  border: 1px solid #8892b0;
  transition: all 0.3s;
  padding: 10px;
  margin-bottom: 12px;
  width: 100%;
  box-sizing: border-box;
  outline: 0;
}

.feedback-input:focus {
  border: 2px solid #64ffda;
}

textarea {
  height: 150px;
  line-height: 150%;
  resize: vertical;
}

[type="submit"] {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  width: 100%;
  background: #8892b0;
  border: 0;
  cursor: pointer;
  color: #112240;
  font-size: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all 0.3s;
  margin-top: -4px;
  font-weight: 700;
}
[type="submit"]:hover {
  background: #64ffda;
  color: #112240;
}

/*-------------------FOOTER-------------*/
footer {
  border-top: 1px solid #8892b0a2;
  width: 80%;
  margin: auto;
  padding: 50px 0px;
}
footer .copywrite {
  color: #8892b0;
  text-align: center;
}
footer .copywrite:hover {
  color: #64ffda;
}

/*--------THANK YOU PAGE------------*/

.thankYou_main {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
  color: #fff;
  flex-direction: column;
}

.thankYou_main button {
  border: 1px solid #64ffda;
  margin-top: 20px;
  padding: 10px 25px;
  background: transparent;
  color: #ccd6f6;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}
.thankYou_main button:hover {
  background-color: #8892b0;
  transform: translate(0, -5px);
}

/*===================CARD REVEL ON SCROLL ================*/

.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: all 2s ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

/*===================BACK TO TOP BUTTON ================*/

#backtotop-btn {
  background-color: #ccd6f6;
  padding: 4px 6px;
  visibility: hidden;
  position: fixed;
  cursor: pointer;
  right: 25px;
  bottom: 25px;
  border-radius: 6px;
  filter: drop-shadow(1px 2px 6px rgba(0, 0, 0, 0.75));
  user-select: none;
  transition: 0.5s;
}

#backtotop-btn:hover {
  background-color: #8b91a5;
}

#backtotop-btn .icon {
  font-size: 22px;
}

/*===================CARD REVEL ON SCROLL END==================*/

/*----------RESPONSIVE DESIGN-----------*/

@media screen and (max-width: 1300px) {
  header {
    padding: 0 2rem;
  }
}

@media (max-width: 992px) {
  header {
    padding: 0 2rem;
  }

  section#hero {
    padding: 0 6%;
  }
  .navBar .links,
  .navBar .button {
    display: none;
  }
  .navBar .toggle_btn {
    display: block;
  }
  .drop-down-menu {
    display: block;
  }

  .button {
    top: 0px;
  }

  #hero h1 {
    font-size: 3.1rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  #hero p {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .drop-down-menu {
    left: 2rem;
    width: unset;
  }

  .thankYou_main {
    padding: 0 20px;
  }
  section#hero {
    height: calc(100vh - 70px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #dee4fa;
    padding: 0 2%;
    border-bottom: 1px solid #8892b0a2;
  }
  #hero h1 {
    font-size: 2.1rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  #hero #title {
    color: #64ffda;
  }
  #hero h2 {
    margin-bottom: 20px;
    color: #8892b0;
    font-size: 1.5rem;
  }
  #hero p {
    font-size: 1rem;
    padding: 0 20px;
  }
  #about {
    display: flex;
    padding-top: 50px;
    flex-direction: column-reverse;
  }

  .col_left {
    width: 100%;
    padding: 10px;
  }
  .col_left h3 {
    color: #8892b0;
    margin-bottom: 20px;
    font-size: 25px;
  }
  .profile {
    width: 300px;
    height: 300px;
    background-size: cover;
    border-inline-start: 6px solid;
    border-block-start: 6px solid;
    border-image-source: radial-gradient(
      circle at top left,
      #64ffda,
      transparent 50%
    );
    border-image-slice: 1;
    padding: 10px;
  }
  .profile img {
    width: 100%;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .profile:hover img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
  }

  .social {
    display: flex;
    color: #8892b0;
    padding: 20px 20px 0px 20px;
    cursor: pointer;
  }
  .social a {
    font-size: 30px;
    cursor: pointer;
    transition: 0.3s;
  }
  #services {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    padding: 10px;
  }
  #services h3 {
    text-align: center;
  }

  #services .container-1 {
    display: flex;
    flex-direction: column;
  }
  #services .container-1 .left {
    width: 100%;
  }
  #services .container-1 .left img {
    padding: 0px;
    width: 100%;
  }

  #services .container-1 .right {
    width: 100%;
    padding: 10px;
  }
  #services .container-1 .right h2 {
    text-align: center;
  }
  #services .container-1 .right li {
    text-align: center;
  }
  #services .container-2 {
    display: flex;
    flex-direction: column-reverse;
  }
  #services .container-2 .left {
    width: 100%;
  }
  #services .container-2 .right {
    width: 100%;
  }

  #services .container-2 h2 {
    text-align: center;
    font-size: 30px;
  }
  #services .container-3 {
    display: flex;
    flex-direction: column;
  }

  #services .container-3 {
    display: flex;
  }
  #services .container-3 .left img {
    padding: 0px;
  }

  #services .container-3 .left {
    width: 100%;
  }
  #services .container-3 .right {
    width: 100%;
    padding: 10px;
  }
  #services .container-3 h2 {
    text-align: center;
  }
  #my-work {
    padding: 10px;
  }
  #my-work h3 {
    text-align: center;
  }
  #my-work #subTitle {
    text-align: center;
  }
  #my-work .col-1 {
    display: flex;
    flex-direction: column;
  }
  #my-work .col-1 .left {
    width: 100%;
    padding: 0px;
  }
  #my-work .col-1 .right {
    width: 100%;
    padding: 0px;
  }
  #contact {
    padding: 10px;
  }
  #footer {
    padding-top: 20px;
  }

  #backtotop-btn {
    padding: 4px 6px;
  }

  #backtotop-btn .icon {
    font-size: 16px;
  }
}
