/* Reset default margin/padding */
body, html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
  }
  body {
    font-family: 'Roboto', sans-serif;
  }
  body {
    background-color: #eafaf1;
    font-family: 'Roboto', sans-serif;
  }              
  
  
  /* Fix navbar top spacing and make fixed */
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
/* Smooth default color */
.navbar-nav .nav-link {
    color: #adb5bd; /* Soft gray */
    margin-right: 20px; /* Adds spacing between links */
    transition: color 0.3s ease;
    font-weight: 500;
  }
  
  /* White color on hover */
  .navbar-nav .nav-link:hover {
    color: #ffffff !important;
  }
  body {
    background-color: #eafaf1; /* Light green shade */
    font-family: 'Roboto', sans-serif;
  }
  
  
  body {
    padding-top: 70px; /* space for fixed navbar height */
  }
  
  /* Navbar brand and center nav styling */
  .navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
  }
  .navbar-nav .nav-link {
    color: #28a745 !important; /* green color */
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .navbar-nav .nav-link:hover {
    color: #1e7e34 !important; /* darker green on hover */
  }
  
  
  .navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .navbar-nav .nav-link:hover {
    color: #28a745;
  }
  
  /* Social icons on navbar */
  .navbar .bi {
    transition: color 0.3s ease;
  }
  
  .navbar .bi:hover {
    color: #28a745;
  }
  
  /* About Section */
  #about h2 {
    color: #28a745;
    font-weight: 700;
  }
  
  #about p.lead {
    font-size: 1.1rem;
    color: #555;
  }
  
  #about img {
    border-radius: 0; /* rectangle shape */
    max-height: 320px;
    object-fit: cover;
  }
  
  /* Skills Section */
  .skills-color {
    color: #28a745;
    font-weight: 700;
  }
  
  .skill-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
  }
  
  .skill-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
  }
  
  .skill-img {
    max-height: 80px;
    object-fit: contain;
  }
  
  /* Education Section */
  #education h2 {
    color: #28a745;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
  }
  
  /* Timeline Styling */
  .timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
    border-left: 4px solid #28a745;
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 25px;
  }
  
  .timeline-icon {
    position: absolute;
    left: -38px;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #28a745;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
  }
  
  .timeline-content h5 {
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #212529;
  }
  
  .timeline-content h6 {
    font-weight: 400;
    color: #6c757d;
    margin-bottom: 0.5rem;
  }
  
  .timeline-content p {
    color: #555;
    margin-bottom: 0;
  }
  
  /* Contact Section */
  #contact h2 {
    color: #28a745;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  #contact .btn-success {
    background-color: #28a745;
    border-color: #28a745;
    font-weight: 600;
    transition: background-color 0.3s ease, border-color 0.3s ease;
  }
  
  #contact .btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
  }
  
  /* Responsive adjustments */
  @media (max-width: 767.98px) {
    .navbar .mx-auto {
      display: none !important; /* Hide center nav on small screens */
    }
    body {
      padding-top: 110px; /* accommodate mobile navbar height */
    }
  }
  
  footer {
    background-color: #111; /* Darker background */
    color: #ccc;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    border-top: 2px solid #28a745;
  }
  
  footer a {
    color: #28a745;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  footer a:hover {
    color: #fff;
    text-decoration: underline;
  }
  
  footer p {
    margin: 6px 0;
    font-weight: 500;
    letter-spacing: 0.5px;
  }  