   /* Designing the Home Page */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body {
  color: #ededed;
  background: #081b29;
}
.header {
  position: fixed;
  top: 0;
  left:0;
  width: 100%;
  padding: 18px 10%;
  background: #051129;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}
.logo {
  position: relative;
  font-size: 25px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  cursor: default;
  opacity: 0;
  animation: slideRight 1s ease forwards;
}
.navbar a {
  display:inline-block;
  font-size: 25px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  margin-left: 35px;
  transition: 0.3s;
  opacity: 0;
  animation: slideTop .5s ease forwards;
  animation-delay: calc(.2s * var(--i));
}
.navbar a:hover {
  color: #0ef;
} 
.home {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("blue.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 70px 10% 0;
}
.home-content {
  max-width: 600px;
}
.home-content h3 {
  font-size: 32px;
  font-weight: 700;
  opacity: 0;
  animation: slideBottom 1s ease forwards;
  animation-delay: 0.7s;
}
.home-content h3:nth-of-type(2) {
  margin-bottom: 30px;
  animation: slideTop .5s ease forwards;
  animation-delay: 0.7s;
}
.home-content h3 span {
  color: #0ef;
}
.home-content h1 {
  font-size: 56px;
  font-weight: 700;
  margin: -3px 0;
  opacity: 0;
  animation: slideRight 1s ease forwards;
  animation-delay: 1s;
}
.home-content p {
  font-size: 20px; 
  opacity: 0;
  animation: slideLeft 1s ease forwards;
  animation-delay: 1s;
}
.home-sci {
  display: flex;
  margin: 30px 0 20px 0;
}
.home-sci a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid #0ef;
  border-radius: 50%;
  font-size: 20px;
  color: #0ef;
  text-decoration: none;
  transition: .5s ease;
  opacity: 0;
  animation: slideLeft 1s ease forwards;
  animation-delay: calc(.2s * var(--i));
  margin-right: 15px;
}
.home-sci a:last-child {
  margin-right: 0; 
}
.home-sci a:hover {
  background: #0ef;
  color: #081b29;
  box-shadow: 0 0 20px #0ef;
}
.btn-box {
    display: inline-block;
    padding: 12px 28px;
    background: #0ef;
    border-radius: 40px;
    font-size: 16px;
    color: #081b29;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 600;
    opacity: 0;
    animation: slideTop 1s ease forwards;
    animation-delay: 2s;
    border: 2px solid #0ef; 
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.btn-box:hover {
    box-shadow: 0 0 15px #0ef; 
    background-color: #0ef; 
}




/* Profile Image Styling */
.home-img img {
  max-width: 350px;
  border-radius: 50%;
  border: 3px solid #0ef;
  box-shadow: 0 0 20px #0ef;
  transition: 0.3s;
}
.home-img img:hover {
  box-shadow: 0 0 30px cyan, 0 0 60px cyan;
}

/* Animations */
@keyframes slideRight {
  0% { transform: translateX(-100px); opacity: 0; }
  100% { transform: translateX(0px); opacity: 1; }
}
@keyframes slideLeft {
  0% { transform: translateX(100px); opacity: 0; }
  100% { transform: translateX(0px); opacity: 1; }
}
@keyframes slideTop {
  0% { transform: translateY(100px); opacity: 0; }
  100% { transform: translateY(0px); opacity: 1; }
}
@keyframes slideBottom {
  0% { transform: translateY(-100px); opacity: 0; }
  100% { transform: translateY(0px); opacity: 1; }
}



















/*  Designing the About Section */

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: o.8rem;
    min-height: 100vh;
    padding: 50px 8%; 
}

.about-img {
    display: flex;
    justify-content: flex-start; 
}

.about-img img {
    max-width: 300px;
    border-radius: 50%;
    border: 3px solid #0ef;
    box-shadow: 0 0 20px #0ef;
    transition: 0.3s;
}

.about-img img:hover {
    box-shadow: 0 0 30px cyan, 0 0 60px cyan;
}

.about-text {
    text-align: left;
    padding-left: -100px; 
}

.about-text h2 {
    font-size: 60px;
}

.about-text h2 span {
    color: #0ef;
}

.about-text h4 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 20px; 
     margin-right: 40px; 
}

 .about-text p {
    color: aliceblue;
    font-size: 18px;
    line-height: 1.5;
    text-align: left;
    margin-left: -140px;
} 

.hidden-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.hidden-content.show {
  max-height: 2000px; 
}




 








/* Designing the Education Section  */

.education {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    min-height: 100vh;
    padding: 48px 8%;
    background: #081b29;
     margin-top: 40px;
}

.education .heading {
    font-size: 10rem;
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
}

.education .heading span {
    color: #0ef;
}

 .education .education-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    width: 100%;
    align-items: stretch;
} 

.education-row .education-column {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
}

.education-column .title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.education-column .education-box {
    border-left: 3px solid #0ef;
    padding-left: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.education-content {
    position: relative;
    margin-bottom: 2.5rem;
}

.education-content .content {
    background: transparent;
    border: 2px solid #0ef;
    border-radius: .6rem;
    padding: 1rem;
}

.education-content .year {
    font-size: 1rem;
    color: #0ef;
    margin-bottom: .5rem;
}

.education-content h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: .5rem;
}

.education-content p {
    font-size: 1rem;
    color: #ccc;
}
  

.education {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 20px 5%; 
    background: #081b29;
}

.education .heading {
    font-size: 60px; 
    margin-bottom: 1.5rem;
}

.education .education-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    width: 100%;
}

.education-row .education-column {
    flex: 1 1 45%;
}

.education-column .title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.education-column .education-box {
    border-left: 2px solid #0ef;
    padding-left: 0.8rem;
}

.education-content {
    margin-bottom: 1rem;
}

.education-content .content {
    padding: 0.6rem;
}

.education-content .year {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
}

.education-content h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.education-content p {
    font-size: 0.8rem;
    line-height: 1.2;
}

.education-content .content {
    background: transparent;
    border: 2px solid #0ef;
    border-radius: 10px;
    padding: 1rem;
    transition: box-shadow 0.3s ease;
    box-shadow: none; 
}

.education-content .content:hover {
    box-shadow: 0 0 20px #0ef; 
      background-color: rgba(43, 89, 106, 0.2);
}

.education-content {
    position: relative; 
    margin-bottom: 2.5rem;
}

.education-content::before {
    content: "";
    position: absolute;
    top: 0px; 
    left: -1.55rem; 
    width: 14px;
    height: 14px;
    background-color: #0ef; 
    border: 3px solid #081b29; 
    border-radius: 50%;
    box-shadow: 0 0 5px #0ef;
}

progress-line HTML










/* Designing the Skills Section */ 

body {
    background-color: #0f1b2c;
    font-family: Arial, sans-serif;
    color: white;
    margin: 0;
    padding: 0;

}

h1.sub-title {
    text-align: center;
    font-size: 60px;
    margin-top: 30px;
    
}

h1.sub-title span {
    color: #00eaff;
}

.skills-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.skills-box h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    border-bottom: 2px solid white;
    display: inline-block;
    padding-bottom: 5px;
}

.bar {
    margin: 50px 0;
}

.bar i {
    margin-right: 8px;
}

.info {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.progress-line {
    position: relative;
    height: 7px;                                 
    width: 300px;
    background: #111;                        
    border-radius: 5px;
}

.progress-line span {
    height: 100%;
    background: #00eaff;
    display: block;
    border-radius: 5px;
}

.progress-line span::after {
    content: attr(data-percent);
    position: absolute;
    right: 0;
    top: -25px;
    background: black;
    padding: 2px 5px;
    border-radius: 4px;
    font-size: 12px;
}

.pro-skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 8px solid #111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 15px;
}

.circle::before {
    content: attr(data-percent);
    position: absolute;
    font-size: 1.2rem;
    font-weight: bold;
}

.circle svg {
    position: absolute;
    transform: rotate(-90deg);
}


.circle svg circle {
    fill: none;
    stroke: #00eaff;
    stroke-width: 8;
    stroke-dasharray: 377; /* circumference */
    stroke-dashoffset: calc(377 - (377 * var(--percent)) / 100);
    transition: stroke-dashoffset 1s ease;
    stroke-linecap: round;
} 



.circle svg circle {
    stroke-dasharray: 339.292; /* 2 * π * 54 */
    stroke-dashoffset: calc(339.292 - (339.292 * var(--percent)) / 100);
}


.pro-skill {
    text-align: center;
}

.circle svg circle {
    stroke-dasharray: 339.292; /* 2 * π * 54 */
    stroke-dashoffset: calc(339.292 - (339.292 * var(--percent)) / 100);
}

.skills-box:last-child {
    margin-left: 70px; 
}




















/* Designing the Contact Section */


.contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 5rem;
    padding-left: 30px;
    margin-top: 80px;
    max-width: 100vw;
  overflow-x: hidden; 
}

.contact-text h2 {
    font-size: 80px;
    line-height: 1;
    text-align: center;
      margin-top: 10px;
}

.contact-text h2 span {
    color: #0ef;
}

.contact-text h4 {
    margin: 15px 0;
    color: rgb(228, 228, 228);
    font-size: 20px;
    font-weight: 600;
    margin-top: 25px
}

.contact-text p {
    color: rgb(177, 177, 177);
    font-size: 20px;
    line-height: 30px;
  margin-top: 10px;                      
}

.contact-list {
    margin-bottom: 3rem;
     margin-top: 2rem;
    
}

.contact-list li {
    margin-bottom: 10px;
    display: block;
    
}

.contact-list i {
    display: inline-block;
    color: #0ef;
    font-size: 20px;
    font-weight: 600;
    transition: all .40s ease;
    
}

.contact-list li a:hover {
    transform: scale(1.01) translateY(-5px);
    color: #0ef;
}

.contact-icons i {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #0ef;
    border-radius: 50%;
    font-size: 20px;
    color: #0ef;
    text-decoration: none;
    margin: 30px 15px 30px 0;
    transition: .5s ease;
    opacity: 0;
    animation: slideLeft 1s ease forwards;
    animation-delay: calc(.2s * var(--i));
}

.contact-icons i:hover {
    background: #0ef;
    color: #000;
    box-shadow: 0 0 20px #0ef;
}

.contact-form form {
    position: relative;
}

.contact-form form input, form textarea {
    border: none;
    outline: none;
    width: 90%;
    padding: 18px;
    background: #474749;
    color: #ffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
}

.contact-form textarea {
    resize: none;
    height: 220px;
}


.contact-form form .send {
    display: inline-block;
    padding: 14px 60px;
    background: #0ef;
    border-radius: 40px;
    font-size: 18px;
    color: #081b29;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 600;
    opacity: 0;
    animation: slideTop 1s ease forwards;
    animation-delay: 2s;

} 

.contact-form form .send:hover {
    box-shadow: 0 0 20px #0ef; 
     
}

.last-text p{
    width: 100%;
    text-align: center;
    padding: 15px 0;
    background: rgb(7, 85, 91);
    font-weight: 300;
    margin-top: 7px;
}

.top{
    position: fixed;
    bottom: 2.1rem;
    right: 2.1rem;
}

.top i{
    color: #000;
    background: #0ef;
    font-size: 20px;
    padding: 10px;
    border-radius: 0.5rem;
    position: fixed;
    bottom: 10px; 
    right: 20px;  
}



#about {
  scroll-margin-top: 24px;
}

#education {
  scroll-margin-top: 40px;
}

#myskill {
  scroll-margin-top: 90px;
}

#contact {
  scroll-margin-top: 90px;
}

.navbar a.active {
    color: #00eaff;
   
}