    /* ---------------------------------------------- font ---------------------------------------------- */

.merriweather-regular {
  font-family: "Merriweather", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

/*---------------------------------------------------- font-end ---------------------------------------------- */


    :root {
      --bg:#ffffff;
      --card:#fafafa;
      --muted:rgb(100,140,145);
      --accent:rgb(132,163,166);
      --accent-2:rgb(190, 204, 205);
      --git-c:rgb(168, 181, 182);
      --radius:5px;
      --mono:'Poppins', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    .imgboarder {
    border: 0px solid white;
    opacity: 0.9;
    border-radius: 0px;
    width: 100%;
}

    * {box-sizing:border-box;margin:0;padding:0}
    html, body {
      height: 100%;
      scroll-behavior: smooth;
    }
    body {
      font-family: var(--mono);
      background: var(--bg);
      color: rgb(100,140,145);
      overflow-x: hidden;
    }

    a {color:inherit;text-decoration:none}
    .container {max-width:1100px;margin:0 auto;padding:30px}

    header {
      position:fixed;top:0;left:0;right:0;z-index:80;
      background:rgba(132,163,166,0.08);
      backdrop-filter:blur(8px)
    }
    .nav {
      display:flex;align-items:center;justify-content:space-between;
      padding:10px 18px
    }
    .brand {
      opacity: 0;
      transition: opacity 0.4s;
    }
    .brand.visible {
      opacity: 1;
    }

    nav ul {
      display: flex;
      gap: 18px;
      list-style: none;
      font-size: 0.9rem;
    }

    .menu-toggle {
      display: none;
      background: none;
      border: 0;
      font-size: 20px;
      font-weight: 200;
      color: var(--muted);
      cursor: pointer;
    }

    @media(max-width:768px){
      nav ul {
        display: flex;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 50px;
        right: 8px;
        padding: 12px;
        border: 1px solid rgba(132,163,166,0.3);
        border-radius: 2px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-16px) scale(0.98);
        transition: opacity 0.35s cubic-bezier(.4,0,.2,1), transform 0.35s cubic-bezier(.4,0,.2,1);
        z-index: 100;
      }
      nav ul.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
      }
      .menu-toggle {
        display: block;
      }
    }

/* Hero Section */
.hero {
  min-height: calc(75vh - 60px);

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* top | right | bottom | left */
    padding: 20px 40px 0 40px;
}

.hero h1 {
      font-size:clamp(2rem,6vw,3rem);
      color:var(--muted);margin-bottom:0px
    }
    
    .hero p {
      max-width:600px;margin:0 auto 20px;color:var(--accent)
    }

  .hero .btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--accent-2);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  transition: background 0.4s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(132,163,166,0.10);
    }

    .hero .btn:hover {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 16px rgba(132,163,166,0.13);
    }

    section {
  padding: 0 10px 10px;
  scroll-margin-top: 70px;
    }
    .section-title {
      margin-bottom: 6px;
      margin-top: 0;
      text-align: center;
    }
    .section-title h2 {
      color: var(--accent);
      font-family: "Merriweather", serif;
      font-weight: 700;
      font-size: 1.7rem;
      letter-spacing: 0.02em;
      margin-bottom: 10px;
    }

    .grid {display:grid;gap:20px}
    
    .card {
      background: var(--card);
      padding: 15px 24px 22px 24px;
      border-radius: 2px;
      transition: box-shadow 0.25s, transform 0.18s;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      position: relative;
      overflow: hidden;
      margin-bottom: 28px;
    }

    .card h3 {
  font-family: var(--mono);
      font-size: 1.18rem;
      font-weight: 400;
      color: var(--accent);
      padding-left: 5px;
      padding-bottom: 5px;
      margin-bottom: 14px;
      margin-top: 0px;
      border-bottom: 1px solid var(--accent-2);
      letter-spacing: 0.01em;
    }
    
    .muted {
      color:var(--muted);
      padding-left:5px;
    }

    .container > .card:not(:last-child) {
      margin-bottom: 28px;
    }


    @media(min-width:768px){
      .grid-3 {grid-template-columns:repeat(3,1fr)}
      .grid-2 {grid-template-columns:repeat(2,1fr)}
    }

    /* Skills Section */
    .skills-list {
        
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      list-style:none;
      padding:0;
      margin:0px 0;
      justify-content:center;
    }
    .skills-list li {
      color: var(--accent);
      padding: 8px 14px;
      border-radius: 5px;
      font-size: 0.95rem;
      transition: all 0.25s ease;
      cursor: default;
      border: 1px solid var(--accent-2);
    }


        /* Skills Section - small*/
    .skills-list-2 {
        
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      list-style:none;
      padding:0;
      margin:0px 0;
      justify-content:center;
    }
    .skills-list-2 li {
      color: var(--accent);
      padding: 6px 10px;
      border-radius: 5px;
      font-size: 0.8rem;
      transition: all 0.25s ease;
      cursor: default;
      border: 1px solid var(--accent);
      background-color:rgba(190, 204, 205, 0.1);
    }


    /* Contact Section */
    .contact-icons {
      display:flex;gap:15px;justify-content:center;
    }
    .contact-icons a {
      font-size:1.5rem;color:var(--muted);
      transition:color 0.3s
    }
    .contact-icons a:hover {color:var(--accent)}

    footer {
      padding: 10px;
      text-align: center;
      color: rgba(152, 163, 164, 75%);
      font-size: 12px;
      background: rgba(152, 163, 164, 5%);
      backdrop-filter: blur(8px);
    }

/* Carousel Styles */
.carousel {
  position: relative;
  margin: 0 auto 16px auto;
  overflow: hidden;
  width: 100%;
  max-width: 500px;
}
.carousel-images {
  display: flex;
  transition: transform 0.5s ease;
  width: 300%;
}
.carousel-image {
  width: calc(100% / 3);
  min-width: 0;
  box-sizing: border-box;
  padding: 0 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.carousel input[type="radio"] {
  display: none;
}
#carousel-1:checked ~ .carousel-images {
  transform: translateX(0);
}
#carousel-2:checked ~ .carousel-images {
  transform: translateX(-33.333%);
}
#carousel-3:checked ~ .carousel-images {
  transform: translateX(-66.666%);
}
.carousel-image {
  width: 100%;
  box-sizing: border-box;
  padding: 0 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel-image img {
  width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.carousel-controls label {
  width: 14px;
  height: 14px;
  border-radius: 40%;
  background: var(--accent-2);
  cursor: pointer;
  display: inline-block;
  border: none;
}
#carousel-1:checked ~ .carousel-controls label[for="carousel-1"],
#carousel-2:checked ~ .carousel-controls label[for="carousel-2"],
#carousel-3:checked ~ .carousel-controls label[for="carousel-3"] {
  background: var(--accent);
}
/* Add modal styles and zoom button styles */
.zoom-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  background: rgba(190, 204, 205, 0.8); 
  border: none;
  color: #fff;
  font-size: 1.4rem;
  border-radius: 8px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(132,163,166,0.18);
  transition: background 0.2s;
}
.zoom-btn:hover {
  background: var(--accent-2);
  color: #fff;
}
.carousel-image {
  position: relative;
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(184, 184, 184, 0.7);
  justify-content: center;
  align-items: center;
}
.modal.open {
  display: flex;
}
.modal img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 5px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.modal .close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  background: transparent;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(132,163,166,0.12);
  cursor: pointer;
  z-index: 10001;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.modal .close-btn:hover {
  background: none;
  color: var(--accent);
  border-color: var(--accent);
}

.github-btn-container {
  width: 100%;
  padding: 0;
  text-align: left;
  margin-top: 18px;
  border-radius: 6px;
}
.github-btn {
  display: inline-block;
  background-color: var(--accent-2);
  padding: 6px 18px;
  color: white;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.95rem;
  
}

.github-btn i {
  margin-right: 6px;
  color: white;
}

/* Typewriter animation for hero title */
@keyframes typewriter {
  from { width: 0; }
  to { width: 13.5em; }
}
@keyframes blinkTextCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.hero-title-type {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  font-family: "Merriweather", serif;
  font-weight: 400;
  font-style: normal;
}
.typewriter-cursor {
  display: inline-block;
  color: #8ea6ad;
  animation: blinkTextCursor 0.7s infinite;
}
  /* Excel 2-picture Carousel Styles */
#carousel-excel-1:checked ~ .carousel-images.carousel-images-excel {
  transform: translateX(0);
}
#carousel-excel-2:checked ~ .carousel-images.carousel-images-excel {
  transform: translateX(-50%);
}
.carousel-images-excel {
  display: flex;
  transition: transform 0.5s ease;
  width: 200%;
}
#carousel-excel-1:checked ~ .carousel-controls label[for="carousel-excel-1"],
#carousel-excel-2:checked ~ .carousel-controls label[for="carousel-excel-2"] {
  background: var(--accent);
}

/* Remove the menu overlay styles and hide the overlay */
.menu-overlay {
  display: none !important;
}

.brand-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.dash-list {
  list-style-type: none;
  padding-left: 0;
  margin-left: 0px;
}
.dash-list li::before {
  content: "-"; /* en dash */
  color: var(--muted);
  font-weight: 400;
  font-size: 1.15em;
  letter-spacing: 0.4em;
}

/* Copy Toast Styles */
.copy-toast {
  position: fixed;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 10px 28px;
  border-radius: 8px;
  font-size: 1.1em;
  box-shadow: 0 2px 12px rgba(132,163,166,0.13);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  background: rgba(132,163,166,0.70);
}

.copy-toast.show {
  opacity: 1;
  pointer-events: auto;
}

    .exp-org {
      font-weight: bold;
      color: var(--accent);
      margin-left: 5px;
      display: inline-block;
    }
    .exp-date {
      font-weight:bold;
      color: var(--accent-2);
      margin-left: 5px;
      display: inline-block;
      font-size: 0.95em;
    }
    .exp-meta {
      padding: 4px 0 6px 0;
      margin-bottom: 8px;
      display: inline-block;
      font-size: 0.95em;
    }

    .exp-star 
    {
      margin-left: 5px;
      display: inline-block;
    }