/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  body {
    background: #f8f9fa;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  header {
    background: #101820;
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    transition: color 0.3s ease-in-out;
  }
  
  nav ul li a:hover,
  nav ul li a.active {
    color: #f2aa4c;
  }
  
  .section__text__p1 {
    text-align: center;
    color: #555;
    font-size: 1.2rem;
    margin-top: 40px;
  }
  
  .title {
    text-align: center;
    font-size: 2.5rem;
    margin: 10px auto 40px;
    color: #222;
  }
  
  .experience-details-container {
    display: flex;
    justify-content: center;
    padding: 20px;
  }
  
  .about-containers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    width: 100%;
    animation: fadeInUp 1s ease;
  }
  
  /* Certificate Card */
  .details-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateY(0);
  }
  
  .details-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  }
  
  .article-container {
    overflow: hidden;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .project-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .details-container:hover .project-img {
    transform: scale(1.05);
  }
  
  .project-title {
    text-align: center;
    padding: 15px 10px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
  }
  
  .btn-container {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .btn-color-2 {
    background-color: #f2aa4c;
    color: #101820;
  }
  
  .btn-color-2:hover {
    background-color: #101820;
    color: #f2aa4c;
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .about-containers {
      grid-template-columns: 1fr;
      padding: 0 20px;
    }
  
    nav ul {
      flex-direction: column;
      gap: 20px;
    }
  }
  
  /* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    animation: fadeIn 0.4s ease-in-out;
  }
  
  .modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
  }
  
  .modal-download {
    display: block;
    text-align: center;
    margin: 20px auto;
    padding: 10px 20px;
    background: #00bcd4;
    color: white;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s;
    width: fit-content;
  }
  
  .modal-download:hover {
    background: #019bab;
  }
  
  .close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .close:hover {
    color: #00bcd4;
  }
  
  @keyframes fadeIn {
    from {opacity: 0}
    to {opacity: 1}
  }