:root {
    --primary-green: #054e09;
    --light-bg: #eef2f3;
    --dark-bg: #657e6b;
    --secondary-green:#64854f;
    --light-text: #000;
    --dark-text: #ffFf;
    --card-light: #fff;
    --card-dark: #1e1e1e;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to right, #d8ead7, #d2e59e);
    scroll-behavior: smooth;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  /* Dark mode */
  body.dark-mode {
    background: linear-gradient(to right, var(--secondary-green), var(--dark-bg));
    color: var(--light-text);
  
  }
  body.dark-mode .icon{
      color: #000 !important;
  }
  body.dark-mode .section-title {
    color: var(--primary-green);
  }
  
  
  body.dark-mode footer {
    background: var(--primary-green);
  }
  
  .toggle-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999;
    background: var(--primary-green);
    color: #fff;
    border: none;
    padding: 6px 10px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  /* HERO */
  .hero {
    height: 100vh;
    background: linear-gradient(to right, rgba(13,110,253,0.2), rgba(255,255,255,0.1)),
              url('images/hero.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 2rem;
    color: #fff;
  }
  
  .hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
  }
  
  .hero-text {
    flex: 1 1 300px;
  }
  
  .hero-text h1 {
    font-size: 3rem;
    font-weight: bold;
  }
  
  .hero-text h2 {
    font-size: 1.8rem;
    margin: 10px 0;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #f1f1f1;
  }
  
  .hero-buttons .btn {
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    background-color: var(--primary-green);
    color: #fff;
    border: none;
  }
  
  .hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    background-color: #256029;
  }
  
  .hero-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  }
  
  /* Sections */
  .section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
    font-size: 2rem;
    color: #4CAF50;
  }
  
  .about, .projects, .contact {
    padding: 60px 20px;
  }
  
  .skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }
  
  .skill {
    background: rgba(255,255,255,0.8);
    color: #000;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 200px;
    font-size: 18px;
  }
  
  .skill:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  }
  
  .progress-bar {
    width: 100%;
    height: 8px;
    background: #333;
    border-radius: 20px;
    margin-top: 5px;
    overflow: hidden;
  }
  
  .progress {
    height: 100%;
    background: #00d463; /* or themed color */
    border-radius: 20px;
  }
  
  
  /* Project Cards */
  .project-card {
    background-color: #eaf4dc;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem;
    color: #333;
  }
  
  .project-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  }
  
  .project-card img {
    height: 200px;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
  }
  
  .project-card h4 {
    color: #4CAF50;
  }
  
  .project-card p {
    color: #555;
  }
  
  .project-card a {
    text-decoration: none;
    color: #4CAF50;
  }
  
  .project-card a:hover {
    text-decoration: underline;
  }
  
  .badge {
    margin-right: 5px;
  }
  
  footer {
    text-align: center;
    padding: 1.5rem;
    background: #4CAF50;
    color: #fff;
    font-size: 0.95rem;
    margin-top: auto;
  }

  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease forwards;
  }
  
  @keyframes fadeIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
