/* grab-it-suite.css */

/* Sub-Brand Hero (Grab-IT Suite) */
.sub-brand-hero {
  background-color: #e6f0ff; /* Light blue for Grab-IT Suite */
  text-align: center;
  padding: 50px 20px;
  color: #333;
}

.sub-brand-hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: #2c3e50;
}

.sub-brand-hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #666;
}

/* Tools Section (Grab-IT Suite) */
.tools {
  padding: 50px 20px;
  text-align: center;
}

.tools h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: #2c3e50;
}

.tool-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.tool {
  max-width: 300px;
  margin: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.tool.coming-soon {
  opacity: 0.6;
}

.tool img {
  margin-bottom: 10px;
}

.tool h3 {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #2c3e50;
}

.tool p {
  color: #666;
  margin-bottom: 15px;
}

.tool-button {
  display: inline-block;
  padding: 8px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.tool-button:hover {
  background-color: #0056b3;
}

.tool-button.disabled {
  background-color: #ccc;
  pointer-events: none;
}

/* About Section (Grab-IT Suite) */
.about {
  background-color: #f9f9f9;
  padding: 50px 20px;
  text-align: center;
}

.about h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #2c3e50;
}

.about p {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto;
  color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
  .tool-grid {
    flex-direction: column;
    align-items: center;
  }

  .tool {
    margin: 20px 0;
  }
}