/* --- Section Layouts --- */
.section {
    width: 100%;
    max-width: 900px;
    margin: 60px auto 0 auto;
    padding: 40px 30px;
    background: #f8f6fc;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(143,64,218,0.07);
}
.section h2 {
    font-size: 2.2rem;
    color: #8f40da;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* --- About Section --- */
.about-section p {
    font-size: 1.15rem;
    color: #333;
    line-height: 1.7;
}

/* --- Skills Section --- */
.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.skills-list li {
    background: #e7d8fa;
    color: #8f40da;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 20px;
    font-size: 1rem;
    box-shadow: 0 1px 4px rgba(143,64,218,0.08);
}

/* --- Portfolio Section --- */
.portfolio-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    margin-top: 18px;
}
.portfolio-item {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(143,64,218,0.08);
    padding: 18px 14px 22px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
}
.portfolio-item:hover {
    box-shadow: 0 4px 24px rgba(143,64,218,0.18);
}
.portfolio-item img {
    width: 100%;
    max-width: 180px;
    border-radius: 10px;
    margin-bottom: 12px;
    object-fit: cover;
    aspect-ratio: 4/3;
}
.portfolio-item h3 {
    color: #8f40da;
    font-size: 1.15rem;
    margin: 8px 0 6px 0;
}
.portfolio-item p {
    color: #444;
    font-size: 0.98rem;
    margin-bottom: 10px;
    text-align: center;
}
.portfolio-item a {
    color: #fff;
    background: #8f40da;
    padding: 7px 18px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 0.98rem;
    font-weight: 500;
    transition: background 0.2s;
}
.portfolio-item a:hover {
    background: #6d2bbd;
}

/* --- Contact Section --- */
.contact-section {
    background: #f3f0fa;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 18px;
}
.contact-form input,
.contact-form textarea {
    padding: 10px 14px;
    border: 1.5px solid #d1b8f7;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    resize: none;
}
.contact-form textarea {
    min-height: 80px;
    max-width: 100%;
}
.contact-form button {
    background: #8f40da;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 0;
    font-size: 1.08rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-form button:hover {
    background: #6d2bbd;
}
.contact-info {
    color: #333;
    font-size: 1rem;
}
.contact-info a {
    color: #8f40da;
    text-decoration: underline;
}
@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;
    font-family: 'poppins',sans-serif;
}
/*  */

.container{
    width: 100%;
    min-height: 100vh;
    background-color: #ffffff;
}
nav{
    display: flex;
    width: 100%;
    justify-content: space-around;
    height: 80px;
    line-height: 80px;
    z-index: 111;
}
.logo{
    display: flex;
    font-size: 40px;
    font-weight: 800;
    color: #20262E;
    letter-spacing: 3px;
    cursor: pointer;
    text-transform: uppercase;
}
b{
    font-size: 70px;
    color: #8f40da;
}
body{
    /* allow vertical scrolling so sections below the viewport (like About) are reachable
       keep horizontal overflow hidden to avoid layout shift */
    overflow-x: hidden;
    overflow-y: auto;
}

.navLinks{
    display: flex;
}
.navLinks li{
    list-style: none;
    margin: 0 15px;
}
.navLinks li a{
    font-size: 25px;
    color: #20262E;
    letter-spacing: 3px;
    text-decoration: none;
    text-transform: capitalize;
}
.navLinks li:hover a,
.socialIcons a:hover{
    color: #8f40da;
}

.socialIcons {
      position: fixed;       /* keeps it in place */
      top: 50%;              /* center vertically */
      left: 0;               /* stick to the left */
      transform: translateY(-50%); /* adjust for perfect centering */
      display: flex;
      flex-direction: column;
      gap: 15px;             /* space between icons */
      padding: 10px;

}
.socialIcons a{
    text-decoration: none; 
    font-size: 30px;
    color: #20262E;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wrapper{
    display: flex;
    width:100%;
    height: calc(100vh - 80px);
    justify-content: center;
    align-items: center;
    padding: 0 10%;
    overflow: hidden;
}

.wrapper::before{
    position: absolute;
    content: '';
    height: 600px;
    width: 600px;
    border-radius: 50%;
    left: -12%;
    top: 40%;
    background-color: linear-gradient(45deg,#8f40da,#FFB84C);
    animation: object1 6s linear infinite;
}
.wrapper::after{
    position: absolute;
    content: '';
    height: 200px;
    width: 200px;
    border-radius: 50%;
    left: 35%;
    top: 12%;
    background-color: linear-gradient(45deg,#8f40da,#FFB84C);
    animation: object2 6s linear infinite;
}
@keyframes object1{
    50%{
        left: -13%;
        top: 41%;
    }
}
@keyframes object2{
    50%{
        left: 35%;
        top: 10%;
    }
}
.cols0{
    width: 60%;
    z-index: 5;
}
.cols{
    width: 50%;
    position: relative;
}
.topLine{
    display: block;
    position: relative;
    font-size: 35px;
    letter-spacing: 5px;
    color: #20262E;
}
.topLine::after{
    position: absolute;
    content: '';
    height: 4px;
    width: 45px;
    bottom: 10px;
    background-color: #8f40da;
}
h1{
    display: block;
    font-size: 4.7em;
    font-weight: 900;
    color: #20262E;
}
.multiText{
    color: #8f40da;
    text-transform: capitalize;
}
p{
    display: block;
    width: 90%;
    font-size: 1.2em;
    color: #20262E;
}
/* Button */
/* Buttons */
/* Experiment */
.col1{
    display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}

.animation-wrapper {
    width: 100%;
    padding-bottom: 100%;
  }
  
  .sphere-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 580px;
    height: 580px;
    margin: -290px 0 0 -290px;
  }
  
  .sphere path {
    fill: url(#sphereGradient);
    stroke-width: 1px;
    stroke: rgba(80,80,80,.35);
    backface-visibility: hidden;
  }
  
  @media (min-width: 500px) {
    .sphere path {
      stroke-width: .4px;
    }
  }
/* Ends */
