body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: white; /* ✅ This makes the full page white */
  color: #333;
}

header, footer {
  background: #003366;
  color: white;
  padding: 20px;
  text-align: center;
}

.tools img {
  width: 200px;
  height: 200px;
  object-fit: cover;
}

.sidebar {
  padding: 20px;
  background: #f9f9f9;
  
  .dropdown-content {
  display: none;
  position: absolute;
  background-color:green; /* Matches Products button */
  min-width: 220px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: white;
  background-color: green;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-weight: normal;
}

.dropdown-content a:hover {
  background-color: #005599; /* Slightly lighter on hover */
}
  border-left: 2px solid #ccc;
}

 body {
      background: white;
    }
    .tool-row {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
      margin-top: 20px;
    }
    .tool {
      flex: 1 1 300px;
      max-width: 300px;
      text-align: center;
    }
    .tool img {
      width: 100%;
      height: auto;
      border: 1px solid #ccc;
    }
    .tool p {
      margin-top: 10px;
      font-size: 15px;
      color: #333;
    }

header h1, footer h2 {
  margin: 0;
  font-size: 24px;
}

#main-nav a {
  color: black;
  text-decoration: none;
  padding: 8px 12px;
}

#main-nav a.active {
  color: #FF6600 ;   /* highlight color */
  font-weight: bold;
}



nav {
  background: #008080;
  display: flex;
  justify-content: center;
  padding: 10px;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  padding: 10px 15px;
}
nav a.active {
  color: #FF6600 !important;
}
.container {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
  background: white;
}

h2 {
  color: #005599;
  border-bottom: 2px solid #eee;
  padding-bottom: 5px;
}

ul {
  padding-left: 20px;
}


nav a, .dropbtn {
  color: #333;
  text-decoration: none;
}

.dropbtn:hover {
  color: #FF6600 ; /* changes text color when cursor is on Products */
 /* optional: slightly lighter background */
}

/* Style for the navigation bar */
#main-nav {
  color: #FF6600; /* deep blue background */
  padding: 10px;
}

/* Style for links inside the nav */
#main-nav a {
  color: black;              /* default text color */
  text-decoration: none;
  padding: 10px 15px;
  display: inline-block;
  font-weight: bold;
}

/* Hover effect */
#main-nav a:hover {
  color: #FF6600 ;             /* text turns orange on hover *//* optional: slightly lighter background */
  border-radius: 4px;        /* optional: rounded corners */
}

/* Active link style */
nav a.active, .dropbtn.active {
  color:#FF6600 ; /* red highlight, change as needed */
  font-weight: bold;
}
.tagline {
  font-style: italic;
  color: #666;
  margin-bottom: 20px;
}

.dropdown {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 15px;
}

.dropbtn {
  background-color: transparent;
  color: black;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

@keyframes moveRight {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color:white;
  min-width: 220px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: #003366;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-weight: normal;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #006666;
}

.sub-dropdown {
  position: relative;
}

.sub-dropdown-content {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background-color: white;
  min-width: 180px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
}

.sub-dropdown:hover .sub-dropdown-content {
  display: block;
}

.sub-dropdown-content a {
  
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
