/* BSOLUTIONHUB Custom Styles */


/* Hero Section */

/* Theme colors */
h1,h2,h3,h4,h5,h6{ color: #ff482e; }
p, small{ color: #7c7c7c; }
.btn-primary{ background-color:#ff482e; border:none; }
.btn-primary:hover{ background-color:#e03e1f; }
.btn-cv{ background-color:#17a5a5; color:#fff; }
.btn-cv:hover{ background-color:#128282; }
.hero {
  padding: 40px 0;
}

/* Project / Service Cards */
.card-project {
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card-project:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255,72,46,0.3); /* Primary color shadow */
}

/* Inline Images in Project Cards */
.card-project img {
  width: 33.3%;
  height: auto;
  display: inline-block;
  border-radius: 6px;
}

/* Grid Layout */
.projects-grid {
  column-count: 1;
  column-gap: 1rem;
  margin-top: 1rem;
}


@media (max-width: 991px) {
  .projects-grid {
    column-count: 2;
  }
}

@media (max-width: 575px) {
  .projects-grid {
    column-count: 1;
  }
}

/* Individual Project Card */
.project-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 1rem;
  background: #17a5a5; /* Secondary color */
  color: #fff;
  border-radius: 12px;
  padding: 15px;
  transition: transform 0.3s, background 0.3s;
}
.project-card:hover {
  transform: translateY(-5px);
  background: #ff482e; /* Primary color on hover */
}

/* Team Photos */
.team-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #17a5a5; /* Secondary color border */
  transition: transform 0.3s, border-color 0.3s;
}
.team-photo:hover {
  transform: scale(1.05);
  border-color: #ff482e; /* Primary on hover */
}

/* Carousel Captions */
.carousel-caption {
  background: rgba(23,165,165,0.65); /* Secondary overlay */
  padding: 10px;
  border-radius: 6px;
  color: #fff;
}

/* Links & Hover Highlights */
a {
  color: #ff482e;
  text-decoration: none;
}
a:hover {
  color: #17a5a5;
}
