/* General Reset */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: 'Arial', sans-serif;
    color: #fff;
}

body {
    line-height: 1.6;
    background: #fff;
}

/* Header */
header {
    padding: 20px 10%;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0px;
    background-color: #1d1d1d;
    z-index: 1000;
}

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

header .logo {
    font-size: 1.2rem;
    font-weight: bold;
}

header nav ul {
    display: flex;
    gap: 20px;
}

header nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    
}

/* Hero Section */
.hero {
    text-align: left;
    padding: 20px 10%;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero .subtitle {
    font-size: 1.1rem;
    color: #dbdbdb;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #f0ecec;
}

.hero .description {
    font-size: 1.1rem;
    color: #dbd5d5;
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 600;
    margin: 20px;
}

/* Profile Section in Grid */
.profile-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    align-items: center;
    margin-top: 30px;
    vertical-align: center;
}

.profile-image img {
    width: 80px;
    height: auto;
    border-radius: 50%;
    margin: 40px;
}

.profile-grid .profile-text {
    text-align: left;
}

.profile-grid .profile-text p:first-child {
    font-weight: bold;
    font-size: 1.2rem;
}

.profile-grid .profile-text p:last-child {
    color: #555;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }

    .profile-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .profile-grid .profile-text {
        text-align: center;
    }
}





:root {
    --bg-color: #f8f8f8;
    --text-color: #333;
    --button-bg: #fff;
    --button-border: #ccc;
    --button-hover-bg: #e0e0e0;
    --button-hover-border: #999;
  }

  body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: var(--text-color);
    line-height: 1.6;
  }

  .work-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background-color:var(--bg-color);
    margin: 20px 120px;
    border-radius: 20px;
    border: 2px solid #bbb;
  }

  .content {
    flex: 2;
    padding-left: 20px;
  }

  .content h1 {
    font-size: 2rem;
    margin: 0 0 10px;
  }

  .content p {
    margin: 0 0 20px;
  }

  .content button {
    padding: 10px 20px;
    font-size: 1rem;
    color: var(--text-color);
    background-color: var(--button-bg);
    border: 1px solid var(--button-border);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .content button:hover {
    background-color: var(--button-hover-bg);
    border-color: var(--button-hover-border);
  }

  .images {
    flex: 1;
    display: flex;
    align-items: end;
    justify-content: right;
    position: relative;
  }

  .images img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .images .mobile-image {
    width: 40%;
    position: absolute;
    left: 30%;
    bottom: 0;
    transform: translateY(10%);
  }

  .images .desktop-image {
    width: 60%;
  }

  @media (max-width: 768px) {
    .work-container {
      flex-direction: column;
      text-align: center;
      margin:20px;
      padding: 20px;
    }

    .images {
      justify-content: center;
    }

    .images .mobile-image {
      width: 60%;
      position: static;
      transform: translateY(0);
      margin-bottom: 20px;
    }

    .images .desktop-image {
      width: 80%;
    }
  }





  :root {
    --bg-color: #121212;
    --text-color: #fff;
    --secondary-color: #bbb;
    --card-bg: #1d1d1d;
  }

  body {
    margin: 0;
    font-family: Poppins, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
  }

  .container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
  }

  .about {
    text-align: center;
    margin-bottom: 40px;
  }

  .about h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .intro {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
  }

  .profile-pic {
    text-align: center;
    margin: 20px 0;
  }

  .card .profile-pic img {
    border-radius: 50%;
    width: 120px;
    height: 120px;
  }

  .grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 parts in total */
    grid-gap: 20px;
  }

  .card {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .card p {
    color: var(--secondary-color);
    font-size: 0.9rem;
  }

  .card img {
    width: 40px;
    height: auto;
    margin: auto;
    display: block;
    padding: 8px;
  }
  .item7 .inline{
      display: flex;
      flex-direction: row;
      justify-content: space-evenly;
  }

  /* Responsive Grid Items */
  .item1 { grid-column: span 3; } /* Row 1: First part spans 3 */
  .item2 { grid-column: span 2; } /* Row 1: Second part spans 2 */
  .item3 { grid-column: span 1; } /* Row 2: First part spans 1 */
  .item4 { grid-column: span 1; } /* Row 2: Second part spans 1 */
  .item5 { grid-column: span 3; } /* Row 2: Third part spans 3 */
  .item6 { grid-column: span 2; } /* Row 3: Framer Expert spans 2 */
  .item7 { grid-column: span 2; } /* Row 3: Next item spans 2 */
  .item8 { grid-column: span 1; } /* Row 3: X spans 1 */

  /* Mobile Adjustments */
  @media (max-width: 768px) {
    .grid {
      grid-template-columns: 1fr; /* Single column layout for small screens */
    }

    .item1, .item2, .item3, .item4, .item5, .item6, .item7, .item8 {
      grid-column: span 1; /* Each item spans the full width */
    }
    
  }