
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  html, body {
    height: 100%;
    width: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7fa;
  }
  body {
    min-width: 1024px;
    overflow-x: auto;
  }
  
  

  .header-container {
    height: 10vh;
    width: 100%;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
  }
  
 
  #nav {
    display: flex;
    gap: 30px;
  }
  #nav a {
    color: #1e1e1e;
    font-size: 1.3rem;
    text-decoration: none;
    font-weight: 500;
  }
  

  #button button {
    width: 220px;
    height: 55px;
    border-radius: 30px;
    border: none;
    background-color: #6a4fc9;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  #button button:hover {
    background-color: #513db6;
  }
  
 
  .page1-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .page2-container{
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .page3{
    width: 100%;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .page1-container {
    background-color: #eaf0fb;
    flex-direction: row;
    padding-top: 10vh;
  }
  .page2-container, .page3 {
    background: linear-gradient(135deg, #e1eaff, #d3e0f5, #c6d6ef);
    flex-direction: column;
    padding: 3rem;
  }
  

  #profile, #info {
    flex: 1;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #pic {
    width: 65%;
    aspect-ratio: 1;
    background-color: white;
    border-radius: 50%;
    border: 2px solid #ccc;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    overflow: hidden;
  }
  #pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  

  .about {
    width: 85%;
    background-color: #ffffff;
    border-radius: 25px;
    padding: 25px;
    margin-top: 30px;
    box-shadow: 0 0 15px rgba(0,0,0,0.08);
  }
  .about h1 {
    text-align: center;
    font-size: 2.7rem;
    color: #222;
    margin-bottom: 20px;
  }
  .about p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin: 0 2rem;
  }
  .highlight {
    color: #6a4fc9;
    font-weight: 700;
  }
  

  .qualification {
    background-color: #ffffff;
    width: 75%;
    height: 75%;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0,0,0,0.1);
    margin: 3rem 0;
  }
  .qualification table {
    width: 100%;
    border-collapse: collapse;
  }
  .qualification td {
    border: 1px solid #6a4fc9;
    padding: 12px;
    text-align: center;
  }
  .qualification td:hover {
    background-color: #d6cbf2;
    color: #000;
  }
  .qualification caption {
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: bold;
  }
  

  .footer {
    height: 60px;
    width: 100%;
    text-align: center;
    padding-top: 15px;
    background-color: #f2f2f2;
    font-size: 1rem;
    color: #555;
  }

  #contact h1 {
    text-align: center;
    color: #3d2c8d;
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
  #contact-btn {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  #contact-btn button {
    width: 220px;
    height: 55px;
    border-radius: 30px;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 0 0 10px #aaa;
    cursor: pointer;
  }
  #whatsapp { background-color: #25d366; }
  #facebook { background-color: #3b5998; }
  #instagram { background-color: #e4405f; }
  #github { background-color: #000000; }
  #contact-btn button:hover {
    opacity: 0.9;
  }
  
  
  