:root {
    /* Light theme (default) */
    --bg-default: #ffffff;
    --bg-alt: #f9f9f9;
    --bg-soft: #f1f5f9;
  
    --text-default: #333;
    --text-soft: #555;
    --accent: #625f5f;
  }
  
  body[data-theme="dark"] {
    --bg-default: #1a1a1a;
    --bg-alt: #222;
    --bg-soft: #2a2a2a;
  
    --text-default: #f0f0f0;
    --text-default2: #1a1919;

    --text-soft: #ccc;
    --accent: #1d1d1d; /* same accent, or change if you want */
  }
  




/* Base Reset */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background: var(--bg-default);
    color: var(--text-default);
  }
  
  /* Layout Utilities */
  .container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 0;
  }
  
  h1, h2, h3 {
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  p {
    margin-bottom: 1rem;
  }
  
  .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    /* background: #222; */

    background: var(--accent);
    color: #f8f4f4;
  
    /* gold/yellow accent */
    /* background: #f0b90b; 
  color: #000;
  font-weight: 600; */
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
  }
  
  .btn:hover {
    background: #555;

  }
  
  /* Hero Section */
  /* .hero {
    background: #f4f4f4;
    padding: 6rem 0;
    text-align: center;
  }
   */

   .hero {
    background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
     url('./assests/background-office.avif') center/cover no-repeat;
     color: #fff;
     /* text-shadow: 1px 1px 3px rgba(0,0,0,0.5); */
    padding: 6rem 0;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    position: relative;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.2rem;
    color: #fff;
}
  
section {
    border-bottom: 1px solid #eee;
  }
  

  /* About Section */
  .about {
    /* background: #fff; */
    background: var(--bg-alt);
  color: var(--text-default);
  }
  
  /* Services Section */
  .services {
    /* background: #f9f9f9; */
background: var(--bg-default);
  color:     var(--text-default2)


  }
  
  .service-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-top: 2rem;
  }
  
  .card {
    background: #fff;
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 6px;
    transition: box-shadow 0.3s;
  }
  
  .card:hover {
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
  }

  @keyframes fadeUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  
  /* Delay each card for a cascade effect */
/* Optional: delay for cascading effect */
.service-grid .card:nth-child(1) {
    transition-delay: 0.2s;
  }
  .service-grid .card:nth-child(2) {
    transition-delay: 0.4s;
  }
  .service-grid .card:nth-child(3) {
    transition-delay: 0.6s;
  }
  





  
  /* Testimonials */
  .testimonials blockquote {
    font-style: italic;
    border-left: 4px solid var(--accent);
    padding-left: 1rem;
    margin-top: 1rem;
    /*  */
    max-width: 600px;
    margin-inline: auto;
    color: var(--text-soft);
}

  .testimonials {
    background: var(--bg-soft);
    color: var(--text-default);
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  
  
  /* Contact Section */
  .contact form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .contact input, .contact textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
  }
  
  .contact button {
    background: #222;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .contact button:hover {
    background: #444;
  }
  
  /* Footer */
  footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
  }
  