/* 
  Component Styles
  Extracted inline styles from HTML files
*/

/* ===== HERO SECTION COMPONENTS ===== */
.hero-gradient-bg {
  /*background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    linear-gradient(45deg, #0047ab, #32cd32);*/
  background-image: url("../images/img/hero05.png");
}

/* ===== ABOUT SECTION COMPONENTS ===== */
.about-image-placeholder {
  width: 100%;
  height: 500px;
  background-image: url("../images/img/about.png");
  /*background: linear-gradient(135deg, #0047ab, #32cd32);*/
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
}

.about-image-content {
  text-align: center;
  padding: 20px;
}

.about-image-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

/* ===== SERVICE CARD COMPONENTS ===== */
.service-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0047ab, #32cd32);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.service-image-placeholder-web {
  width: 100%;
  height: 100%;
  background-image: url("../images/img/webdev01.png");
  background-size: cover;
  background-position: center;
}

.service-image-placeholder-softwr {
  width: 100%;
  height: 100%;
  background-image: url("../images/img/custom softw.png");
  background-size: cover;
  background-position: center;
}

.service-image-placeholder-data {
  width: 100%;
  height: 100%;
  background-image: url("../images/img/data-analysis.png");
  background-size: cover;
  background-position: center;
}

.service-image-placeholder-ai-agent {
  width: 100%;
  height: 100%;
  background-image: url("../images/img/ai-agent.png");
  background-size: cover;
  background-position: center;
}

.service-image-placeholder-ai-wkfl {
  width: 100%;
  height: 100%;
  background-image: url("../images/img/ai wokflo.png");
  background-size: cover;
  background-position: center;
}

.service-image-placeholder-converse-ai {
  width: 100%;
  height: 100%;
  background-image: url("../images/img/ai-converse.png");
  background-size: cover;
  background-position: center;
}

.service-icon {
  font-size: 48px;
}

/* ===== TESTIMONIAL COMPONENTS ===== */
.testimonial-avatar-placeholder {
  width: 100%;
  height: 100%;
  background: #0047ab;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.testimonial-initials {
  font-weight: bold;
}

/* ===== TEAM MEMBER COMPONENTS ===== */
.team-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0047ab, #32cd32);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.team-member-initials {
  font-size: 48px;
}

/* ===== UTILITY CLASSES ===== */
.gradient-primary {
  background: linear-gradient(135deg, #0047ab, #32cd32);
}

.gradient-primary-reverse {
  background: linear-gradient(135deg, #32cd32, #0047ab);
}

.text-white {
  color: white;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-center {
  text-align: center;
}

.rounded {
  border-radius: 10px;
}

.rounded-full {
  border-radius: 50%;
}

.shadow-lg {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.p-20 {
  padding: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

/* ===== SERVICE DETAIL PAGE STYLES ===== */
.service-detail {
  padding: 80px 0;
}

.service-detail-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}

.service-main h2 {
  color: var(--dark-color);
  margin-bottom: 20px;
  font-size: 28px;
}

.service-main p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text-color);
}

.service-main ol {
  margin: 20px 0;
  padding-left: 20px;
}

.service-main ol li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: var(--text-color);
}

.service-features {
  margin: 40px 0;
}

.service-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: var(--transition);
}

.service-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}

.service-feature-icon i {
  font-size: 24px;
  color: white;
}

.service-feature-text h3 {
  color: var(--dark-color);
  margin-bottom: 10px;
  font-size: 20px;
}

.service-feature-text p {
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
}

.service-sidebar {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  height: fit-content;
}

.sidebar-title {
  color: var(--dark-color);
  margin-bottom: 20px;
  font-size: 20px;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.service-list li {
  margin-bottom: 10px;
}

.service-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: white;
  border-radius: 5px;
  text-decoration: none;
  color: var(--text-color);
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.service-list a:hover {
  background: var(--primary-color);
  color: white;
  border-left-color: var(--secondary-color);
}

.service-list a i {
  font-size: 12px;
}

.sidebar-cta {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  color: white;
}

.sidebar-cta h3 {
  color: white;
  margin-bottom: 15px;
  font-size: 18px;
}

.sidebar-cta p {
  color: white;
  margin-bottom: 20px;
  opacity: 0.9;
}

.sidebar-cta .btn {
  background: white;
  color: var(--primary-color);
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.sidebar-cta .btn:hover {
  background: var(--light-color);
  transform: translateY(-2px);
}

/* ===== RESPONSIVE UTILITIES ===== */
@media (max-width: 992px) {
  .service-detail-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-sidebar {
    order: -1;
  }
}

@media (max-width: 768px) {
  .about-image-placeholder {
    height: 300px;
  }

  .about-image-icon {
    font-size: 48px;
  }

  .team-member-initials {
    font-size: 36px;
  }

  .service-icon {
    font-size: 36px;
  }

  .service-feature {
    flex-direction: column;
    text-align: center;
  }

  .service-feature-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .service-detail {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .about-image-placeholder {
    height: 250px;
  }

  .about-image-icon {
    font-size: 36px;
  }

  .team-member-initials {
    font-size: 28px;
  }

  .service-icon {
    font-size: 28px;
  }

  .service-detail {
    padding: 40px 0;
  }

  .service-sidebar {
    padding: 20px;
  }
}
