@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&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto Condensed", serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}

html {
    height: auto;
  font-size: 62.5%;
  /* 1rem = 10px */
  overflow-x: hidden;
  scroll-padding-top: 80px; 
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  background: #EEEEFF;
}


body {
  overflow-x: hidden;
  background: #EEEEFF;
  font-family: 'Poppins', sans-serif;
  
  
}
body::-webkit-scrollbar {
  display: none;
  overflow: none;
}
.header {
  width: 100%;
  position: fixed;
  padding: 0 4.8rem;
  height: 9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;

  z-index: 999;
  font-family: 'Poppins', sans-serif;
}
.logocontain {
  height: 9rem;
  width: 40%;
  display: flex;

  text-align: center;
  align-items: center;
}
#logo-heading {
  font-size: 4rem;
  color: #d90166;
  font-family: "Roboto Condensed", serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}#logo-heading:hover {
  color: rgb(0, 217, 255);



  
}

.header .logo {
  height: 100%;
  width: 100%;
  border-radius: 12px;
}

.header .logo:hover {
  box-shadow: 5px 5px 20px white, -5px -5px 20px white;
}

.navbar-list {
  display: flex;
  gap: 4.3rem;
  list-style: none;
  display: flex;
  align-items: center;
  height: 100%;
}

.navbar-link:link,
.navbar-link:visited {
  display: inline-block;

  text-decoration: none;
  font-size: 2rem;
  font-weight: 700;
  align-items: center;
  display: flex;
  color: #f5841b;
  transition: all 0.3s;

}

.navbar-link:hover,
.navbar-link:active {


  color: rgb(0, 217, 255);

  border-bottom: 3px solid #d90166;
}

.mobile-navbar-btn {
  display: none;
  background: transparent;
  cursor: pointer;
  height: 50%;
  width: 50px;
}

.mobile-nav-icon {
  width: 4rem;
  height: 4rem;

  color: black;
}

.mobile-nav-icon[name="close-outline"] {
  display: none;
}

/* main continer */
.continer {
  height: 600px;
  width: 100%;
  margin-top: 120px;
  display: flex;
}
.first-continer {
  width: 50%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}
.text-container {
  display: flex;
  flex-direction: column;

  justify-content: center;
  height: 60%;
  width: 60%;
}
.text-heading {
  font-size: 4rem;

  color: black;
  font-family: "Roboto Condensed", serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}
.button-conatiner {
  margin-top: 10px;
  height: 60px;
  width: 100%;

  display: flex;
  align-items: center;
}
.button1-downlod-cv {
  height: 40px;
  width: 40%;
  border-radius: 5px;
  outline: none;
  border: none;

  color: white;
  background-color: #d90166;
}

.download-cv-a {
  text-decoration: none;
  color: white;
}
.button1-downlod-hire {
  height: 40px;
  width: 40%;
  margin-left: 20px;
  border-radius: 5px;
  outline: none;
  border: none;
  background-color: rgba(248, 117, 55, 1);
  color: WHITE;
}
.icon-conatiner {
  height: 60px;
  width: 100%;

  display: flex;
}
.icon {
  height: 50px;
  width: 50px;
  margin-top: 5px;
  margin-right: 10px;
}

.second-continer {
  width: 50%;
  height: 100%;

 
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0;

}

/* version 2.0 */
.shivam_banner {

  height: 450px;

  width: 300px;
  filter: drop-shadow(0 0 0.2rem rgb(60, 60, 60));
  animation: floatimg 8s ease-in-out infinite;
}
@keyframes floatimg {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-24px);
  }
  100% {
    transform: translateX(0);
  }
} 

/* Secttion for Expertise Start  */
.expertise {
  padding: 60px 20px;
  text-align: center;
  background-color: #ffffff;
  font-family: 'Poppins', sans-serif;
}


.heading small {
  font-size: 16px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.heading h3 {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-top: 10px;
}


.service-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}


.service-card {
  width: 300px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
}


.icon {
  width: 60px;
  height: 60px;
}


.service-card h4 {
  font-size: 22px;
  margin-top: 15px;
  font-weight: 600;
  color: #333;
}

.service-card p {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
  line-height: 1.6;
}


.service-card .link {
  display: inline-block;
  margin-top: 15px;
  font-size: 14px;
  font-weight: bold;
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-card .link:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Secttion for Expertise  End  */


/* Skill Section */
.skill-section {
  padding: 80px 20px;
  text-align: center;
  /* background: linear-gradient(135deg, #1c1c1c, #3a3a3a); */
  background: #EEEEFF;
}


.container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
}


.skill-progress {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}


.progress-card {
  background: rgba(255, 255, 255, 0.1);
 
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.progress-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.5);
}


.circular-progress {
  position: relative;
  height: 130px;
  width: 130px;
  border-radius: 50%;
  background: conic-gradient(var(--color) 260deg, #232323 0deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.circular-progress::before {
  content: "";
  position: absolute;
  height: 110px;
  width: 110px;
  border-radius: 50%;
  background: #1c1c1c;
}


.progress-value {
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}


.html-css { --color: #fca61f; }
.javascript { --color: #6f34fe; }
.php { --color: #20c997; }
.reactjs { --color: #3f396d; }


.skill-text {
  display: block;
  margin-top: 14px;
  font-size: 1.2rem;
  font-weight: 500;
  color: black;
}


.skill-detail {
  max-width: 450px;
  text-align: left;
  padding: 20px;
}


.heading small {
  font-size: 16px;
  color: #fca61f;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.heading h3 {
  font-size: 32px;
  font-weight: bold;
  color: white;
  margin-top: 10px;
}

.heading p {
  font-size: 1.1rem;
  color: #d0d0d0;
  line-height: 1.6;
}


.download-btn {
  margin-top: 15px;
  padding: 12px 24px;
  background: linear-gradient(45deg, #ff416c, #ff4b2b);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0px 4px 10px rgba(255, 75, 43, 0.4);
}

.download-btn a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: bold;
}

.download-btn:hover {
  background: linear-gradient(45deg, #ff4b2b, #ff416c);
  box-shadow: 0px 6px 15px rgba(255, 75, 43, 0.6);
}


/* my PROJECT SECTION STYLING */

/* Project Section */
.project-section {
  padding: 80px 20px;
  text-align: center;
}
.heading small {
  font-size: 16px;
  color: #6f34fe;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.heading h3 {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-top: 10px;
}


.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
  margin-top: 40px;
}


.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-card:hover {
  transform: scale(1.05);
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
}


.project-card img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  display: block;
  transition: opacity 0.3s ease;
}
.project-image{
height: 100%;
}


.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
}

.project-card:hover .overlay {
  opacity: 1;
}

.overlay h4 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 14px;
  text-align: center;
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #fca61f;
  color: white;
  font-size: 14px;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn:hover {
  background: #ff8800;
}


@media screen and (max-width: 1024px) {
  .heading h3 {
      font-size: 28px;
  }
}

@media screen and (max-width: 768px) {
  .project-section {
      padding: 60px 10px;
  }
  
  .heading h3 {
      font-size: 24px;
  }

  .overlay h4 {
      font-size: 18px;
  }

  .overlay p {
      font-size: 12px;
  }

  .btn {
      font-size: 12px;
      padding: 8px 16px;
  }
}

@media screen and (max-width: 480px) {
  .heading h3 {
      font-size: 22px;
  }

  .project-grid {
      grid-template-columns: 1fr; 
  }

  .overlay {
      padding: 15px;
  }

  .btn {
      font-size: 11px;
      padding: 7px 14px;
  }
}


.contact-section{
 height: 500px;
 width: 100%;
 display: flex;
 align-items: center;
 justify-content: center;

}
.contact-container {
  display: flex;
  flex-wrap: wrap;
  background: white;
  width: 90%;
  height: 70%;
 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 10px;

}
.contact-info, .contact-form {
  width: 50%;

  padding: 20px;
}
.contact-info {
  background: #17a2b8;
  color: white;
}
.contact-info h2, .contact-form h2 {
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
}
.contact-info ul {
  list-style: none;
  padding: 0;
}
.contact-info ul li {
  margin: 10px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}
.social-icons a {
  color: white;
  text-decoration: none;
  margin-right: 10px;
  font-size: 20px;
}
.contact-form form {
  display: flex;
  flex-direction: column;
}
.contact-form input, .contact-form textarea {
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}
.contact-form button {
  background: #17a2b8;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
}
.contact-form button:hover {
  background: #138496;
}


@media screen and (max-width: 768px) {
  .contact-container {
      flex-direction: column;
  }
  .contact-info, .contact-form {
      width: 100%;
  }
}







.footer-container {
    background-color: #142850;
    color: #ffffff;
    text-align: center;
    padding: 30px 15px;
  
}

.footer-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
  
}

.footer-links a {
    text-decoration: none;
    color: #a0a0a0;
    font-size: 1.5rem;
    transition: color 0.3s ease-in-out;
}

.footer-links a:hover {
    color: #ffcc00;
}
.linkden-icon,.twitter-icon,.instagram-icon{
  border: none;
  text-decoration: none;
}
.divider {
    width: 2px;
    height: 18px;
    background-color: #666;
}


.social-icons-footer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;

}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.4rem;
    background-color: #ffffff;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
  
}



@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
    }
    .divider {
        display: none;
    }
    .social-icons {
        gap: 10px;
    }
}

/* ===============================================
   About Section Styles
   
================================================= */



.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #EEEEFF 0%, #f8f8ff 100%);
    overflow: hidden;
   
}

.about-content {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1200px; 
    margin: 0 auto;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(217,1,102,0.1);
    background: rgba(255,255,255,0.5);
}

.about-image {
    flex: 0.8; 
    position: relative;
    transform: translateY(-20px);
}

.about-image img {
    width: 90%; 
    max-width: 450px; 
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    border: 2px solid rgba(217,1,102,0.1);
}

.about-image img:hover {
    transform: scale(1.02);
}

.experience-badge {
    position: absolute;
    right: -20px;
    bottom: 40px;
    background: linear-gradient(135deg, #d90166 0%, #ff1493 100%);
    color: white;
    padding: 20px; 
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(217,1,102,0.2);
    border: 1px solid rgba(255,255,255,0.2);
}

.experience-badge span {
    font-size: 2.5rem; 
    font-weight: 800;
}

.about-details {
    flex: 1.2; 
}

.heading small {
    color: #d90166;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.heading h3 {
    font-size: 2.8rem; 
    margin: 15px 0;
    color: #212529;
    font-weight: 700;
    line-height: 1.2;
}

.intro-text {
    font-size: 1.7rem; 
    color: #333;
    margin-bottom: 25px;
}

.highlight {
    color: #d90166;
    font-weight: 700;
}

.about-details p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 1.5rem; 
}

.about-stats {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.stat {
    text-align: center;
    padding: 15px; 
    background: rgba(255,255,255,0.9);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid rgba(217,1,102,0.1);
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem; 
    font-weight: 800;
    color: #d90166;
    display: block;
    margin-bottom: 5px;
}

.stat p {
    color: #333;
    font-size: 1.3rem; 
    margin: 0;
    font-weight: 600;
}

.about-buttons {
    display: flex;
    gap: 20px; 
}

.hire-btn, .talk-btn {
    padding: 12px 30px; 
    border-radius: 50px;
    border: none;
    font-size: 1.5rem; 
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hire-btn {
    background: linear-gradient(135deg, #d90166 0%, #ff1493 100%);
    border: 1px solid rgba(255,255,255,0.2);
}

.hire-btn a {
    color: white;
    text-decoration: none;
}

.talk-btn {
    background: transparent;
    border: 2px solid #d90166;
}

.talk-btn a {
    color: #d90166;
    text-decoration: none;
}


@media (max-width: 1200px) {
    .about-content {
        padding: 20px;
        gap: 40px;
        border: none;
    }

    .heading h3 {
        font-size: 2.6rem;
    }
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
       
    }
    .about-image-img{
        margin-top: 15px;
    }

    .experience-badge {
        right: 20px;
    }

    .about-stats {
        justify-content: center;
    }

    .about-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }

    .about-image img {
        width: 80%;
    }

    .heading h3 {
        font-size: 2.4rem;
    }

    .intro-text {
        font-size: 1.5rem;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat {
        flex: 1;
        min-width: 180px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 60px 0;
    }

    .about-content {
        padding: 15px;
    }

    .about-image img {
        width: 70%;
    }

    .heading h3 {
        font-size: 2.2rem;
    }

    .about-stats {
        flex-direction: column;
    }

    .stat {
        width: 100%;
    }

    .about-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hire-btn, .talk-btn {
        width: 100%;
        padding: 12px 25px;
        font-size: 1.4rem;
    }
}



