@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
}
header {
  background-color: #25b79f;
  height: 100vh;
}
.container {
  max-width: 1200px;
  width: 90%;
  margin: auto;
}
/* ////........Navbar.......//// */
.navbar {
  position: fixed;
  width: 100%;
  z-index: 500;
}
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  padding: 2.5rem 0;
}
.menu-items {
  display: flex;
}
.menu-items li {
  list-style: none;
  padding: 1rem;
}
.menu-items a {
  text-decoration: none;
  color: #f0f0e6;
  font-size: 1.3rem;
  padding: 0.3rem;
}
.menu-items a:hover {
  border-bottom: 2px solid #f0f0e6;
}
.navbar .logo {
  order: 1;
  color: #f0f0e6;
  font-size: 2rem;
}
/* ////........Home Content........//// */
.home-content .name {
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #07374a;
  width: 100%;
  text-align: center;
}
.home-content .name h1 {
  font-size: 6rem;
  text-align: center;
}
.home-content .name p {
  color: #f0f0e6;
  font-size: 3rem;
}
.angle-down-icon {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  border: 3px solid #07374a;
  border-radius: 50%;
}
.angle-down-icon a {
  text-decoration: none;
  color: #07374a;
  padding: 1rem;
}
/* ////........About Me........//// */
.about-me {
  background-color: #07374a;
  padding: 3.5rem 0;
} 
.about-me .about-heading {
  color: #25b79f;
  font-size: 4rem;
  font-weight: 600;
  text-align: center;
}
.about-content img {
  height: 200px;
  width: 150px;
  object-fit: cover;
  border-radius: 50%;
}
.about-content p {
  line-height: 1.2;
  font-size: 1.35rem;
  color: #f0f0e6;
  padding: 2.3rem;
  text-align: left;
  font-family: 'Poppins';
  font-weight: 200;
  letter-spacing: 1.3;
}
.skills .skills-heading {
  /* padding-top: 40px; */
  font-size: 4rem;
  font-weight: 600;
  color: #25b79f;
  text-align: center;
}
.about-me .about-content {
  display: flex;
  flex-wrap: wrap;
}
.about-content .left-content {
  flex-basis: 45%;
  text-align: center;
}
.about-content .right-content {
  flex-basis: 45%;
}
/* ///.....Skill Bar....../// */
.skills-bar {
  padding: 25px 30px;
}

.skills-bar .bar {
  margin: 25px 0;
}

.skills-bar .bar .info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  color: #f0f0e6;
}

.skills-bar .bar .info span {
  font-size: 1rem;
  font-weight: 500;
}

/* Arrow styles */
.arrow-up, .arrow-down {
  color: #25b79f;
  font-size: 1rem;
  margin-left: 0.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Hover effects on arrows */
.arrow-up:hover {
  transform: translateY(-3px);
  color: #07374a;
}

.arrow-down:hover {
  transform: translateY(3px);
  color: #07374a;
}

.skills-bar .bar .progress-line {
  position: relative;
  height: 10px;
  width: 550px;
  background: #f0f0f0;
  border-radius: 10px;
  transform: scaleX(0);
  transform-origin: left;
  animation: animate 1s cubic-bezier(1, 0, 0.5, 1) forwards;
}

.bar .progress-line span {
  position: absolute;
  background: #25b79f;
  height: 100%;
  border-radius: 10px;
  transform: scaleX(0);
  transform-origin: left;
  animation: animate 1s 1s cubic-bezier(1, 0, 0.5, 1) forwards;
}

@keyframes animate {
  100% {
    transform: scaleX(1);
  }
}

.progress-line .html {
  width: 80%;
}

.progress-line .css {
  width: 70%;
}

.progress-line .bootstrap {
  width: 50%;
}

.progress-line .tailwindcss {
  width: 70%;
}

.progress-line .javascript {
  width: 50%;
}

.progress-line .php {
  width: 50%;
}

.progress-line .mysql {
  width: 80%;
}

.progress-line .laravel {
  width: 70%;
}

.progress-line .Wordpress {
  width: 70%;
}

.progress-line .elementor {
  width: 60%;
}

.progress-line .divi {
  width: 80%;
}

.bar .progress-line span::before {
  position: absolute;
  content: "";
  height: 0;
  right: 0;
  top: -12px;
  width: 0;
  border: 7px solid transparent;
  border-bottom-width: 0px;
  border-right-width: 0px;
  border-top-style: solid;
  border-top-color: #f0f0f0;
}

.bar .progress-line span::after {
  position: absolute;
  right: 0;
  top: -28px;
  color: #07374a;
  font-size: 12px;
  font-weight: 700;
  background: #f0f0f0;
  padding: 1px 8px;
  border-radius: 3px;
}

.progress-line .html::after {
  content: "80%";
}

.progress-line .css::after {
  content: "70%";
}

.progress-line .bootstrap::after {
  content: "50%";
}

.progress-line .tailwindcss::after {
  content: "70%";
}

.progress-line .javascript::after {
  content: "50%";
}

.progress-line .php::after {
  content: "50%";
}

.progress-line .mysql::after {
  content: "80%";
}

.progress-line .laravel::after {
  content: "70%";
}

.progress-line .Wordpress::after {
  content: "70%";
}

.progress-line .elementor::after {
  content: "60%";
}

.progress-line .divi::after {
  content: "80%";
}

/* Navbar styles */
.navbar.solid {
  background-color: #07374a;
  transition: background-color 1s ease 0s;
  box-shadow: 0 0 4px rgb(7 55 74 / 20%);
  z-index: 500;
}

.navbar.solid .navbar-brand {
  display: inline-block;
  color: #f0f0e6;
  transition: color 1s ease 0s;
}

.navbar-brand {
  display: none;
  color: #f0f0e6;
  font-weight: 400;
}

/* Work Arrow styles */
.work-arrow {
  margin: 2rem 0;
}

.work-arrow a {
  font-size: 1.5rem;
  text-decoration: none;
  color: #25b79f;
}

.work-arrow-2 {
  margin: 2rem 0;
}

.work-arrow-2 a {
  font-size: 1rem;
  text-decoration: none;
  color: #25b79f;
  display: none;
}

/* Portfolio Section Styling */
/* Portfolio Section */
.portfolio {
  background: #25b79f;
  padding: 3.5rem 0;
}

.proj-heading h1 {
  text-align: center;
  color: #07374a;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

/* Individual Project Styling */
.portfolio-content .proj-1,
.portfolio-content .proj-2,
.portfolio-content .proj-3,
.portfolio-content .proj-4,
.portfolio-content .proj-5,
.portfolio-content .proj-6 {
  /* margin-bottom: 10px; */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5rem;
}

.portfolio-content img {
  height: 100%;
  width: 600px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 20px 10px -10px rgba(37, 41, 52, 0.31);
  margin-right: 1.7rem;
}

.portfolio-content .proj1-details,
.portfolio-content .proj2-details,
.portfolio-content .proj3-details,
.portfolio-content .proj4-details,
.portfolio-content .proj5-details,
.portfolio-content .proj6-details {
  margin-left: 3rem;
  width: 32rem;
}

.portfolio-content .proj1-details i,
.portfolio-content .proj2-details i,
.portfolio-content .proj3-details i,
.portfolio-content .proj4-details i,
.portfolio-content .proj5-details i,
.portfolio-content .proj6-details i {
  font-size: 2.5rem;
  color: #07374a;
}

.portfolio-content .proj1-details h2,
.portfolio-content .proj2-details h2,
.portfolio-content .proj3-details h2,
.portfolio-content .proj4-details h2,
.portfolio-content .proj5-details h2,
.portfolio-content .proj6-details h2 {
  font-size: 2.3rem;
  color: #07374a;
  font-weight: 700;
}

.portfolio-content .proj1-details p,
.portfolio-content .proj2-details p,
.portfolio-content .proj3-details p,
.portfolio-content .proj4-details p,
.portfolio-content .proj5-details p,
.portfolio-content .proj6-details p {
  font-size: 1.8rem;
  color: #07374a;
  font-weight: 400;
}

.portfolio-content button {
  border-radius: 10px;
  padding: 10px 20px;
  background: #f0f0e6;
  /* padding: 0.5rem; */
  margin-top: 0.5rem;
  /* width: 150px; */
  border: none;
  border-bottom: 2px solid #07374a;
}

.portfolio-content button a {
  text-decoration: none;
  color: #07374a;
  font-size: 1.3rem;
  text-align: center;
  font-family: 'Poppins';
  font-weight: 600;
  transition: 0.3s ease-in-out;
}

.portfolio-content button .fas {
  font-size: 0.7rem;
  padding: 0.3rem;
  transition: 0.2s ease-in-out;
}

.portfolio-content button:hover {
  background: #07374a;
}

.portfolio-content button:hover a,
.portfolio-content button:hover .fas {
  color: #f0f0e6;
}

/* Hidden More Projects (initially hidden) */
.more-projects {
  display: none;
}


/* Show More Button Styling */
.show-more {
  display: block;
  width: 200px;
  margin: 3rem auto;
  padding: 0.8rem;
  background-color: #07374a;
  color: black;
  text-align: center;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  transition: 0.3s ease;
/* Show More/Less Button */

}

.show-more:hover {
  background-color: #07374a;
  color: #f0f0e6;
}
/* Responsive Design */
@media screen and (max-width: 768px) {
  .portfolio-content .proj-1,
  .portfolio-content .proj-2,
  .portfolio-content .proj-3,
  .portfolio-content .proj-4,
  .portfolio-content .proj-5,
  .portfolio-content .proj-6 {
    flex-direction: column;
    text-align: center;
  }

  .portfolio-content img {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }

  .portfolio-content .proj1-details,
  .portfolio-content .proj2-details,
  .portfolio-content .proj3-details,
  .portfolio-content .proj4-details,
  .portfolio-content .proj5-details,
  .portfolio-content .proj6-details {
    width: 100%;
  }
}


/* Contact Section Styles */
.contact {
  padding: 50px 0;
  background: linear-gradient(135deg, #f0f0f0, #d0d0d0);
  color: #333;
}

.contact .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-content {
  text-align: center;
}

.contact-content h2 {
  font-size: 4rem;
  margin-bottom: 20px;
  color: #07374a;
}

.contact-content .mail {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: #333;
}

.contact-content .mail a {
  color: #25b79f;
  text-decoration: none;
  font-weight: bold;
}

.contact-content .mail a:hover {
  text-decoration: underline;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-form label {
  font-size: 1rem;
  color: #333;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #25b79f;
  outline: none;
  box-shadow: 0 0 5px rgba(37, 183, 159, 0.5);
}

.contact-form .submit-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #25b79f;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form .submit-btn:hover {
  background-color: #1a9b73;
}

.contact-content .fa-arrow-right {
  color: #25b79f;
  margin-left: 5px;
}

/* ////......Media query......//// */
@media (max-width: 500px) {
  html {
    font-size: 60%;
  }
  .about-content .left-content {
    flex-basis: 100%;
    text-align: center;
  }
  .about-content .right-content {
    flex-basis: 100%;
  }
  .skills {
    width: 100%;
  }
  .skills-bar .bar .progress-line {
    width: 100%;
  }
  .work-arrow {
    display: none;
  }
  .right-content h1 {
    margin-top: 3.2rem;
  }
  .proj-1 {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .proj-1 img {
    height: 230px;
    width: 290px;
    margin-bottom: 0.5rem;
  }
  .proj-2 {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .proj-2 img {
    height: 250px;
    width: 290px;
    margin-bottom: 0.5rem;
  }
  .work-arrow-2 a {
    font-size: 1.3rem;
    text-decoration: none;
    color: #25b79f;
    display: block;
    text-align: center;
  }
  .contact-content {
    width: 100%;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  html {
    font-size: 65%;
  }
  .about-content .left-content {
    flex-basis: 100%;
    text-align: center;
  }
  .about-content .right-content {
    flex-basis: 100%;
  }
  .skills {
    width: 100%;
  }
  .skills-bar .bar .progress-line {
    width: 100%;
  }
  .work-arrow {
    display: none;
  }
  .right-content h1 {
    margin-top: 3.2rem;
  }
  .proj-1 {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .proj-1 img {
    height: 240px;
    width: 290px;
    margin-bottom: 0.5rem;
  }
  .proj-2 {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .proj-2 img {
    height: 240px;
    width: 290px;
    margin-bottom: 0.5rem;
  }
  .work-arrow-2 a {
    font-size: 1.3rem;
    text-decoration: none;
    color: #25b79f;
    display: block;
    text-align: center;
  }
  .contact-content {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  html {
    font-size: 70%;
  }
  .about-content .left-content {
    flex-basis: 100%;
    text-align: center;
  }
  .about-content .right-content {
    flex-basis: 100%;
  }
  .skills {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .work-arrow {
    display: none;
  }
  .left-content h1 {
    margin-top: 3.2rem;
    text-align: center;
  }
  .right-content h1 {
    margin-top: 3.2rem;
    text-align: center;
  }
  .work-arrow-2 a {
    font-size: 1.3rem;
    text-decoration: none;
    color: #25b79f;
    display: block;
    text-align: center;
  }
  .contact-content {
    width: 100%;
  }
}
@media (orientation: landscape) and (max-height: 500px) {
  .header {
    height: 90vmax;
  }
} 