body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #0b0216;
    color: white;
  }
  
  .hero {
    background-color: #0b0115;
    color: #ffffff;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .hero-content {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  
  .hero-text {
    flex: 1 1 500px;
  }
  
  .hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ccc;
  }
  
  .hero-image {
    flex: 1 1 400px;
    text-align: center;
  }
  
  .hero-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 50%;
  }
  
  
  
  .work {
    background-color: #f5f9f9;
    color: #1a1a1a;
    padding: 60px 80px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    text-align: center;
  }
  
  .work h2 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  .projects-section {
    background: #f9fcfe;
    padding: 60px 20px;
    text-align: center;
  }
  
  .section-title {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: #1e1e1e;
  }
  
  .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
  }

  .curve-divider {
    position: relative;
    width: 100%;
    line-height: 0;
    margin: 0;
    padding: 0;
    background: none; /* Ensure no background color */
    overflow: hidden;  /* Hide any overflow */
  }
  
  .curve-divider svg {
    display: block;
    width: 100%;
    height: auto;
  }

  svg {
    margin: 0;
    padding: 0;
    border: none;
    display: block;
  }
  
  
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
  }
  
  .project-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    text-align: left;
    transition: transform 0.3s ease;
  }
  
  .project-card:hover {
    transform: translateY(-5px);
  }
  
  .project-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
  }
  
  .project-card h3 {
    font-size: 1.4rem;
    margin: 0.5rem 0;
  }
  
  .project-card p {
    font-size: 1rem;
    color: #444;
  }

  .image-wrapper {
    position: relative;
    overflow: hidden;
  }
  
  .image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
  }
  
  .image-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 70%; /* Adjust as needed */
    background: linear-gradient(to top, rgba(229, 228, 230, 0.8), rgba(235, 232, 236, 0));
    pointer-events: none;
  }
  
  
  .tech-tags span {
    display: inline-block;
    background-color: #eef1f5;
    color: #333;
    padding: 4px 10px;
    margin: 4px 4px 0 0;
    border-radius: 5px;
    font-size: 0.85rem;
  }
  
  .demo-link {
    display: inline-block;
    margin-top: 12px;
    font-weight: 600;
    color: #0a66c2;
    text-decoration: none;
  }
  
  .footer {
    background: #0b0115;
    color: #f4f4f4;
    position: relative;
    padding-bottom: 40px;
    overflow: hidden;
  }
  
  .footer-curve-wrapper {
    position: relative;
    width: 100%;
    line-height: 0;
    height: 100px;
    margin-bottom: -1px; /* hides the edge line */
  }
  
  .footer-curve-wrapper svg {
    display: block;
    width: 100%;
    height: 100px;
  }

  .footer p {
    text-align: left;
  }
  .footer-content {
    padding-top: 20px;
  }
  
  .footer-icons {
    margin-top: 15px;
    text-align: right;
  }
  
  .footer-icons a {
    color: #f4f4f4;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
  }
  
  .footer-icons a:hover {
    color: #0a66c2;
  }
  