@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  width: 100%;
  height: 100%;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
  scrollbar-color: #00d2ff #0f0c29;
}

body {
  overflow-x: hidden;
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  background-attachment: fixed;
  min-height: 100vh;
  font-family: "Raleway", sans-serif;
}

section {
  width: 100%;
  height: 10vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  backdrop-filter: blur(5px);
  background: linear-gradient(135deg, hsla(246, 55%, 20%, 0.474) 0%, hsla(245, 39%, 20%, 0.504) 50%, hsla(240, 27%, 20%, 0.466) 100%);
  z-index: 3;
}

section>h1 {
  color: white;
  cursor: pointer;
  margin-left: 25px;
  font-family: "Playwrite IE", cursive;
}

nav>a {
  text-decoration: none;
  padding: 10px;
  color: white;
  font-size: 18px;
}

nav>a:hover {
  border-bottom: 3px solid hsl(240, 27%, 50%);
}

.get_start,
.about-me,
.submit {
  margin-right: 25px;
  padding: 8px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background-color .5s ease, color .5s ease;
}

.about-me {
  font-size: 19px;
}

.get_start:hover,
.submit:hover,
.about-me:hover {
  background-color: hsl(240, 27%, 50%);
  box-shadow: 0 0 15px hsl(240, 27%, 50%);
  color: white;
}

.container {
  display: flex;
  width: 100%;
  height: 90vh;
  margin-top: 80px;
  overflow: hidden;
}

.right_side {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 60%;
  height: 90vh;
  color: white;
}

.right_side>h1>span {
  color: hsl(245, 39%, 61%);
}

.right_side>p {
  padding: 15px;
  margin: 10px;
}

.left_side {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  height: 90vh;
}

.left_side>img {
  width: 430px;
  height: 430px;
  border-radius: 50%;
  margin-right: 10px;
  box-shadow: 0 0 15px hsl(240, 27%, 50%);
}

.about_page {
  overflow: hidden;
  display: flex;
  width: 100%;
  height: 90vh;
}

.right_image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45%;
  height: 90vh;
  padding-left: 6px;
  padding-top: 10px;
}

.right_image>img {
  width: 88%;
  height: 88vh;
  border-radius: 25px;
  box-shadow: 0 0 15px hsl(240, 27%, 50%);
}

.my_content {
  width: 55%;
  height: 90vh;
  color: white;
  padding: 15px;
}

.my_content>h1 {
  text-align: center;
  font-size: 40px;
  margin: 15px;
}

.my_content>h2,
h4 {
  margin: 8px;
}

.my_content>p {
  margin-top: 20px;
  margin-bottom: 25px;
}

.my_content>h5 {
  margin-top: 10px;
  font-size: 14px;
}

.skills-section {
  padding: 100px 10%;
  text-align: center;
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: -1;
}

.section-title {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.skills-container {
  display: flex;
  display: flex;
  width: max-content;
  cursor: grab;
  user-select: none;
  height: auto;
  user-select: none;
  will-change: transform;
}

.skill-card {
  width: 300px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #302b63;
  padding: 40px;
  margin: 15px;
  border-radius: 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.skill-card:hover {
  transform: translateY(-10px);
  border-color: #00d2ff;
  background: rgba(0, 210, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 210, 255, 0.2);
}

.skill-card h3 {
  color: white;
  margin: 15px 0 10px;
}

.skill-card p {
  color: #ccc;
  font-size: 0.9rem;
}

.icon-box {
  font-size: 40px;
  color: #00d2ff;
}

.projects-section {
  width: 100%;
  height: auto;
  padding: 80px 10%;
  background: #0f0c29;
  color: white;
  overflow: hidden;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.project-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #302b63;
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
}

.project-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #302b63cc;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-info {
  padding: 20px;
  text-align: left;
}

.tech-stack span {
  font-size: 0.8rem;
  background: #24243e;
  padding: 5px 10px;
  border-radius: 5px;
  margin-right: 5px;
  color: #00d2ff;
}

.contact {
  width: 100%;
  height: 90vh;
  color: white;
  background-image: url("https://img.freepik.com/premium-photo/modern-minimalist-web-development-workspace-with-laptop-coffee_1355276-9369.jpg?semt=ais_hybrid&w=740&q=80");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.contact>h1 {
  text-align: center;
  padding-top: 15px;

}

.contact_design {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 90%;
  height: 80vh;
  margin: 10px auto;

}

.input_form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  backdrop-filter: blur(5px);
  background: #302b6355;
  width: 50%;
  height: 65vh;
  border-radius: 15px;
}

.input_form>div {
  border: 1px solid hsla(245, 39%, 60%, 0.8);
  width: 400px;
  height: 50px;
  display: flex;
  align-items: center;
  background: #302b63cc;
  margin-bottom: 15px;
  font-size: 20px;
  padding-left: 10px;
  border-radius: 15px;
  outline: none;
}

.input_form>div>input {
  width: 380px;
  height: 40px;
  margin-left: 10px;
  background: hsla(245, 39%, 29%, 0.8);
  border: none;
  outline: none;
  color: white;
  border-radius: 15px;
}

.input_form>.message {
  height: 100px;
}

.input_form>.message>textarea {
  width: 350px;
  height: 80px;
  background: #302b63cc;
  border: none;
  outline: none;
  color: white;
  display: flex;
  padding-top: 26px;
  margin-left: 15px;
  font-size: 16px;
}

footer {
  width: 100%;
  height: 35vh;
  color: white;
  display: flex;
  justify-content: space-evenly;
  margin-top: 30px;
}

.conclusion {
  width: 100%;
  height: 5vh;
  color: white;
}

.my_portfolio>h3,
.social_links>h3,
.contact_info>h3 {
  margin-bottom: 14px;
  font-size: 25px;
}

.social_links>i {
  font-size: 25px;
  margin: 5px;
  cursor: pointer;
}

.conclusion {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 10vh;
  border-top: 1px solid hsla(245, 39%, 50%, 0.8);
}

.conclusion>p {
  font-size: 20px;
}

.uppage>a {
  border-radius: 50%;
  color: black;
  background-color: hsla(245, 39%, 60%, 0.8);
  font-size: 20px;
  padding: 5px;
  text-decoration: none;
  position: relative;
  left: 400px;
  top: -30px;
}

.uppage>a:hover {
  box-shadow: 0 0 15px hsl(240, 27%, 50%);
}

.menu,
.menu_btn {
  display: none;
}

@media((min-width:1002px) and (max-width:1029px)) {
  body {
    overflow-x: hidden;
  }

  .about_page>.right_image>img {
    position: relative;
    top: -50px;
    height: 68vh;
  }

  .projects-section {
    width: 1020px;
    overflow: hidden;

  }

  .contact {
    width: 1020px;
  }

  .uppage>a {
    position: relative;
    left: 320px;
  }
}

@media((min-width:843px) and (max-width:1001px)) {

  section>nav,
  .get_start {
    display: none;
  }

  .menu,
  .menu_btn {
    display: flex;
  }

  .menu>nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 1400px;
    background-color: rgba(0, 0, 0, 0.925);
    padding-top: 40px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .menu>nav>a {
    margin-bottom: 15px;
  }

  .menu_btn {
    color: white;
    font-size: 29px;
    position: relative;
    right: 15px;
  }

  .close_btn {
    color: white;
    font-size: 32px;
    position: relative;
    left: 85px;
  }
  .container {
    width: 950px;
    height: 100vh;

  }
  .about_page{
    width: 985px;
  }
  .about_page>.right_image{
    margin-right: 10px;
  }
  .about_page>.right_image>img {
    position: relative;
    top: -90px;
    height: 67vh;
    width: 450px;
  }

  .skills-section {
    width: 1005px;
    overflow: hidden;
  }

  .projects-section {
    width: 1020px;
    overflow: hidden;
  }

  .contact {
    width: 1020px;
  }

  .conclusion{
    width: 1007px;
  }
  .uppage>a {
    position: relative;
    left: 310px;
  }
  footer{
    width: 1007px;
  }
}

@media((min-width:711px) and (max-width:842px)) {

  section>nav,
  .get_start {
    display: none;
  }

  .menu,
  .menu_btn {
    display: flex;
  }

  .menu>nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 1400px;
    background-color: rgba(0, 0, 0, 0.925);
    padding-top: 40px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .menu>nav>a {
    margin-bottom: 15px;
  }

  .menu_btn {
    color: white;
    font-size: 29px;
    position: relative;
    right: 15px;
  }

  .close_btn {
    color: white;
    font-size: 32px;
    position: relative;
    left: 85px;
  }

  .container {
    width: 800px;
    height: 100vh;
    display: block;
    /* overflow: hidden; */

  }

  .right_side {
    width: 100%;
    height: 50vh;
    position: relative;
    top: 270px;
    left: 10px;
  }

  .left_side {
    width: 50%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .left_side>img {
    position: relative;
    top: -330px;
    left: 250px;
    width: 300px;
    height: 300px;
  }

  .about_page {
    display: block;
    width: 820px;
    height: auto;
    overflow: hidden;

  }

  .about_page>.right_image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80vh;
  }

  .about_page>.right_image>img {
    position: relative;
    /* left: 50px; */
    width: 80%;
    height: 75vh;
  }

  .my_content {
    width: 100%;
    height: 50vh;
    overflow: hidden;

  }

  .skills-section {
    width: 820px;
    overflow: hidden;

  }

  .projects-section {
    width: 830px;
    overflow: hidden;

  }

  .contact {
    width: 820px;
    margin-left: 7px;
  }

  .input_form {
    width: 75%;
    height: 50vh;
  }

  footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 820px;
    height: auto;
  }

  footer>div {
    text-align: center;
    margin-bottom: 10px;
    padding: 10px;
  }

  .conclusion {
    width: 820px;
  }

  .uppage>a {
    position: relative;
    left: 200px;
  }
}

@media((min-width:481px) and (max-width:710px)) {

  section>nav,
  .get_start {
    display: none;
  }

  .menu,
  .menu_btn {
    display: flex;
  }

  .menu>nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 1400px;
    background-color: rgba(0, 0, 0, 0.925);
    padding-top: 40px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .menu>nav>a {
    margin-bottom: 15px;
  }

  .menu_btn {
    color: white;
    font-size: 29px;
    position: relative;
    right: 15px;
  }

  .close_btn {
    color: white;
    font-size: 32px;
    position: relative;
    left: 85px;
  }

  .container {
    width: 667px;
    height: 100vh;
    display: block;
    overflow: hidden;
  }

  .right_side {
    width: 100%;
    height: 50vh;
    position: relative;
    top: 300px;
  }

  .right_side h1,.right_side p{
    width: 95vw;
    text-align: center;
  }
  .left_side {
    width: 50%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .left_side>img {
    position: relative;
    top: -330px;
    left: 180px;
    width: 300px;
    height: 300px;
  }

  .about_page {
    display: block;
    width: 650px;
    height: auto;
    overflow: hidden;

  }

  .about_page>.right_image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70vh;
  }

  .about_page>.right_image>img {
    position: relative;
    /* left: 50px; */
    width: 80%;
    height: 60vh;
  }

  .my_content {
    width: 100%;
    height: 50vh;
    overflow: hidden;

  }

  .skills-section {
    width: 670px;
    overflow: hidden;

  }

  .projects-section {
    width: 695px;
    overflow: hidden;

  }

  .contact {
    width: 690px;
    margin-left: 7px;
  }

  .input_form {
    width: 75%;
    height: 50vh;
  }

  footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 695px;
    height: auto;
  }

  footer>div {
    text-align: center;
    margin-bottom: 10px;
    padding: 10px;
  }

  .conclusion {
    width: 670px;
  }

  .uppage>a {
    position: relative;
    left: 200px;
  }
}

@media((min-width:377px) and (max-width:480px)) {

  section>nav,
  .get_start {
    display: none;
  }

  .menu,
  .menu_btn {
    display: flex;
  }

  .menu>nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 1500px;
    background-color: rgba(0, 0, 0, 0.925);
    padding-top: 40px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .menu>nav>a {
    margin-bottom: 15px;
  }

  .menu_btn {
    color: white;
    font-size: 29px;
    position: relative;
    right: 15px;
  }

  .close_btn {
    color: white;
    font-size: 32px;
    position: relative;
    left: 85px;
  }

  .container {
    width: 570px;
    height: 100vh;
    display: block;
    overflow: hidden;
  }

  .right_side {
    width: 100%;
    height: 50vh;
    position: relative;
    top: 300px;
  }
  .right_side h1,.right_side p{
    width: 95vw;
    text-align: center;
  }
  .left_side {
    width: 50%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .left_side>img {
    position: relative;
    top: -330px;
    left: 150px;
    width: 300px;
    height: 300px;
  }

  .about_page {
    display: block;
    width: 550px;
    height: auto;
    overflow: hidden;
  }

  .about_page>.right_image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70vh;
  }

  .about_page>.right_image>img {
    position: relative;
    /* left: 50px; */
    width: 90%;
    height: 60vh;
  }

  .my_content {
    width: 100%;
    height: 50vh;
    overflow: hidden;
  }

  .skills-section {
    width: 550px;
    overflow: hidden;
  }

  .projects-section {
    width: 585px;
    overflow: hidden;

  }

  .contact {
    width: 580px;
    margin-left: 7px;
  }

  .input_form {
    width: 85%;
    height: 50vh;
  }

  footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 570px;
    height: auto;
  }

  footer>div {
    text-align: center;
    margin-bottom: 10px;
    padding: 10px;
  }

  .conclusion {
    width: 560px;
  }

  .uppage>a {
    position: relative;
    left: 150px;
  }
}
@media only screen and (max-width: 376px) {
    section>nav,
  .get_start {
    display: none;
  }

  .menu,
  .menu_btn {
    display: flex;
  }

  .menu>nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 1500px;
    background-color: rgba(0, 0, 0, 0.925);
    padding-top: 40px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .menu>nav>a {
    margin-bottom: 15px;
  }

  .menu_btn {
    color: white;
    font-size: 29px;
    position: relative;
    right: 15px;
  }

  .close_btn {
    color: white;
    font-size: 32px;
    position: relative;
    left: 85px;
  }

  .container {
    width: 570px;
    height: 100vh;
    display: block;
    overflow: hidden;
  }

  .right_side {
    width: 100%;
    height: 50vh;
    position: relative;
    top: 300px;
  }
  .right_side h1,.right_side p{
    width: 95vw;
    text-align: center;
  }
  .left_side {
    width: 50%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .left_side>img {
    position: relative;
    top: -330px;
    left: 150px;
    width: 300px;
    height: 300px;
  }

  .about_page {
    display: block;
    width: 550px;
    height: auto;
    overflow: hidden;
  }

  .about_page>.right_image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70vh;
  }

  .about_page>.right_image>img {
    position: relative;
    /* left: 50px; */
    width: 90%;
    height: 60vh;
  }

  .my_content {
    width: 100%;
    height: 50vh;
    overflow: hidden;
  }

  .skills-section {
    width: 550px;
    overflow: hidden;
  }

  .projects-section {
    width: 585px;
    overflow: hidden;

  }

  .contact {
    width: 580px;
    margin-left: 7px;
  }

  .input_form {
    width: 85%;
    height: 50vh;
  }

  footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 570px;
    height: auto;
  }

  footer>div {
    text-align: center;
    margin-bottom: 10px;
    padding: 10px;
  }

  .conclusion {
    width: 560px;
  }

  .uppage>a {
    position: relative;
    left: 150px;
  }
}
