/* General Layout */
.resume-container {
    display: flex;
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     */
     font-family: 'times new roman', sans-serif;
    text-align: justify;
    width: 100%;
    min-height: 100vh;
  }
  
  /* Left Section */
  .box1 {
    background-color: #002244;
    color: white;
    width: 30%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;

    
  }


  
  /* Profile Photo */
  .photo {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center image horizontally */
    justify-content: center;
  }
  
  .photo img {
    height: 200px;
    width: 190px;
    border-radius: 50%;
    /* box-shadow: 0 0 15px #ffffff; */
  }
  
  
  .photo ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    text-align: center;
    font-size: 14px;

    
  }
  
  .photo ul li {
    margin-bottom: 8px;
    opacity: 0.9;
    

    display: flex;
    align-items: flex-start;
    justify-content:flex-start;
    padding: 0%;
    margin-left: 0%;
  }
  
  .photo ul a {
    color: #4dabf7;
    text-decoration: none;
    font-weight: bold;

    
  }
  
  .photo ul a:hover {
    text-decoration: underline;
  }
  
  /* Skills Section */
  .skills h1, .achievements h1 {
    font-size: 22px;
    margin-bottom: 10px;
    border-bottom: 2px solid white;
    padding-bottom: 5px;
  }
  
  .skill-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  
  .skill-buttons button {
    background: linear-gradient(135deg, #1e90ff, #00c6ff);
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  
  .skill-buttons button:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 10px rgba(0, 198, 255, 0.3);
  }
  
  .achievements ul {
    list-style: none;
    padding-left: 0;
  }
  
  .achievements li {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  /* Right Section */
  .box2 {
    background: linear-gradient(to right, #f4f4f4, #dcdcdc);
    color: #002244;
    width: 70%;
    padding: 30px;
  }
  
  .name {
    font-size: 38px;
    font-weight: bold;
    margin-top: 0;
  }
  
  /* Headings */
  .box2 h3 {
    margin-top: 20px;
    color: #002244;
  }
  
  .section-divider {
    margin: 20px 0;
    height: 2px;
    background-color: #002244;
    border: none;
  }
  
  /* Education & Experience */
  .edu-item {
    margin-bottom: 15px;
  }
  
  .edu-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .edu-cgpa {
    font-weight: bold;
    color: #002244;
    font-size: 14px;
  }
  
  .experience-item {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
  }
  
  .experience-date {
    font-size: 0.9rem;
    color: #555;
  }
  
  ul {
    padding-left: 20px;
    margin: 0;
  }
  
  li {
    margin-bottom: 8px;
    font-size: 14px;
  }
  
  a {
    color: #003366;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
