/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Outfit', sans-serif;
    background: #fff;
    color: #111;
    line-height: 1.6;
  }
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  /* Header */
  .header {
    background: #fff;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 600;
  }
  .nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  .nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }
  
  /* Hero */
  .hero {
    display: flex;
    align-items: center;
    min-height: 80vh;
    padding: 3rem 0;
    background: linear-gradient(to right, #e3f2fd, #fce4ec);
  }
  .hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
  }
  .hero-text {
    flex: 1;
  }
  .hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }
  .hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  .btn {
    background: #111;
    color: #fff;
    padding: 0.8rem 1.6rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
  }
  .btn:hover {
    background: #444;
  }
  .hero-img img {
    max-width: 100%;
    height: auto;
    flex: 1;
  }
  
  /* Services */
  .services {
    padding: 4rem 0;
    background: #fafafa;
  }
  .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  .service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }
  .service-card:hover {
    transform: translateY(-5px);
  }
  .service-card h3 {
    margin-bottom: 1rem;
    color: #111;
  }
  
  /* Footer */
  .footer {
    text-align: center;
    padding: 2rem 0;
    background: #f1f1f1;
    font-size: 0.9rem;
  }
  
  

  
  
  /* Navigation styling */
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }
  
  /* Hide toggle button on desktop */
  .menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  /* Responsive behavior */
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
      color: #333;
    }
  
    .nav-links {
      position: absolute;
      top: 100%;
      right: 0;
      background: #ffffff;
      flex-direction: column;
      width: 200px;
      display: none;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      padding: 1rem;
    }
  
    .nav-links.active {
      display: flex;
    }
  }
  

  
  
 
  
  /* Hide toggle button on desktop */
  .menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  /* Responsive behavior */
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
      color: #333;
    }
  
    .nav-links {
      position: absolute;
      top: 100%;
      right: 0;
      background: #ffffff;
      flex-direction: column;
      width: 200px;
      display: none;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      padding: 1rem;
    }
  
    .nav-links.active {
      display: flex;
    }
  }
  