 :root {
      --primary: darkgreen;
      --secondary: #000000;
      --light: #f8f9fa;
    }

     * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
     body {
      font-family: 'Poppins', sans-serif;
      line-height: 1.6;
      color: var(--light);
      background: var(--secondary);
    }

    a { text-decoration: none; color: inherit; }

 
 header {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--primary);
}

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.7rem 20px 0.7rem 0px;
      
  box-shadow: 
    0 2px 10px rgba(0,0,0,0.1), /* your original subtle shadow */
    0 4px 8px var(--primary),    /* soft inner glow layer */
    0 8px 16px var(--primary),   /* medium glow layer */
    0 12px 24px var(--primary);  /* outer diffused glow layer */
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
  
    }

    .nav-links a {
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-links a:hover { color: var(--primary); }

    .logo{
      padding-left: 150px;
    }

    .mobile-toggle {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--primary);
      border: 1px var(--primary) dashed;
      border-radius: 5px;
      padding: 0px 7px;
    }


    /* Reuse equipment styles */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.equipment-card {
    background: #222;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Section titles */
.section-title {
    color: darkgreen;
    font-weight: bold;
    text-align: center;
    margin: 60px 0 40px;
    font-size: 2.2rem;
}

/* Jump navigation */
.jump-nav {
    background: #000;
    border-bottom: 2px solid darkgreen;
    position: sticky;
}

.jump-links a {
    color: darkgreen;
    margin: 0 15px;
    font-weight: 600;
    transition: opacity 0.3s;
}

.jump-links a:hover {
    opacity: 0.7;
}

@media (max-width: 480px) {
    .card-img { height: 200px; }
}



footer {
            padding: 80px 20px 40px;
            color: #333;
            font-family: 'Georgia', serif; /* Elegant, artistic font for watercolor feel */
            position: relative;
            height: 200px;  
            
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: var(--secondary);
            border-top: 2px var(--primary) solid;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .branch {
            text-align: center;
        }

        .branch h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--primary); /* Deep purple accent */
        }

        .branch p {
            margin: 8px 0;
            font-size: 1rem;
            line-height: 1.6;
        }

        .branch a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s;
        }

        .branch a:hover {
            color: var(--primary);
        }

.social-icons {
    display: flex;
    gap: 30px;
    margin: 30px auto 40px;
    justify-content: center;
    width: 100%;
    border-bottom: 2px var(--primary) solid;
}

.social-icons a {
    color: var(--primary);
    z-index: 1;
    font-size: 1.8rem; /* Larger icons */
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-4px) scale(1.1);
    opacity: 0.8;
}



        .copyright {
            text-align: center;
            font-size: 0.9rem;
            color: #555;
            position: relative;
            z-index: 1;
        }


@media (max-width: 789px) {
      .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 15px var(--primary);
        display: none;
      }

      .nav-links.active {
        display: flex;
      }

      .mobile-toggle {
        display: block;
      }

      .logo{
      padding-left: 0;
    }

}