/* -------------------- */
/* RESET & GLOBAL STYLES */
/* -------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
  }
  a {
    text-decoration: none;
  }
  h1, h2, h3, h4 {
    margin-bottom: 1rem;
  }
  section {
    padding: 3rem 2rem;
  }
  .page-content {
    max-width: 1000px;
    margin: auto;
    text-align: center;
  }
  
  /* -------------------- */
  /* NAVBAR */
  /* -------------------- */
  header {
    background: #222;
    color: #fff;
  }
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
  }
  .navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  .navbar ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  .navbar ul li a {
    color: #fff;
    font-weight: bold;
    transition: color 0.3s;
  }
  .navbar ul li a:hover,
  .navbar ul li a.active {
    color: #ff9800;
  }
  .menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: #fff;
  }
  
  /* -------------------- */
  /* HERO SECTION */
  /* -------------------- */
  .hero {
    background: url("https://images.pexels.com/photos/1181244/pexels-photo-1181244.jpeg?auto=compress&cs=tinysrgb&w=1600") center/cover no-repeat;
    color: #fff;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  }
  .hero-content p {
    margin: 1rem 0;
    font-size: 1.2rem;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
  }
  .btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: #ff9800;
    color: #fff;
    border-radius: 5px;
    transition: 0.3s;
    font-weight: bold;
  }
  .btn:hover {
    background: #e68900;
  }
  
  /* -------------------- */
  /* FEATURES SECTION */
  /* -------------------- */
  .features {
    text-align: center;
  }
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  .feature img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
  }
  .feature h3 {
    margin: 0.5rem 0;
    color: #ff9800;
  }
  
  /* -------------------- */
  /* PORTFOLIO */
  /* -------------------- */
  .portfolio {
    text-align: center;
  }
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
  }
  .portfolio-grid img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s;
  }
  .portfolio-grid img:hover {
    transform: scale(1.05);
  }
  
  /* -------------------- */
  /* TESTIMONIALS */
  /* -------------------- */
  .testimonials {
    background: #f9f9f9;
    text-align: center;
  }
  .testimonial-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 2rem;
  }
  .testimonial {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  .testimonial h4 {
    margin-top: 1rem;
    font-weight: bold;
    color: #555;
  }
  
  /* -------------------- */
  /* CTA SECTION */
  /* -------------------- */
  .cta {
    background: #222;
    color: #fff;
    text-align: center;
  }
  .cta .btn {
    margin-top: 1rem;
  }
  
  /* -------------------- */
  /* CONTACT FORM */
  /* -------------------- */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 2rem auto;
  }
  .contact-form input,
  .contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
  }
  .contact-form button {
    border: none;
    cursor: pointer;
  }
  
  /* -------------------- */
  /* FOOTER */
  /* -------------------- */
  footer {
    background: #111;
    color: #aaa;
    text-align: center;
    padding: 1rem;
  }
  
  /* -------------------- */
  /* RESPONSIVE NAVBAR */
  /* -------------------- */
  @media(max-width:768px) {
    .navbar ul {
      display: none;
      flex-direction: column;
      background: #222;
      position: absolute;
      top: 60px;
      right: 0;
      width: 200px;
      padding: 1rem;
    }
    .navbar ul.active {
      display: flex;
    }
    .menu-toggle {
      display: block;
    }
  }
  