/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
  }
  
  /* Container */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  /* Navbar */
  .navbar {
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 999;
  }
  
  .nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: #000000;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
  }
  
  .nav-links a.btn-primary {
    background: #007d43;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
  }
  
  /* Hero Section */
  .hero {
    padding: 4rem 0;
    text-align: center;
    background: black;
    color: white;
  }
  
  .hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: white;

  }
  
  .hero-buttons a {
    margin: 0 1rem;
  }
  
  /* Buttons */
  .btn-primary {
    background-color: #007d43;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
  }
  
  .btn-primary:hover {
    background-color: #007d43;
  }
  
  .btn-secondary {
    background-color: #007d43;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
  }
  
  .btn-secondary:hover {
    background-color: #000;
  }
  
  /* Sections */
  .section {
    padding: 4rem 0;
  }
  
  .section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  /* Light BG */
  .light-bg {
    background-color: #f4f4f4;
  }
  
  /* Features Section */
  .features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .feature h3 {
    margin-bottom: 0.5rem;
  }
  
  @media (min-width: 768px) {
    .features {
      flex-direction: row;
      justify-content: space-between;
    }
  }
  
  /* Cards */
  .cards {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
  }
  
  .card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #ddd;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }
  
  
  @media (min-width: 768px) {
    .cards {
      flex-direction: row;
    }
  }
  
  /* Projects */
  .project-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }
  
  .project {
    background-color: #ffffff;
    padding: 2rem;
    border: 1px solid #ddd;
    border-radius: 6px;
  }
  
  @media (min-width: 768px) {
    .project-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  /* CTA Section */
  .cta-section {
    background-color: black;
    color: white;
    text-align: center;
    padding: 3rem 1rem;
  }
  
  .cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .cta-section a {
    background-color: #007d43;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;

    font-weight: bold;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 1.5rem;
    background-color: #f1f1f1;
    color: #555;
    font-size: 0.9rem;
  }
  /* Recognitions Section */
#recognitions {
    background-color: black;
    padding: 4rem 1rem;
    text-align: center;
    color: white;
  }
  
  #recognitions h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
  }
  
  #recognitions p {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 2rem;
  }
  
  #recognitions ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
    text-align: left;
    font-size: 1rem;
    color: white;
  }
  
  #recognitions ul li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
  }
  
  #recognitions ul li::before {
    position: absolute;
    left: 0;
    top: 0;
  }
  
  #recognitions img {
    margin-top: 2rem;
    height: 80px;
    opacity: 0.7;
    background-color: white;
  }
  
  /* Contact Section Layout */
.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
    justify-content: space-between;
  }
  
  @media (min-width: 768px) {
    .contact-wrapper {
      flex-direction: row;
    }
  }
  
  /* Left Column - Info */
  .contact-info {
    flex: 1;
  }
  
  .contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .contact-info p {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .contact-info a {
    color: #0073b1; /* LinkedIn blue */
    text-decoration: none;
  }
  
  .contact-info a:hover {
    text-decoration: underline;
  }
  
  /* Right Column - Form */
  .contact-form {
    flex: 1;
  }
  
  .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
  }
  
  .contact-form .btn-primary {
    width: fit-content;
    padding: 0.75rem 0.75rem;
    background-color: #007d43;
    color: white;
    font-size:medium;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .contact-form .btn-primary:hover {
    background-color: #222;
  }
  .animated-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 10;
  }
  
  /* .animated-bg-shapes span {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 255, 128, 0.15);
    animation: float 6s ease-in-out infinite;
  } */
  
  .circle {
    width: 100px;
    height: 100px;
    left: 20%;
    top: 30%;
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 255, 128, 0.15);
    animation: float 6s ease-in-out infinite;
  }
  
  .triangle {
    width: 0;
    border-radius: 0%;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 60px solid rgba(0, 255, 128, 0.2);
    top: 60%;
    left: 70%;
    position: absolute;

    animation: float 6s ease-in-out infinite;
    animation: floatReverse 8s ease-in-out infinite;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
  }
  
  @keyframes floatReverse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(20px); }
  }
  /* Base nav styling */
.navbar {
  background: #fff;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    width: 100%;
    padding: 1rem 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .nav-links.nav-active {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}
html {
  scroll-behavior: smooth;
}
section{
  scroll-margin-top: 50px;
}

.linkedin-feed-scroll {
  overflow: hidden;
  background: #f9f9f9;
  padding: 1rem 0;
  position: relative;
}

.scroll-container {
  overflow-x: auto;
  scroll-behavior: smooth;
}

.scroll-track {
  display: flex;
  gap: 2rem;
  animation: scroll-left 30s linear infinite;
  width: max-content;
  will-change: transform;
  pointer-events: auto;
}

.linkedin-feed-scroll:hover .scroll-track {
  animation-play-state: paused;
}


.post-card {
  position: relative;
  min-width: 300px;
  max-width: 400px;
  background: #007d43;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.08);
  font-size: 1rem;
  flex-shrink: 0;
  text-decoration: none;
  text-shadow: white;
  font-weight: bold;
  color: white ;
  transition: transform 0.2s;
}

.post-card:hover {
  transform: scale(1.02);
}

.post-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.1s;
  border-radius: 0 0 8px 8px;
}

.post-card:hover .overlay {
  opacity: 1;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* Linked project card styles */
.project-link {
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-link .project {
  background-color: #0f172a;
  color: #ffffff;
  border: 1px solid #1e293b;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.project-link .project:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 255, 136, 0.1);
  border-color: #00ff88;
  color: #00ff88;
}

.project-link .project:active {
  transform: scale(0.98);
  box-shadow: none;
}

.project h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.project p {
  font-size: 0.95rem;
  color: #ccc;
  transition: color 0.3s ease;
}


  
  