body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;

}

.container {
    width: 100%;
    display: flex;
}

.left-side {
    width: 32%;
    background-color: whitesmoke;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    overflow: auto;
    padding-top: 8%;
}


.left-side img {
    width: 200px;
    border-radius: 50%;
    margin-top: 20px;
}

.left-side h1 {
    margin-top: 20px;
    font-size: 24px;
}

.left-side p {
    color: #555;
    margin: 5px;
    font-weight: 400;
}

.social-icons {
    margin-top: 30px;
    width: auto;
}

.social-icons .hover:hover {
    color: #7844E7;
}


.social-icons a {
    text-decoration: none;
    color: #333;
    margin: 0 10px;
    font-size: 20px;
}

.right-side {
    width: 65%;
    padding: 50px;
    margin-left: 35%;
    font-size: 16px;
    font-weight: 400;
}

.section p{
    line-height: 1.5em;
    max-width: 100%;
    word-wrap: break-word;
    color: #444;
}

.ed li{
    padding: 5px;
    line-height: 1.5em;
    color: #444;
    
}

h2 {
    font-weight: bold;
    font-size: 18px;
    color: #131313;
}

span{
    font-style: italic;
    font-size: 15px;
    font-weight: 400;
}

.sub{
    font-weight: bold;
    font-style: normal;
    color: #131313;
}

.section a{
    text-decoration: none;
    color: #7844E7;
}

#goToTopButton {
    display: none; /* Hide the button by default */
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    background-color: transparent;
    color: #7844E7;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 20px 20px;
    font-size: 16px;
}

#goToTopButton:hover {
    background-color: #f5f5f5;
    color: #7844E7;
}

/* styles.css */
.contact-button {
    display: inline-block;
    border-radius: 4px;
    padding: 0px 0px;
    border: 0px solid #; /* Outline style */
    text-decoration: none;
    color: #444; /* Button text color */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition */
}

.contact-button:hover {
    background-color: transparent; /* Background color on hover */
    color: #7844E7; /* Text color on hover */
}





/* Hide the scrollbar but allow scrolling */
.right-side::-webkit-scrollbar {
    width: 0.5em;
  }
  
  .right-side::-webkit-scrollbar-thumb {
    background-color: transparent;
  }
  
  /* For Firefox */
  .right-side-hide-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
  }
  

  /* this is to hide scroll bar from all page */

/* Customize the appearance of the scrollbar but allow scrolling */
body::-webkit-scrollbar {
    width: 0px; /* Adjust the width as needed */
  }
  
  body::-webkit-scrollbar-track {
    background: transparent; /* Track color */
    border-radius: 55px;
  }
  
  body::-webkit-scrollbar-thumb {
    background: wheat; /* Thumb color */
    border-radius: 55px;
  }
  
  /* For Firefox */
  body {
    scrollbar-width: thin;
    scrollbar-color: #f1f1f1 #888; /* Track and thumb colors */
  }
  
/* Media query for making left side on top in mobile and tablet views */
@media (max-width: 767px) {
    .container {
        flex-direction: column;
    }

    .left-side {
        width: 100%;
        order: 1;
        position: static;
        height: auto;
        overflow: visible;
        padding-bottom: 30px;
    }

    .right-side {
        width: auto;
        margin-left: 0;
        order: 2;
        overflow: scroll;
        padding: 10px 10px 10px 24px;
    }

    .left-side img {
        width: 150px;
        border-radius: 50%;
        margin-top: 20px;
    }
    .section p{
        line-height: 1.5em;
    }
    
    .ed li{
        padding: 5px;
        line-height: 1.5em;
        
    }
    h2 {
        font-weight: bold;
        font-size: 18px;
        color: #333;
    }

    .left-side h1 {
        margin-top: 10px;
        font-size: 24px;
        font-weight: bold;
    }
}

