* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
  }
  
  body, html {
    height: 100%;
    width: 100%;
  }
  

  .hero {
    background: url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
    height: 100vh;
    color: white;
    position: relative;
    text-align: center;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
  }
  
  .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    padding: 20px;
  }
  
  .profile-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 3px solid white;
    margin-bottom: 20px;
  }
  .profile-img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    padding: 30px 60px;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    position: fixed;
    z-index: 2;
    width: 100%;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
  }
  
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    padding-bottom: 4px;
    position: relative;
  }
  
  .nav-links a::after {
    content: '';
    height: 2px;
    width: 0%;
    background: white;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 0.3s ease;
  }
  
  .nav-links a:hover::after,
  .nav-links a:focus::after {
    width: 100%;
  }
  

  @media (max-width: 992px) {
    .navbar {
      padding: 20px 40px;
    }
  
    .nav-links {
      gap: 20px;
    }
  
    .profile-img {
      width: 180px;
      height: 180px;
    }
  
    .hero h1 {
      font-size: 2rem;
    }
  
    .hero p {
      font-size: 1rem;
    }
  }
  

  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      gap: 10px;
      padding: 20px;
    }
  
    .nav-links {
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
    }
  
    .profile-img {
      width: 150px;
      height: 150px;
    }
  
    .hero h1 {
      font-size: 1.7rem;
    }
  
    .hero p {
      font-size: 0.95rem;
    }
  }
  

  @media (max-width: 480px) {
    .hero-content {
      padding: 10px;
    }
  
    .profile-img {
      width: 120px;
      height: 120px;
    }
  
    .hero h1 {
      font-size: 1.5rem;
    }
  
    .hero p {
      font-size: 0.85rem;
    }
  
    .nav-links a {
      font-size: 0.85rem;
    }
  }

  .about {
    background: #f0f0f0;
    padding: 80px 20px;
  }
  
  .about-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .about-image img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #333;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  .about-text {
    max-width: 600px;
  }
  
  .about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #111;
  }
  
  .about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 10px;
  }
  
  .services {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 10px;
  }
  
  .section-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 50px;
  }
  
  .services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: auto;
  }
  
  .service {
    background-color: #f9fafb;
    padding: 30px 20px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  
  .service:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.06);
  }
  
  .service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .service h3 {
    font-size: 1.2rem;
    color: #1f2937;
    margin-bottom: 10px;
  }
  
  .service p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
  }

  .contact {
    padding: 80px 20px;
    background-color: #f9fafb;
    text-align: center;
  }
  
  .contact-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .contact-info {
    font-size: 1rem;
    color: #444;
    text-align: left;
  }
  
  .contact-info p {
    margin-bottom: 10px;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    resize: none;
  }
  
  .contact-form button {
    background-color: #111827;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #374151;
  }
  
  @media (min-width: 768px) {
    .contact-container {
      flex-direction: row;
      justify-content: space-between;
    }
  
    .contact-info, .contact-form {
      flex: 1;
    }
  
    .contact-info {
      padding-right: 40px;
    }
  }
  
  .footer {
    background-color: #111827;
    color: #f3f4f6;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.95rem;
  }
  
  .footer-content p {
    margin: 5px 0;
    letter-spacing: 0.5px;
  }

  .social-icons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a {
    color: white;
    font-size: 44px;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 2px solid #aff50d; 
    border-radius: 50%;
    text-align: center;
    box-sizing: border-box;
  }
  

.social-icons a:hover {
  transform: scale(1.2);
  color: #0077ff;
}

.download-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #aff50d;
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .download-btn:hover {
    background-color: #d6ff4e;
  }
  