:root {
    --bg-color: whitesmoke;
    --text-color: black;
    --primary-color: lightgreen;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --light-shadow-color: rgba(150, 255, 52, 0.75);
    --secondary-bg-color: rgba(255, 255, 255, 0.9);
    --text-shadow-color: rgba(0, 0, 0, 0.2);
  }
  
  body {
      font-family:'Times New Roman', Times, serif;
      text-align: center;
      min-height: 100vh;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      background-image: url('resume_bg.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
  }
  
  .main-container {
      width: 100%;
      max-width: 1200px;
      padding: 200px;
      box-shadow: 0 0 30px var(--light-shadow-color);
      border-radius: 25px;
      display: flex;
      flex-direction: column;
      align-items: center;
      backdrop-filter: blur(5px);
      background-color: var(--bg-color);
      margin: 50px auto;
      transition: all 0.3s ease;
  }
  
  header {
    font-size: 11px;
      width: 75%;
      margin-bottom: 50px;
      border-radius: 20px;
      box-shadow: 0 5px 15px var(--light-shadow-color);
      padding: 25px;
  }
  
  .profile-section {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      justify-content: center;
  }
  
  .profile-pic {
      flex: 0 0 auto;
      position: relative;
      margin: 0 25px;
  }
  
  .profile-pic img {
      width: 250px;
      height: 250px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid var(--primary-color);
      box-shadow: 0 0 20px rgba(114, 215, 0, 0.6), 0 0 40px var(--light-shadow-color);
      transition: all 0.4s ease;
  }
  
  .profile-pic img:hover {
      transform: scale(1.05);
      box-shadow: 0 0 25px rgba(114, 215, 0, 0.8), 0 0 50px var(--light-shadow-color);
  }
  
  .profile-info {
      flex: 1;
      min-width: 300px;
      text-align: left;
      padding: 20px;
  }
  
  .name {
      font-size: 2.5em;
      font-weight: bold;
      color: var(--text-color);
      margin-bottom: 1px;
      text-shadow: 2px 2px 4px var(--text-shadow-color);
      padding: 10px 20px;
      display: inline-block;
  }
  
  .title {
      font-size: 1.5em;
      color: var(--text-color);
      font-weight: 600;
      margin: 15px 0;
      text-shadow: 1px 1px 2px var(--text-shadow-color);
  }
  
  .contact {
      margin: 15px 0;
  }
  
  .contact p {
      margin: 8px 0;
      font-size: 1.1em;
      color: var(--text-color);
      display: flex;
      align-items: center;
  }
  
  .contact i {
      margin-right: 10px;
      color: var(--primary-color);
  }
  
  .contact a {
      color: var(--text-color);
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s;
      border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
      padding-bottom: 2px;
  }
  
  .contact a:hover {
      color: var(--primary-color);
      border-bottom: 1px solid var(--primary-color);
  }
  
  section {
      width: 75%;
      margin-bottom: 35px;
      padding: 25px;
      border-radius: 15px;
      background: var(--secondary-bg-color);
      box-shadow: 0 5px 15px var(--shadow-color);
      transition: all 0.3s ease;
  }
  
  section:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  section h2 {
      font-size: 2em;
      margin-bottom: 20px;
      border-bottom: 2px solid rgba(114, 215, 0, 0.5);
      padding-bottom: 10px;
      color: var(--text-color);
      display: flex;
      align-items: center;
  }
  
  section h2 i {
      margin-right: 10px;
      color: var(--primary-color);
  }
  
  section h3 {
      font-size: 1.4em;
      color: var(--text-color);
      margin: 15px 0 10px;
  }
  
  .summary p {
      font-size: 1em;
      line-height: 1.5;
      text-align: justify;
      color: var(--text-color);
  }
  
  .skills-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      text-align: left;
  }
  
  .skill-category {
      margin-bottom: 25px;
  }
  
  .skill-category h3 {
      font-size: 1.3em;
      margin-bottom: 10px;
      color: var(--text-color);
      border-left: 3px solid var(--primary-color);
      padding-left: 10px;
  }
  
  .skills ul {
      list-style: none;
      padding: 0;
      margin: 0;
  }
  
  .skills li {
      margin: 10px 0;
      font-size: 1em;
      position: relative;
      padding-left: 25px;
  }
  
  .skills li:before {
      content: "▹";
      color: var(--primary-color);
      position: absolute;
      left: 0;
  }
  
  .education .degree {
      margin-bottom: 25px;
      text-align: left;
  }
  
  .education p, .certifications p {
      font-size: 1em;
      margin: 5px 0;
      display: flex;
      align-items: center;
  }
  
  .education p i, .certifications p i {
      margin-right: 10px;
      color: var(--primary-color);
  }
  
  .languages .language {
      margin-bottom: 25px;
      text-align: left;
  }
  
  .languages h3 {
      font-size: 18px;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }
  
  .languages h3 .percentage {
      font-weight: bold;
      color: #333;
  }
  
  .progress-bar {
      width: 100%;
      background-color: #e0e0e0;
      border-radius: 10px;
      height: 8px;
      margin-top: 5px;
  }
  
  .progress {
      height: 100%;
      background-color: var(--primary-color);
      border-radius: 10px;
      transition: width 0.5s ease-in-out;
  }
  
  .languages i {
      color: var(--primary-color);
      margin-right: 10px;
  }
  
  .depl-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
  }
  .depl {
      padding: 15px;
      border-radius: 15px;
      background: rgba(255, 215, 0, 0.05);
      border-left: 3px solid var(--primary-color);
      text-align: left;
  }
  
  footer {
      border-top: 2px solid rgba(0, 0, 0, 0.5);
      text-align: center;
  }
  
  footer p {
      font-size: 1em;
      color: var(--text-color);
      margin-bottom: 15px;
  }
  
  #dark-mode-checkbox {
      display: none;
  }
  
  .dark-mode-label {
        position: absolute;
        top: 50px;
        right: 10px;
        width: 111px;
        height: 25px;
        border: 2px solid var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: bold;
        color: white;
        cursor: pointer;
        border-radius: 20px;
        z-index: 100;
        box-shadow: 0 0 10px rgba(114, 215, 0, 0.3);
        background-color: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(5px);
        transition: all 0.25s ease;
  }
  
  .dark-mode-label::before {
      content: "Dark Mode";
      transition: all 0.25s ease;
  }
  
  #dark-mode-checkbox:checked ~ .dark-mode-label {
      background-color: rgba(0, 0, 0, 0.3);
      color: white;
  }
  
  #dark-mode-checkbox:checked ~ .dark-mode-label::before {
      content: "Light Mode";
      transition: all 0.25s ease;
  }
  
  #dark-mode-checkbox:checked ~ .main-container {
    --bg-color: black;
    --text-color: whitesmoke;
    --primary-color: black;
    --shadow-color: rgba(255, 255, 255, 0.1);
    --light-shadow-color: black;
    --secondary-bg-color: rgba(51, 51, 51, 0.9);
    --text-shadow-color: rgba(255, 255, 255, 0.2);
  }