/* General styles */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    animation: fadeIn 1s ease-in-out;
  }
  
  h1, h2 {
    font-family: 'Montserrat', sans-serif;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
  }
  
  header {
    text-align: center;
    background-color: #333;
    color: white;
    padding: 60px 0;
  }
  
  header h1 {
    font-size: 3em;
    margin-bottom: 10px;
  }
  
  header p {
    font-size: 1.2em;
    margin-bottom: 20px;
  }
  
  header a {
    margin: 0 10px;
    padding: 10px 20px;
    background-color: #f39c12;
    color: white;
    text-decoration: none;
    border-radius: 5px;
  }
  
  header a:hover {
    background-color: #e67e22;
  }
  
  section {
    padding: 50px 20px;
  }
  
  .skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 60px;
    box-sizing: border-box;
  }
  
  .carousel {
    overflow: hidden;
    padding: 30px 0;
    margin: 0 -20px;
  }
  
  .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 40px;
    padding: 0 20px;
  }
  
  .carousel-item {
    flex: 0 0 100%;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    position: relative;
    min-height: 300px;
    box-sizing: border-box;
    opacity: 1;
    transform: scale(0.98);
    transition: transform 0.3s ease-in-out;
  }
  
  .experience-date {
    position: absolute;
    top: 15px;
    right: 30px;
    background: #007bff;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
  }
  
  .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 123, 255, 0.8);
    border: none;
    color: white;
    padding: 20px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: background-color 0.3s;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }
  
  .carousel-nav:hover {
    background: rgba(0, 123, 255, 1);
  }
  
  .carousel-nav.prev {
    left: 20px;
  }
  
  .carousel-nav.next {
    right: 20px;
  }
  
  .carousel-item.active {
    transform: scale(1);
  }
  
  .carousel-item:not(.active) {
    pointer-events: none;
  }
  
  footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  .fade-in {
    animation: fadeIn 1.5s ease-in-out;
  }
  
  .contact-me {
    font-size: 1.2em;
    margin-top: 20px;
  }
  
  .contact-me a {
    color: #f39c12;
    text-decoration: none;
  }
  
  .contact-me a:hover {
    color: #e67e22;
  }
  
  .tech-icons {
    position: absolute;
    top: 15px;
    left: 30px;
    display: flex;
    gap: 10px;
  }
  
  .tech-icons i {
    font-size: 1.2rem;
    color: #007bff;
    transition: transform 0.2s ease-in-out;
  }
  
  .tech-icons i:hover {
    transform: scale(1.2);
    color: #0056b3;
  }
  
  .carousel-item h3 {
    margin-top: 50px;
  }
  
  .tech-icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: middle;
  }
  