/* ==========================================================================
   Base Styles
   ========================================================================== */
   :root {
    --primary: #7ed957;
    --primary-dark: #6ac24f;
    --dark: #000000;
    --light: #ffffff;
    --gray: #ccc;
    --font-main: 'Segoe UI', sans-serif;
  }
  
  body {
    margin: 0;
    font-family: var(--font-main);
    background-color: #fdfdfd;
    color: var(--dark);
    line-height: 1.6;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
  }
  
  img[loading="lazy"] {
    loading: lazy;
  }
  
  .service-item img,
  .about-image img,
  .insight-item img,
  .team-member img {
    max-width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
  }
  
  .hero-container img,
  .team-member img {
    max-height: 240px;
    object-fit: cover;
  }
  
  a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  a:hover {
    color: var(--primary);
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
  }
  
  section {
    padding: 4rem 0;
    box-sizing: border-box;
  }
  
  /* ==========================================================================
     Header
     ========================================================================== */
  .logo img {
    max-width: 160px;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    display: block;
  }
  .site-header {
    background-color: var(--light);
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .nav-menu {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .nav-menu a {
    font-weight: 600;
  }
  
  .nav-menu a.active,
  .nav-menu a:hover {
    color: var(--primary);
  }
  
  /* ==========================================================================
     Hero Section
     ========================================================================== */
  .hero {
    background-color: var(--dark);
    color: var(--light);
    text-align: center;
    max-height: 600px;
    overflow: hidden;
  }
  
  .hero-container {
    padding: 4rem 1rem;
    max-width: 960px;
    margin: 0 auto;
  }
  
  .hero-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .hero-container p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }

  .about-home .about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    gap: 2rem;
  }
  
  .about-home .about-image img {
    max-width: 220px;
    width: 100%;
    padding: 1rem;
    background-color: #000;
    border-radius: 12px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }
  
  @media (max-width: 768px) {
    .about-home .about-grid {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .about-home .about-image {
      margin-bottom: 2rem;
    }
  }


  /* ==========================================================================
     Buttons
     ========================================================================== */
  .btn-primary,
  .btn-secondary {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .btn-primary {
    background-color: var(--primary);
    color: var(--dark);
  }
  
  .btn-primary:hover {
    background-color: var(--primary-dark);
  }
  
  .btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
  }
  
  .btn-secondary:hover {
    background-color: var(--primary);
    color: var(--light);
  }
  
  /* ==========================================================================
     Section Titles
     ========================================================================== */
  .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  /* ==========================================================================
     Footer
     ========================================================================== */
  .site-footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 2rem 0;
    text-align: center;
    font-size: 0.95rem;
  }
  
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  
  .footer-menu a {
    color: var(--light);
    font-weight: 500;
  }
  
  .footer-menu a:hover {
    color: var(--primary);
  }
  
  .footer-info {
    color: var(--gray);
    font-size: 0.85rem;
  }
  
  /* ==========================================================================
     Animations
     ========================================================================== */
  .fade-in {
    animation: fadeIn 1s ease-in-out;
  }
  
  .slide-in-left {
    animation: slideInLeft 1s ease-out;
  }
  
  .slide-in-right {
    animation: slideInRight 1s ease-out;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes slideInLeft {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }
  
  @keyframes slideInRight {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }
  
  /* ==========================================================================
     About Page
     ========================================================================== */
  .team-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .team-member {
    width: 220px;
    text-align: center;
  }
  
  .team-member img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
  }
  
  .bio-popup {
    display: none;
    background-color: #fff;
    color: #333;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 0.5rem;
  }
  
  .team-member:hover .bio-popup {
    display: block;
  }
  
  /* ==========================================================================
     Services Page
     ========================================================================== */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .service-item {
    text-align: center;
  }
  
  .service-item img {
    margin-bottom: 1rem;
  }
  
  /* ==========================================================================
     Insights Page
     ========================================================================== */
  .insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .insight-item h3 {
    margin-bottom: 0.5rem;
  }
  
  .insight-item a {
    color: var(--dark);
    transition: color 0.3s ease;
  }
  
  .insight-item a:hover {
    color: var(--primary);
  }
  
  /* ==========================================================================
     Contact Page
     ========================================================================== */
  .contact-section {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
  }
  
  .contact-form {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 1rem;
    border: 1px solid var(--gray);
    border-radius: 5px;
    font-size: 1rem;
  }
  
  .contact-form button {
    padding: 1rem;
    background-color: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
  }
  
  .contact-form button:hover {
    background-color: var(--primary-dark);
  }
  
  .contact-map {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
  }
  

  /* ==========================================================================
   Footer
   ========================================================================== */
  .site-footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 2rem 0;
    font-size: 0.95rem;
  }

  .footer-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .footer-menu a {
    color: var(--light);
    font-weight: 500;
  }

  .footer-menu a:hover {
    color: var(--primary);
  }

  .footer-info {
    color: var(--gray);
    font-size: 0.85rem;
    text-align: right;
    width: 100%;
  }

  .footer-info a {
    color: var(--light);
    text-decoration: underline;
  }
  
  .footer-info a:hover {
    color: var(--primary);
  }
  
    /* ==========================================================================
   Nav menu
   ========================================================================== */

  .nav-menu li.has-dropdown {
    position: relative;
  }
  .nav-menu li.has-dropdown .dropdown {
    display: none;
    position: absolute;
    background: white;
    list-style: none;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 999;
  }
  .nav-menu li.has-dropdown:hover .dropdown {
    display: block;
  }
  .nav-menu li.has-dropdown .dropdown li {
    padding: 10px 20px;
  }
  .nav-menu li.has-dropdown .dropdown li a {
    color: #333;
    text-decoration: none;
  }
  .nav-menu li.has-dropdown .dropdown li:hover {
    background: #f5f5f5;
  }
  