/* Global Styles */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200&family=Roboto:wght@100&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  overflow-y: scroll;
overflow-x: hidden;
}

/*======================== Navbar Styles=============================*/
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  width: 100vw;
  background: #323232;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
a {
  text-decoration: none;
  opacity: 0.75;
  font-style: Arial, sans-serif;
}
.navbar-brand {
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  list-style: none;
  color: #f0f0f0;
  border: 1px solid white;
  padding: 4px;
  border-radius: 5px;
}
.navbar a:hover {
  opacity: 1;
}

.nav-links {
  list-style: none;
  display: flex;
}
.nav-link {
  margin-left: 70px;
  /* color:#323232; */
  color: white;
  transition: color 0.3s ease;
  font-size: 23px;
  font-family: Arial, sans-serif;
}
.link-2 {
  color: white;
}
/* .nav-link:hover {
  color: #ffc0cb;
} */

.icons a {
  margin: 4px;
  padding: 10px;
}
.navbar .fa-brands {
  color: white;
  border: 1px solid white;
  padding: 5px;
  border-radius: 20px;
}
.fa-github:is(:hover, :focus) {
  color: #ffc0cb;
  outline-offset: 3px;
}
.fa-twitter:is(:hover, :focus) {
  color: #53d8fa;
  outline-offset: 3px;
}
.fa-linkedin:is(:hover, :focus) {
  color: #0d91dd;
  outline-offset: 3px;
}
 
/* ===========================Hero Section Styles===========================*/
.hero {
  background-color: #f0f0f0;
  background-size: cover;
  background-position: center;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  color: #323232;
  text-align: left;
}
.text {
  margin-left: 80px;
  display: none;
}
.text h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-family: "Geologica", sans-serif;
}
.text p {
  font-size: 24px;
  margin-bottom: 40px;
  font-family: "Geologica", sans-serif;
}

/*=========================== About Section Styles ===========================*/
.about {
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #323232;
  color: #f0f0f0;
  width: 100vw;
  height: 100vh;
}
.about_left {
  width: 60vw;
  margin-top: 30px;
  padding-right: 10px;
  display: none;
}
button {
  padding: 6px;
  margin: 2px;
  background-color: #f0f0f0;
  border-radius: 10px;
  border: none;
  font-family: Arial, sans-serif;
  font-size: 20px;
  float: left;
  margin: 20px 0px 0 80px;
  box-shadow: 0px 4px 4px rgba(192, 192, 192, 0.25);
  transition: border 1s;
}
button:hover {
  font-weight: bold;
  background-color: rgb(255, 253, 255);
}

.about h2 {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: left;
  margin-left: 80px;
}

.about p {
  font-size: 18px;
  text-align: left;
  margin-left: 80px;
  padding-right: 300px;
}
.about_right {
  width: 40vw;
  padding: 10px;
  display: none;
}
.container {
  width: 100%;
  background-color: #323232;
}

.skills {
  text-align: right;
  padding-top: 5px;
  padding-bottom: 5px;
  color: white;
  border-radius: 10px;
}

.about_right p {
  font-family: "Geologica", sans-serif;
  margin-top: 12px;
}

.html {
  width: 90%;
  background-color: #f0f0f0;
  padding: 2px;
}
.css {
  width: 80%;
  background-color: #f0f0f0;
  padding: 2px;
}
.js {
  width: 65%;
  background-color: #f0f0f0;
  padding: 2px;
}
.reactjs {
  width: 40%;
  background-color: #f0f0f0;
  padding: 2px;
}
.bootstrap {
  width: 70%;
  background-color: #f0f0f0;
  padding: 2px;
}
.git {
  width: 60%;
  background-color: #f0f0f0;
  padding: 2px;
}
.container span {
  color: #000000;
}

/* ===========================Services Section Styles=========================== */
.services {
  padding: 80px 0;
  text-align: center;
  color: #323232;
  background-color: #f0f0f0;
  height: 100vh;
  width: 100vw;
}

.pro_services {
  display: none;
  justify-content: center;
  flex-direction: row;
}
.services h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.service {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  padding: 10px;
  margin: 50px;
  color: #000000;
  background-color: #00000029;
  height: 40vh;
  width: 40vh;
  border-radius: 20px;
  /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
  transition: width 5s;
}
.service:hover {
  width: 50vh;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.service h3 {
  font-size: 24px;
  margin-bottom: 10px;
  padding: 10px;
}

.service p {
  font-size: 18px;
}

/* ===========================Contact Section Styles=========================== */
.contact {
  padding: 80px 0;
  text-align: center;
  background-color: #f9f4f4;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  height: 100vh;
  width: 100vw;
}
.contact_right {
  width: 50wh;
  display: none;
}
.inner_icon {
  display: flex;
  flex-direction: row;
  padding: 10px;
}

.inner_icon p {
  text-align: left;
  padding-left: 10px;
}
.contact_left {
  width: 50wh;
  display: none;
}

.contact h2 {
  font-size: 30px;
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.contact-form input[type="text"],
.contact-form textarea {
  width: 300px;
  background-color: transparent;
  padding: 10px 6px 6px;
  margin: 10px;
  border-radius: 10px;
  /* border: none  1px */
  border: 1px solid #ccc;
}

.contact-form button {
  padding: 10px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

/*=========================== Footer Styles ===========================*/
.footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}
/*=========================== Animation Classes=========================== */

.focus-in-expand-fwd {
	-webkit-animation: focus-in-expand-fwd 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: focus-in-expand-fwd 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
 @-webkit-keyframes focus-in-expand-fwd {
  0% {
    letter-spacing: -0.5em;
    -webkit-transform: translateZ(-800px);
            transform: translateZ(-800px);
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
@keyframes focus-in-expand-fwd {
  0% {
    letter-spacing: -0.5em;
    -webkit-transform: translateZ(-800px);
            transform: translateZ(-800px);
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}

/* SCALE UP ANIMATION  CLASS */
.scale-up-hor-left {
	-webkit-animation: scale-up-hor-left 0.9s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: scale-up-hor-left 0.9s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
@-webkit-keyframes scale-up-hor-left {
  0% {
    -webkit-transform: scaleX(0.4);
            transform: scaleX(0.4);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
  }
}
@keyframes scale-up-hor-left {
  0% {
    -webkit-transform: scaleX(0.4);
            transform: scaleX(0.4);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
  }
}

/* SCALE Up ANIMATION */
.scale-up-top {
	-webkit-animation: scale-up-top 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: scale-up-top 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
@-webkit-keyframes scale-up-top {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
  }
}
@keyframes scale-up-top {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
  }
}



/*=========================== MEDIA QUERYS=========================== */

@media only screen and (max-width: 975px) {
  html,
  body {
    width: 100vw;
    height: 100vh;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
  }
  .navbar {
    position: relative;
  }
  .icons {
    margin: 10px 10px 10px 30px;
    display: flex;
    flex-direction: column;
  }
  .icons a {
    justify-content: space-around;
  }
  .hero {
    height: 100vh;
  }
  .hero text{
    display: block;
  }
  .about {
    height: 100vh;
  }

  .about_left {
    width: 60vw;
    display: block;
  }
  
  .about_right {
    width: 40vw;
    display: block;
  }
  .about p {
    padding-right: 160px;
  }
  .container {
    width: 100%;
  }
  .pro_services {
    margin: 20px;
  }
  .service {
    margin: 25x;
  }
  .contact {
    padding: 60px;
    height: 100vh;
  }
  .contact_left{
    display: block;
  }
  .contact_right{
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  html,
  body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  .navbar {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: -20px;
  }
  .navbar-brand {
    padding: 10px;
    margin: 10px;
  }
  .nav-links {
    display: flex;
    flex-direction: column;
    padding: 10px;
    align-items: flex-start;
  }
  .nav-link {
    padding: 5px;
    margin-left: 30px;
  }
  .icons {
    padding: 10px;
    margin: 10px;
  }
  .about {
    flex-direction: column;
    height: auto;
  }
  .about_right {
    width: 100vw;
    padding: 75px;
  }
  .about p {
    padding-right: 160px;
    width: 100vw;
  }
  .container {
    width: auto;
  }

  .services {
    height: auto;
  }
  .pro_services {
    flex-direction: column;
    align-items: center;
  }
  .contact {
    flex-direction: column;
  }
  .contact_left {
    margin-left: 75px;
  }
  .contact h2 {
    align-items: center;
  }
  .contact-form button {
    margin-right: 60px;
  }
}
@media only screen and (max-width: 400px) {
  .about p {
    padding-right: auto;
  }
  .contact {
    padding: 30px;
    height: 100vh;
  }
  .contact_left {
    margin-left: auto;
  }
}
