/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f4;
    color: #333;
  }
  

  .navbar .logo {
    font-size: 24px;
    font-weight: bold;
  }
  
  .navbar nav ul {
    display: flex;
    list-style-type: none;
    padding: 0;
  }
  
  .navbar nav ul li {
    margin-right: 20px;
  }
  
  .navbar nav ul li a {
    color: white; /* Links will be white */
    text-decoration: none; /* Removes underline */
    font-size: 18px;
  }
  

  .navbar {
    background-color: #1e1e2f;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .logo {
    font-size: 1.5rem;
    color: #fff;
    font-weight: bold;
  }
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  .nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  .nav-links li a:hover {
    color: #61dafb;
  }
  
  /* Hero Section */
  .hero {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #1e1e2f, #2a2a40);
    color: white;
    text-align: center;
    padding: 0 20px;
  }
  .hero h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 300;
  }
  .hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
  }
  .hero h1 span {
    color: #61dafb;
  }
  .about-section {
    padding: 60px 20px;
    background-color: #ffffff;
    color: #333;
  }
  .container {
    max-width: 900px;
    margin: 0 auto;
  }
  .section-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1e1e2f;
    text-align: center;
  }
  .about-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
  }
  .sub-title {
    font-size: 1.3rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1e1e2f;
  }
  .education-list {
    list-style-type: square;
    padding-left: 30px;
  }
  .education-list li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #444;
  }
  .experience-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    color: #333;
  }
  .container {
    max-width: 900px;
    margin: 0 auto;
  }
  .section-title {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #1e1e2f;
    text-align: center;
  }
  
  .experience-list {
    list-style: disc;
    padding-left: 30px;
    margin-bottom: 40px;
  }
  .experience-list li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #555;
  }
  
  /* Skills Grid */
  .skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }
  .skill-group {
    flex: 1 1 250px;
    background: #fff;
    padding: 20px;
    border-left: 4px solid #61dafb;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }
  .skill-group h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1e1e2f;
  }
  .skill-group ul {
    list-style: square;
    padding-left: 20px;
  }
  .skill-group ul li {
    margin-bottom: 8px;
    color: #444;
  }
/* Skills Section */
.skills-section {
    padding: 50px 20px;
    background-color: #ffffff;
  }
  .skills-list {
    list-style: disc;
    padding-left: 30px;
    margin-bottom: 30px;
    color: #444;
  }
  .skills-list li {
    margin-bottom: 10px;
    font-size: 1rem;
  }
  
  /* Services Section */
  .services-section {
    padding: 60px 20px;
    background-color: #f5f7fa;
  }
  .service-card {
    background: #fff;
    border-left: 4px solid #61dafb;
    padding: 20px 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  .service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1e1e2f;
  }
  .service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
  }
  .services-section {
    padding: 60px 20px;
    background-color: #f5f7fa;
  }
  .service-card {
    background: #fff;
    border-left: 4px solid #61dafb;
    padding: 20px 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  .service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1e1e2f;
  }
  .service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
  }
  .portfolio-section {
    padding: 60px 20px;
    background-color: #fff;
  }
  .portfolio-tags {
    text-align: center;
    margin-bottom: 30px;
  }
  .portfolio-tags span {
    margin: 0 10px;
    padding: 5px 12px;
    background: #eee;
    border-radius: 20px;
    cursor: pointer;
  }
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  .project-card {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  .project-card img {
    max-width: 100%;
    border-radius: 6px;
  }
  .project-links {
    margin-top: 10px;
  }
  .project-links a {
    margin: 0 5px;
    color: #61dafb;
    font-weight: bold;
    text-decoration: none;
  }
  .contact-section {
    padding: 60px 20px;
    background: #f9f9f9;
  }
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto 40px;
  }
  .contact-form input,
  .contact-form textarea {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    resize: vertical;
  }
  .contact-form textarea {
    min-height: 120px;
  }
  .contact-form button {
    background-color: #61dafb;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  .contact-form button:hover {
    background-color: #21a1f1;
  }
  .contact-info {
    text-align: center;
    color: #555;
    font-size: 1rem;
  }
  .contact-info p {
    margin: 10px 0;
  }
  .contact-info a {
    color: #1e90ff;
    text-decoration: none;
  }
  
  /* Footer */
  .footer {
    background: #1e1e2f;
    color: #fff;
    padding: 20px 0;
    text-align: center;
  }
  .footer p {
    margin: 0;
    font-size: 0.9rem;
  }
            