body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #717f8d;
    color: #222;


}
header {
    background: linear-gradient(90deg, #f8fafc 60%, #e3f0ff 100%);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 0 0 8px 0;
    position: fixed;
    top: 0;
  left: 0;
  width: 100%;

}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0 0 0;
    max-width: 800px;
    margin: 0 auto;
    
}
.logo {
  font-size: 1.7rem;
  font-weight: 700;
  color: #060b10;
  letter-spacing: 2px;
  background-attachment: fixed;
}.free {
  background: linear-gradient(to right, blue, red);

  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  background-attachment: fixed;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
}
.nav-links li a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.2s;
}
.nav-links li a:hover {
    color: #1a73e8;
}
.hero-section {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    margin-top: 36px;
    margin-bottom: 48px;
    padding: 48px 24px 32px 24px;
}
.hero-section img {
    border: 4px solid #e3f0ff;
}
.hero-section h1 {
    font-size: 2.5rem;
    color: #222;
}
.hero-section .lead {
    color: #555;
}
.hero-section .badge {
  
    font-size: 1rem;
  
}
.hero-section .btn {
  gap: 10px;
    margin-top: 18px;
    font-size: 1.1rem;
    padding: 12px 36px;
}
.subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 24px;
}
.cta-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 12px 32px;
    background: #1a73e8;
    color: #fff;
    border-radius: 24px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(26,115,232,0.08);
    transition: background 0.2s, box-shadow 0.2s;
}
.cta-btn:hover {
    background: #1761c7;
    box-shadow: 0 4px 16px rgba(26,115,232,0.12);
}
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}
main {
    margin: 40px auto;
    max-width: 800px;
    padding: 0 24px;
}
section {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-bottom: 32px;
    padding: 40px 32px;
    transition: box-shadow 0.2s;
}
section:hover {
    box-shadow: 0 6px 24px rgba(26,115,232,0.08);
}
section h2 {
    margin-top: 0;
    color: #1a73e8;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 18px;
}
.skills .bg-light {
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
    padding: 18px 0;
}
.projects .card {
    border-radius: 14px;
    border: none;
    transition: box-shadow 0.2s;
}
.projects .card:hover {
    box-shadow: 0 6px 24px rgba(26,115,232,0.10);
}
.projects .card-title {
    font-size: 1.2rem;
    font-weight: 600;
}
.projects .badge {
    margin-right: 0.3em;
    margin-bottom: 0.3em;
}

.img {
  width: 300px;
  height: 200px;
  border-radius: 8px; /* optional: rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* optional: subtle shadow */
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}
.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    resize: none;
    transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border: 1.5px solid #1a73e8;
    outline: none;
}
.contact-form button {
    padding: 12px 0;
    background: #1a73e8;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-form button:hover {
    background: #1761c7;
}
footer {
    background: #f1f3f4;
    text-align: center;
    padding: 24px 0;
    font-size: 1rem;
    color: #888;
    margin-top: 48px;
  
}
.contact-form button {
  background: linear-gradient(90deg, #160270 0%, #0e2597 100%);
  color: #ffffff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(247,107,28,0.08);
}
.contact-container h1 {
  margin-bottom: 24px;
  color: #1a73e8;
  font-size: 2.2em;
  letter-spacing: 1px;
  text-align: center;

}
@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1400px;
  }
  .hero-section {
    padding: 100px 0 120px 0;
    font-size: 2.5rem;
  }
  .skills .bg-light, .projects .card {
    font-size: 1.3rem;
    padding: 2.5rem 1.5rem;
  }
  .projects .card-title {
    font-size: 2rem;
  }
  .contact-form {
    font-size: 1.2rem;
  }
}

@media (max-width: 800px) {
    .navbar {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    .nav-links {
        gap: 18px;
    }
    .hero-section h1 {
        font-size: 1.5rem;
    }
    .hero-section {
        padding: 24px 4px 18px 4px;
    }
    section {
        padding: 12px 2px;
    }
    main {
        padding: 0 2px;
    }
}