/* General styles */
* {
    box-sizing: border-box;
    scroll-behavior: smooth;
  }
  
  body {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fafafa;
    color: #333;
    padding-bottom: 80px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  header {
    background: linear-gradient(to right, #ff6a00, #ee0979);
    color: white;
    padding: 20px 0;
    text-align: center;
  }
  
  header .logo {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 10px;
  }
  
  .nav-menu {
    background: #ff6a00;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px 0;
  }
  
  .nav-menu a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    margin: 0 10px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .nav-menu a:hover {
    background-color: #f1c40f;
    transform: scale(1.1);
  }
  
  section {
    padding: 40px 20px;
    margin: 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    transition: transform 0.3s ease;
  }
  
  section:hover {
    transform: translateY(-3px);
  }
  
  h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: 1px;
    text-align: center;
  }
  
  p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
  }
  
  /* Portfolio */
  .portfolio-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  
  .portfolio-item {
    width: 250px;
    text-align: center;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .portfolio-item img {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
  }
  
  .portfolio-item p {
    margin-top: 10px;
    font-weight: 600;
    font-size: 16px;
    color: #444;
  }
  
  .portfolio-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  /* Client login form */
  #clientLoginForm {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  #clientLoginForm input {
    padding: 12px;
    margin: 10px 0;
    width: 80%;
    max-width: 400px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
    transition: border 0.3s ease, background-color 0.3s ease;
  }
  
  #clientLoginForm input:focus {
    border-color: #ff6a00;
    outline: none;
    background-color: #fff9e6;
  }
  
  /* Contact form */
  #contactForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  #contactForm input,
  #contactForm textarea {
    width: 100%;
    max-width: 500px;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
  }
  
  #contactForm textarea {
    height: 120px;
    resize: vertical;
  }
  
  /* Buttons */
  button {
    padding: 12px 24px;
    background: linear-gradient(to right, #ff6a00, #ee0979);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  button:hover {
    background: linear-gradient(to right, #f1c40f, #f39c12);
    transform: translateY(-2px);
  }
  
  /* Footer */
  footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 15px;
    position: fixed;
    width: 100%;
    bottom: 0;
    font-size: 14px;
  }
  
  footer a {
    color: #f39c12;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  footer a:hover {
    color: #ff6a00;
  }
  
  /* Progress Bars */
  .progress-bar-container {
    background-color: #ddd;
    border-radius: 10px;
    overflow: hidden;
    height: 25px;
    margin: 10px 0;
  }
  
  .progress-bar {
    height: 100%;
    background: linear-gradient(to right, #ff6a00, #ee0979);
    color: white;
    text-align: center;
    line-height: 25px;
    font-weight: bold;
    transition: width 0.6s ease;
    border-radius: 10px;
  }
  
  /* Dark mode */
  body.dark {
    background-color: #121212;
    color: #f1f1f1;
  }
  
  body.dark section {
    background-color: #1e1e1e;
  }
  
  body.dark header,
  body.dark .nav-menu {
    background: linear-gradient(to right, #2c3e50, #000);
  }
  
  body.dark .nav-menu a {
    background-color: rgba(255, 255, 255, 0.1);
    color: #f1f1f1;
  }
  
  body.dark .portfolio-item p {
    color: #ccc;
  }
  
  body.dark footer {
    background-color: #000;
  }
  
  /* Dark mode toggle button */
  .dark-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #fff;
    border: 2px solid #444;
    border-radius: 50%;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    transition: background 0.3s ease;
  }
  
  body.dark .dark-toggle {
    background: #333;
    color: #fff;
  }
  
  /* Modal Image Viewer */
  .modal {
    display: none;
    position: fixed;
    z-index: 888;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
  }
  
  .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    border-radius: 12px;
  }
  
  .close {
    position: absolute;
    top: 30px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: color 0.3s;
    cursor: pointer;
  }
  
  .close:hover,
  .close:focus {
    color: #f1c40f;
  }
  
  /* Counters */
  .counters {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
  }
  
  .counters h3 {
    font-size: 36px;
    color: #ee0979;
  }
  
  .counters p {
    margin-top: 5px;
    font-size: 16px;
    font-weight: 600;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .portfolio-gallery {
      flex-direction: column;
      align-items: center;
    }
  
    .counters {
      flex-direction: column;
      gap: 20px;
    }
  }
  